/* =============================================================
   Inspire Hospitality — "Nightfall Dawn"
   Dark-luxe hospitality investment site.
   The multi-color brand gradient is the protagonist; ink-dark
   is the stage. Lavender / blush / peach gradient appears as
   atmosphere, accent strokes, gradient text, and the primary CTA.
   ============================================================= */

:root {
  /* === Brand gradient stops === */
  --lavender:    #D1A9F2;
  --lavender-2:  #C9A5E8;
  --blush:       #E1BBC6;
  --rose:        #E5BAC4;
  --peach:       #F2D39D;
  --peach-soft:  #F6DFC0;
  --pale-yellow: #FBE873;
  --cream:       #FFF9C5;

  /* === Working accent === */
  --plum:        #5B3A6B;
  --plum-deep:   #4A2E59;
  --plum-light:  #7A5491;

  /* === Dark surface scale — V2 "Eggplant" stage === */
  --bg-deepest:   #1A0E20;
  --bg-deep:      #241431;
  --bg-mid:       #2C1A38;
  --bg-raised:    #34203F;
  --bg-elevated:  #3E2849;

  --surface:        rgba(255, 255, 255, 0.04);
  --surface-hover:  rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.10);

  /* === Light surface scale (for the bright spreads) === */
  --cream:           #FBF3E2;  /* warm champagne */
  --cream-deep:      #F4E6CC;
  --cream-blush:     #F7E8D9;
  --ink:             #1F1B2E;
  --ink-soft:        #2A2540;
  --soft-charcoal:   #5A5566;
  --hairline-warm:   #E8D5C0;
  --hairline-cream:  rgba(31, 27, 46, 0.10);

  /* === Type colors === */
  --text-primary:   #F2EBE0;          /* warm off-white */
  --text-secondary: rgba(242, 235, 224, 0.72);
  --text-muted:     rgba(242, 235, 224, 0.5);
  --text-faint:     rgba(242, 235, 224, 0.32);

  --hairline:       rgba(255, 255, 255, 0.10);
  --hairline-soft:  rgba(255, 255, 255, 0.06);

  /* === Signature multi-color gradient — yellow given real estate === */
  --gradient-signature: linear-gradient(
    95deg,
    #D1A9F2 0%,
    #C9A5E8 14%,
    #E1BBC6 30%,
    #E5BAC4 44%,
    #F2D39D 60%,
    #FBE873 80%,
    #FFF9C5 100%
  );

  /* === Golden variant — peach + yellow dominant === */
  --gradient-golden: linear-gradient(
    100deg,
    #E5BAC4 0%,
    #F2D39D 30%,
    #FBE873 65%,
    #FFF9C5 100%
  );

  /* === Dawn-rose variant (no yellow) — calmer accent === */
  --gradient-dawn: linear-gradient(
    135deg,
    #D1A9F2 0%,
    #C9A5E8 22%,
    #E1BBC6 50%,
    #E5BAC4 72%,
    #F2D39D 100%
  );

  /* === Cool variant (purple range) === */
  --gradient-cool: linear-gradient(
    135deg,
    #D1A9F2 0%,
    #B68FD8 50%,
    #7A5491 100%
  );

  /* === Emphasis gradient for LIGHT/cream surfaces ===
     Signature ends in pale yellow/cream and disappears on cream; this
     keeps the warm lavender→rose feel but ends in readable plum. */
  --gradient-on-light: linear-gradient(
    100deg,
    #B07FD0 0%,
    #C589A8 38%,
    #B05F7C 66%,
    #5B3A6B 100%
  );

  /* === Soft atmospheric wash (low-opacity multi-color) — yellow stronger === */
  --gradient-wash: linear-gradient(
    140deg,
    rgba(209, 169, 242, 0.14) 0%,
    rgba(225, 187, 198, 0.16) 30%,
    rgba(242, 211, 157, 0.22) 60%,
    rgba(251, 232, 115, 0.20) 100%
  );

  /* === Type === */
  --font-serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* === Scale === */
  --container:        1320px;
  --container-narrow: 880px;
  --radius:           2px;

  /* === Easing === */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* =============================================================
   Reset / base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-deep);
}
body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--text-primary); color: var(--bg-deep);
  padding: 12px 16px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

::selection { background: var(--lavender); color: var(--bg-deepest); }

/* =============================================================
   Layout primitives
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
  position: relative;
}
.container--narrow { max-width: var(--container-narrow); }

/* =============================================================
   Type — display & body
   ============================================================= */
