/* ============================================================
   NORTH OF EDEN — One-Page Flagship
   Mounted on colors_and_type.css tokens.
   Fully responsive: 1280 → 1024 → 768 → 480.
   ============================================================ */
@import url("colors_and_type.css");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg-1); color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
::selection { background: var(--noe-gold); color: var(--noe-deep); }

/* ============================================================
   REVEAL — scroll-driven entrances (reduced-motion safe)
   ============================================================ */
.rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .rv.is-in { opacity: 1; transform: none; }
  .rv--d1 { transition-delay: 120ms; }
  .rv--d2 { transition-delay: 240ms; }
  .rv--d3 { transition-delay: 360ms; }
}

/* ============================================================
   HEADER — transparent over hero, solidifies on scroll
   ============================================================ */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background 360ms, box-shadow 360ms, border-color 360ms;
  border-bottom: 1px solid transparent;
}
.hdr__inner {
  max-width: var(--max-content); margin: 0 auto;
  padding: 20px var(--page-x);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.hdr__logo img { height: 74px; width: auto; display: block; }
.hdr__logo .logo-dark  { display: none; }
.hdr__logo .logo-light { display: block; }

.hdr__nav { display: flex; align-items: center; gap: 34px; }
.hdr__nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: rgba(247,243,236,0.85); text-decoration: none;
  transition: color 200ms; position: relative; padding: 4px 0;
  white-space: nowrap;
}
.hdr__nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--noe-gold);
  transition: right 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hdr__nav a:hover { color: var(--noe-gold); }
.hdr__nav a:hover::after { right: 0; }

.hdr__cta {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--noe-bone); text-decoration: none;
  border: 1px solid rgba(247,243,236,0.4);
  padding: 12px 20px; border-radius: 2px;
  transition: all 220ms;
  white-space: nowrap;
}
.hdr__cta:hover { background: var(--noe-gold); border-color: var(--noe-gold); color: var(--noe-deep); }

/* Solid state after scrolling past hero */
.hdr.is-solid {
  background: rgba(248, 244, 237, 0.55);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  border-bottom-color: rgba(185, 144, 85, 0.28);
  box-shadow: 0 8px 34px rgba(31, 40, 33, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hdr.is-solid .hdr__nav a { color: var(--fg-1); }
.hdr.is-solid .hdr__nav a:hover { color: var(--noe-gold); }
.hdr.is-solid .hdr__cta { color: var(--noe-deep); border-color: var(--noe-gold); }
.hdr.is-solid .hdr__cta:hover { background: var(--noe-gold); color: var(--noe-deep); }
.hdr.is-solid .hdr__logo .logo-dark  { display: block; filter: brightness(0); }
.hdr.is-solid .hdr__logo .logo-light { display: none; }

/* Over dark/green sections while scrolled — dark glass + white logo */
.hdr.is-solid.over-dark {
  background: rgba(28, 36, 30, 0.55);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  border-bottom-color: rgba(185, 144, 85, 0.30);
  box-shadow: 0 8px 34px rgba(0,0,0,0.22), inset 0 1px 0 rgba(247,243,236,0.10);
}
.hdr.is-solid.over-dark .hdr__nav a { color: rgba(247,243,236,0.86); }
.hdr.is-solid.over-dark .hdr__nav a:hover { color: var(--noe-gold); }
.hdr.is-solid.over-dark .hdr__cta { color: var(--noe-bone); border-color: rgba(247,243,236,0.4); }
.hdr.is-solid.over-dark .hdr__cta:hover { background: var(--noe-gold); border-color: var(--noe-gold); color: var(--noe-deep); }
.hdr.is-solid.over-dark .hdr__logo .logo-dark  { display: none; }
.hdr.is-solid.over-dark .hdr__logo .logo-light { display: block; }
.hdr.is-solid.over-dark .hdr__burger span { background: var(--noe-bone); }

/* Burger — hidden on desktop */
.hdr__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 7px;
  padding: 0;
}
.hdr__burger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--noe-bone);
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1), opacity 240ms, background 360ms;
}
.hdr.is-solid .hdr__burger span { background: var(--noe-deep); }
.hdr__burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); background: var(--noe-bone); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); background: var(--noe-bone); }

/* Full-screen mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 80;
  background: var(--noe-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 88px 24px 48px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 380ms cubic-bezier(0.22,1,0.36,1);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__link {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(27px, 7.5vw, 40px); line-height: 1.3;
  color: var(--noe-bone); text-decoration: none;
  transition: color 220ms;
}
.menu__link:hover { color: var(--noe-gold); }
.menu__link em { color: var(--noe-gold); font-style: italic; }
.menu__stamp {
  margin-top: 28px;
  font-family: var(--font-body); font-weight: 500; font-size: 10px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--noe-gold);
}

/* ============================================================
   HERO — full viewport, parallax leaf field
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh + 72px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 160px var(--page-x) 120px;
  background: var(--noe-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -12% 0;
  background-image: url("assets/imagery/leaf-header.jpg");
  background-size: cover; background-position: center;
  z-index: 0;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__bg { animation: heroDrift 28s ease-in-out infinite alternate; }
  @keyframes heroDrift {
    from { transform: scale(1.0) translateY(0); }
    to   { transform: scale(1.06) translateY(-1.6%); }
  }
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center,
      rgba(31,40,33,0.30) 0%,
      rgba(31,40,33,0.55) 55%,
      rgba(31,40,33,0.78) 100%);
}
.hero__inner { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; }
.hero__eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(10px, 1.2vw, 11px); letter-spacing: var(--tracking-widest);
  text-transform: uppercase; color: var(--noe-gold);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: clamp(28px, 4vh, 44px);
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; height: 1px; width: clamp(20px, 4vw, 40px); background: currentColor;
}
.hero__headline {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 8.2vw, 104px);
  line-height: 1.03; letter-spacing: -0.02em;
  color: var(--noe-bone); margin: 0;
  text-wrap: balance;
}
.hero__headline em { font-style: italic; color: var(--noe-gold); }
.hero__sub {
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.65;
  color: rgba(247,243,236,0.74);
  max-width: 540px; margin: clamp(24px, 3.5vh, 36px) auto clamp(32px, 5vh, 48px);
  text-wrap: pretty;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 26px; border-radius: 2px;
  border: 1px solid transparent; background: transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 12px;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; color: var(--fg-1);
}
.btn .arrow { display: inline-block; transition: transform 220ms cubic-bezier(0.4,0,0.2,1); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--gold  { background: var(--noe-gold); color: var(--noe-deep); }
.btn--gold:hover { background: var(--noe-gold-soft); }
.btn--ghost { color: var(--noe-bone); border-color: rgba(247,243,236,0.4); }
.btn--ghost:hover { border-color: var(--noe-gold); color: var(--noe-gold); }
.btn--ink   { background: var(--noe-deep); color: var(--noe-bone); }
.btn--ink:hover { background: var(--noe-deep-soft); }
.btn--line  { color: var(--noe-deep); border-color: var(--noe-gold); }
.btn--line:hover { background: var(--noe-gold-soft); }

.hero__scroll {
  position: absolute; bottom: 36px; left: 0; right: 0; margin: 0 auto; width: max-content;
  z-index: 1;
  font-family: var(--font-accent); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(247,243,236,0.55);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-decoration: none;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--noe-gold), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll::after { animation: scrollPulse 2.4s ease-in-out infinite; }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
  }
}

/* ============================================================
   MARQUEE — typewriter stamp ribbon
   ============================================================ */
.marquee {
  background: var(--noe-deep);
  border-top: 1px solid var(--rule-on-deep);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 0; }
.marquee__seq {
  display: inline-flex; align-items: center;
  font-family: var(--font-accent); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--noe-gold);
  padding-right: 0;
}
.marquee__seq .dot { margin: 0 28px; opacity: 0.55; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 38s linear infinite; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.sec { padding: clamp(88px, 12vw, 150px) var(--page-x); }
.sec--deep { background: var(--noe-deep); color: var(--noe-bone); }
.sec--warm { background: var(--noe-clay-soft); }
.sec__inner { max-width: var(--max-content); margin: 0 auto; }

.sec-head { max-width: 760px; margin: 0 auto clamp(56px, 7vw, 88px); text-align: center; }
.sec-head__num {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.24em;
  color: var(--noe-gold); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 16px;
}
.sec-head__num::before, .sec-head__num::after {
  content: ""; height: 1px; width: 28px; background: currentColor; opacity: 0.6;
}
.sec-head__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 60px); line-height: 1.06;
  letter-spacing: -0.016em; margin: 0 0 20px;
  text-wrap: balance;
}
.sec-head__title em { font-style: italic; color: var(--noe-gold); }
.hero-break { display: none; }
.sec-head__lead {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.65; color: var(--fg-2);
  margin: 0; text-wrap: pretty;
}
.sec--deep .sec-head__lead { color: var(--fg-on-deep-muted); }
.sec--deep .sec-head__title { color: var(--noe-bone); }

