/* ============================================================
   THAMAR KARPES — thamarkarpes.com
   Brand: Multidimensional Academy design system
   Kleuren: Aubergine × Goud × Ivoor
   Typografie: Lato (koppen) + EB Garamond (body/expressief)
   ============================================================ */

:root {
  --ivory:        #F5F0E8;
  --ivory-alt:    #EAE4D8;
  --aubergine-dk: #2C1A25;
  --aubergine:    #4B2E3F;
  --aubergine-md: #5E3A50;
  --gold:         #C9A96E;
  --gold-light:   #DEC99A;
  --dark-text:    #2C1A25;
  --warm-gray:    #8A7A82;
  --white:        #FFFFFF;

  /* Aliases used throughout (keeps HTML untouched) */
  --cream:        var(--ivory);
  --cream-alt:    var(--ivory-alt);
  --forest-deep:  var(--aubergine-dk);
  --forest:       var(--aubergine);
  --forest-mid:   var(--aubergine-md);
  --charcoal:     var(--dark-text);

  --font-heading: 'Lato', system-ui, sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;

  /* Legacy aliases */
  --font-display: var(--font-heading);
  --font-body:    var(--font-serif);

  --max-w:        1200px;
  --max-w-narrow: 760px;
  --pad-section:  128px;
  --pad-mobile:   72px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.85;
  color: var(--dark-text);
  background: var(--ivory);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* ============ CONTAINERS ============ */
.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: 64px;
}
.container-narrow {
  width: min(100%, var(--max-w-narrow));
  margin-inline: auto;
  padding-inline: 64px;
}

/* ============ FADE-IN ANIMATION ============ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 32px 64px;
  transition: background 0.5s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(44, 26, 37, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 64px;
  box-shadow: 0 1px 0 rgba(201, 169, 110, 0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-cta {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.45);
  padding: 11px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Homepage hero */
.hero-home .hero-bg {
  background-image:
    linear-gradient(to bottom, rgba(44, 26, 37, 0.38) 0%, rgba(44, 26, 37, 0.18) 50%, rgba(44, 26, 37, 0.68) 100%),
    url('img/thamar-soulcoach.jpg');
  background-color: #2C1A25;
  background-position: center 40%;
}
/* About hero */
.hero-about .hero-bg {
  background-image:
    linear-gradient(160deg, rgba(44, 26, 37, 0.78) 0%, rgba(75, 46, 63, 0.58) 50%, rgba(44, 26, 37, 0.88) 100%),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80');
  background-color: #2C1A25;
}
/* Work hero */
.hero-work .hero-bg {
  background-image:
    linear-gradient(160deg, rgba(44, 26, 37, 0.82) 0%, rgba(75, 46, 63, 0.60) 50%, rgba(44, 26, 37, 0.92) 100%);
  background-color: #2C1A25;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 48px;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 36px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.75);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(52px, 8.5vw, 100px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 56px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 16px rgba(0,0,0,0.65);
}
/* About hero has italic sub */
.hero-about .hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-size: 20px;
  animation: drift 2.4s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.22; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.45; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 44px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-forest {
  background: var(--aubergine);
  color: var(--white);
  border: 1px solid var(--aubergine);
}
.btn-forest:hover {
  background: var(--aubergine-md);
  border-color: var(--aubergine-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-lg {
  font-size: 11px;
  padding: 20px 56px;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.5);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============ SECTION LABELS ============ */
.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}
.label-light {
  color: rgba(201, 169, 110, 0.72);
}
.label-light::before {
  background: rgba(201, 169, 110, 0.45);
}

/* ============ HEADINGS ============ */
.h-display {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--aubergine);
  margin-bottom: 48px;
}
.h-display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.h-display-light {
  color: var(--white);
}
.h-med {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--aubergine);
  margin-bottom: 36px;
}
.h-med-light { color: var(--white); }
.h-med.h-display-light { color: var(--white); }
.h-med em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ============ BODY TEXT ============ */
.body-text p {
  margin-bottom: 24px;
  font-weight: 400;
  color: var(--dark-text);
}
.body-text p:last-child { margin-bottom: 0; }
.body-text-lg p {
  font-size: 19px;
  line-height: 1.88;
  font-weight: 400;
}
.text-light p { color: rgba(255, 255, 255, 0.65); }
.text-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--aubergine);
  font-weight: 400;
  margin-top: 8px;
}
.text-trio {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.text-trio span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--warm-gray);
  font-weight: 400;
}

/* ============ PULL QUOTES ============ */
.pull-quote {
  margin: 64px 0;
  padding-left: 36px;
  border-left: 2px solid var(--gold);
}
.pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.25;
  color: var(--aubergine);
  letter-spacing: 0.01em;
}
.pull-quote p em { font-style: normal; font-weight: 400; }
.pull-quote-light { border-left-color: rgba(201, 169, 110, 0.45); }
.pull-quote-light p { color: rgba(255, 255, 255, 0.85); }
.pull-quote-center {
  border-left: none;
  padding-left: 0;
  text-align: center;
}
.pull-quote-center p {
  font-size: clamp(30px, 4.8vw, 54px);
}

/* ============ SECTION BACKGROUNDS ============ */
.bg-cream     { background: var(--ivory); }
.bg-cream-alt { background: var(--ivory-alt); }
.bg-forest    { background: var(--aubergine); }
.bg-deep      { background: var(--aubergine-dk); }

.section {
  padding: var(--pad-section) 0;
}
.section-sm {
  padding: 80px 0;
}