.section-mark {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-mark::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-signature);
  box-shadow:
    0 0 0 4px rgba(251, 232, 115, 0.12),
    0 0 14px rgba(242, 211, 157, 0.55),
    0 0 28px rgba(251, 232, 115, 0.35);
}
.section-mark--light { color: var(--text-muted); }

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin: 0 0 32px;
}
.display em {
  font-style: italic;
  font-weight: 300;
  /* base gradient is swappable per surface; default is the signature */
  --text-grad: var(--gradient-signature);
  /* static fill only — brand guide: text stays still, no shimmer/flash */
  background: var(--text-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.06em;
}
.display--lg {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.display--sm {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.16;
}

.lede {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 62ch;
  margin: 0 0 24px;
  font-weight: 400;
}
.lede:last-child { margin-bottom: 0; }
.lede--light { color: var(--text-secondary); }

.dropcap {
  float: left;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 5.6em;
  line-height: 0.86;
  margin: 0.06em 0.14em -0.05em 0;
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 40px rgba(209, 169, 242, 0.3);
}

/* =============================================================
   Section head shared
   ============================================================= */
.section-head {
  margin-bottom: clamp(56px, 8vw, 96px);
  max-width: 760px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .section-mark { display: inline-flex; }
.section-head__lede {
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}
.section-head--center .section-head__lede {
  margin-inline: auto;
}
.section-head__lede--light { color: var(--text-secondary); }

/* =============================================================
   Buttons — gradient-filled primary is the brand's loudest CTA
   ============================================================= */
.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.5s var(--ease-out),
              background 0.5s var(--ease-out),
              color 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              background-position 1s var(--ease-out);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--gradient-signature);
  background-size: 220% 100%;
  background-position: 0% 0%;
  color: var(--bg-deepest);
  border-color: transparent;
  box-shadow:
    0 12px 32px -14px rgba(209, 169, 242, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.btn--primary:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -16px rgba(229, 186, 196, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}
.btn--primary:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.btn--ghost-light {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn--ghost-light:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Secondary CTA — outline pill, quieter than the gradient primary.
   Used for in-context links (e.g. "Who We Are", "View Collection") that
   sit next to body copy rather than anchoring a section. */
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 27, 46, 0.55);
  border-radius: 999px;
  box-shadow: none;
}
.btn--secondary:hover {
  background: rgba(31, 27, 46, 0.06);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn--secondary:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}
/* On dark/photographic surfaces (e.g. the home hero) the outline pill has
   no ground to read against — keep the old solid-fill treatment there. */
.hero-six .btn--secondary {
  background: var(--text-primary);
  color: var(--bg-deepest);
  border-color: transparent;
  box-shadow: 0 10px 26px -16px rgba(0, 0, 0, 0.4);
}
.hero-six .btn--secondary:hover {
  background: var(--cream);
  border-color: transparent;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.45);
}

/* =============================================================
   Navigation — dark always; gradient hairline beneath when scrolled
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  /* Clean top-down scrim for legibility over the hero — crisp, no blur */
  background: linear-gradient(
    180deg,
    rgba(26, 14, 32, 0.60) 0%,
    rgba(26, 14, 32, 0.28) 50%,
    rgba(26, 14, 32, 0.00) 100%
  );
  transition: background 0.5s var(--ease-out),
              padding 0.4s var(--ease-out),
              box-shadow 0.5s var(--ease-out);
}
.nav.is-scrolled {
  /* Solid eggplant bar — sharp, with a soft lift shadow */
  background: var(--bg-deep);
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.75);
}
.nav.is-scrolled::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.5;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__inner { padding-block: 14px; }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav__logo {
  /* The logo file is a full lockup (mark + wordmark) — render it large enough to read */
  height: 46px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex: none;
  /* Logo sits over the dark left half of the hero — bright silhouette in both nav states */
  filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(209, 169, 242, 0.4));
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.nav__brand:hover .nav__logo {
  filter: brightness(0) invert(1) drop-shadow(0 0 22px rgba(229, 186, 196, 0.7));
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-out);
}
.nav__menu a:hover { color: var(--text-primary); }
.nav.is-scrolled .nav__menu a { color: var(--text-secondary); }
.nav.is-scrolled .nav__menu a:hover { color: var(--text-primary); }
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gradient-signature);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease-out);
}
.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--gradient-signature);
  background-size: 220% 100%;
  color: var(--bg-deepest) !important;
  padding: 12px 22px !important;
  border-radius: var(--radius);
  border: 0;
  letter-spacing: 0.18em !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px -12px rgba(209, 169, 242, 0.6);
  transition: background-position 0.8s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pale-yellow) 55%, var(--peach) 100%);
  color: var(--bg-deepest) !important;
  box-shadow: 0 14px 32px -12px rgba(251, 232, 115, 0.55);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled .nav__toggle span { background: var(--text-primary); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Right-hand nav cluster: mobile toggle + language switch + menu --- */
.nav__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* ---- Language switch — bordered pill chip, last in the header row ----
   Echoes the .btn--ghost / .btn--secondary "outline pill" treatment used
   for secondary actions elsewhere, scaled down for a nav-bar utility. */
.lang-switch {
  position: relative;
  flex: none;
}
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(242, 235, 224, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              background 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
}
.lang-switch__btn:hover,
.lang-switch__btn[aria-expanded="true"] {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(242, 235, 224, 0.09);
  transform: translateY(-1px);
}
.lang-switch__globe {
  flex: none;
  color: currentColor;
}
.lang-switch__current { min-width: 1.6em; text-align: left; }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 132px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--bg-deep);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.lang-switch__opt {
  display: block;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.lang-switch__opt:hover { background: var(--surface-hover); color: var(--text-primary); }
.lang-switch__opt[aria-selected="true"] { color: var(--peach); }

/* =============================================================
   HERO — CSS-only animated gradient atmosphere (no video)
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* Half-and-half: deep ink/plum left → lavender-rose bright right */
  background:
    linear-gradient(100deg,
      #241431  0%,
      #2C1A38 22%,
      #3A2348 38%,
      #4A2E59 52%,
      #8A65A8 64%,
      #C2A4D6 76%,
      #DFC4D0 90%,
      #E5C9CE 100%
    );
  color: var(--text-primary);
  padding: 150px 0 120px;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Layered mesh — plum glow on left for depth, lavender + rose on right */
.hero__base {
  position: absolute; inset: 0;
  background:
    /* Soft plum bloom on the dark side, sets depth */
    radial-gradient(ellipse 50% 65% at 18% 55%, rgba(122, 84, 145, 0.55) 0%, rgba(122, 84, 145, 0) 60%),
    /* Strong lavender at upper right */
    radial-gradient(ellipse 55% 65% at 92% 22%, rgba(209, 169, 242, 0.95) 0%, rgba(209, 169, 242, 0) 55%),
    /* Rose accent lower right */
    radial-gradient(ellipse 50% 55% at 90% 82%, rgba(229, 186, 196, 0.70) 0%, rgba(229, 186, 196, 0) 60%),
    /* Soft mauve mid-band — smooths the transition zone */
    radial-gradient(ellipse 35% 70% at 60% 50%, rgba(182, 143, 216, 0.45) 0%, rgba(182, 143, 216, 0) 65%);
}

/* Slow rotating conic anchored on the bright right side */
.hero__aurora {
  position: absolute;
  top: -25%;
  right: -20%;
  bottom: -25%;
  left: 35%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(209, 169, 242, 0.55),
    rgba(122, 84, 145, 0.40),
    rgba(229, 186, 196, 0.50),
    rgba(91, 58, 107, 0.30),
    rgba(182, 143, 216, 0.50),
    rgba(229, 186, 196, 0.45),
    rgba(209, 169, 242, 0.55)
  );
  filter: blur(150px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: heroAurora 80s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes heroAurora {
  to { transform: rotate(360deg); }
}

/* Drifting blooms — lavender/rose anchored to the bright right, plum on the dark left */
.hero__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__bloom--lavender {
  /* Strong lavender on the right — the bright zone's main color */
  top: -15%; right: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(209, 169, 242, 0.65) 0%, rgba(209, 169, 242, 0) 60%);
  animation: heroDrift1 22s var(--ease-in-out) infinite alternate;
  mix-blend-mode: screen;
}
.hero__bloom--rose {
  bottom: -15%; right: -5%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle, rgba(229, 186, 196, 0.50) 0%, rgba(229, 186, 196, 0) 60%);
  animation: heroDrift2 27s var(--ease-in-out) -7s infinite alternate;
  mix-blend-mode: screen;
}
.hero__bloom--peach {
  /* Plum glow anchored to the dark left side for depth */
  top: 30%; left: -10%;
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle,
    rgba(122, 84, 145, 0.45) 0%,
    rgba(91, 58, 107, 0.25) 35%,
    rgba(91, 58, 107, 0) 65%);
  animation: heroDrift3 32s var(--ease-in-out) -14s infinite alternate;
  mix-blend-mode: screen;
}
.hero__bloom--plum {
  /* Soft mauve sitting at the transition between dark and bright */
  top: 35%; left: 50%;
  transform: translateX(-50%);
  width: 38vmax; height: 38vmax;
  background: radial-gradient(circle, rgba(182, 143, 216, 0.40) 0%, rgba(182, 143, 216, 0) 60%);
  animation: heroDrift4 26s var(--ease-in-out) -18s infinite alternate;
  mix-blend-mode: screen;
}
@keyframes heroDrift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-5%, 5%) scale(1.12); } }
@keyframes heroDrift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(7%, -6%) scale(1.18); } }
@keyframes heroDrift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-4%, -4%) scale(1.06); } }
@keyframes heroDrift4 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(4%, 5%) scale(1.14); } }