/* ============================================================
   01 · PRACTICE — four pillars
   ============================================================ */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule-1); border-left: 1px solid var(--rule-1);
}
.pillar {
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 30px) clamp(24px, 2.6vw, 36px);
  border-right: 1px solid var(--rule-1); border-bottom: 1px solid var(--rule-1);
  display: flex; flex-direction: column;
  background: var(--bg-1);
  transition: background 240ms;
  position: relative;
}
.pillar:hover { background: var(--noe-bone-soft); }
.pillar__letter {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 40px; line-height: 1; color: var(--noe-gold);
  margin-bottom: 22px;
}
.pillar__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(21px, 2vw, 26px); line-height: 1.18; letter-spacing: -0.01em;
  margin: 0 0 12px; color: var(--fg-1);
}
.pillar__body {
  font-size: 14px; line-height: 1.62; color: var(--fg-2);
  margin: 0 0 24px; flex: 1;
}
.pillar__tags {
  font-family: var(--font-body); font-weight: 500; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-2);
  border-top: 1px solid var(--rule-1); padding-top: 16px;
}

/* ============================================================
   02 · WORK — editorial alternating rows
   ============================================================ */
.work-row {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 5.5vw, 72px) 0;
  border-top: 1px solid var(--rule-1);
}
.work-row:last-of-type { border-bottom: 1px solid var(--rule-1); }
.work-row--flip .work-row__media { order: 2; }
.work-row__media {
  overflow: hidden; border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--noe-clay-soft);
}
.work-row__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.work-row:hover .work-row__media img { transform: scale(1.035); }
.work-row__num {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.22em;
  color: var(--noe-gold); margin-bottom: 18px;
}
.work-row__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.06; letter-spacing: -0.014em;
  margin: 0 0 14px; color: var(--fg-1);
}
.work-row__title em { font-style: italic; color: var(--noe-gold); }
.work-row__meta {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-2); margin-bottom: 18px;
}
.work-row__body {
  font-size: clamp(14px, 1.5vw, 16px); line-height: 1.65; color: var(--fg-2);
  margin: 0; max-width: 460px; text-wrap: pretty;
}

/* ============================================================
   PULL QUOTE — deep band
   ============================================================ */
.quote {
  background: var(--noe-deep); color: var(--noe-bone);
  padding: clamp(96px, 13vw, 160px) var(--page-x);
  text-align: center; position: relative; overflow: hidden;
}
.quote__photo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/imagery/editorial-3.jpg") center / cover no-repeat;
  opacity: 0.17;
}
.quote__pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.9;
  background:
    radial-gradient(circle at 18% 28%, rgba(185,144,85,0.18) 0, transparent 1px),
    radial-gradient(circle at 72% 64%, rgba(185,144,85,0.16) 0, transparent 1px),
    radial-gradient(circle at 86% 22%, rgba(185,144,85,0.14) 0, transparent 1px),
    radial-gradient(circle at 24% 78%, rgba(185,144,85,0.14) 0, transparent 1px);
  background-size: 16px 16px, 22px 22px, 28px 28px, 18px 18px;
}
.quote__inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.quote__mark {
  font-family: var(--font-display); font-style: italic;
  font-size: 80px; line-height: 0.4; color: var(--noe-gold); margin-bottom: 28px;
}
.quote__body {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.4vw, 44px); line-height: 1.32; letter-spacing: -0.008em;
  margin: 0; text-wrap: balance; color: var(--noe-bone);
}
.quote__body em { color: var(--noe-gold); }
.quote__attr {
  margin-top: 36px;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--noe-gold);
}
.quote__attr .sep { color: var(--noe-bone); opacity: 0.5; margin: 0 10px; }

/* ============================================================
   03 · PROCESS — five-phase rail
   ============================================================ */
.rail {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-1);
}
.phase {
  padding: clamp(28px, 3vw, 40px) clamp(18px, 2vw, 28px) 8px;
  border-right: 1px solid var(--rule-1);
  position: relative;
}
.phase:last-child { border-right: none; }
.phase::before {
  content: ""; position: absolute; top: -5px; left: clamp(18px, 2vw, 28px);
  width: 9px; height: 9px; background: var(--noe-gold);
  transform: rotate(45deg);
}
.phase__roman {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(36px, 3.4vw, 52px); line-height: 1; color: var(--noe-gold);
  margin-bottom: 14px;
}
.phase__weeks {
  font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-2); margin-bottom: 14px;
}
.phase__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.9vw, 24px); line-height: 1.2;
  margin: 0 0 10px; color: var(--fg-1);
}
.phase__body { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); margin: 0; }

.rail-foot {
  margin-top: clamp(44px, 5vw, 64px);
  display: flex; justify-content: center;
}

/* ============================================================
   04 · STUDIO — two partners
   ============================================================ */
.partners {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.partner { display: flex; flex-direction: column; }
.partner__photo {
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px;
  background: var(--noe-clay);
  margin-bottom: 28px;
}
.partner__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.partner:hover .partner__photo img { transform: scale(1.03); }
.partner__label {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--noe-gold); margin-bottom: 12px;
}
.partner__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 2.8vw, 36px); line-height: 1.08; letter-spacing: -0.012em;
  margin: 0 0 6px; color: var(--fg-1);
}
.partner__role {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(16px, 1.6vw, 19px); color: var(--noe-gold); margin: 0 0 16px;
}
.partner__bio {
  font-size: clamp(14px, 1.5vw, 15.5px); line-height: 1.68; color: var(--fg-2);
  margin: 0; max-width: 480px; text-wrap: pretty;
}

/* ============================================================
   05 · INVESTMENT — three tiers on deep
   ============================================================ */
#investment { position: relative; overflow: hidden; }
.invest-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 48% at 14% 18%, rgba(185,144,85,0.28), rgba(185,144,85,0) 72%),
    radial-gradient(42% 52% at 88% 82%, rgba(186,94,48,0.18), rgba(186,94,48,0) 72%),
    radial-gradient(36% 42% at 64% 36%, rgba(123,130,113,0.20), rgba(123,130,113,0) 70%);
}
#investment .sec__inner { position: relative; z-index: 1; }
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.tier {
  background: rgba(247,243,236,0.055);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  border: 1px solid rgba(247,243,236,0.16);
  border-radius: 6px;
  box-shadow: 0 10px 44px rgba(0,0,0,0.28), inset 0 1px 0 rgba(247,243,236,0.14);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column;
  position: relative;
}
.tier--featured {
  background: rgba(251,249,244,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  border-color: rgba(185,144,85,0.85);
  box-shadow: 0 16px 60px rgba(185,144,85,0.28), inset 0 1px 0 rgba(255,255,255,0.6);
  padding-top: 56px;
}
.tier__badge {
  position: absolute; top: -1px; left: -1px; right: -1px;
  background: var(--noe-gold); color: var(--noe-deep);
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-align: center; padding: 9px 0;
  border-radius: 4px 4px 0 0;
}
.tier__label {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--noe-gold); margin-bottom: 14px;
}
.tier__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px); line-height: 1.12; letter-spacing: -0.012em;
  color: var(--noe-bone); margin: 0 0 4px;
}
.tier--featured .tier__title { color: var(--noe-deep); }
.tier__line {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 16px; color: var(--noe-gold); margin: 0 0 26px;
}
.tier__price {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3vw, 38px); line-height: 1; letter-spacing: -0.012em;
  color: var(--noe-bone);
}
.tier--featured .tier__price { color: var(--noe-deep); }
.tier__cadence {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,243,236,0.5); margin: 8px 0 26px;
}
.tier--featured .tier__cadence { color: var(--fg-2); }
.tier__items {
  list-style: none; padding: 0 0 24px; margin: 0 0 26px; flex: 1;
  border-bottom: 1px solid var(--rule-on-deep);
  display: flex; flex-direction: column; gap: 10px;
}
.tier--featured .tier__items { border-bottom-color: var(--rule-1); }
.tier__items li {
  font-size: 13.5px; line-height: 1.5; color: rgba(247,243,236,0.8);
  padding-left: 18px; position: relative;
}
.tier--featured .tier__items li { color: var(--fg-1); }
.tier__items li::before {
  content: "✦"; position: absolute; left: 0; top: 3px;
  color: var(--noe-gold); font-size: 9px;
}
.tier .btn { width: 100%; justify-content: center; }
.tiers-note {
  text-align: center; margin: 44px 0 0;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-on-deep-muted);
}
.tiers-note .gold { color: var(--noe-gold); }

/* ============================================================
   CONTACT — closing band
   ============================================================ */
