:root {
  --ink: #17191f;
  --muted: #656b76;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e2ded6;
  --coral: #d94f3d;
  --teal: #167c80;
  --gold: #d69b2d;
  --forest: #24523e;
  --shadow: 0 22px 60px rgba(23, 25, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(226, 222, 214, 0.75);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

nav {
  gap: clamp(12px, 2.3vw, 30px);
  color: #333842;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-color: var(--coral);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  color: #fff;
  background: #17191f;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 25, 31, 0.8), rgba(23, 25, 31, 0.35) 45%, rgba(23, 25, 31, 0.08)),
    linear-gradient(0deg, rgba(23, 25, 31, 0.8), rgba(23, 25, 31, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  color: #fff;
  background: var(--coral);
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.quick-strip div {
  min-width: 0;
  padding: 22px;
  background: var(--panel);
}

.quick-strip span,
.detail-row span,
.stat span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-strip strong,
.detail-row strong {
  font-size: 1.08rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 0;
}

.profile-grid,
.two-column,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.section-copy,
.mini-summary,
.content-panel p,
.contact-card {
  color: var(--muted);
  line-height: 1.7;
}

.section-copy {
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  padding: 9px 12px;
  color: var(--forest);
  background: rgba(36, 82, 62, 0.1);
  border: 1px solid rgba(36, 82, 62, 0.2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat,
.content-panel,
.contact-panel,
.schedule-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(23, 25, 31, 0.07);
}

.stat {
  padding: 22px;
}

.stat strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.content-panel,
.contact-panel {
  padding: clamp(22px, 4vw, 36px);
}

.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #30343c;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--teal);
}

.skills {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.skill-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  font-weight: 800;
}

.skill-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece7de;
}

.skill-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.section-heading {
  align-items: end;
  margin-bottom: 24px;
}

.mini-summary {
  margin: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.schedule-card {
  min-height: 178px;
  padding: 24px;
}

.date {
  display: inline-grid;
  place-items: center;
  min-width: 72px;
  min-height: 38px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  font-weight: 900;
}

.schedule-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 36px));
  margin: 88px auto 0;
  padding: 28px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 820px;
    padding-top: 172px;
  }

  .quick-strip,
  .profile-grid,
  .two-column,
  .section-heading,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -22px;
  }

  .section {
    padding-top: 66px;
  }
}

@media (max-width: 520px) {
  nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 54px;
  }

  .stat-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .detail-row,
  footer {
    flex-direction: column;
  }
}