.hero__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 58%,
    transparent 100%
  );
  animation: heroShimmer 16s ease-in-out -8s infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
@keyframes heroShimmer {
  0%, 75% { transform: translateX(-110%); opacity: 0; }
  85%     { opacity: 1; }
  100%    { transform: translateX(110%); opacity: 0; }
}

.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.hero__darken {
  /* Cream fade at the bottom-right (blends into Positioning); subtle on the dark left */
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 14, 32, 0.00) 0%,
      rgba(26, 14, 32, 0.00) 70%,
      rgba(26, 14, 32, 0.45) 100%
    ),
    linear-gradient(180deg,
      rgba(255, 248, 232, 0.00) 0%,
      rgba(255, 248, 232, 0.00) 70%,
      rgba(255, 248, 232, 0.30) 100%
    );
  pointer-events: none;
}

.hero__rail {
  position: absolute;
  top: 62%;
  right: clamp(24px, 3.5vw, 44px);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  z-index: 3;
  pointer-events: none;
}
.hero__rail-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  white-space: nowrap;
  padding-right: 56px;
  position: relative;
}
.hero__rail-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--plum), transparent);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 40px;
}
.hero__eyebrow-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gradient-signature);
  box-shadow: 0 0 12px rgba(209, 169, 242, 0.6);
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 36px;
  color: var(--text-primary);
}
.hero__title-line { display: block; }
.hero__title-line--accent { margin-top: 4px; }
.hero__title-line--accent em {
  font-style: italic;
  font-weight: 300;
  /* Signature gradient reads warmly against the dark-left side */
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.08em;
  filter: drop-shadow(0 0 28px rgba(229, 186, 196, 0.35));
}

.hero__lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 52ch;
  margin: 0 0 48px;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__hairline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gradient-signature);
  z-index: 4;
  opacity: 0.9;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 5vw, 64px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  transition: color 0.3s var(--ease-out);
}
.hero__scroll:hover { color: var(--ink); }
.hero__scroll-line {
  width: 64px;
  height: 1px;
  background: rgba(31, 27, 46, 0.18);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--plum), transparent);
  animation: scrollLine 2.6s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0%   { left: -50%; }
  100% { left: 100%; }
}

/* =============================================================
   Atmospheric blooms (recurring across dark sections)
   ============================================================= */
.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.bloom--tl {
  top: -15%; left: -10%;
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle, rgba(209, 169, 242, 0.4) 0%, rgba(209, 169, 242, 0) 60%);
}
.bloom--tr {
  top: -18%; right: -10%;
  width: 42vmax; height: 42vmax;
  background: radial-gradient(circle, rgba(229, 186, 196, 0.38) 0%, rgba(229, 186, 196, 0) 60%);
}
.bloom--br {
  bottom: -20%; right: -10%;
  width: 50vmax; height: 50vmax;
  background: radial-gradient(circle,
    rgba(242, 211, 157, 0.45) 0%,
    rgba(251, 232, 115, 0.28) 30%,
    rgba(251, 232, 115, 0) 65%);
}
.bloom--bl {
  bottom: -20%; left: -10%;
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle, rgba(122, 84, 145, 0.50) 0%, rgba(122, 84, 145, 0) 60%);
}
.bloom--soft { opacity: 0.7; }
.bloom--lavender-strong {
  background: radial-gradient(circle, rgba(209, 169, 242, 0.55) 0%, rgba(209, 169, 242, 0) 60%);
}
.bloom--rose-strong {
  background: radial-gradient(circle, rgba(229, 186, 196, 0.50) 0%, rgba(229, 186, 196, 0) 60%);
}