.contact {
  background: var(--noe-deep); color: var(--noe-bone);
  padding: clamp(96px, 13vw, 150px) var(--page-x) clamp(80px, 10vw, 120px);
  text-align: center; position: relative;
  border-top: 1px solid var(--rule-on-deep);
}
.contact__inner { position: relative; max-width: 680px; margin: 0 auto; }
.contact__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5.6vw, 72px); line-height: 1.05; letter-spacing: -0.018em;
  margin: 0 0 24px; color: var(--noe-bone);
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--noe-gold); }
.contact__lead {
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.65;
  color: var(--fg-on-deep-muted);
  max-width: 460px; margin: 0 auto 44px; text-wrap: pretty;
}
.contact__form {
  max-width: 440px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 22px;
}
.contact__field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.contact__label {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-on-deep-muted);
}
.contact__input {
  font-family: var(--font-body); font-size: 16px; color: var(--noe-bone);
  background: transparent; border: none;
  border-bottom: 1px solid var(--rule-on-deep);
  padding: 10px 0; outline: none; border-radius: 0;
  transition: border-color 220ms;
}
.contact__input:focus { border-bottom-color: var(--noe-gold); }
.contact__input::placeholder { color: rgba(247,243,236,0.35); }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
select.contact__input {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B99055' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
select.contact__input option { color: #1F2821; }
select.contact__input:invalid { color: rgba(247,243,236,0.35); }
.contact__submit { margin-top: 14px; align-self: center; }
.contact__alt {
  margin-top: 28px;
  font-size: 13px; color: var(--fg-on-deep-muted);
}
.contact__alt a { color: var(--noe-gold); text-decoration: none; }
.contact__alt a:hover { text-decoration: underline; }

/* ============================================================
   06 · À LA CARTE — single-service menu
   ============================================================ */
#a-la-carte { position: relative; overflow: hidden; }
.carte-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(34% 44% at 12% 22%, rgba(185,144,85,0.20), rgba(185,144,85,0) 72%),
    radial-gradient(38% 48% at 90% 78%, rgba(186,94,48,0.14), rgba(186,94,48,0) 72%);
}
#a-la-carte .sec__inner { position: relative; z-index: 1; }
.carte {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 8px;
  box-shadow: 0 16px 60px rgba(31,40,33,0.10);
  padding: 0 clamp(18px, 2.6vw, 36px);
  overflow: hidden;
}
.carte-row {
  display: grid;
  grid-template-columns: minmax(190px, 1.05fr) 2fr auto;
  gap: clamp(18px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(31,40,33,0.09);
  transition: background 240ms;
}
.carte-row:last-child { border-bottom: none; }
.carte-row:hover { background: rgba(255,255,255,0.45); }
.carte-row__copy { min-width: 0; }
.carte-row__inc {
  font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing: 0.05em;
  line-height: 1.6; color: var(--fg-2); margin: 8px 0 0;
}
.carte-row__unit {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 10px; letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-2); margin-top: 4px;
}
.carte-row__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--fg-1);
}
.carte-row__desc {
  font-family: var(--font-body); font-size: clamp(13.5px, 1.4vw, 15px);
  line-height: 1.6; color: var(--fg-1); margin: 0; max-width: 480px;
}
.carte-row__price {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-2); white-space: nowrap; text-align: right;
}
.carte-row__price strong {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.01em;
  color: var(--noe-gold); margin-top: 4px;
}
.carte-note {
  text-align: center; margin: clamp(40px, 5vw, 56px) 0 0;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-2);
}
.carte-note .gold { color: var(--noe-gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--noe-deep); color: var(--noe-bone);
  padding: 48px var(--page-x) 40px;
  border-top: 1px solid var(--rule-on-deep);
}
.footer__lockup { text-align: center; }
.footer__sparkle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--noe-gold); margin-bottom: 22px;
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
}
.footer__sparkle::before, .footer__sparkle::after {
  content: ""; flex: 1; max-width: 80px; height: 1px; background: currentColor;
}
.footer__stamp {
  font-family: var(--font-accent); font-size: 11.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--noe-bone); margin-bottom: 6px;
}
.footer__url {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-gold); text-decoration: none;
}
.footer__meta {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--rule-on-deep);
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-on-deep-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) and (min-width: 769px) {
  .hdr__nav { gap: 22px; }
}

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .tiers { gap: 14px; }
  .tier { padding: 22px 16px; }
  .tier--featured { padding-top: 46px; }
  .tier__title { font-size: 20px; }
  .tier__line { font-size: 13px; margin-bottom: 16px; line-height: 1.3; }
  .tier__price { font-size: 23px; }
  .tier__cadence { font-size: 9px; white-space: nowrap; }
  .tier__items { gap: 8px; }
  .tier__items li { font-size: 12px; line-height: 1.4; }
  .tier__badge { font-size: 8.5px; letter-spacing: 0.1em; }
  .tier .btn { font-size: 10px; padding: 13px 10px; }
}
@media (max-width: 700px) {
  .tiers { grid-template-columns: 1fr; max-width: 430px; margin: 0 auto; }
  .tier { padding: 26px 24px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }

  .hdr__nav { display: none; }
  .hdr__cta { display: none; }
  .hdr__burger { display: flex; }
  .hdr__inner { padding: 14px var(--page-x); }
  .hdr__logo img { height: 56px; }
  /* When menu is open, header sits above it; force light logo */
  .hdr.menu-open { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hdr.menu-open .hdr__logo .logo-dark { display: none; }
  .hdr.menu-open .hdr__logo .logo-light { display: block; }

  .hero { min-height: 92svh; padding: 130px var(--page-x) 110px; }
  .hero__scroll { display: flex; }

  .work-row,
  .work-row--flip { grid-template-columns: 1fr; gap: 24px; }
  .work-row--flip .work-row__media { order: 0; }
  .work-row__body { max-width: none; }

  .carte-row {
    grid-template-columns: 1fr auto;
    gap: 4px 18px;
    align-items: baseline;
  }
  .carte-row__name { grid-column: 1; grid-row: 1; }
  .carte-row__price { grid-column: 2; grid-row: 1; text-align: right; }
  .carte-row__copy { grid-column: 1 / -1; grid-row: 2; max-width: none; margin-top: 10px; }
  .carte-row__desc { max-width: none; }

  .partners { gap: 20px; }

  .quote__mark { font-size: 60px; }

  .footer__meta { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar__body { margin-bottom: 18px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .contact__form { max-width: none; }
  .marquee__seq .dot { margin: 0 18px; }
}

/* ============================================================
   GOD-MODE ELEVATION — glass everywhere, grain, motion, frames
   ============================================================ */

/* Film grain + scroll-progress hairline */
.grain {
  position: fixed; inset: 0; z-index: 120; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--noe-gold), var(--noe-gold-soft));
  z-index: 130; box-shadow: 0 0 12px rgba(185,144,85,0.5);
}

/* PRACTICE — frosted pillar cards floating over a glow */
#practice { position: relative; }
.practice-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(34% 40% at 10% 12%, rgba(185,144,85,0.13), rgba(185,144,85,0) 70%),
    radial-gradient(38% 44% at 92% 90%, rgba(123,130,113,0.13), rgba(123,130,113,0) 72%);
}
#practice .sec__inner { position: relative; z-index: 1; }
.pillars { border: none; gap: 16px; }
.pillar {
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 30px rgba(31,40,33,0.06);
  transition: transform 420ms cubic-bezier(.22,1,.36,1), box-shadow 420ms, background 420ms;
}
.pillar:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 22px 54px rgba(31,40,33,0.13);
}
.pillar__letter { transition: transform 420ms cubic-bezier(.22,1,.36,1); }
.pillar:hover .pillar__letter { transform: translateY(-2px) scale(1.06); }
.pillar__tags { border-top-color: rgba(31,40,33,0.1); }

/* WORK — quiet reveal frame on the imagery */
.work-row__media { position: relative; }
.work-row__media::after {
  content: ""; position: absolute; inset: 18px; z-index: 2;
  border: 1px solid rgba(247,243,236,0); pointer-events: none;
  transition: border-color 600ms cubic-bezier(.22,1,.36,1), inset 600ms cubic-bezier(.22,1,.36,1);
}
.work-row:hover .work-row__media::after { border-color: rgba(247,243,236,0.55); inset: 13px; }

/* PROCESS — node + numeral lift on hover */
.phase__roman { transition: transform 380ms cubic-bezier(.22,1,.36,1); }
.phase:hover .phase__roman { transform: translateY(-3px); }
.phase::before { transition: box-shadow 380ms; }
.phase:hover::before { box-shadow: 0 0 0 4px rgba(185,144,85,0.18); }

/* STUDIO — smaller founder portraits, cropped to favor the top half */
.partner__photo {
  aspect-ratio: 1 / 1;
  max-width: 340px;
  box-shadow: 0 10px 30px rgba(31,40,33,0.08);
  transition: box-shadow 500ms;
}
.partner__photo img { object-position: center 18%; }
.partner:hover .partner__photo { box-shadow: 0 22px 50px rgba(31,40,33,0.16); }

/* À LA CARTE — individual frosted cards, spaced apart */
.carte {
  background: none !important;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: none; box-shadow: none; border-radius: 0;
  padding: 0 !important; overflow: visible;
  display: flex; flex-direction: column; gap: 14px;
}
.carte-row {
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  background: rgba(255,255,255,0.52);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 8px 30px rgba(31,40,33,0.07);
  padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 36px);
  transition: transform 380ms cubic-bezier(.22,1,.36,1), box-shadow 380ms, background 380ms;
}
.carte-row:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 20px 48px rgba(31,40,33,0.13);
}