/* ============ PHOTO BREAK (wide atmospheric) ============ */
.photo-break {
  position: relative;
  width: 100%;
  height: 56vh;
  min-height: 380px;
  max-height: 640px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 37, 0.38);
}
.photo-break-1 {
  background-image: linear-gradient(160deg, #2C1A25 0%, #4B2E3F 50%, #2C1A25 100%);
  background-color: #2C1A25;
}
.photo-break-2 {
  background-image: linear-gradient(160deg, #4B2E3F 0%, #2C1A25 60%, #3A2234 100%);
  background-color: #2C1A25;
}
/* Portrait photo sections */
.photo-portrait-wrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding: 0 64px;
}
.photo-portrait-frame {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.photo-portrait-frame--tall {
  aspect-ratio: 3 / 4;
  max-width: 440px;
}
.photo-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 680px) {
  .photo-portrait-wrap { padding: 0 28px; }
}

/* Placeholder voor Thamar's eigen brede foto */
.photo-thamar {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 360px;
  max-height: 600px;
  background: linear-gradient(135deg, #4B2E3F 0%, #5E3A50 55%, #4B2E3F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-thamar-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
.photo-thamar-label span:first-child {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.photo-thamar-label span:last-child {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.12);
}

/* ============ HOMEPAGE: BIO SECTION ============ */
.bio-wrap {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: 64px;
}

/* ============ HOMEPAGE: WORK CARD ============ */
.work-card {
  background: var(--aubergine);
  position: relative;
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.work-card-inner {
  padding: 80px 88px;
}
.work-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 68px);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.06;
}
.work-duration {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}
.work-body p {
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 20px;
}
.work-body p:last-child { margin-bottom: 0; }

/* ============ CLOSING SECTION ============ */
.section-closing {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 110%, rgba(94, 58, 80, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #1E1019 0%, #281524 50%, #1E1019 100%);
}
.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.closing-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.closing-body {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.52);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.closing-coda {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 64px;
}

/* ============ ABOUT: THREE DISCIPLINES ============ */
.discipline {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}
.discipline-num {
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.35);
  line-height: 1;
  letter-spacing: -0.01em;
  padding-top: 4px;
}
.discipline-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.discipline-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ============ ABOUT: TWO WORLDS ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

/* ============ RECOGNITION STRIP ============ */
.recog-strip {
  background: var(--ivory-alt);
  padding: 56px 0;
  border-top: 1px solid rgba(75, 46, 63, 0.07);
}
.recog-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.recog-item {
  flex: 1;
  min-width: 200px;
  padding: 0 48px;
  border-right: 1px solid rgba(75, 46, 63, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recog-item:first-child { padding-left: 0; }
.recog-item:last-child { border-right: none; }
.recog-name {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aubergine);
}
.recog-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-gray);
  line-height: 1.4;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--aubergine-dk);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 32px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.footer-nav a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 24px;
}
.footer-addr p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
}
.footer-addr .meta {
  font-family: var(--font-heading);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 12px;
  letter-spacing: 0.08em;
}
.footer-bottom {
  text-align: center;
  padding: 28px;
}
.footer-bottom p {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--aubergine-dk);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 20px 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--aubergine-dk);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  cursor: pointer;
}
.cookie-btn-decline:hover { color: rgba(255,255,255,0.8); }
@media (max-width: 680px) {
  .cookie-banner { padding: 20px; flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ============ RESPONSIVE ============ */
/* ============ WORK PAGE: PHASES ============ */
.work-phases {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.work-phase {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.work-phase-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 4px;
}
.work-phase strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.work-phase p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ HAMBURGER / MOBILE NAV ============ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 37, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.nav-mobile-overlay ul a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.nav-mobile-overlay ul a:hover,
.nav-mobile-overlay ul a.active { color: var(--white); }
.nav-mobile-cta { margin-top: 60px; }

/* ============ TABLET ============ */
@media (max-width: 960px) {
  :root { --pad-section: 88px; }
  .container, .container-narrow { padding-inline: 40px; }
  .bio-wrap { padding-inline: 40px; }
  .nav { padding: 28px 40px; }
  .nav.scrolled { padding: 18px 40px; }
  .two-col { grid-template-columns: 1fr; gap: 56px; }
  .work-card-inner { padding: 64px 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============ MOBILE ============ */
@media (max-width: 680px) {
  :root { --pad-section: 64px; }

  body { font-size: 17px; }

  /* Nav */
  .container, .container-narrow, .bio-wrap { padding-inline: 24px; }
  .nav { padding: 22px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 0 24px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 24px; }
  .hero-sub { font-size: 17px; margin-bottom: 40px; }
  .hero-scroll { display: none; }

  /* Typography */
  .h-display { font-size: clamp(28px, 8.5vw, 42px); line-height: 1.12; }
  .h-med { font-size: clamp(22px, 7vw, 34px); }
  .pull-quote p { font-size: clamp(20px, 5.5vw, 28px); }
  .pull-quote { padding-left: 20px; margin: 40px 0; }
  .text-em { font-size: 18px; }

  /* Sections */
  .text-trio { flex-direction: column; gap: 10px; font-size: 17px; }

  /* Work card */
  .work-card-inner { padding: 48px 28px; }
  .work-name { font-size: clamp(30px, 9vw, 48px); }

  /* Portrait photos */
  .photo-portrait-wrap { padding: 0; margin-top: 48px; }
  .photo-portrait-frame--tall { max-width: 100%; }

  /* Disciplines */
  .discipline { grid-template-columns: 1fr; gap: 12px; }
  .discipline-num { font-size: 44px; }
  .discipline-title { font-size: 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .recog-inner { flex-direction: column; gap: 32px; }
  .recog-item { border-right: none; border-bottom: 1px solid rgba(75,46,63,0.1); padding: 0 0 32px 0; }
  .recog-item:last-child { border-bottom: none; padding-bottom: 0; }

  /* Closing */
  .closing-body { font-size: 17px; }
  .closing-coda { font-size: clamp(19px, 5.5vw, 26px); }
}