/* =============================================================
   SHEEN — reusable "metallic flash"
   A light streak that enters off-screen, sweeps across a section
   on the diagonal, exits the far side, then pauses and repeats.
   Same idea as the intro splash, distilled into a drop-in element.

   Usage: place <div class="sheen ..." aria-hidden="true"></div>
   inside any position:relative section (alongside the blooms).
   Mix and match modifiers for variety:
     direction : (default L→R)  .sheen--rev (R→L)
     angle     : .sheen--steep  .sheen--lean
     width     : .sheen--thin   .sheen--wide
     tint      : .sheen--gold   .sheen--lilac  .sheen--rose
     cadence   : .sheen--slow   .sheen--fast
     surface   : .sheen--ink    (for light / cream sections)
   Stagger multiple sheens with style="--sheen-delay: 2s".
   ============================================================= */
.sheen {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22vmax;                 /* band thickness */
  height: 280%;                  /* tall enough to span when tilted */
  pointer-events: none;
  z-index: 0;                    /* behind content, like .bloom */
  opacity: 0;
  filter: blur(6px);
  mix-blend-mode: screen;        /* lightens — reads on dark surfaces */
  will-change: transform, opacity;
  /* glint colours are theme-able per tint modifier */
  --sheen-core:  rgba(255, 255, 255, 0.30);  /* main bright glint */
  --sheen-edge:  rgba(209, 169, 242, 0.06);
  --sheen-trail: rgba(255, 255, 255, 0.10);  /* trailing softer glint */
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 32%,
    rgba(255, 255, 255, 0.05) 42%,
    var(--sheen-core) 50%,
    var(--sheen-edge) 58%,
    var(--sheen-trail) 66%,
    transparent 76%,
    transparent 100%
  );
  animation: sheenSweep 9s cubic-bezier(0.45, 0, 0.25, 1) infinite;
  animation-delay: var(--sheen-delay, 0s);
}

/* --- Direction --- */
.sheen--rev { animation-name: sheenSweepRev; }

/* --- Angle (default tilt is 18deg) --- */
.sheen--steep { --sheen-angle: 8deg; }
.sheen--lean  { --sheen-angle: 30deg; }

/* --- Band width --- */
.sheen--thin { width: 13vmax; }
.sheen--wide { width: 34vmax; }

/* --- Tints --- */
.sheen--gold {
  --sheen-core:  rgba(251, 232, 115, 0.26);
  --sheen-edge:  rgba(242, 211, 157, 0.10);
  --sheen-trail: rgba(246, 223, 192, 0.10);
}
.sheen--lilac {
  --sheen-core:  rgba(209, 169, 242, 0.32);
  --sheen-edge:  rgba(182, 143, 216, 0.10);
  --sheen-trail: rgba(209, 169, 242, 0.10);
}
.sheen--rose {
  --sheen-core:  rgba(229, 186, 196, 0.30);
  --sheen-edge:  rgba(229, 186, 196, 0.10);
  --sheen-trail: rgba(229, 186, 196, 0.10);
}

/* --- Cadence --- */
.sheen--slow { animation-duration: 13s; }
.sheen--fast { animation-duration: 6.5s; }

/* --- For light / cream sections: darken (multiply) instead of lighten --- */
.sheen--ink {
  mix-blend-mode: multiply;
  filter: blur(8px);
  --sheen-core:  rgba(122, 84, 145, 0.14);
  --sheen-edge:  rgba(122, 84, 145, 0.05);
  --sheen-trail: rgba(122, 84, 145, 0.07);
}

/* L→R: enters from the left, crosses over the first ~half of the
   cycle, then holds off-screen right until the loop restarts. */
@keyframes sheenSweep {
  0%   { transform: translate(-50%, -50%) rotate(var(--sheen-angle, 18deg)) translateX(-130vw); opacity: 0; }
  5%   { opacity: 1; }
  42%  { opacity: 1; }
  48%  { transform: translate(-50%, -50%) rotate(var(--sheen-angle, 18deg)) translateX(130vw);  opacity: 0; }
  100% { transform: translate(-50%, -50%) rotate(var(--sheen-angle, 18deg)) translateX(130vw);  opacity: 0; }
}
/* R→L: mirror of the above (negative tilt, reversed travel). */
@keyframes sheenSweepRev {
  0%   { transform: translate(-50%, -50%) rotate(calc(-1 * var(--sheen-angle, 18deg))) translateX(130vw);  opacity: 0; }
  5%   { opacity: 1; }
  42%  { opacity: 1; }
  48%  { transform: translate(-50%, -50%) rotate(calc(-1 * var(--sheen-angle, 18deg))) translateX(-130vw); opacity: 0; }
  100% { transform: translate(-50%, -50%) rotate(calc(-1 * var(--sheen-angle, 18deg))) translateX(-130vw); opacity: 0; }
}

/* =============================================================
   POSITIONING — light champagne spread
   ============================================================= */
.positioning {
  position: relative;
  padding: clamp(130px, 17vw, 220px) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(209, 169, 242, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(242, 211, 157, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-blush) 50%, var(--cream) 100%);
  color: var(--ink);
  overflow: hidden;
}
.positioning::before,
.positioning::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.65;
  z-index: 3;
  box-shadow: 0 0 20px rgba(229, 186, 196, 0.5);
}
.positioning::before { top: 0; }
.positioning::after  { bottom: 0; }