/* CONTACT — frosted glass form over a glow */
.contact { overflow: hidden; }
.contact__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(36% 46% at 16% 22%, rgba(185,144,85,0.22), rgba(185,144,85,0) 72%),
    radial-gradient(40% 50% at 86% 80%, rgba(186,94,48,0.16), rgba(186,94,48,0) 72%);
}
.contact__inner { z-index: 1; }
.contact__form {
  max-width: 480px;
  background: rgba(247,243,236,0.05);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(247,243,236,0.14);
  border-radius: 14px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 18px 56px rgba(0,0,0,0.32), inset 0 1px 0 rgba(247,243,236,0.12);
}

@media (max-width: 480px) {
  .contact__form { max-width: none; padding: clamp(22px, 6vw, 30px); gap: 13px; }
  .partner__photo { max-width: 300px; }
  .contact__row { grid-template-columns: 1fr; gap: 13px; }
}

/* Glass hero CTA */
.btn--glass {
  background: rgba(247,243,236,0.12);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  border: 1px solid rgba(247,243,236,0.45);
  color: var(--noe-bone);
  box-shadow: inset 0 1px 0 rgba(247,243,236,0.2), 0 10px 30px rgba(0,0,0,0.18);
}
.btn--glass:hover {
  background: rgba(217,176,122,0.92);
  border-color: var(--noe-gold-soft);
  color: var(--noe-deep);
}

/* Studio — low-opacity, green-tinted mood photo as the section ground */

/* Investment — accessibility reassurance line */
.tiers-access {
  text-align: center; margin: 14px auto 0; max-width: 640px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.5;
  color: var(--fg-on-deep-muted);
}
.tiers-access em { color: var(--noe-gold); font-style: italic; }

/* ============================================================
   ELEVATION II — Process & Studio in glass
   ============================================================ */

/* PROCESS — glass cards (closes the open box on every phase) over a glow */
#process { position: relative; }
.process-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(32% 40% at 12% 14%, rgba(185,144,85,0.12), rgba(185,144,85,0) 70%),
    radial-gradient(36% 44% at 90% 88%, rgba(123,130,113,0.12), rgba(123,130,113,0) 72%);
}
#process .sec__inner { position: relative; z-index: 1; }
.rail { border-top: none; gap: 14px; }
.phase {
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 8px 30px rgba(31,40,33,0.06);
  padding: clamp(24px, 2.6vw, 34px) clamp(18px, 2vw, 26px) clamp(24px, 2.6vw, 30px);
  transition: transform 420ms cubic-bezier(.22,1,.36,1), box-shadow 420ms, background 420ms;
}
.phase::before { display: none; }
.phase:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 22px 54px rgba(31,40,33,0.13);
}

/* STUDIO — partner glass cards over a soft glow */
#studio { position: relative; }
.studio-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(34% 42% at 88% 12%, rgba(185,144,85,0.12), rgba(185,144,85,0) 70%),
    radial-gradient(36% 44% at 8% 90%, rgba(123,130,113,0.12), rgba(123,130,113,0) 72%);
}
#studio .sec__inner { position: relative; z-index: 1; }
.partner {
  background: rgba(255,255,255,0.5);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: clamp(22px, 2.2vw, 30px);
  box-shadow: 0 8px 30px rgba(31,40,33,0.06);
  transition: transform 460ms cubic-bezier(.22,1,.36,1), box-shadow 460ms;
}
.partner:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(31,40,33,0.12);
}

/* ============================================================
   ELEVATION III — founder portraits + process depth
   ============================================================ */

/* Studio glow → cream + gold wash */
.studio-glow {
  background:
    radial-gradient(42% 52% at 86% 8%, rgba(185,144,85,0.14), rgba(185,144,85,0) 70%),
    radial-gradient(46% 56% at 8% 96%, rgba(220,210,195,0.45), rgba(220,210,195,0) 72%);
}

/* Founder cards — centered arched portraits over a cream-gold ground */
.partners { gap: clamp(24px, 3vw, 40px); align-items: stretch; }
.partner {
  text-align: center; align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(251,249,244,0.5));
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: clamp(30px, 3vw, 46px) clamp(24px, 2.6vw, 42px) clamp(34px, 3vw, 48px);
  box-shadow: 0 14px 44px rgba(31,40,33,0.09);
}
.partner__photo {
  position: relative;
  width: 240px; max-width: 72%;
  aspect-ratio: 4 / 5;
  margin: 0 auto 26px;
  border-radius: 150px 150px 16px 16px;
  box-shadow: 0 16px 38px rgba(31,40,33,0.18);
}
.partner__photo::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(185,144,85,0.55);
  pointer-events: none;
}
.partner__photo img { object-position: center 8%; }
.partner__label { margin-bottom: 12px; }
.partner__name { position: relative; }
.partner__name::after {
  content: ""; display: block; width: 46px; height: 1px;
  background: var(--noe-gold); margin: 14px auto 0;
}
.partner__role { margin-top: 14px; }
.partner__bio { margin-left: auto; margin-right: auto; max-width: 420px; }
.partner:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(31,40,33,0.14);
}

/* Process — watermark numerals, gold week-chips, gold hover edge */
.phase { overflow: hidden; }
.phase > * { position: relative; z-index: 1; }
.phase::after {
  content: attr(data-n);
  position: absolute; right: -8px; bottom: -30px; z-index: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 150px; line-height: 1; color: rgba(185,144,85,0.09);
  pointer-events: none;
}
.phase__weeks {
  display: inline-block;
  background: rgba(185,144,85,0.13);
  color: var(--noe-gold);
  padding: 5px 11px; border-radius: 100px;
  margin-bottom: 16px;
}
.phase:hover {
  box-shadow: 0 22px 54px rgba(31,40,33,0.13), inset 0 3px 0 rgba(185,144,85,0.9);
}

/* ============================================================
   ELEVATION IV — À la carte as an editorial menu (lighter than boxes)
   ============================================================ */
.carte { counter-reset: carte; gap: 0; }
.carte-row {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: none;
  border-top: 1px solid rgba(185,144,85,0.24);
  border-radius: 0;
  box-shadow: none;
  padding: clamp(26px, 3vw, 40px) clamp(14px, 2vw, 26px);
  transition: background 380ms ease;
}
.carte-row:last-child { border-bottom: 1px solid rgba(185,144,85,0.24); }
.carte-row:hover {
  transform: none;
  background: linear-gradient(90deg, rgba(185,144,85,0.09), rgba(220,210,195,0.11));
}
.carte-row__name { position: relative; }
.carte-row__name::before {
  counter-increment: carte;
  content: counter(carte, decimal-leading-zero);
  display: block;
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; color: var(--noe-gold);
  margin-bottom: 10px;
}

/* ============================================================
   ELEVATION V — lighter à la carte, plain founders, seamless glows
   ============================================================ */

/* À la carte — lighter cream ground */
#a-la-carte { background: var(--noe-bone-soft); }
.carte-glow {
  background:
    radial-gradient(30% 36% at 14% 16%, rgba(185,144,85,0.08), rgba(185,144,85,0) 70%),
    radial-gradient(32% 38% at 88% 62%, rgba(220,210,195,0.28), rgba(220,210,195,0) 72%);
}

/* Founders — no card, no gold ring; clean centered portrait */
.partner {
  background: none; border: none; border-radius: 0;
  box-shadow: none; padding: 0;
}
.partner:hover { transform: none; box-shadow: none; }
.partner__photo {
  width: 250px; max-width: 74%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(31,40,33,0.16);
}
.partner__photo::after { display: none; }
.partner:hover .partner__photo { box-shadow: 0 22px 48px rgba(31,40,33,0.2); }

/* Founders — larger portraits, tighter pairing (desktop) */
@media (min-width: 769px) {
  .partners { max-width: 880px; margin-left: auto; margin-right: auto; gap: clamp(40px, 5vw, 72px); }
  .partner__photo { width: 100%; max-width: 360px; aspect-ratio: 4 / 5; }
}

/* Seamless section glows — pulled off the bottom edges so they blend */
.practice-glow {
  background:
    radial-gradient(30% 34% at 12% 12%, rgba(185,144,85,0.10), rgba(185,144,85,0) 68%),
    radial-gradient(32% 36% at 90% 38%, rgba(123,130,113,0.09), rgba(123,130,113,0) 70%);
}
.process-glow {
  background:
    radial-gradient(30% 34% at 12% 16%, rgba(185,144,85,0.09), rgba(185,144,85,0) 68%),
    radial-gradient(30% 34% at 90% 30%, rgba(123,130,113,0.09), rgba(123,130,113,0) 70%);
}
.studio-glow {
  background:
    radial-gradient(34% 40% at 86% 14%, rgba(185,144,85,0.11), rgba(185,144,85,0) 70%),
    radial-gradient(34% 40% at 10% 32%, rgba(220,210,195,0.32), rgba(220,210,195,0) 72%);
}

