:root {
  --navy: #0b1b2b;
  --navy-2: #10263a;
  --ink: #111827;
  --muted: #4b5563;
  --line: #d8dbe0;
  --paper: #ffffff;
  --warm: #f8f6f1;
  --gold: #d8b46a;
  --gold-deep: #b98c39;
  --radius: 4px;
  --shell: min(1160px, calc(100% - 56px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px clamp(28px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 285px;
}

.monogram {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1;
}

.identity strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-deep);
  content: "";
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  min-height: 485px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 27, 43, 0.98) 0%, rgba(11, 27, 43, 0.92) 46%, rgba(11, 27, 43, 0.72) 100%),
    radial-gradient(circle at 74% 34%, rgba(216, 180, 106, 0.12), transparent 24%),
    linear-gradient(135deg, #0b1b2b, #142b40);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: stretch;
  width: var(--shell);
  min-height: 485px;
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  padding: 68px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow,
.gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.1vw, 5.55rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

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

.gold-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 24px;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.gold-btn {
  color: var(--navy);
  background: linear-gradient(135deg, #e6c77e, #d3a75c);
}

.ghost-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.gold-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.download-btn:hover {
  transform: translateY(-1px);
}

.portrait-panel {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 485px;
  overflow: hidden;
}

.portrait-panel::before {
  position: absolute;
  inset: 42px 0 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.06) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px);
  opacity: 0.42;
  content: "";
}

.portrait-panel::after {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: min(68%, 390px);
  aspect-ratio: 0.72;
  border-radius: 48% 48% 0 0;
  background:
    radial-gradient(circle at 50% 22%, #d9dde3 0 10%, transparent 10.5%),
    linear-gradient(160deg, transparent 0 29%, #101827 29.5% 100%);
  box-shadow: 0 -14px 60px rgba(0, 0, 0, 0.28);
  content: "";
}

.portrait-note {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 10px;
  width: 220px;
  margin-bottom: 54px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 27, 43, 0.7);
  text-align: center;
}

.portrait-note span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
}

.portrait-note small {
  color: rgba(255, 255, 255, 0.76);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--shell);
  margin: 0 auto;
  padding: 42px 0 38px;
}

.value-item {
  min-height: 155px;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.value-item:first-child {
  padding-left: 0;
}

.value-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.value-item h2 {
  margin-bottom: 8px;
  font-size: 1.26rem;
}

.value-item p,
.career-panel p,
.story-card p,
.education-card p,
.faq-card p {
  color: var(--muted);
}

.strengths-band {
  padding: 26px clamp(28px, 6vw, 82px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.strengths-band .section-label {
  margin-bottom: 20px;
}

.strength-chips {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 18px;
  width: var(--shell);
  margin: 0 auto;
}

.strength-chips span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  border-bottom: 1px solid var(--line);
}

.career-panel,
.expertise-panel {
  padding: 76px clamp(28px, 7vw, 104px);
}

.career-panel {
  border-right: 1px solid var(--line);
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  margin: 34px 0 30px;
  padding-left: 44px;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 1px;
  background: #8b96a5;
  content: "";
}

.timeline article {
  position: relative;
}

.timeline article::before {
  position: absolute;
  top: 8px;
  left: -43px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.text-link {
  padding: 0;
  color: var(--gold-deep);
}

.expertise-panel {
  background: var(--warm);
}

.expertise-panel .section-label {
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 34px auto 0;
}

.expertise-grid article {
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: center;
}

.expertise-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.expertise-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.achievement-band,
.contact-footer {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(11, 27, 43, 0.98), rgba(16, 38, 58, 0.96)),
    var(--navy);
}

.achievement-band {
  padding: 38px clamp(28px, 6vw, 82px) 48px;
  text-align: center;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: var(--shell);
  margin: 0 auto;
}

.achievement-grid article {
  padding: 18px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: left;
}

.achievement-grid article:last-child {
  border-right: 0;
}

.achievement-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.achievement-grid h3 {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.achievement-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.stories-section,
.role-section,
.education-faq {
  width: var(--shell);
  margin: 0 auto;
  padding: 74px 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.story-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.story-card p {
  margin-bottom: 12px;
}

.experience-strip {
  padding: 34px clamp(28px, 6vw, 82px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--warm);
  text-align: center;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: var(--shell);
  margin: 0 auto;
}

.experience-grid article {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-align: left;
}

.experience-grid strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.experience-grid span {
  color: var(--ink);
  font-weight: 700;
}

.experience-grid small {
  color: var(--muted);
}

.tabs {
  border: 1px solid var(--line);
  background: #ffffff;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.tab-button {
  min-height: 58px;
  padding: 14px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active {
  background: #ffffff;
  color: var(--gold-deep);
}

.tab-panel {
  padding: 30px;
}

.tab-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tab-panel li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
}

.education-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}

.education-card,
.faq-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.education-card h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.education-card h3 {
  margin-top: 28px;
}

details {
  border-top: 1px solid var(--line);
}

summary {
  padding: 18px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
}

details p {
  margin-bottom: 18px;
}

.contact-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) minmax(260px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 52px clamp(28px, 6vw, 82px);
}

.contact-cta h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1.72rem;
}

.contact-cta p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  gap: 13px;
  padding: 8px 0 8px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

.contact-details a:hover {
  color: var(--gold);
}

.signature {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.signature strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.signature span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .gold-btn,
  .ghost-btn,
  .text-link,
  .download-btn {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-inner,
  .split-section,
  .education-faq,
  .contact-footer {
    grid-template-columns: 1fr;
  }

  .career-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portrait-panel {
    min-height: 360px;
  }

  .value-strip,
  .achievement-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item:nth-child(2) {
    border-right: 0;
  }

  .value-item:nth-child(n + 3) {
    padding-top: 28px;
  }

  .strength-chips,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-grid article:nth-child(2) {
    border-right: 0;
  }

  .achievement-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .contact-details,
  .signature {
    padding-left: 0;
    border-left: 0;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 16px 18px;
    gap: 16px;
  }

  .identity {
    min-width: 0;
    gap: 12px;
  }

  .monogram {
    font-size: 2rem;
  }

  .identity strong {
    font-size: 0.74rem;
  }

  .identity small {
    font-size: 0.58rem;
  }

  .download-btn {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 52px 0 34px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .portrait-panel {
    min-height: 285px;
  }

  .value-strip,
  .achievement-grid,
  .story-grid,
  .strength-chips,
  .expertise-grid,
  .experience-grid,
  .tab-list,
  .tab-panel ul {
    grid-template-columns: 1fr;
  }

  .value-item,
  .value-item:first-child,
  .value-item:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .career-panel,
  .expertise-panel,
  .stories-section,
  .role-section,
  .education-faq {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .achievement-grid article {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .achievement-grid article:first-child {
    border-top: 0;
  }

  .tab-button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
}