/* Atmospheric blooms inside the light spread */
.positioning__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.positioning .section-mark {
  color: var(--soft-charcoal);
  display: inline-flex;
}
.positioning .display { color: var(--ink); }
.positioning .display em {
  --text-grad: var(--gradient-on-light);
  filter: drop-shadow(0 0 18px rgba(209, 169, 242, 0.35));
}
.positioning .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: var(--soft-charcoal);
}
.positioning .dropcap {
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 36px rgba(229, 186, 196, 0.4);
}

/* Small decorative corner flourishes */
.positioning__inner::before,
.positioning__inner::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid var(--hairline-warm);
  pointer-events: none;
  opacity: 0.6;
}
.positioning__inner::before {
  top: -40px;
  left: -20px;
  border-right: 0;
  border-bottom: 0;
}
.positioning__inner::after {
  bottom: -40px;
  right: -20px;
  border-left: 0;
  border-top: 0;
}

/* =============================================================
   TRACK RECORD (stats) — dark cards with gradient numbers
   ============================================================= */
.track {
  position: relative;
  padding: clamp(110px, 14vw, 170px) 0;
  background: var(--bg-deep);
  overflow: hidden;
  isolation: isolate;
}
.track::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 10% 30%, rgba(209, 169, 242, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 70%, rgba(229, 186, 196, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.track > .container { position: relative; z-index: 1; }

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stat {
  position: relative;
  padding: clamp(48px, 5vw, 72px) clamp(32px, 3.4vw, 52px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    linear-gradient(155deg, rgba(209, 169, 242, 0.04) 0%, rgba(255, 255, 255, 0) 70%),
    rgba(255, 255, 255, 0.015);
  transition: background 0.6s var(--ease-out);
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-wash);
  opacity: 0.5;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.stat::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 32%;
  background: var(--gradient-signature);
  border-radius: 2px;
  transition: height 0.7s var(--ease-out);
  box-shadow: 0 0 12px rgba(229, 186, 196, 0.5);
}
.stat:hover {
  background:
    linear-gradient(155deg, rgba(209, 169, 242, 0.08) 0%, rgba(255, 255, 255, 0) 70%),
    rgba(255, 255, 255, 0.04);
}
.stat:hover::before { opacity: 1; }
.stat:hover::after { height: 70%; }

.stat__roman {
  position: absolute;
  top: clamp(22px, 2.4vw, 32px);
  right: clamp(26px, 2.6vw, 36px);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(30px, 2.6vw, 42px);
  letter-spacing: 0.04em;
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.6;
  z-index: 1;
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.stat:hover .stat__roman { opacity: 1; transform: scale(1.06); }

.stat__figure {
  margin: 0 0 26px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.stat__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(66px, 7vw, 102px);
  line-height: 0.9;
  background: var(--gradient-signature);
  background-size: 200% 100%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 0 30px rgba(209, 169, 242, 0.3));
  transition: background-position 1.2s var(--ease-out);
}
.stat:hover .stat__num { background-position: 100% 0%; }
.stat__num--word {
  font-size: clamp(34px, 3.4vw, 50px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.stat__unit {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px);
  color: var(--peach);
}
.stat__label {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 34ch;
  position: relative;
  z-index: 1;
}

/* =============================================================
   CLIENTS / PARTNERS — light cream spread
   ============================================================= */
.clients {
  position: relative;
  padding: clamp(120px, 15vw, 180px) 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(209, 169, 242, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(242, 211, 157, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 50%, var(--cream) 100%);
  color: var(--ink);
  overflow: hidden;
}
.clients::before,
.clients::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.65;
  z-index: 3;
  box-shadow: 0 0 20px rgba(229, 186, 196, 0.5);
}
.clients::before { top: 0; }
.clients::after  { bottom: 0; }

.clients .section-mark { color: var(--soft-charcoal); }
.clients .display { color: var(--ink); }
.clients .display em { --text-grad: var(--gradient-on-light); }

.logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-warm);
  border-left: 1px solid var(--hairline-warm);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 60px -40px rgba(31, 27, 46, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.logos::before, .logos::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.55;
}
.logos::before { top: -1px; }
.logos::after { bottom: -1px; }
.logos li {
  position: relative;
  border-right: 1px solid var(--hairline-warm);
  border-bottom: 1px solid var(--hairline-warm);
  height: clamp(130px, 14vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #FFFFFF;
  z-index: 0;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              z-index 0s linear 0.5s;
}
.logos li:hover {
  z-index: 2;
  transform: translateY(-6px) scale(1.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(229, 186, 196, 0.55),
    0 28px 56px -22px rgba(91, 58, 107, 0.40),
    0 14px 40px -18px rgba(251, 232, 115, 0.30);
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              z-index 0s linear 0s;
}
.logos img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.55s var(--ease-out);
}
.logos li:hover img {
  transform: scale(1.06);
}

/* =============================================================
   PLATFORM (DARK) — interactive disciplines accordion
   ============================================================= */
.platform {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  /* Deepens downward so it pours seamlessly into the deepest-dark CTA below
     (the cream Principles section that used to sit between them is gone). */
  background: linear-gradient(180deg,
    var(--bg-raised) 0%,
    var(--bg-mid) 45%,
    var(--bg-deep) 78%,
    var(--bg-deepest) 100%);
  color: var(--text-primary);
  overflow: hidden;
  isolation: isolate;
}
.platform::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.6;
  z-index: 2;
}
.platform__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.platform__bloom--lavender {
  top: -22%; left: -10%;
  width: 55vmax; height: 55vmax;
  background: radial-gradient(circle, rgba(209, 169, 242, 0.40) 0%, rgba(209, 169, 242, 0) 65%);
  animation: bloomDrift 30s var(--ease-in-out) infinite alternate;
}
.platform__bloom--rose {
  bottom: -28%; right: -10%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle,
    rgba(229, 186, 196, 0.30) 0%,
    rgba(242, 211, 157, 0.30) 35%,
    rgba(251, 232, 115, 0.18) 55%,
    rgba(251, 232, 115, 0) 70%);
  animation: bloomDrift 34s var(--ease-in-out) -10s infinite alternate;
}
@keyframes bloomDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, -3%) scale(1.10); }
}
.platform__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.platform > .container { position: relative; z-index: 2; }