/* Less bubble, more editorial restraint */
.pillar { border-radius: 10px; }
.phase { border-radius: 10px; }
.pillar:hover { transform: translateY(-5px); }
.phase:hover { box-shadow: 0 18px 44px rgba(31,40,33,0.12), inset 0 3px 0 rgba(185,144,85,0.9); }

/* ============================================================
   GALLERY — "The Craft" editorial frames on deep
   ============================================================ */
#gallery { position: relative; overflow: hidden; }
.gallery-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(32% 38% at 10% 10%, rgba(185,144,85,0.16), rgba(185,144,85,0) 70%),
    radial-gradient(36% 42% at 90% 88%, rgba(123,130,113,0.18), rgba(123,130,113,0) 72%);
}
#gallery .sec__inner { position: relative; z-index: 1; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.gframe { display: flex; flex-direction: column; }
.gframe__media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5; border-radius: 12px;
  border: 1px solid rgba(247,243,236,0.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.34);
}
.gframe__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 900ms cubic-bezier(.22,1,.36,1);
}
.gframe:hover .gframe__media img { transform: scale(1.05); }
.gframe__media::after {
  content: ""; position: absolute; inset: 16px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(247,243,236,0);
  transition: border-color 600ms cubic-bezier(.22,1,.36,1), inset 600ms cubic-bezier(.22,1,.36,1);
}
.gframe:hover .gframe__media::after { border-color: rgba(247,243,236,0.5); inset: 11px; }
.gframe__cap {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 16px 4px 0;
}
.gframe__brand {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(16px, 1.6vw, 19px);
  letter-spacing: -0.01em; color: var(--noe-bone);
}
.gframe__cat {
  font-family: var(--font-body); font-weight: 500; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-gold); white-space: nowrap;
}
.gallery-foot {
  margin-top: clamp(40px, 5vw, 60px); text-align: center;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(17px, 2vw, 23px); line-height: 1.5;
  color: var(--fg-on-deep-muted); max-width: 680px; margin-left: auto; margin-right: auto;
}
.gallery-foot em { color: var(--noe-gold); font-style: italic; }

/* ============================================================
   MANIFESTO — brand-atmosphere split on deep
   ============================================================ */
#manifesto { position: relative; overflow: hidden; }
.manifesto-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 46% at 88% 12%, rgba(185,144,85,0.16), rgba(185,144,85,0) 72%),
    radial-gradient(40% 48% at 6% 90%, rgba(123,130,113,0.16), rgba(123,130,113,0) 72%);
}
#manifesto .sec__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.manifesto__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: 14px; overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.42);
  border: 1px solid rgba(247,243,236,0.12);
}
.manifesto__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.manifesto__eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--noe-gold); display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
}
.manifesto__eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.manifesto__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.08; letter-spacing: -0.016em;
  color: var(--noe-bone); margin: 0 0 26px; text-wrap: balance;
}
.manifesto__title em { font-style: italic; color: var(--noe-gold); }
.manifesto__body {
  font-size: clamp(15px, 1.6vw, 17px); line-height: 1.72; color: var(--fg-on-deep-muted);
  margin: 0 0 20px; max-width: 520px; text-wrap: pretty;
}
.manifesto__sign {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--rule-on-deep);
  display: flex; flex-wrap: wrap; gap: 12px 34px;
}
.manifesto__sign span {
  font-family: var(--font-body); font-weight: 500; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--noe-bone);
  display: inline-flex; align-items: center; gap: 10px;
}
.manifesto__sign span::before { content: "✦"; color: var(--noe-gold); font-size: 9px; }

/* ============================================================
   FAQ — accordion on light
   ============================================================ */
#faq { position: relative; overflow: hidden; }
.faq-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(30% 34% at 88% 14%, rgba(185,144,85,0.09), rgba(185,144,85,0) 70%),
    radial-gradient(32% 36% at 8% 90%, rgba(220,210,195,0.3), rgba(220,210,195,0) 72%);
}
#faq .sec__inner { position: relative; z-index: 1; max-width: 920px; }
.faq-list { border-top: 1px solid rgba(185,144,85,0.26); }
.faq-item { border-bottom: 1px solid rgba(185,144,85,0.26); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(24px, 3vw, 32px) clamp(6px, 1.2vw, 14px);
  text-align: left; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 2.1vw, 26px); line-height: 1.22; letter-spacing: -0.01em;
  color: var(--fg-1); transition: color 240ms;
}
.faq-q:hover { color: var(--noe-gold); }
.faq-q em { font-style: italic; color: var(--noe-gold); }
.faq-icon {
  position: relative; flex-shrink: 0; width: 22px; height: 22px;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--noe-gold); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 360ms cubic-bezier(.22,1,.36,1), opacity 360ms;
}
.faq-icon::before { width: 18px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 18px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 480ms cubic-bezier(.22,1,.36,1);
}
.faq-a__inner {
  padding: 0 clamp(6px, 1.2vw, 14px) clamp(26px, 3vw, 32px);
  font-family: var(--font-body); font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 1.72; color: var(--fg-2); max-width: 720px; text-wrap: pretty;
}
.faq-a__inner a { color: var(--noe-gold); text-decoration: none; border-bottom: 1px solid rgba(185,144,85,0.4); }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #manifesto .sec__inner { grid-template-columns: 1fr; gap: 36px; }
  .manifesto__media { max-width: 440px; margin: 0 auto; order: -1; }
  .manifesto__body { max-width: none; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ============================================================
   WORK — "Available" badge on concept brands
   ============================================================ */
.work-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--noe-deep);
  background: rgba(247,243,236,0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 13px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 18px rgba(31,40,33,0.16);
}
.work-badge::before { content: "✦"; color: var(--noe-gold); font-size: 9px; }

/* ============================================================
   EXPERIENCE — credibility strip (founders' prior brands)
   ============================================================ */
.experience {
  background: var(--noe-bone-soft);
  border-top: 1px solid var(--rule-1);
  border-bottom: 1px solid var(--rule-1);
  padding: clamp(30px, 4.5vw, 50px) var(--page-x);
}
.experience__inner { max-width: var(--max-content); margin: 0 auto; text-align: center; }
.experience__label {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: var(--tracking-widest); text-transform: uppercase;
  color: var(--noe-gold); margin: 0 0 24px;
}
.experience__logos {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(18px, 4vw, 54px);
}
.experience__logos li {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2.2vw, 27px); letter-spacing: 0.005em;
  color: var(--fg-1); opacity: 0.6;
  transition: opacity 260ms, color 260ms; white-space: nowrap;
}
.experience__logos li:hover { opacity: 1; color: var(--noe-deep); }

/* ============================================================
   FOUNDER CREDITS — "Previously" chips under a profile
   ============================================================ */
.partner__credits {
  margin: 24px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(31,40,33,0.12);
  max-width: 420px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px;
}
.partner__credits-label {
  width: 100%;
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-gold); margin-bottom: 5px;
}
.cred-chip {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  color: var(--fg-1);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(31,40,33,0.12);
  padding: 7px 13px; border-radius: 100px;
  transition: border-color 220ms, color 220ms, background 220ms;
}
.cred-chip:hover { border-color: var(--noe-gold); color: var(--noe-deep); background: rgba(255,255,255,0.85); }

/* ============================================================
   PILOT — "Brand Sprint" founding-client offer (on deep)
   ============================================================ */
.pilot {
  position: relative; margin-top: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(185,144,85,0.5);
  border-radius: 16px;
  background: rgba(247,243,236,0.05);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  box-shadow: 0 16px 56px rgba(0,0,0,0.3), inset 0 1px 0 rgba(247,243,236,0.12);
  padding: clamp(28px, 3.4vw, 44px);
  overflow: hidden;
}
.pilot__tag {
  display: inline-block; margin-bottom: 20px;
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-gold); background: rgba(185,144,85,0.15);
  padding: 8px 14px; border-radius: 100px;
}
.pilot__main {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.pilot__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.1; letter-spacing: -0.014em;
  color: var(--noe-bone); margin: 0 0 14px; text-wrap: balance;
}
.pilot__title em { font-style: italic; color: var(--noe-gold); }
.pilot__desc {
  font-family: var(--font-body); font-size: clamp(14px, 1.5vw, 16px); line-height: 1.65;
  color: var(--fg-on-deep-muted); margin: 0 0 20px; max-width: 540px; text-wrap: pretty;
}
.pilot__items { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.pilot__items li {
  font-family: var(--font-body); font-size: 13.5px; color: var(--noe-bone);
  padding-left: 18px; position: relative;
}
.pilot__items li::before { content: "✦"; position: absolute; left: 0; top: 3px; color: var(--noe-gold); font-size: 9px; }
.pilot__aside {
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding-left: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--rule-on-deep);
  min-width: 220px;
}
.pilot__price {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 4.6vw, 56px); line-height: 1; letter-spacing: -0.012em;
  color: var(--noe-gold);
}
.pilot__cadence {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-on-deep-muted);
  margin-bottom: 14px;
}
.pilot__aside .btn { white-space: nowrap; }
.pilot__price-note {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-gold); margin: 4px 0 10px;
}
.pilot__return {
  margin: clamp(22px, 2.6vw, 30px) 0 0; padding-top: 20px;
  border-top: 1px solid var(--rule-on-deep);
  font-family: var(--font-body); font-size: 12.5px; line-height: 1.6;
  color: var(--fg-on-deep-muted); text-wrap: pretty;
}
.pilot__return strong { color: var(--noe-bone); font-weight: 600; }

/* Investment divider + promo emphasis */
.invest-divider {
  display: flex; align-items: center; gap: 18px;
  margin: clamp(34px, 4.5vw, 56px) auto;
  max-width: 460px;
}
.invest-divider::before, .invest-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--rule-on-deep);
}
.invest-divider span {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--fg-on-deep-muted); white-space: nowrap;
}
.pilot--promo {
  border-color: rgba(185,144,85,0.7);
  box-shadow: 0 22px 66px rgba(0,0,0,0.36), 0 0 0 1px rgba(185,144,85,0.22), inset 0 1px 0 rgba(247,243,236,0.16);
}
.pilot--promo .pilot__tag { background: var(--noe-gold); color: var(--noe-deep); }
@media (max-width: 768px) {
  .pilot__main { grid-template-columns: 1fr; gap: 26px; }
  .pilot__aside {
    border-left: none; border-top: 1px solid var(--rule-on-deep);
    padding-left: 0; padding-top: 24px; align-items: flex-start; text-align: left; min-width: 0;
  }
}

/* ============================================================
   PROCESS — connected editorial timeline (final, overrides glass cards)
   ============================================================ */
.rail {
  position: relative;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
  border-top: none;
  padding-top: 12px;
}
.rail::before {
  content: ""; position: absolute; top: 6px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, rgba(185,144,85,0), rgba(185,144,85,0.5) 12%, rgba(185,144,85,0.5) 88%, rgba(185,144,85,0));
  z-index: 0;
}
.phase {
  background: none;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border: none; border-radius: 0; box-shadow: none;
  padding: 44px 8px 0; overflow: visible;
  text-align: center; position: relative;
}
.phase:hover { transform: none; box-shadow: none; }
.phase::after { display: none; }
.phase::before {
  content: ""; position: absolute; top: 0; left: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bg-1); border: 2px solid var(--noe-gold);
  transform: translate(-50%, 0); z-index: 1;
  transition: background 360ms, box-shadow 360ms;
}
.phase:hover::before { background: var(--noe-gold); box-shadow: 0 0 0 6px rgba(185,144,85,0.14); }
.phase__roman {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(38px, 4vw, 56px); line-height: 1; color: var(--noe-gold);
  margin-bottom: 14px; transition: transform 360ms cubic-bezier(.22,1,.36,1);
}
.phase:hover .phase__roman { transform: translateY(-3px); }
.phase__weeks {
  display: inline-block; background: none; padding: 0; border-radius: 0;
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-2);
  margin-bottom: 12px;
}
.phase__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 1.9vw, 24px); line-height: 1.18; margin: 0 0 10px; color: var(--fg-1);
}
.phase__body { font-size: 13.5px; line-height: 1.6; color: var(--fg-2); margin: 0 auto; max-width: 210px; }

@media (max-width: 860px) {
  .rail { grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 0; }
  .rail::before { display: none; }
  .phase {
    display: block; text-align: left;
    border: 1px solid rgba(31,40,33,0.1); border-radius: 10px;
    background: var(--noe-bone-soft); padding: 16px 14px; overflow: visible;
  }
  .phase:last-child { grid-column: 1 / -1; }
  .phase::before, .phase::after { display: none; }
  .phase__roman { font-size: 26px; line-height: 1; margin-bottom: 8px; color: var(--noe-gold); font-style: italic; }
  .phase__weeks { margin-bottom: 8px; }
  .phase__title { font-size: 17px; margin-bottom: 6px; }
  .phase__body { font-size: 12px; line-height: 1.5; margin: 0; max-width: none; }
}

/* ============================================================
   LOADER — the elite curtain entrance
   ============================================================ */
html.loading, html.loading body { overflow: hidden; height: 100%; }

.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--noe-deep);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 1100ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.loader.is-done { transform: translateY(-100%); }
.loader__vignette {
  display: none;
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 100%);
}
.loader__glow {
  display: none;
  position: absolute; top: 42%; left: 50%; width: 60vw; height: 60vw; max-width: 680px; max-height: 680px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(185,144,85,0.22), rgba(185,144,85,0) 62%);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .loader__glow { animation: loaderPulse 3.4s ease-in-out infinite alternate; }
  @keyframes loaderPulse { from { opacity: 0.55; } to { opacity: 1; } }
}
.loader__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 0 24px;
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22,1,0.36,1);
}
.loader.is-fade .loader__inner { opacity: 0; transform: translateY(-14px); }

.loader__logo {
  height: clamp(96px, 18vw, 170px); width: auto;
  opacity: 0;
  margin-bottom: clamp(28px, 4vh, 40px);
}
.loader__tag {
  font-family: var(--font-body); font-weight: 500;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--fg-on-deep-muted);
  text-align: center;
  margin-bottom: clamp(30px, 5vh, 42px);
  opacity: 0;
}
.loader__ring {
  width: 58px; height: 58px; opacity: 0;
  filter: drop-shadow(0 0 10px rgba(185,144,85,0.25));
}
.loader__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.loader__ring-track { fill: none; stroke: rgba(247,243,236,0.12); stroke-width: 1.4; }
.loader__ring-fill {
  fill: none; stroke: var(--noe-gold); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 238.76; stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 140ms linear;
}

@media (prefers-reduced-motion: no-preference) {
  .loader__logo { animation: loaderRise 1000ms cubic-bezier(0.22,1,0.36,1) 180ms forwards; }
  .loader__tag  { animation: loaderRise 900ms cubic-bezier(0.22,1,0.36,1) 420ms forwards; }
  .loader__ring  { animation: loaderRise 800ms ease 600ms forwards; }
  @keyframes loaderRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
@media (prefers-reduced-motion: reduce) {
  .loader__logo, .loader__tag, .loader__ring { opacity: 1; }
}

/* ============================================================
   HERO + HEADER — choreographed reveal after the curtain lifts.
   Rest state is VISIBLE by default; we only hide DURING the loader,
   then run a one-shot entrance. If anything stalls, content shows.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* hidden only while the loader is on screen */
  html.loading .hdr,
  html.loading .hero__eyebrow,
  html.loading .hero__headline,
  html.loading .hero__sub,
  html.loading .hero__ctas,
  html.loading .hero__scroll { opacity: 0; }

  body.entered .hdr,
  body.entered .hero__eyebrow,
  body.entered .hero__headline,
  body.entered .hero__sub,
  body.entered .hero__ctas,
  body.entered .hero__scroll {
    animation: heroIn 1150ms cubic-bezier(0.22,1,0.36,1) both;
  }
  body.entered .hdr           { animation-delay: 150ms; }
  body.entered .hero__eyebrow { animation-delay: 200ms; }
  body.entered .hero__headline{ animation-delay: 340ms; }
  body.entered .hero__sub     { animation-delay: 520ms; }
  body.entered .hero__ctas    { animation-delay: 700ms; }
  body.entered .hero__scroll  { animation-delay: 920ms; }
  body.entered .hdr { animation-name: hdrIn; }

  @keyframes heroIn { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
  @keyframes hdrIn  { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }

  /* gold shimmer sweep across the accent, once, after it settles */
  body.entered .hero__headline em {
    background: linear-gradient(100deg, var(--noe-gold) 32%, #ECCF92 50%, var(--noe-gold) 68%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroShimmer 2400ms cubic-bezier(0.4,0,0.2,1) 1600ms 1;
  }
  @keyframes heroShimmer { from { background-position: 150% 0; } to { background-position: -50% 0; } }
}

/* Failsafe — once the entrance window has passed, lock content visible
   so a throttled/backgrounded animation can never trap the hero. */
body.shown .hdr,
body.shown .hero__eyebrow,
body.shown .hero__headline,
body.shown .hero__sub,
body.shown .hero__ctas,
body.shown .hero__scroll {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   BUTTON SHINE — a single sheen sweep on hover
   ============================================================ */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.32), rgba(255,255,255,0));
  transform: skewX(-18deg); pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .btn:hover::after { animation: btnShine 820ms cubic-bezier(0.4,0,0.2,1); }
  @keyframes btnShine { to { left: 150%; } }
}

/* ============================================================
   MOBILE REFINEMENT — tighten the scale on phones.
   The desktop clamp() minimums read oversized on small screens;
   this dials type, spacing, and the loader down to a refined,
   editorial mobile scale. (Placed last so it wins the cascade.)
   ============================================================ */