/* ---- Disciplines: interactive accordion -------------------------------- */
.disciplines {
  border-top: 1px solid var(--hairline);
}
.discipline {
  position: relative;
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
/* gradient hairline that draws across the top of the open row */
.discipline::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-signature);
  box-shadow: 0 0 12px rgba(209, 169, 242, 0.5);
  transition: width 0.8s var(--ease-out);
  z-index: 2;
}
.discipline.is-open::before { width: 100%; }

.discipline__heading { margin: 0; }
.discipline__trigger {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  width: 100%;
  padding: clamp(30px, 3.4vw, 52px) clamp(8px, 2vw, 28px);
  background: none;
  border: 0;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.5s var(--ease-out);
}
.discipline__trigger:hover { background: rgba(209, 169, 242, 0.04); }
.discipline.is-open .discipline__trigger { background: rgba(209, 169, 242, 0.05); }
.discipline__trigger:focus-visible {
  outline: none;
  background: rgba(209, 169, 242, 0.08);
  box-shadow: inset 0 0 0 1px rgba(209, 169, 242, 0.45);
}

.discipline__index {
  flex: none;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.4;
  transition: opacity 0.6s var(--ease-out);
}
.discipline__trigger:hover .discipline__index,
.discipline.is-open .discipline__index { opacity: 0.9; }

.discipline__name {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--text-secondary);
  transition: color 0.5s var(--ease-out);
}
.discipline__trigger:hover .discipline__name,
.discipline.is-open .discipline__name { color: var(--text-primary); }

/* circular +/- indicator */
.discipline__icon {
  flex: none;
  position: relative;
  width: clamp(30px, 3vw, 40px);
  height: clamp(30px, 3vw, 40px);
  border-radius: 50%;
  border: 1px solid var(--hairline);
  transition: border-color 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.discipline__icon::before,
.discipline__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: var(--text-primary);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease-out);
}
.discipline__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.discipline:hover .discipline__icon { border-color: rgba(209, 169, 242, 0.4); }
.discipline.is-open .discipline__icon {
  border-color: rgba(209, 169, 242, 0.6);
  transform: rotate(180deg);
}
.discipline.is-open .discipline__icon::after { opacity: 0; }

/* collapsible panel — animated via the grid-rows 0fr/1fr technique */
.discipline__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-out);
}
.discipline.is-open .discipline__panel { grid-template-rows: 1fr; }
.discipline__panel-in {
  overflow: hidden;
  min-height: 0;
}
.discipline__panel-content {
  max-width: 64ch;
  padding: 4px clamp(8px, 2vw, 28px) clamp(40px, 4.2vw, 60px)
           clamp(64px, 8vw, 132px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease-out) 0.12s,
              transform 0.6s var(--ease-out) 0.12s;
}
.discipline.is-open .discipline__panel-content {
  opacity: 1;
  transform: none;
}
.discipline__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--lavender);
  margin: 0 0 16px;
}
.discipline__copy {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.discipline__copy + .discipline__copy {
  margin-top: 1rem;
}

.discipline__services {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary, var(--text-secondary));
  opacity: 0.78;
}

@media (prefers-reduced-motion: reduce) {
  .discipline__panel,
  .discipline__panel-content,
  .discipline::before,
  .discipline__icon,
  .discipline__index,
  .discipline__name { transition-duration: 0.001ms !important; }
}

/* =============================================================
   EDITORIAL BANNER CAROUSEL
   ============================================================= */
.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-deepest);
  isolation: isolate;
  user-select: none;
}
.editorial__hairline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  z-index: 5;
  box-shadow: 0 0 24px rgba(209, 169, 242, 0.45);
}
.editorial__hairline--top { top: 0; }
.editorial__hairline--bottom { bottom: 0; }

.banner__viewport {
  position: relative;
  height: clamp(460px, 78vh, 780px);
  overflow: hidden;
  cursor: pointer;
}
.banner__track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 1.1s cubic-bezier(0.65, 0, 0.18, 1);
  will-change: transform;
}
.banner__slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) brightness(0.82);
  transform: scale(1.04);
  transition: transform 8s linear;
  will-change: transform;
}
/* Slow ken-burns drift on the active slide */
.banner__slide.is-active img {
  transform: scale(1.14) translate(-1%, -0.5%);
}

/* Subtle dark vignette at the bottom for caption legibility */
.banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 14, 32, 0.15) 0%,
      rgba(26, 14, 32, 0.00) 25%,
      rgba(26, 14, 32, 0.00) 55%,
      rgba(26, 14, 32, 0.65) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Caption (bottom-left): counter + rule + descriptor */