@media (max-width: 600px) {
  /* section rhythm — less cavernous */
  .sec { padding: 62px var(--page-x); }
  .sec-head { margin-bottom: 38px; }
  .sec-head__num { margin-bottom: 14px; font-size: 10px; }
  .sec-head__title { font-size: clamp(26px, 7.6vw, 32px); line-height: 1.1; margin-bottom: 16px; }
  .sec-head__lead { font-size: 14px; }

  /* hero — framed and centered for the phone */
  .hero { min-height: 88svh; padding: 106px var(--page-x) 128px; justify-content: center; }
  .hero__scroll { bottom: 22px; }
  .hero__inner { max-width: 100%; }
  .hero__bg { inset: -6% 0; background-position: center top; }
  .hero__bg::after {
    background: radial-gradient(ellipse at 50% 36%,
      rgba(31,40,33,0.34) 0%, rgba(31,40,33,0.60) 52%, rgba(31,40,33,0.86) 100%);
  }
  .hero__eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 0.26em; gap: 10px; }
  .hero__eyebrow::before, .hero__eyebrow::after { width: 18px; }
  .hero__headline { font-size: clamp(32px, 9.2vw, 44px); line-height: 1.06; letter-spacing: -0.018em; }
  .hero__sub { font-size: 15px; line-height: 1.6; margin: 20px auto 30px; max-width: 360px; }

  /* practice */
  .pillars { grid-template-columns: 1fr; gap: 8px; }
  .pillar { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start; padding: 16px 18px; }
  .pillar__letter { grid-row: 1 / span 3; font-size: 24px; line-height: 1; margin: 0; }
  .pillar__title { grid-column: 2; font-size: 17px; margin: 0 0 5px; }
  .pillar__body { grid-column: 2; font-size: 13px; line-height: 1.5; margin: 0 0 8px; }
  .pillar__tags { grid-column: 2; display: block; font-size: 9px; }
  .hero-break { display: block; }

  /* work */
  .work-row { padding: 30px 0; gap: 20px; }
  .work-row__title { font-size: clamp(27px, 8.5vw, 34px); }
  .work-row__num { margin-bottom: 12px; }

  /* quote */
  .quote { padding: 72px var(--page-x); }
  .quote__body { font-size: clamp(20px, 6vw, 26px); }
  .quote__mark { font-size: 52px; }

  /* process */
  .phase__roman { font-size: 30px; }
  .phase__title { font-size: 20px; }

  /* gallery */
  .gframe__brand { font-size: 17px; }

  /* manifesto */
  .manifesto__title { font-size: clamp(25px, 7.6vw, 32px); }
  .manifesto__body { font-size: 14.5px; }

  /* studio */
  .partners { grid-template-columns: 1fr 1fr; gap: 14px; max-width: none; align-items: start; }
  .partner__label { font-size: 9px; letter-spacing: 0.12em; margin-bottom: 9px; }
  .partner__name { font-size: 17px; }
  .partner__role { font-size: 12.5px; margin-top: 8px; }
  .partner__photo { width: 100%; max-width: 152px; margin-bottom: 16px; }
  .partner__bio { font-size: 11.5px; line-height: 1.5; }

  /* investment — tighter, more refined stack */
  #investment { padding-top: 58px; }
  .tiers { gap: 16px; max-width: 366px; }
  .tier { padding: 24px 22px; border-radius: 9px; }
  .tier--featured { padding-top: 50px; }
  .tier__title { font-size: 22px; }
  .tier__line { font-size: 15px; margin-bottom: 22px; }
  .tier__price { font-size: 32px; }
  .tier__items { gap: 9px; }
  .tier__items li { font-size: 13px; }
  .tier .btn { width: 100%; justify-content: center; padding: 15px 20px; }
  .tiers-access { font-size: 14.5px; margin-top: 12px; }
  .invest-divider { margin: 34px auto; }
  .pilot { padding: 26px 22px; border-radius: 14px; }
  .pilot__tag { font-size: 9px; letter-spacing: 0.12em; }
  .pilot__title { font-size: clamp(22px, 6.4vw, 26px); }
  .pilot__desc { font-size: 13.5px; }
  .pilot__items { gap: 8px 18px; }
  .pilot__items li { font-size: 12.5px; }
  .pilot__aside { width: 100%; }
  .pilot__price { font-size: 38px; }
  .pilot__aside .btn { width: 100%; justify-content: center; }
  .pilot__return { font-size: 12.5px; }

  /* contact */
  .contact { padding: 62px var(--page-x) 58px; }
  .contact__lead { margin-bottom: 30px; }
  .contact__title { font-size: clamp(29px, 9.5vw, 40px); }

  /* loader — refined, not huge */
  .loader__logo { height: clamp(76px, 26vw, 104px); margin-bottom: 28px; }
  .loader__tag { font-size: 9.5px; letter-spacing: 0.2em; }
  .loader__ring { width: 50px; height: 50px; }
}

@media (max-width: 380px) {
  .sec { padding: 54px var(--page-x); }
  .hero__headline { font-size: 32px; }
  .sec-head__title { font-size: 25px; }
  .hero { padding-top: 108px; }
}

/* ============================================================
   10/10 PASS — micro-typography, asymmetric heads, custom cursor
   ============================================================ */

/* Micro-typography — balance display lines, prettify body wrapping */
.hero__headline { letter-spacing: -0.026em; }
.sec-head__title,
.work-row__title,
.manifesto__title,
.contact__title,
.pilot__title,
.quote__body { text-wrap: balance; }
.pillar__body,
.work-row__body,
.partner__bio,
.carte-row__desc,
.sec-head__lead,
.hero__sub,
.manifesto__body,
.tiers-access { text-wrap: pretty; }

/* Asymmetric section heads — break the centered rhythm on two sections */
.sec-head--left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  max-width: 700px;
}
.sec-head--left .sec-head__num::after { display: none; }
.sec-head--left .sec-head__title { margin-left: -1px; }

/* ============================================================
   EDITORIAL MOTION — big section numerals, parallax, word reveals
   ============================================================ */

/* Oversized faint section numeral behind each head */
.sec-head { position: relative; }
.sec-head > * { position: relative; z-index: 1; }
.sec-head[data-i]::before {
  content: attr(data-i);
  position: absolute; z-index: 0;
  top: -0.66em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: clamp(94px, 14vw, 180px); line-height: 1; letter-spacing: -0.02em;
  color: rgba(185,144,85,0.11);
  pointer-events: none;
}
.sec--deep .sec-head[data-i]::before { color: rgba(185,144,85,0.15); }
.sec-head--left[data-i]::before { left: -0.04em; transform: none; }

/* Word-mask reveal for section titles (JS splits the text) */
.sec-head__title .w {
  display: inline-block; overflow: hidden;
  padding: 0.14em 0.08em; margin: -0.14em -0.08em;
  vertical-align: top;
}
.sec-head__title .w__i {
  display: inline-block; transform: translateY(112%);
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-head__title.words-in .w__i { transform: translateY(0); }
.sec-head__title .w__i--em { font-style: italic; color: var(--noe-gold); }

/* Scroll parallax on imagery — scale gives room so edges never show */
.work-row__media img,
.gframe__media img,
.manifesto__media img,
.partner__photo img {
  transform: scale(1.14);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .work-row__media img, .gframe__media img,
  .manifesto__media img, .partner__photo img { transform: none; }
  .sec-head__title .w__i { transform: none; }
}

/* ============================================================
   CONTACT FORM — refined fields, custom dropdown, autofill fix
   ============================================================ */
.contact__form { max-width: 640px; }
.contact__field { gap: 9px; }
.contact__input { padding: 11px 0; }

/* Kill the browser autofill background so the glass look survives */
.contact__input:-webkit-autofill,
.contact__input:-webkit-autofill:hover,
.contact__input:-webkit-autofill:focus,
.contact__input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--noe-bone);
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 600000s 0s, color 600000s 0s;
  caret-color: var(--noe-bone);
}

/* Custom brand-styled dropdown */
.nsel { position: relative; }
.nsel__btn {
  width: 100%; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; color: rgba(247,243,236,0.4);
  background: transparent; border: none; border-bottom: 1px solid var(--rule-on-deep);
  padding: 11px 26px 11px 0; outline: none; border-radius: 0; position: relative;
  transition: border-color 220ms, color 220ms;
}
.nsel__btn.has-value { color: var(--noe-bone); }
.nsel__btn::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 11px; height: 7px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23B99055' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 260ms cubic-bezier(.22,1,.36,1);
}
.nsel.is-open .nsel__btn { border-bottom-color: var(--noe-gold); }
.nsel.is-open .nsel__btn::after { transform: translateY(-50%) rotate(180deg); }
.nsel__list {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 30;
  list-style: none; margin: 0; padding: 7px;
  background: rgba(24,32,26,0.97);
  -webkit-backdrop-filter: blur(18px) saturate(130%); backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(185,144,85,0.32); border-radius: 12px;
  box-shadow: 0 20px 54px rgba(0,0,0,0.45);
  opacity: 0; transform: translateY(-8px) scale(0.98); transform-origin: top; pointer-events: none;
  transition: opacity 220ms cubic-bezier(.22,1,.36,1), transform 220ms cubic-bezier(.22,1,.36,1);
}
.nsel.is-open .nsel__list { opacity: 1; transform: none; pointer-events: auto; }
.nsel__opt {
  font-family: var(--font-body); font-size: 14px; color: rgba(247,243,236,0.82);
  padding: 11px 13px; border-radius: 7px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 160ms, color 160ms;
}
.nsel__opt:hover { background: rgba(185,144,85,0.16); color: var(--noe-bone); }
.nsel__opt.is-sel { color: var(--noe-gold); }
.nsel__opt.is-sel::after { content: "\2713"; font-size: 11px; color: var(--noe-gold); }