.banner__caption {
  position: absolute;
  bottom: clamp(36px, 5vw, 68px);
  left: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 3;
  pointer-events: none;
  max-width: min(70%, 720px);
}
.banner__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-serif);
  line-height: 1;
}
.banner__counter-current {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 0 22px rgba(229, 186, 196, 0.45));
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.banner__counter-divider {
  font-size: clamp(16px, 1.4vw, 20px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 2px;
}
.banner__counter-total {
  font-size: clamp(14px, 1.2vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.banner__caption-rule {
  display: inline-block;
  width: clamp(36px, 5vw, 64px);
  height: 1px;
  background: var(--gradient-signature);
  box-shadow: 0 0 12px rgba(229, 186, 196, 0.6);
}
.banner__caption-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 26px);
  color: var(--text-primary);
  letter-spacing: -0.005em;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.banner.is-transitioning .banner__counter-current,
.banner.is-transitioning .banner__caption-text {
  opacity: 0;
  transform: translateY(6px);
}

/* Controls (bottom-right): prev / dots / next */
.banner__controls {
  position: absolute;
  bottom: clamp(36px, 5vw, 68px);
  right: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}
.banner__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(26, 14, 32, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.banner__nav:hover {
  background: rgba(26, 14, 32, 0.55);
  border-color: rgba(255, 255, 255, 0.65);
  transform: scale(1.06);
  box-shadow: 0 8px 24px -12px rgba(209, 169, 242, 0.45);
}
.banner__nav:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 3px;
}

.banner__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner__dot {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width 0.55s var(--ease-out),
              background 0.55s var(--ease-out),
              box-shadow 0.55s var(--ease-out);
}
.banner__dot:hover { background: rgba(255, 255, 255, 0.55); }
.banner__dot.is-active {
  width: 52px;
  background: var(--gradient-signature);
  box-shadow: 0 0 14px rgba(229, 186, 196, 0.55);
}
.banner__dot:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 4px;
}

/* Bottom progress bar — fills over the auto-advance interval */
.banner__progress {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 4;
  overflow: hidden;
}
.banner__progress-bar {
  height: 100%;
  width: 0;
  background: var(--gradient-signature);
  box-shadow: 0 0 14px rgba(229, 186, 196, 0.6);
  transition: width 6s linear;
}
.banner.is-paused .banner__progress-bar {
  transition: width 0.3s var(--ease-out);
}

/* Touch / swipe hint */
@media (hover: none) {
  .banner__nav { display: none; }
}

@media (max-width: 720px) {
  .banner__viewport { height: clamp(380px, 60vh, 520px); }
  .banner__caption {
    bottom: 88px;
    right: clamp(20px, 5vw, 64px);
    max-width: none;
    flex-wrap: wrap;
    gap: 14px;
  }
  .banner__caption-rule { display: none; }
  .banner__controls {
    bottom: 28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* =============================================================
   VALUES — light champagne spread with premium gradient-edged cards
   ============================================================= */
.values {
  position: relative;
  padding: clamp(130px, 17vw, 220px) 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(209, 169, 242, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(242, 211, 157, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(229, 186, 196, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-blush) 50%, var(--cream) 100%);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.values::before,
.values::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.65;
  z-index: 3;
  box-shadow: 0 0 20px rgba(229, 186, 196, 0.5);
}
.values::before { top: 0; }
.values::after  { bottom: 0; }

.values > .container { position: relative; z-index: 1; }
.values .section-mark { color: var(--soft-charcoal); }
.values .display { color: var(--ink); }
.values .display em { --text-grad: var(--gradient-on-light); }
.values .section-head__lede { color: var(--soft-charcoal); }

.value-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: 1080px;
  margin-inline: auto;
}
.value {
  position: relative;
  padding: clamp(48px, 5vw, 72px) clamp(32px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 24px 56px -36px rgba(31, 27, 46, 0.22);
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              background 0.5s var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
/* Gradient stroke border via mask trick — multi-color frame on light */
.value::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(209, 169, 242, 0.55) 0%,
    rgba(229, 186, 196, 0.45) 35%,
    rgba(242, 211, 157, 0.50) 65%,
    rgba(251, 232, 115, 0.30) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  z-index: 0;
}
.value::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-signature);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 0.7s var(--ease-out);
  box-shadow: 0 0 18px rgba(229, 186, 196, 0.55);
  z-index: 1;
}
.value:hover {
  transform: translateY(-6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 32px 64px -28px rgba(91, 58, 107, 0.30),
    0 16px 40px -20px rgba(251, 232, 115, 0.35);
}
.value:hover::before { transform: scaleX(1); }

.value__num {
  position: absolute;
  top: clamp(28px, 3vw, 40px);
  right: clamp(28px, 3vw, 40px);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2vw, 32px);
  background: var(--gradient-signature);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.05em;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(229, 186, 196, 0.4));
}
.value__rule {
  width: 44px;
  height: 1px;
  background: var(--gradient-signature);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 8px rgba(229, 186, 196, 0.6);
}
.value__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 2;
}
.value__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--soft-charcoal);
  margin: 0;
  max-width: 38ch;
  position: relative;
  z-index: 2;
}

/* =============================================================
   CTA (DEEPEST DARK) — most dramatic gradient bloom
   ============================================================= */
.cta {
  position: relative;
  padding: clamp(120px, 16vw, 200px) 0;
  background: var(--bg-deepest);
  color: var(--text-primary);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.7;
  z-index: 2;
  box-shadow: 0 0 24px rgba(229, 186, 196, 0.5);
}
.cta__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.cta__bloom--lavender {
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 75vmax; height: 75vmax;
  background: radial-gradient(circle, rgba(209, 169, 242, 0.50) 0%, rgba(209, 169, 242, 0) 60%);
  animation: bloomDrift 32s var(--ease-in-out) infinite alternate;
}
.cta__bloom--rose {
  bottom: -40%; left: 50%;
  transform: translateX(-50%);
  width: 80vmax; height: 80vmax;
  background: radial-gradient(circle,
    rgba(229, 186, 196, 0.35) 0%,
    rgba(242, 211, 157, 0.40) 25%,
    rgba(251, 232, 115, 0.30) 45%,
    rgba(251, 232, 115, 0) 65%);
  animation: bloomDrift 36s var(--ease-in-out) -12s infinite alternate;
}
.cta__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta .section-mark { display: inline-flex; }
.cta__title {
  color: var(--text-primary);
  margin-bottom: 36px;
}
.cta__title em {
  /* inherits the flash + signature gradient from .display em */
  filter: drop-shadow(0 0 32px rgba(229, 186, 196, 0.4));
}
.cta .lede {
  margin-inline: auto;
  margin-bottom: 44px;
  max-width: 48ch;
}
.cta__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.cta__meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta__meta-rule {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient-signature);
  box-shadow: 0 0 10px rgba(229, 186, 196, 0.6);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  position: relative;
  background: var(--bg-deepest);
  color: var(--text-secondary);
  padding: clamp(72px, 9vw, 112px) 0 36px;
  font-size: 14px;
  overflow: hidden;
}
.footer__top-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-signature);
  opacity: 0.45;
  box-shadow: 0 0 16px rgba(209, 169, 242, 0.3);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hairline-soft);
}
.footer__brand { max-width: 320px; }
.footer__logo {
  height: 64px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(209, 169, 242, 0.35));
}
.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav h4, .footer__contact h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 0 12px;
  position: relative;
  padding-bottom: 12px;
}
.footer__nav h4::after, .footer__contact h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 1px;
  background: var(--gradient-signature);
}
.footer__nav a, .footer__contact a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out);
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--text-primary); }
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.footer__social a:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  color: var(--text-faint);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer__base a { color: var(--text-muted); }
.footer__base a:hover { color: var(--text-primary); }

/* =============================================================
   Scroll reveal
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 900px) {
  .logos { grid-template-columns: repeat(4, 1fr); }
  .discipline__trigger { gap: clamp(16px, 4vw, 28px); }
  .discipline__index { font-size: clamp(36px, 9vw, 56px); }
  .discipline__name { font-size: clamp(22px, 5.5vw, 30px); }
  .discipline__panel-content { padding-left: clamp(24px, 6vw, 48px); }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  /* Between the mobile-menu breakpoint (720px) and here, the nav still
     shows the full link row — tighten the gaps so "Our Work" / "Book a
     Meeting" don't wrap onto a second line. */
  .nav__menu { gap: 18px; }
  .nav__right { gap: 14px; }
  .nav__menu a, .lang-switch__btn { white-space: nowrap; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__right { gap: 10px; }
  .lang-switch__menu { right: 0; left: auto; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-deep);
    box-shadow: 0 24px 40px -24px rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav__menu a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline-soft);
    color: var(--text-primary) !important;
    /* 11px tracked-out uppercase reads as a desktop utility label; in a
       full-width drawer it is the primary navigation and should carry
       weight to match */
    font-size: 13px;
  }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__cta {
    margin-top: 12px;
    padding: 14px 18px !important;
    width: 100%;
  }
  .nav__logo { height: 38px; max-width: 180px; }
  /* the logo is the home link and was a 38px-tall target */
  .nav__brand { padding: 3px 0; }

  .hero { padding: 140px 0 110px; align-items: center; }
  .hero__title { font-size: clamp(44px, 13vw, 64px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
  .hero__rail { display: none; }

  .stats { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .discipline__trigger { gap: 16px; padding-left: 0; padding-right: 0; }
  .discipline__index { font-size: clamp(30px, 9vw, 44px); }
  .discipline__name { font-size: clamp(20px, 6.4vw, 26px); }
  .discipline__icon { width: 28px; height: 28px; }
  .discipline__panel-content { padding-left: clamp(14px, 5vw, 28px); padding-right: 0; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  /* ---- Touch ergonomics ----------------------------------------------
     Everything below is sized for a fingertip rather than a cursor. The
     44px floor is the WCAG 2.5.5 / iOS HIG target; these were the only
     controls under it. Desktop keeps its original proportions — every
     rule here lives inside this breakpoint. */

  /* was 40x31 — the bars stay 24px, the button grows around them */
  .nav__toggle {
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-right: -10px; /* keep the bars on their original optical line */
  }
  .lang-switch__btn { min-height: 44px; padding: 6px 14px; }

  /* footer links were 23px tall and 14px apart: easy to mis-tap. Trade the
     flex gap for padding so each link becomes its own 45px row and the
     overall column height barely moves. */
  .footer__nav, .footer__contact { gap: 2px; }
  /* >, not a descendant selector: .footer__contact also wraps the nested
     .footer__social icon links, which need to stay inline-flex (see base
     rule) to stay centered in their circles — this must only touch the
     direct "Connect" email link. */
  .footer__nav a, .footer__contact > a { display: block; padding: 11px 0; }

  /* 10px uppercase at 0.28em is legible on a monitor, not in the hand */
  .footer__nav h4, .footer__contact h4 { font-size: 12px; letter-spacing: 0.2em; }

  .footer__social a { width: 44px; height: 44px; }
}

/* =============================================================
   Chinese (zh-Hans) locale corrections — i18n.js sets this on <html>
   when the language switcher is set to 中文.
   The wide uppercase tracking used throughout for Latin micro-labels
   (nav, eyebrows, pill buttons, form labels, footer headings, filter
   chips) is a Latin-only convention; applied to CJK glyphs it reads as
   broken, uneven gaps rather than intentional letterspacing, so drop
   it back to normal for every element once zh is active. `!important`
   is required to beat the per-element letter-spacing declarations
   (one of which — .nav__cta — is itself already !important).
   Also loosen the ~0.98 tight display line-height used on a couple of
   large serif headings: CJK glyphs sit in a taller full-width box than
   Latin ascender/descender metrics, so that leading was clipping the
   tops of Chinese characters by a few pixels. */
:lang(zh-Hans) * {
  letter-spacing: normal !important;
}
:lang(zh-Hans) .hero-six__title,
:lang(zh-Hans) .subhero__title {
  line-height: 1.2;
}
:lang(zh-Hans) .mstat__value {
  line-height: 1.15;
}