/* Mobile tiers — clean single-column stack (fits all phones) */
@media (max-width: 700px) {
  .tiers { grid-template-columns: 1fr !important; gap: 14px !important; max-width: none !important; margin: 0 !important; width: 100% !important; }
  .tier { display: flex !important; width: 100% !important; box-sizing: border-box !important; padding: 24px 22px !important; border-radius: 10px !important; max-width: none !important; text-align: left !important; }
  .tier:nth-child(3) { grid-column: auto !important; }
  .tier--featured { padding-top: 50px !important; }
  .tier__label { font-size: 10px; margin-bottom: 12px; }
  .tier__title { font-size: 22px; }
  .tier__line { font-size: 14px; margin-bottom: 22px; line-height: 1.3; }
  .tier__price { font-size: 30px; }
  .tier__cadence { font-size: 10px; margin-bottom: 22px; }
  .tier__items { gap: 9px; padding-bottom: 22px; margin-bottom: 22px; }
  .tier__items li { font-size: 13px; padding-left: 16px; line-height: 1.45; }
  .tier__items li::before { font-size: 9px; top: 4px; }
  .tier__badge { font-size: 8.5px; letter-spacing: 0.12em; padding: 7px 0; }
  .tier .btn { width: 100%; justify-content: center; padding: 14px 16px; font-size: 11px; letter-spacing: 0.08em; gap: 8px; }
}

/* Mobile fine-tuning — compact founding promo */
@media (max-width: 700px) {
  .pilot { padding: 22px 18px !important; }
  .pilot__tag { font-size: 8.5px !important; padding: 6px 11px !important; margin-bottom: 14px !important; letter-spacing: 0.1em !important; }
  .pilot__main { gap: 18px !important; }
  .pilot__title { font-size: 19px !important; margin-bottom: 10px !important; line-height: 1.12 !important; }
  .pilot__desc { font-size: 12.5px !important; margin-bottom: 14px !important; line-height: 1.5 !important; }
  .pilot__items { gap: 6px 16px !important; }
  .pilot__items li { font-size: 11.5px !important; }
  .pilot__aside { padding-top: 16px !important; gap: 4px !important; }
  .pilot__price { font-size: 30px !important; }
  .pilot__price-note { font-size: 9.5px !important; }
  .pilot__cadence { font-size: 9px !important; margin-bottom: 10px !important; }
  .pilot__return { font-size: 12px !important; margin-top: 14px !important; line-height: 1.5 !important; }
}

/* ============================================================
   FINAL POLISH — eyebrow rules, experience line, manifesto, texture
   ============================================================ */

/* Hero eyebrow — no flanking lines next to "Strategy · Design · Growth" */
.hero__eyebrow::before, .hero__eyebrow::after { display: none; }

/* Experience credentials — one clean responsive line (dotted, no pills) */
.partner__credits { display: block; text-align: center; white-space: nowrap; max-width: none; margin-top: 4px; padding-top: 12px; }
.partner__credits-label { display: block; white-space: normal; margin-bottom: 6px; }
.cred-chip {
  display: inline; background: none !important; border: none !important;
  padding: 0 !important; border-radius: 0 !important; box-shadow: none !important;
  font-family: var(--font-body); font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(9.5px, 2.6vw, 12.5px); color: var(--noe-deep); white-space: nowrap;
}
.cred-chip:not(:last-child)::after {
  content: "\00B7"; margin: 0 clamp(5px, 1.5vw, 9px); color: var(--noe-gold); opacity: 0.8;
}

/* Manifesto image — prominent above the copy on mobile */
@media (max-width: 768px) {
  #manifesto .sec__inner { display: flex; flex-direction: column; }
  .manifesto__media { order: -1; width: 100%; max-width: 420px; margin: 0 auto 6px; }
  .manifesto__media img { transform: none !important; }
}

/* Quieter texture on phones (the dotty look) */
@media (max-width: 600px) {
  .grain { opacity: 0.03; }
}

/* Remove the dot texture behind the doctrine quote entirely */
.quote__pattern { display: none; }

/* ============================================================
   MOBILE ROBUSTNESS — guarantee a clean fit on most phones
   ============================================================ */
html, body { overflow-x: hidden; max-width: 100%; }
@media (max-width: 600px) {
  .sec__inner, .contact__inner, .experience__inner { max-width: 100%; }
  /* never let a long unbreakable word force a sideways scroll */
  .hero__sub, .sec-head__lead, .pillar__body, .work-row__body,
  .partner__bio, .tier__items li, .pilot__desc, .manifesto__body,
  .carte-row__desc, .phase__body { overflow-wrap: anywhere; }
}
/* small phones (≤390 incl. iPhone 16/SE) — keep the experience strip on one line */
@media (max-width: 400px) {
  .experience__logos { gap: clamp(5px, 1.8vw, 11px); }
  .experience__logos li { font-size: clamp(8.5px, 2.6vw, 12px); }
  .experience__label { font-size: 9px; letter-spacing: 0.16em; }
}

/* Hero leaves visible on iPad & mobile — show the full top band of the art */
@media (max-width: 1024px) {
  .hero__bg {
    inset: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    animation: none;
  }
}
@media (max-width: 600px) {
  .experience__logos { flex-wrap: nowrap; gap: clamp(8px, 2.6vw, 16px); }
  .experience__logos li { font-size: clamp(10px, 2.9vw, 15px); white-space: nowrap; }
}

/* ============================================================
   02 · WORK — featured flagship + mini grid
   ============================================================ */
.work-feature {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: center;
  background: linear-gradient(155deg, #F4E6D2, #E7D9C0);
  border: 1px solid var(--noe-gold-soft);
  border-radius: 6px; padding: clamp(16px, 2vw, 28px);
  margin-top: 6px; position: relative; overflow: hidden;
  box-shadow: 0 40px 90px -56px rgba(42,30,20,0.5);
}
.work-feature__media {
  position: relative; display: block; overflow: hidden;
  border-radius: 3px; aspect-ratio: 4 / 3.3; background: var(--noe-clay-soft);
}
.work-feature__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.work-feature:hover .work-feature__media img { transform: scale(1.04); }
.work-feature__copy { padding: clamp(6px, 1.4vw, 22px) clamp(6px, 1.8vw, 30px); }
.work-feature__num {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--noe-terra); margin-bottom: 16px;
}
.work-feature__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(38px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 14px; color: var(--fg-1);
}
.work-feature__title em { font-style: italic; color: var(--noe-terra); }
.work-feature__meta {
  font-family: var(--font-body); font-weight: 500; font-size: 10.5px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--noe-terra); margin-bottom: 18px;
}
.work-feature__body {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65; color: var(--fg-2);
  margin: 0 0 28px; max-width: 460px; text-wrap: pretty;
}
.work-feature__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.work-badge--feature { background: var(--noe-terra); color: var(--noe-bone); }
.work-badge--feature::before { color: var(--noe-gold-soft); }

.work-more-label {
  font-family: var(--font-accent); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--noe-gold);
  margin: clamp(44px, 6vh, 72px) 0 22px;
}
.work-mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}
.work-mini { display: block; }
.work-mini__media {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4 / 5; background: var(--noe-clay-soft); margin-bottom: 16px;
}
.work-mini__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.work-mini:hover .work-mini__media img { transform: scale(1.04); }
.work-mini__num {
  font-family: var(--font-accent); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--noe-gold); margin-bottom: 8px;
}
.work-mini__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.05; letter-spacing: -0.01em;
  margin: 0 0 8px; color: var(--fg-1);
}
.work-mini__title em { font-style: italic; color: var(--noe-gold); }
.work-mini__meta {
  font-family: var(--font-body); font-weight: 500; font-size: 10px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-2);
}
@media (max-width: 860px) {
  .work-feature { grid-template-columns: 1fr; }
  .work-mini-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .work-feature__ctas .btn { width: 100%; justify-content: center; }
  .work-mini-grid { grid-template-columns: 1fr; gap: 30px; }
  .work-mini__media { aspect-ratio: 4 / 5; }
  .work-mini__title { font-size: 26px; }
}
