/* ============================================================
   Novo Pergola · Los Angeles — editorial premium
   Design tokens -> Reset -> Layout -> Components -> Sections
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg:        #0F0E0C;   /* espresso black          */
  --bg-2:      #151310;   /* slightly lifted         */
  --bg-warm:   #1C1916;   /* warm dark section       */
  --cream:     #F5F1EA;   /* cream                   */
  --cream-2:   #EDE7DC;   /* cream muted             */
  --ink:       #1A1816;   /* deep ink on cream       */
  --ink-2:     #46403A;   /* muted ink               */
  --bronze:    #B89968;   /* champagne accent        */
  --bronze-2:  #8C7248;   /* darker bronze           */
  --muted:     #8C8880;   /* muted body on dark      */
  --muted-2:   #56504A;   /* muted body on cream     */
  --line:      rgba(245,241,234,.10);
  --line-dark: rgba(26,24,22,.10);

  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(72px, 10vw, 140px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* accessibility */
.skip {
  position: absolute; top: -40px; left: 12px; z-index: 9999;
  background: var(--cream); color: var(--ink); padding: 10px 14px; border-radius: 6px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 2px; }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze);
}
.section--investment .display,
.section--engineering .display,
.section--gallery .display,
.section--projects .display,
.section--projects-gallery .display,
.section--warranty .display,
.section--about .display,
.sim-section .display { color: var(--ink); }

/* Dark sections always win: keeps cream display text when .section--dark is combined with any light-type class */
.section.section--dark .display { color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}

/* Centered section label at the top of each major section — replaces numbered eyebrows.
   Eats half of section padding on top so the label sits vertically centered between
   the section boundary and the first content block. */
.section-label {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: calc(var(--pad-y) * -0.5);
  margin-bottom: calc(var(--pad-y) * 0.5);
  margin-left: auto;
  margin-right: auto;
}
.section-label--standalone {
  /* Same behavior; kept as a hook for standalone label contexts. */
  margin-top: calc(var(--pad-y) * -0.5);
  margin-bottom: calc(var(--pad-y) * 0.5);
}

.lede {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}
.section--dark .lede { color: var(--cream); }

.dek {
  max-width: 64ch;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section--investment .dek,
.section--engineering .dek,
.section--gallery .dek,
.section--projects .dek,
.section--projects-gallery .dek,
.section--warranty .dek,
.section--about .dek { color: var(--muted-2); }
.section__head--centered .dek { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 58px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  line-height: 1;
  transform: translateX(-2px);
  transition: transform .35s var(--ease);
}
.btn:hover::after { transform: translateX(2px); }

.btn--primary {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
  box-shadow: 0 2px 0 rgba(0,0,0,.12), 0 18px 40px -12px rgba(184,153,104,.35);
}
.btn--primary:hover {
  background: #CFAE78;
  border-color: #CFAE78;
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.16), 0 26px 50px -14px rgba(184,153,104,.55);
}

.btn--ghost {
  background: rgba(15,14,12,.25);
  color: var(--cream);
  border-color: rgba(245,241,234,.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(245,241,234,.10);
  transform: translateY(-2px);
}

.btn--block { width: 100%; }
.btn--block::after { display: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(15,14,12,.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  padding-top: 6px; padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  transition: opacity .2s var(--ease);
}
.nav__brand:hover { opacity: .85; }
.nav__logo {
  display: block;
  height: 128px;
  width: auto;
  /* source is black bg + white logo — mix-blend-mode lets the nav bg show through cleanly */
  mix-blend-mode: screen;
  transition: height .3s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 52px; }
@media (max-width: 880px) {
  .nav__logo { height: 80px; }
  .nav.is-scrolled .nav__logo { height: 44px; }
}
/* Legacy selectors kept to avoid surprises if template leftover appears */
.nav__brand-mark, .nav__brand-word, .nav__brand-loc { display: none; }

.nav__menu {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
  color: var(--cream);
}
.nav__menu a {
  position: relative;
  padding: 6px 2px;
  color: rgba(245,241,234,.78);
  transition: color .2s var(--ease);
}
.nav__menu a:hover { color: var(--cream); }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--bronze);
  transition: width .3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

/* ---------- SIMPLE SUBMENU (Projects → Residential/Commercial) ---------- */
.has-submenu { position: relative; }
.has-submenu > a .caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  color: var(--bronze);
  transform: translateY(-1px);
  transition: transform .35s var(--ease);
}
.has-submenu:hover > a .caret,
.has-submenu:focus-within > a .caret { transform: translateY(-1px) rotate(180deg); }

.submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  margin: 6px 0 0;
  padding: 8px 0;
  background: rgba(13,11,9,.96);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 40px -16px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  list-style: none;
  z-index: 95;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 10px 22px;
  font-size: 13.5px;
  color: rgba(245,241,234,.8);
  transition: background .2s var(--ease), color .2s var(--ease), padding .2s var(--ease);
}
.submenu li a:hover {
  background: rgba(184,153,104,.12);
  color: var(--cream);
  padding-left: 26px;
}
@media (max-width: 880px) {
  .submenu { display: none; }
  .has-submenu > a .caret { display: none; }
}

/* ---------- MEGAMENU (Collection dropdown) ---------- */
.has-mega { position: static; }
.has-mega > a .caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  color: var(--bronze);
  transform: translateY(-1px);
  transition: transform .35s var(--ease);
}
.has-mega:hover > a .caret,
.has-mega:focus-within > a .caret,
.has-mega.is-open > a .caret { transform: translateY(-1px) rotate(180deg); }

.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  padding: clamp(24px, 3vw, 40px) var(--pad-x);
  background: rgba(13,11,9,.94);
  backdrop-filter: saturate(140%) blur(22px);
  -webkit-backdrop-filter: saturate(140%) blur(22px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 32px 80px -28px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  pointer-events: none;
  z-index: 90;
}
/* Bridge any sub-pixel gap between nav item and dropdown */
.mega::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega,
.has-mega.is-open > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega__inner { max-width: 1440px; margin: 0 auto; }

.mega__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.mega__intro--minimal {
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.mega__intro .eyebrow { font-size: 10px; margin-bottom: 10px; }
.mega__title {
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.mega__title em { font-style: italic; color: var(--bronze); }

.mega__all {
  display: inline-flex; align-items: center; gap: 14px;
  align-self: center;
  width: fit-content;
  padding: 15px 80px;
  border: 1px solid rgba(245,241,234,.35);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--cream) !important;
  white-space: nowrap;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.mega__all span {
  font-family: var(--display); font-style: italic; color: var(--bronze); transition: transform .3s var(--ease);
}
.mega__all:hover { background: var(--bronze); color: var(--ink) !important; border-color: var(--bronze); }
.mega__all:hover span { color: var(--ink); transform: translateX(3px); }

/* Legacy grid kept for backwards-compat but unused by the new layout */
.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0; margin: 0;
}

/* CATEGORY-level dropdown: 5 collection cards in a single row, compact */
.mega__cats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
  align-items: stretch;
}
.mega__cats > li { min-width: 0; display: flex; }

/* Two-card variant used by the Projects megamenu */
.mega__cats--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.mega__cats--two .mega__cat .mega__img { aspect-ratio: 16/9; }
.mega__cats--two .mega__cat-meta { padding: 20px 24px 22px; gap: 8px; }
.mega__cats--two .mega__cat-name { font-size: 26px; }
.mega__cats--two .mega__cat::before { font-size: 34px; top: 10px; right: 16px; }

.mega__cat {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  color: var(--cream) !important;
  transition: transform .4s var(--ease), border-color .35s var(--ease), background .3s var(--ease);
}
.mega__cat:hover {
  transform: translateY(-4px);
  border-color: rgba(184,153,104,.55);
  background: #1A1612;
}

/* Bronze roman numeral watermark — instant category anchor */
.mega__cat::before {
  content: attr(data-roman);
  position: absolute;
  top: 8px; right: 12px;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--bronze);
  opacity: .3;
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .4s var(--ease);
}
.mega__cat:hover::before { opacity: .55; transform: translateY(-2px); }

.mega__cat .mega__img { aspect-ratio: 16/10; position: relative; }
.mega__cat .mega__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,14,12,.0) 50%, rgba(15,14,12,.45) 100%);
  pointer-events: none;
}
.mega__cat .mega__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .5s var(--ease);
  filter: saturate(.95);
}
.mega__cat:hover .mega__img img { transform: scale(1.06); filter: saturate(1.05); }

.mega__cat-meta {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 auto;
}
.mega__cat .mega__tag {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}
.mega__cat-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--cream);
  margin: 2px 0 0;
  /* Reserve 2 lines of vertical space so cards align regardless of wrap */
  min-height: calc(2 * 1.05em);
}
.mega__cat-line {
  font-family: var(--display);
  font-style: italic;
  font-size: 12.5px;
  color: var(--bronze);
  margin: 0;
  line-height: 1.3;
  /* Reserve 2 lines here too */
  min-height: calc(2 * 1.3em);
}
.mega__cat-list {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.55);
  margin: 6px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* Stacked "products in this collection" list — compact */
.mega__cat-products {
  list-style: none;
  margin: 6px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2px;
}
.mega__cat-products li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 3px 0;
  border-bottom: 1px dashed rgba(184,153,104,.1);
}
.mega__cat-products li:last-child { border-bottom: 0; }
.mega__cat-product-name {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.mega__cat-product-type {
  font-family: var(--display);
  font-style: italic;
  font-size: 11.5px;
  color: var(--bronze);
  text-align: right;
}
.mega__cat-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 500;
}
.mega__cat-cta em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  text-transform: none;
  transition: transform .3s var(--ease);
}
.mega__cat:hover .mega__cat-cta em { transform: translateX(4px); }

/* Compact megamenu cards — hide product rows and cta so both grid rows fit in viewport */
.mega__cat-products,
.mega__cat-cta { display: none; }
.mega__cat-meta { padding: 12px 14px 14px; gap: 4px; }
.mega__cat .mega__img { height: 160px; flex-shrink: 0; aspect-ratio: unset; }
.mega__cat .mega__img img { object-position: center center; }
/* Compact collection grid — tighter text, no reserved 2-line space */
.mega__cats:not(.mega__cats--two) .mega__cat-name {
  font-size: 16px;
  min-height: 0;
}
.mega__cats:not(.mega__cats--two) .mega__cat-line {
  font-size: 14px;
  min-height: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* CTA card — lives after the divider */
.mega__cat--cta {
  background: linear-gradient(135deg, #231b11 0%, #15120E 55%, #0F0E0C 100%);
  border-color: rgba(184,153,104,.35);
}
.mega__cat--cta::before { content: none; }
.mega__cat--cta:hover {
  background: linear-gradient(135deg, #2b2115 0%, #1a1511 55%, #15120E 100%);
  border-color: var(--bronze);
}
.mega__cat--cta .mega__cta {
  padding: 22px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
}

@media (max-width: 1100px) {
  .mega__cats { grid-template-columns: 1fr 1fr; }
  .mega__cats::before { display: none; }
  .mega__cats > li:last-child { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .mega { display: none; }
}

/* Stagger reveal for cats */
.mega__cats > li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.has-mega:hover > .mega .mega__cats > li,
.has-mega:focus-within > .mega .mega__cats > li,
.has-mega.is-open > .mega .mega__cats > li {
  opacity: 1;
  transform: translateY(0);
}

/* 3-category layout: Pergolas (3) | Covers (3) | Pool (1) | CTA */
.mega__groups {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr) minmax(0, 1.2fr) minmax(220px, 1.2fr);
  gap: 18px;
  align-items: stretch;
}
.mega__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.mega__group-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,153,104,.25);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.mega__group-label > span {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}
.mega__group-label > em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: rgba(245,241,234,.45);
}
.mega__group-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
}
/* Constrain card image aspect for the denser mega grid */
.mega__groups .mega__img { aspect-ratio: 4/3; }
.mega__groups .mega__meta { padding: 12px 14px 16px; }
.mega__groups .mega__name { font-size: 18px; }
.mega__groups .mega__line { font-size: 12px; margin-top: 4px; }
.mega__groups .mega__tag { font-size: 9.5px; margin-bottom: 6px; }

.mega__group--cta {
  display: block;
}
.mega__groups .mega__card--cta {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.mega__groups .mega__cta {
  padding: 22px 20px;
  display: grid;
  gap: 6px;
  height: 100%;
  align-content: center;
}

/* Stagger reveal reuses the --i we set on children — mega__group-list items get ordered by JS */

@media (max-width: 1280px) {
  .mega__groups { grid-template-columns: minmax(0, 2fr) minmax(0, 2fr); gap: 24px 18px; }
  .mega__group--pool { grid-column: 1; }
  .mega__groups .mega__card--cta { grid-column: 2; align-self: end; }
  .mega__groups .mega__cta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; padding: 22px 28px;
  }
  .mega__groups .mega__cta-sub { flex-basis: 100%; order: 3; }
}
@media (max-width: 880px) {
  .mega { display: none; }
  .has-mega > a .caret { display: none; }
}

.mega__card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  color: var(--cream) !important;
  transition: transform .35s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  height: 100%;
}
.mega__card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,153,104,.5);
  background: #1A1612;
}
.mega__img {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #252018;
}
.mega__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: saturate(.95);
}
.mega__card:hover .mega__img img { transform: scale(1.06); filter: saturate(1.05); }
.mega__meta { padding: 14px 16px 18px; }
.mega__tag {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.mega__name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}
.mega__name span {
  font-size: 10px;
  vertical-align: super;
  color: rgba(245,241,234,.45);
  margin-left: 1px;
}
.mega__line {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
  color: rgba(245,241,234,.68);
}

/* CTA card (the 8th slot) */
.mega__card--cta {
  background: linear-gradient(135deg, #231b11 0%, #15120E 55%, #0F0E0C 100%);
  border-color: rgba(184,153,104,.35);
}
.mega__card--cta:hover {
  background: linear-gradient(135deg, #2b2115 0%, #1a1511 55%, #15120E 100%);
  border-color: var(--bronze);
}
.mega__cta {
  position: relative;
  padding: 22px 20px 24px;
  display: grid;
  gap: 8px;
  height: 100%;
  align-content: center;
}
.mega__cta .eyebrow { margin: 0 0 4px; color: rgba(245,241,234,.55); }
.mega__cta-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.mega__cta-sub {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(245,241,234,.65);
  margin: 2px 0 0;
}
.mega__cta-arrow {
  position: absolute;
  right: 20px; bottom: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bronze);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 16px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.mega__card--cta:hover .mega__cta-arrow { transform: translateX(4px); background: var(--cream); }

/* Stagger reveal on mega grid items */
.mega__grid > li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.has-mega:hover > .mega .mega__grid > li,
.has-mega:focus-within > .mega .mega__grid > li,
.has-mega.is-open > .mega .mega__grid > li {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .mega__grid { grid-template-columns: repeat(3, 1fr); }
  .mega__card--cta { grid-column: span 3; }
  .mega__cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 24px 28px; }
  .mega__cta-sub { flex-basis: 100%; order: 3; }
}
@media (max-width: 880px) {
  .mega { display: none; } /* mobile overlay handles nav differently */
  .has-mega > a .caret { display: none; }
}

/* ---------- NAV CTA ---------- */
/* Selector needs `.nav__menu a.nav__cta` to beat `.nav__menu a` specificity (0,1,1). */
.nav__menu a.nav__cta {
  height: 48px;
  padding: 0 32px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: var(--ink);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(184,153,104,.45);
}
.nav__menu a.nav__cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(245,241,234,.35);
}
.nav__menu a.nav__cta::after { content: none; }

.nav__toggle {
  display: none;
  width: 38px; height: 38px;
  position: relative;
  z-index: 200;
}
.nav__toggle span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--cream);
  transition: transform .25s var(--ease), opacity .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 56px;
  padding: 200px var(--pad-x) 64px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
}
.hero__media img,
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) both;
}
.hero__video { display: block; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,.55) 0%, rgba(15,14,12,.20) 35%, rgba(15,14,12,.80) 100%),
    radial-gradient(80% 60% at 30% 40%, transparent 0%, rgba(15,14,12,.25) 100%);
}
.hero__inner { max-width: 920px; animation: riseIn 1.1s var(--ease) .15s both; }
.hero__inner .eyebrow {
  font-size: 17px;
  letter-spacing: 0.28em;
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: .95;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--cream);
  text-wrap: balance;
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--bronze); }
.hero__sub {
  max-width: 58ch;
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(245,241,234,.80);
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__trust {
  position: relative;
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  padding-top: 24px;
  padding-right: 120px;
  border-top: 1px solid rgba(245,241,234,.16);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.82);
  animation: riseIn 1.1s var(--ease) .55s both;
}
.hero__trust li { display: flex; align-items: center; gap: 12px; }
.dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 64px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  writing-mode: vertical-rl;
  padding-right: 24px;
  display: flex; align-items: center;
}
.hero__scroll::after {
  content: ""; position: absolute;
  right: 4px; top: 0;
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, var(--cream));
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-20px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .hero { gap: 40px; padding-bottom: 48px; }
  .hero__inner .eyebrow { font-size: 15px; margin-bottom: 20px; }
  .hero__trust { gap: 14px; padding-right: 0; font-size: 14px; letter-spacing: 0.14em; }
  .hero__scroll { display: none; }
}

/* ---------- sections ---------- */
.section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
  color: var(--ink);
}
.section--dark { background: var(--bg-warm); color: var(--cream); }
.section__head { max-width: 720px; }
.section__head--centered { text-align: center; margin: 0 auto 64px; }
.section__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .section__grid { grid-template-columns: 1fr; }
}

.section__body { font-size: 17px; color: var(--muted-2); line-height: 1.7; }
.section__body p + p { margin-top: 14px; }

/* ---------- ABOUT v2 — editorial split ---------- */
.about-v2__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}
.about-v2__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 90px -40px rgba(0,0,0,.35);
}
.about-v2__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.94);
  transition: transform 1.1s var(--ease);
}
.about-v2__figure:hover img { transform: scale(1.03); }
.about-v2__figure figcaption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(15,14,12,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(245,241,234,.15);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.9);
}
.about-v2__figure figcaption em {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--bronze);
}

.about-v2__body {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}
.about-v2__title {
  color: var(--ink);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.about-v2__lede {
  font-family: var(--display);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.about-v2__scope {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-v2__scope li {
  padding: 8px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(26,24,22,.03);
}

.about-v2__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin: 0;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.about-v2__facts > div { display: flex; flex-direction: column; gap: 4px; }
.about-v2__facts dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.about-v2__facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.35;
}

.about-v2__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn--link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 4px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s var(--ease);
}
.btn--link span {
  font-family: var(--display); font-style: italic; font-size: 16px;
  color: var(--bronze);
  transition: transform .3s var(--ease);
}
.btn--link::after {
  content: "";
  position: absolute; left: 4px; right: 4px; bottom: 14px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(.7);
  transition: transform .4s var(--ease);
}
.btn--link:hover { color: var(--ink); }
.btn--link:hover::after { transform: scaleX(1); }
.btn--link:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
  .about-v2__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-v2__figure { aspect-ratio: 5 / 4; max-height: 560px; }
  .about-v2__body { max-width: none; }
  .about-v2__facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .about-v2__facts { grid-template-columns: 1fr; }
}
.section--dark .section__body { color: rgba(245,241,234,.80); }

/* ---------- OVERVIEW COMBINED SECTION (louvered-pergolas) ---------- */
.ov-section { overflow: hidden; }

.ov-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left column */
.ov-label {
  display: block;
  text-align: left;
  margin-top: 0;
  font-size: 11px;
}
.ov-title {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 56px);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.ov-title em { color: var(--bronze); font-style: italic; }
.ov-lede {
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 42ch;
  margin: 0 0 32px;
}
.ov-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  margin: 0;
  padding: 0;
}
.ov-meta > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 12px;
}
.ov-meta dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.ov-meta dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  text-align: right;
}

/* Right column — feature rows */
.ov-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ov-feat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--oi, 0) * 90ms);
}
.ov-feats > li:first-child { border-top: 1px solid var(--line-dark); }
.ov-feat.is-in { opacity: 1; transform: translateX(0); }
.ov-feat__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--bronze);
}
.ov-feat__icon svg { width: 100%; height: 100%; }
.ov-feat__text h3 {
  font-family: var(--display);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 3px;
  line-height: 1.2;
}
.ov-feat__text p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .ov-inner { grid-template-columns: 1fr; gap: 40px; }
  .ov-label { text-align: center; }
  .ov-title { font-size: clamp(28px, 6vw, 44px); }
  .ov-lede { max-width: 100%; }
  .ov-feat { transform: translateY(20px); }
  .ov-feat.is-in { transform: translateY(0); }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: min(90vw, 1300px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  user-select: none;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 10px;
  transition: color 0.15s;
}
.lightbox__close:hover { color: #fff; }
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.16); color: #fff; }
.lightbox__btn--prev { left: 20px; }
.lightbox__btn--next { right: 20px; }
.lightbox__counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.grid .card { cursor: zoom-in; }
@media (max-width: 680px) {
  .lightbox__btn--prev { left: 8px; }
  .lightbox__btn--next { right: 8px; }
}

/* ---------- ABOUT (editorial centered: header / hero photo / creds / footer) ---------- */
.about__wrap { max-width: 1440px; margin: 0 auto; }

.about__header { margin-bottom: clamp(48px, 6vw, 72px); }
.about__header .dek { color: var(--muted-2); }
.about__kicker {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  max-width: 46ch;
  margin: 28px auto 0;
  position: relative;
  padding: 0 24px;
}
.about__kicker::before, .about__kicker::after {
  content: ""; position: absolute; top: 50%; width: 32px; height: 1px; background: var(--bronze); opacity: .6;
}
.about__kicker::before { right: 100%; margin-right: 14px; }
.about__kicker::after  { left: 100%; margin-left: 14px; }
@media (max-width: 640px) {
  .about__kicker::before, .about__kicker::after { display: none; }
  .about__kicker { padding: 0; }
}

/* Cinematic photo */
.about__photo--hero {
  aspect-ratio: 21/9;
  margin: 0 0 clamp(56px, 7vw, 88px);
  border-radius: 20px;
  box-shadow: 0 40px 80px -32px rgba(26,24,22,.55);
}
@media (max-width: 720px) { .about__photo--hero { aspect-ratio: 4/3; } }

/* Footer strip: stats + badge */
.about__footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(48px, 7vw, 72px);
  align-items: stretch;
}
.about__footer .about__stats { grid-template-columns: repeat(3, 1fr); }
.about__footer .about__stats li { padding: 26px 20px; }
.about__footer .badge {
  align-self: stretch;
  max-width: none;
}
@media (max-width: 880px) {
  .about__footer { grid-template-columns: 1fr; }
}

/* Stats strip rendered on its own, no badge */
.about__stats--solo {
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 5vw, 60px);
}
.about__stats--solo li { padding: 26px 20px; }
@media (max-width: 720px) {
  .about__stats--solo { grid-template-columns: 1fr 1fr; }
  .about__stats--solo li:nth-child(3) { grid-column: 1 / -1; }
}

/* Row 2 — full-width credentials row */
.creds {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  border-bottom: 1px solid var(--line-dark);
}
.cred {
  padding: clamp(32px, 3.5vw, 48px) clamp(16px, 1.6vw, 26px);
  display: grid;
  align-content: start;
  gap: 14px;
  border-right: 1px solid var(--line-dark);
  transition: background .35s var(--ease);
}
.cred:last-child { border-right: 0; }
.cred:hover { background: #FFFBF3; }

.cred__icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #FFFBF3;
  color: var(--bronze-2);
  border: 1px solid var(--line-dark);
  margin-bottom: 4px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.cred__icon svg { width: 26px; height: 26px; }
.cred:hover .cred__icon {
  background: var(--ink);
  color: var(--bronze);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cred h3 {
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.cred p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-2);
  margin: 0;
}

@media (max-width: 1080px) {
  .creds { grid-template-columns: repeat(3, 1fr); }
  .cred:nth-child(3n) { border-right: 0; }
  .cred:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 640px) {
  .creds { grid-template-columns: 1fr 1fr; }
  .cred:nth-child(3n) { border-right: 1px solid var(--line-dark); }
  .cred:nth-child(2n) { border-right: 0; }
  .cred:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .cred:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
  .cred:last-child { grid-column: 1 / -1; border-right: 0; }
}

/* Row 3 — photo + sidekick (stats + badge) */
.about__bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-top: clamp(48px, 7vw, 80px);
}
@media (max-width: 880px) {
  .about__bottom { grid-template-columns: 1fr; }
}

.about__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 28px 60px -28px rgba(26,24,22,.45);
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02);
  transition: transform 1.2s var(--ease);
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo figcaption {
  position: absolute; left: 18px; bottom: 16px;
  padding: 8px 14px;
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(15,14,12,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,241,234,.12);
  border-radius: 999px;
}

.about__sidekick {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0; padding: 0;
}
.about__stats li {
  padding: 22px 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #FFFBF3;
  display: grid;
  gap: 10px;
  transition: border-color .3s var(--ease), transform .35s var(--ease);
}
.about__stats li:hover { border-color: var(--bronze); transform: translateY(-2px); }
.about__stat-n {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about__stat-u {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--bronze-2);
  margin-left: 2px;
}
.about__stat-l {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.4;
}
@media (max-width: 560px) {
  .about__stats { grid-template-columns: 1fr 1fr; }
  .about__stats li:nth-child(3) { grid-column: 1 / -1; }
}

.badge {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  margin: 0;
  padding: 18px 24px 18px 20px;
  background: linear-gradient(135deg, #15120E 0%, #1F1A14 100%);
  color: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(184,153,104,.25);
  box-shadow: 0 20px 48px -22px rgba(26,24,22,.55);
  overflow: hidden;
}
.badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 100% 0%, rgba(184,153,104,.18) 0%, transparent 60%);
  pointer-events: none;
}
.badge img { width: 64px; height: 64px; filter: invert(1); position: relative; }
.badge__seal {
  width: 64px; height: 64px;
  flex-shrink: 0;
  color: var(--bronze);
  position: relative;
  display: grid; place-items: center;
}
.badge__seal svg { width: 100%; height: 100%; }
.badge__title { font-family: var(--display); font-size: 21px; line-height: 1.1; color: var(--cream); position: relative; }
.badge__sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); margin-top: 6px; position: relative; }
.badge__ribbon {
  position: absolute;
  right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--display);
  font-size: 28px;
  color: var(--bronze);
  opacity: .35;
}

/* ---------- COLLECTION (3 category sub-sections, each with a rail) ---------- */
.section--collection { overflow: hidden; }
/* Homepage carousel only — bleeds off right edge */
.section--dark.section--collection { padding-right: 0; }

/* Light sections: ensure display headings and deks read dark */
.section--collection:not(.section--dark) .display,
.section--about .display {
  color: var(--ink);
}
.section--collection:not(.section--dark) .dek,
.section--about .dek {
  color: var(--muted);
}
.section--collection .section__head { padding-right: var(--pad-x); }
.section--collection > .section__head { margin-bottom: clamp(48px, 6vw, 72px); }

.collection-group + .collection-group {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.collection-group__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding-right: var(--pad-x);
  margin-bottom: 36px;
}
.collection-group__title {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.collection-group__title em { font-style: italic; color: var(--bronze); }
.collection-group__dek {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(245,241,234,.68);
  max-width: 52ch;
  margin: 0;
}
.collection-group__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid rgba(245,241,234,.22);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cream) !important;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.collection-group__link span {
  font-family: var(--display); font-style: italic; color: var(--bronze);
  transition: transform .3s var(--ease);
}
.collection-group__link:hover { background: var(--bronze); color: var(--ink) !important; border-color: var(--bronze); }
.collection-group__link:hover span { color: var(--ink); transform: translateX(3px); }

@media (max-width: 880px) {
  .collection-group__head { grid-template-columns: 1fr; align-items: start; }
}

/* Single-item rail (Pool category) — center it, don't scroll */
.rail--single .rail__track { padding-right: var(--pad-x); }
.rail--single .product { flex: 0 0 clamp(340px, 40vw, 560px); }

/* Homepage category grid — Azenco-style "Explore By Categories" (5 cards) */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: var(--pad-x);
}
.collection-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--cream) !important;
  transition: transform .4s var(--ease), border-color .35s var(--ease), background .3s var(--ease);
}
.collection-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,153,104,.55);
  background: #1A1612;
}
.collection-card__img {
  position: relative;
  aspect-ratio: 4/4;
  overflow: hidden;
  background: #252018;
}
.collection-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
  filter: saturate(.95);
}
.collection-card:hover .collection-card__img img { transform: scale(1.06); filter: saturate(1.05); }
.collection-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,14,12,.75) 100%);
  pointer-events: none;
}
.collection-card__roman {
  display: none;
}
.collection-card__meta {
  padding: 14px 18px 18px;
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 5px;
  flex: 1 1 auto;
}
.collection-card__roman-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}
.collection-card__name {
  font-family: var(--display);
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
}
.collection-card__line {
  font-family: var(--display);
  font-style: italic;
  font-size: 13.5px;
  color: var(--bronze);
  line-height: 1.35;
  margin: 0;
}
.collection-card__products,
.collection-card__product-list,
.collection-card__pill { display: none; }
/* Pill button, bottom-right of card — margin-top:auto pushes it to the bottom. */
.collection-card__pill {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(184,153,104,.55);
  border-radius: 999px;
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.collection-card__pill em {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.collection-card:hover .collection-card__pill {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
}
.collection-card:hover .collection-card__pill em { transform: translateX(4px); color: var(--ink); }

@media (max-width: 1280px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .collection-grid { grid-template-columns: 1fr; } }

/* 5-card mega layout update — 5 cats + CTA + optional divider */
.mega__cats {
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(220px, 1.1fr);
}
@media (max-width: 1400px) {
  .mega__cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mega__cats > li:last-child { grid-column: 1 / -1; }
  .mega__cats::before { display: none; }
}
@media (max-width: 880px) {
  .mega__cats { grid-template-columns: 1fr 1fr; }
}

/* Two-card Projects mega — re-declared here so it beats the 5-card rule above */
.mega__cats.mega__cats--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.mega__cats.mega__cats--two > li:last-child { grid-column: auto; }
@media (max-width: 880px) {
  .mega__cats.mega__cats--two { grid-template-columns: 1fr; }
}

.rail {
  position: relative;
  margin-top: 56px;
}
.rail__track {
  display: flex;
  gap: 24px;
  padding-right: var(--pad-x);
  padding-bottom: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--pad-x);
  scrollbar-width: thin;
  scrollbar-color: var(--bronze) transparent;
}
.rail__track::-webkit-scrollbar { height: 4px; }
.rail__track::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 4px; }

.product {
  flex: 0 0 clamp(300px, 34vw, 460px);
  scroll-snap-align: start;
  background: var(--bg-2);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .3s var(--ease);
}
.product:hover { transform: translateY(-4px); border-color: rgba(184,153,104,.4); }
.product__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #252018;
}
.product__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.product:hover .product__img img { transform: scale(1.04); }

.product__meta { padding: 24px 26px 28px; }
.product__tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.product--new .product__tag { color: #ffd896; }

.product__name {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1;
}
.product__name span { font-size: 14px; vertical-align: super; color: var(--muted); margin-left: 2px; }
.product__line {
  margin-top: 10px;
  font-size: 15px;
  color: var(--bronze);
  font-style: italic;
  font-family: var(--display);
}
.product__body {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,241,234,.72);
}
.product__explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(184,153,104,.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--bronze);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.product__explore span {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  transition: transform .3s var(--ease);
}
.product__explore:hover {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
  transform: translateX(2px);
}
.product__explore:hover span { transform: translateX(3px); }

.rail__controls {
  position: absolute;
  right: var(--pad-x);
  top: -64px;
  display: flex; gap: 8px;
}
.rail__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 50%;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.rail__btn:hover { background: var(--bronze); border-color: var(--bronze); color: var(--ink); }

/* ---------- ENGINEERING ---------- */
.section--engineering .section__head { max-width: 1200px; }
.section--engineering .display { text-wrap: nowrap; }
@media (max-width: 720px) { .section--engineering .display { text-wrap: balance; } }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  background: none;
  border: none;
  max-width: 1200px;
  margin: 64px auto 0;
}
.features li {
  background: transparent;
  padding: 0;
}
.feature__n {
  font-family: var(--display);
  font-style: italic;
  color: var(--bronze);
  font-size: 14px;
  margin-bottom: 14px;
}
.features h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.features li > p:last-child { color: var(--muted-2); font-size: 14.5px; line-height: 1.6; }

/* Illustrated variant — smaller thumbnail, rounded edges, centered */
.features--illustrated li {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.feature__img {
  width: 66%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  margin: 0 auto 22px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 16px 40px -24px rgba(0,0,0,.25);
}
.feature__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .5s var(--ease);
  filter: saturate(0.95);
}
.features--illustrated li:hover .feature__img img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.features--illustrated .feature__n,
.features--illustrated h3,
.features--illustrated li > p:last-child { padding: 0; max-width: 28ch; margin-left: auto; margin-right: auto; }

/* Why-section split: image left, 2×2 features right */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1320px;
  margin: 48px auto 0;
  align-items: start;
}
.why-split__img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}
.why-split__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.why-split__features {
  grid-template-columns: repeat(2, 1fr) !important;
  margin: 0 !important;
  max-width: none !important;
}
@media (max-width: 860px) {
  .why-split { grid-template-columns: 1fr; }
  .why-split__img { position: static; }
  .why-split__img img { aspect-ratio: 16/9; }
  .why-split__features { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .why-split__features { grid-template-columns: 1fr !important; }
}

/* Icon replacement for feature__n — SVG icon variant */
.feature__icon {
  color: var(--bronze);
  margin-bottom: 14px;
  display: block;
}
.feature__icon svg { width: 28px; height: 28px; display: block; }
.section--about .feature__icon { color: var(--bronze-2); }
.section--dark .feature__icon { color: var(--bronze); }

/* Dark-section overrides so feature titles + body remain legible */
.section--dark .features h3,
.section--dark .features li h3 { color: var(--cream); }
.section--dark .features li > p:last-child,
.section--dark .features li p { color: rgba(245, 241, 234, 0.72); }
.section--dark .feature__img { background: rgba(245, 241, 234, 0.04); box-shadow: 0 20px 50px -30px rgba(0,0,0,.6); }

/* Contain variant: for logos / badges (NOA badge) so they don't fill the card */
.feature__img--contain { background: #fff; }
.feature__img--contain img {
  object-fit: contain;
  padding: 18%;
  filter: none;
}
.section--dark .feature__img--contain { background: rgba(245, 241, 234, 0.06); }
.section--dark .feature__img--contain img { filter: invert(0); }

/* Icons-row variant: 4 cards on one line */
.features--icons { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .features--icons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features--icons { grid-template-columns: 1fr; } }

/* Configs: 4 diagram cards in one row */
.features--configs { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .features--configs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features--configs { grid-template-columns: 1fr; } }

/* Diagram variant: transparent config renders, larger than icons */
.feature__img--diagram {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  border: 1px solid rgba(26, 24, 22, 0.08);
  border-radius: 12px;
  box-shadow: none;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.feature__img--diagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
.section--dark .feature__img--diagram { background: var(--cream); border-color: rgba(26,24,22,.08); box-shadow: 0 20px 50px -30px rgba(0,0,0,.5); }
.features--illustrated li:hover .feature__img--diagram img { transform: none; filter: none; }

/* Icon variant: transparent, no box, for pictogram-style images */
.feature__img--icon {
  width: 192px;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__img--icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}
.section--dark .feature__img--icon { background: transparent; box-shadow: none; }
.features--illustrated li:hover .feature__img--icon img { transform: none; filter: none; }

@media (max-width: 1080px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .features { grid-template-columns: 1fr; } }

/* ---------- OPTIONS — visual card grid ---------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1320px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(245,241,234,.06);
  border: 1px solid rgba(245,241,234,.1);
  border-radius: 16px;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .4s var(--ease);
}
.option-card:hover {
  background: rgba(245,241,234,.1);
  border-color: rgba(184,153,104,.4);
  transform: translateY(-4px);
}
.option-card__img {
  width: 72%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: clamp(16px, 2vw, 24px);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.5);
}
.option-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1s var(--ease), filter .5s var(--ease);
}
.option-card:hover .option-card__img img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.option-card h3 {
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
}
.option-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(245,241,234,.6);
  max-width: 24ch;
}
@media (max-width: 1080px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .option-grid { grid-template-columns: 1fr; } }

/* Legacy — kept in case referenced elsewhere */
.options { display: none; }

/* ---------- GALLERY ---------- */
.filter {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.filter__btn {
  padding: 10px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.filter__btn:hover { border-color: var(--ink); }
.filter__btn.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.card.is-hidden { display: none; }
.card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter .6s var(--ease);
  filter: saturate(0.95);
}
.card:hover img { transform: scale(1.05); filter: saturate(1.1); }
.card--tall { grid-row: span 2; }
.card--wide { grid-column: span 2; }
/* Uniform grid — all cards same aspect ratio, no spanning */
.grid--uniform .card { aspect-ratio: 4/3; }
.grid--uniform .card--tall,
.grid--uniform .card--wide { grid-row: auto; grid-column: auto; }

@media (max-width: 1080px) { .grid { grid-template-columns: repeat(3, 1fr); } .card--wide { grid-column: span 2; } }
@media (max-width: 720px)  { .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .card--wide, .card--tall { grid-column: auto; grid-row: auto; } }

/* ---------- PROJECTS (homepage two-tile layout) ---------- */
.projects-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1440px;
  margin: 0 auto;
}
.project-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  color: var(--cream);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,.35);
}
.project-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.5);
}
.project-tile__img { position: absolute; inset: 0; z-index: 0; }
.project-tile__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) brightness(0.82);
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.project-tile:hover .project-tile__img img {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(0.9);
}
.project-tile::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,14,12,0) 40%, rgba(15,14,12,.55) 72%, rgba(15,14,12,.92) 100%);
  pointer-events: none;
}
.project-tile__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 44px 44px;
  color: var(--cream);
}
.project-tile__roman {
  display: inline-block;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--bronze);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.project-tile__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--cream);
}
.project-tile__line {
  color: rgba(245,241,234,.82);
  font-size: 16px;
  line-height: 1.55;
  max-width: 36ch;
  margin-bottom: 24px;
}
.project-tile__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.project-tile__cta em {
  font-style: normal;
  transition: transform .4s var(--ease);
}
.project-tile:hover .project-tile__cta { color: var(--cream); letter-spacing: 0.16em; }
.project-tile:hover .project-tile__cta em { transform: translateX(6px); }

@media (max-width: 880px) {
  .projects-split { grid-template-columns: 1fr; gap: 16px; }
  .project-tile { aspect-ratio: 5 / 6; }
  .project-tile__body { padding: 28px 28px 32px; }
}

/* ---------- PROCESS ---------- */
/* ---------- ANIMATED TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 var(--pad-x);
}

/* Horizontal track line */
.timeline__track {
  position: absolute;
  top: 10px;
  left: var(--pad-x);
  right: var(--pad-x);
  height: 2px;
  background: rgba(245,241,234,.12);
  border-radius: 1px;
  z-index: 0;
}
.timeline__progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-2));
  border-radius: 1px;
  transition: width 0.1s linear;
  box-shadow: 0 0 14px rgba(184,153,104,.4);
}

/* Step list */
.timeline__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Individual step */
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 0 clamp(8px, 1.2vw, 16px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  counter-increment: tl-counter;
}
.timeline__steps { counter-reset: tl-counter; }
.tl-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot on the track */
.tl-step__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid rgba(245,241,234,.2);
  margin-bottom: 0;
  flex-shrink: 0;
  position: relative;
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.tl-step__dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: transparent;
  transition: background .5s var(--ease);
}
.tl-step.is-active .tl-step__dot {
  border-color: var(--bronze);
  box-shadow: 0 0 20px rgba(184,153,104,.45);
}
.tl-step.is-active .tl-step__dot::after {
  background: var(--bronze);
}

/* Week label — pill */
.tl-step__week {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  background: rgba(184,153,104,.08);
  border: 1px solid rgba(184,153,104,.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 18px 0 18px;
  align-self: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .6s var(--ease) .15s, transform .6s var(--ease) .15s, background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.tl-step.is-visible .tl-step__week { opacity: 1; transform: translateY(0); }
.tl-step.is-active .tl-step__week {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ink);
}

/* Card */
.tl-step__card {
  background: rgba(245,241,234,.04);
  border: 1px solid rgba(245,241,234,.08);
  border-top: 2px solid rgba(184,153,104,.25);
  border-radius: 6px;
  padding: clamp(22px, 2.2vw, 30px) clamp(18px, 2vw, 24px);
  width: 100%;
  flex: 1;
  position: relative;
  transition: background .35s var(--ease), border-color .35s var(--ease), border-top-color .35s var(--ease), transform .4s var(--ease);
}
.tl-step__card::before {
  content: "0" counter(tl-counter);
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--bronze);
  opacity: 0.7;
  margin-bottom: 14px;
}
.tl-step:hover .tl-step__card {
  background: rgba(245,241,234,.07);
  border-top-color: var(--bronze);
  transform: translateY(-5px);
}
.tl-step.is-active .tl-step__card {
  background: rgba(184,153,104,.07);
  border-top-color: var(--bronze);
}

.tl-step__n { display: none; }

.tl-step__card h3 {
  font-family: var(--display);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 12px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(245,241,234,.1);
}
.tl-step__card p {
  font-size: 13.5px;
  color: rgba(245,241,234,.55);
  line-height: 1.65;
  text-align: left;
  margin: 0;
}

/* Stagger entrance animation */
.tl-step:nth-child(1) { transition-delay: 0s; }
.tl-step:nth-child(2) { transition-delay: .12s; }
.tl-step:nth-child(3) { transition-delay: .24s; }
.tl-step:nth-child(4) { transition-delay: .36s; }
.tl-step:nth-child(5) { transition-delay: .48s; }

@media (max-width: 1080px) {
  .timeline__steps { grid-template-columns: repeat(3, 1fr); gap: 28px 0; }
  .timeline__track { display: none; }
  .tl-step__dot { display: none; }
  .tl-step__week { margin-top: 0; }
}
@media (max-width: 600px) {
  .timeline__steps { grid-template-columns: 1fr; gap: 20px; }
  .tl-step { opacity: 1; transform: none; }
  .tl-step__week { opacity: 1; }
}

/* Legacy (keep for product/collection pages that may still use .steps) */
.steps { display: none; }

/* ---------- INVESTMENT ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1320px;
  margin: 48px auto 0;
}
.tier {
  padding: 30px 26px 34px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #FFFBF3;
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}
.tier:hover { transform: translateY(-3px); border-color: var(--ink-2); }
.tier--feat {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.tier--feat .tier__tag { color: var(--bronze); }
.tier--feat li { color: rgba(245,241,234,.80); border-color: var(--line); }
.tier__tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-2);
  margin-bottom: 12px;
}
.tier__price {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 18px;
}
.tier--feat .tier__price { color: var(--cream); }
.tier ul { display: grid; gap: 10px; padding-top: 4px; }
.tier li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted-2);
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 1080px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tiers { grid-template-columns: 1fr; } }

.finance-note {
  max-width: 820px; margin: 40px auto 0;
  padding: 20px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--muted-2);
  text-align: center;
  background: #FFFBF3;
}
.finance-note span {
  display: inline-block;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze-2);
  margin-right: 10px;
}

/* ---------- FINANCING ---------- */
.section--financing { background: var(--cream); }
.section--financing .display { color: var(--ink); }
.section--financing .dek { color: var(--muted-2); }
.financing {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.financing__body .display { margin-bottom: 20px; }
.financing__body .dek { margin: 0 0 36px; }

.financing__perks {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.financing__perks li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  position: relative;
}
.financing__perks li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}
.financing__perks strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.financing__perks span {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.5;
}

.financing__note {
  font-size: 14px;
  color: var(--muted-2);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

/* Visual card */
.financing__visual {
  display: flex;
  justify-content: center;
}
.financing__card {
  width: 100%;
  max-width: 380px;
  padding: clamp(40px, 4vw, 56px) clamp(32px, 3.5vw, 48px);
  background: var(--bg);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 32px 80px -30px rgba(0,0,0,.35);
}
.financing__card-logo {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--bronze);
  line-height: 1;
}
.financing__card-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,241,234,.7);
}
.financing__card-divider {
  width: 48px; height: 1px;
  background: var(--bronze);
  margin: 8px 0;
}
.financing__card-label {
  font-size: 13px;
  color: rgba(245,241,234,.5);
  line-height: 1.5;
  max-width: 26ch;
}
.financing__card .btn { margin-top: 12px; width: 100%; }

@media (max-width: 880px) {
  .financing { grid-template-columns: 1fr; }
  .financing__perks { grid-template-columns: 1fr; }
  .financing__card { max-width: 320px; }
  .testi-grid { max-width: 540px; }
  .testi-card { padding: 22px 20px 18px; }
  .testi-quote { font-size: 15px; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid .testi-card:last-child { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }
}

/* ---------- CONTACT ---------- */
.section--contact {
  background: var(--cream);
  color: var(--ink);
}
.section--contact .display { color: var(--ink); }
.section--contact .display em { color: var(--bronze); }
.section--contact .dek { color: var(--muted-2); }
.section--contact .section-label { color: var(--bronze); }

.contact__grid { grid-template-columns: 1fr 1.2fr; }
.contact__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.contact__meta dt {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}
.contact__meta dd { margin: 0; font-size: 16px; color: var(--ink); line-height: 1.5; }
.contact__meta a { color: var(--ink); border-bottom: 1px solid rgba(184,153,104,.4); padding-bottom: 2px; }
.contact__meta a:hover { border-color: var(--bronze); color: var(--bronze); }

.form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.field { display: grid; gap: 8px; }
.field--row { grid-template-columns: 1fr 1fr; gap: 18px; }
.field--row > div { display: grid; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(245,241,234,.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: rgba(245,241,234,.07);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23B89968' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form__note { font-size: 13px; color: var(--muted); text-align: center; }
.form__note a { color: var(--bronze); border-bottom: 1px solid rgba(184,153,104,.4); }

/* Contact benefits list */
.contact__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 0;
}
.contact__benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(184,153,104,.12);
  border: 1.5px solid rgba(184,153,104,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--bronze);
  margin-top: 1px;
}
.contact__benefit strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact__benefit span {
  font-size: 13px;
  color: rgba(15,14,12,.55);
  line-height: 1.5;
}
.contact__reach {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,153,104,.25);
}
.contact__reach a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.contact__reach a span { font-size: 16px; }
.contact__reach a:hover { color: var(--bronze); }

/* Form on light contact bg */
.section--contact .form {
  background: #fff;
  border-color: rgba(184,153,104,.2);
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.section--contact .field input,
.section--contact .field select,
.section--contact .field textarea {
  background: var(--cream);
  border-color: rgba(184,153,104,.25);
  color: var(--ink);
}
.section--contact .field input::placeholder,
.section--contact .field textarea::placeholder { color: rgba(15,14,12,.35); }
.section--contact .field input:focus,
.section--contact .field select:focus,
.section--contact .field textarea:focus {
  border-color: var(--bronze);
  background: #fff;
}
.section--contact .form__note { color: rgba(15,14,12,.5); }
.section--contact .contact__meta { border-top-color: rgba(184,153,104,.3); }

@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; } .field--row { grid-template-columns: 1fr; } .contact__meta { grid-template-columns: 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.section--testimonials {
  background: #131210;
  color: var(--cream);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow-x: clip;
}
.section--testimonials .section-label {
  margin-top: clamp(20px, 3vw, 40px);
}
.section--testimonials .section__head { margin-bottom: 0; }
.section--testimonials .section__head .display { color: var(--cream); }
.section--testimonials .section__head .dek { color: var(--muted); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 40px auto 0;
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,153,104,.18);
  border-radius: 6px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  position: relative;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: rgba(184,153,104,.15);
}
.testi-stars {
  color: var(--bronze);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testi-quote {
  font-family: var(--display);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  font-style: italic;
  color: rgba(245,241,234,.88);
  flex: 1;
  margin: 0 0 20px;
}
.testi-author {
  border-top: 1px solid rgba(184,153,104,.15);
  padding-top: 14px;
  margin-top: auto;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}
.testi-loc {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.testi-source {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  color: var(--cream);
  border-top: 2px solid var(--bronze);
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px var(--pad-x) 32px;
}

/* Top grid */
.footer__top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

/* Brand column */
.footer__brand-col { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
.footer__badge { margin-top: auto; }
.footer__logo {
  display: block;
  height: 88px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 26ch;
  margin-bottom: 24px;
}
.footer__badge {
  display: block;
  height: 48px;
  width: auto;
  opacity: 0.8;
  transition: opacity .2s var(--ease);
}
.footer__badge:hover { opacity: 1; }

/* Column heading */
.footer__h {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

/* Link lists */
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links li { font-size: 14px; }
.footer__links a {
  color: rgba(245,241,234,.72);
  transition: color .2s var(--ease);
}
.footer__links a:hover { color: var(--cream); }
.footer__links--contact .footer__location {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* Contact column CTA */
.footer__col--contact { display: flex; flex-direction: column; }
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 11px 22px;
  border: 1px solid rgba(184,153,104,.45);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--bronze) !important;
  white-space: nowrap;
  width: fit-content;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.footer__cta:hover {
  background: rgba(184,153,104,.1);
  border-color: var(--bronze);
}

/* ---- Footer offices ---- */
.footer__offices {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 22px;
}
.footer__office { display: flex; flex-direction: column; gap: 3px; }
.footer__office-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.footer__office-addr {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,241,234,.55);
}
.footer__office-phone {
  font-size: 13px;
  color: rgba(245,241,234,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer__office-phone:hover { color: var(--bronze); }

/* ---- Footer service-area map ---- */
.footer__map-wrap { width: 100%; margin-bottom: 18px; }
.footer__map { width: 100%; height: auto; display: block; overflow: visible; }
.fmap__us {
  fill: rgba(184,153,104,.07);
  stroke: rgba(184,153,104,.25);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.fmap__hit { fill: transparent; cursor: default; }
.fmap__ring {
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: fmap-ping 2.6s ease-out infinite;
}
.fmap__ring--b { animation-delay: 1.3s; }
@keyframes fmap-ping {
  0%   { transform: scale(1); opacity: 0.85; }
  70%  { opacity: 0.08; }
  100% { transform: scale(6); opacity: 0; }
}
.fmap__dot { fill: var(--bronze); }
.fmap__label {
  font-family: var(--sans);
  font-size: 22px;
  fill: var(--bronze);
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}
.fmap__pin:hover .fmap__label,
.fmap__pin:focus .fmap__label { opacity: 1; }

/* Bottom bar */
.footer__bar {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1040px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__col--contact { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 40px; }
  .footer__col--contact .footer__links { flex-direction: row; flex-wrap: wrap; gap: 12px 28px; }
  .footer__cta { margin-top: 0; align-self: flex-start; }
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand-col { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 32px; flex-wrap: wrap; }
  .footer__tagline { margin-bottom: 0; }
  .footer__badge { margin-top: 0; }
  .footer__col--contact { flex-direction: column; gap: 0; }
  .footer__col--contact .footer__links { flex-direction: column; }
  .footer__cta { margin-top: 20px; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand-col { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__bar { flex-direction: column; gap: 6px; }
}

/* ============================================================
   PRODUCT PAGES (shared styles for /products/*.html)
   ============================================================ */

.product-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 230px var(--pad-x) 72px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.product-hero__media { position: absolute; inset: 0; z-index: -1; }
.product-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 14s var(--ease) both;
  transform: scale(1.06);
}
.product-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,14,12,.62) 0%, rgba(15,14,12,.22) 38%, rgba(15,14,12,.88) 100%),
    radial-gradient(70% 60% at 30% 60%, transparent 0%, rgba(15,14,12,.3) 100%);
}

.breadcrumb {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,234,.7);
}
.breadcrumb a { color: rgba(245,241,234,.9); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--bronze); }
.breadcrumb span { color: var(--bronze); }
.breadcrumb .sep { color: rgba(245,241,234,.35); }

.product-hero__inner { max-width: 980px; animation: riseIn 1.1s var(--ease) .15s both; }
.product-hero__title {
  font-family: var(--display);
  font-size: clamp(54px, 10vw, 140px);
  line-height: .95;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.product-hero__title span { font-size: .4em; color: var(--bronze); vertical-align: top; margin-left: 4px; letter-spacing: 0; }
.product-hero__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--bronze);
  margin-bottom: 28px;
  line-height: 1.1;
}
.product-hero__sub {
  max-width: 58ch;
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(245,241,234,.85);
  margin-bottom: 36px;
  line-height: 1.55;
}
.product-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Overview v2 — stacked centered layout */
.product-overview {
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
  text-align: center;
}
.ov2__label-center { text-align: center; display: block; margin-bottom: 36px; }
.ov2__wrap {
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: var(--content-w);
  margin: 0 auto;
}
.ov2__left { text-align: center; }
.ov2__left .display { margin-bottom: 20px; color: var(--cream); }
.ov2__lede {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,241,234,.68);
  max-width: 68ch;
  margin: 0 auto;
}
.ov2__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.ov2__spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.ov2__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  border: 1px solid rgba(184,153,104,.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.ov2__icon svg { width: 34px; height: 34px; }
.ov2__spec-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--display);
  color: var(--bronze);
}
.ov2__spec-val {
  font-size: 15px;
  font-weight: 500;
  color: rgba(245,241,234,.90);
  line-height: 1.3;
}
.ov2__spec-desc {
  font-size: 12.5px;
  color: rgba(245,241,234,.50);
  line-height: 1.55;
  max-width: 26ch;
}
.product-overview .display { color: var(--cream); }
/* Light variant */
.product-overview--light { background: var(--cream); }
.product-overview--light .ov2__label-center { color: var(--bronze); }
.product-overview--light .ov2__lede { color: var(--ink-2); }
.product-overview--light .ov2__icon { border-color: rgba(184,153,104,.3); color: var(--bronze); }
.product-overview--light .ov2__spec-val { color: var(--ink); }
.product-overview--light .ov2__spec-desc { color: var(--muted-2); }
/* Force heading dark on light overview — overrides .ov2__left .display cream rule */
.product-overview--light .ov2__left .display { color: var(--ink); }
@media (max-width: 680px) {
  .ov2__specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .ov2__specs { grid-template-columns: 1fr; }
}

/* Overview split — image left, content right */
/* Reduce vertical padding for split variant — section-label no longer needs --pad-y margin trick */
.product-overview.product-overview--light {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}
.ov2--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  max-width: var(--content-w, 1320px);
  margin: 0 auto;
  text-align: left;
}
.ov2--split__img {
  position: sticky;
  top: 100px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.ov2--split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ov2--split__content { text-align: left; }
/* Reset section-label inside split: kill the --pad-y margins and center alignment */
.ov2--split__content .section-label {
  text-align: left;
  width: auto;
  margin-top: 0;
  margin-bottom: 14px;
}
.ov2--split__content .display { text-align: left; margin-bottom: 16px; }
.ov2--split__content .ov2__lede { text-align: left; max-width: none; margin: 0 0 28px; }
.ov2--split__content .ov2__specs { grid-template-columns: repeat(2, 1fr); gap: 20px 20px; }
.ov2--split__content .ov2__spec { align-items: flex-start; text-align: left; gap: 6px; }
/* Compact icon size for split layout */
.ov2--split__content .ov2__icon { width: 52px; height: 52px; margin-bottom: 2px; }
.ov2--split__content .ov2__icon svg { width: 24px; height: 24px; }
/* Light variant: fix display heading color (product-overview sets it to cream) */
.product-overview--light .display { color: var(--ink); }
/* Light variant overrides for split */
.product-overview--light .ov2--split__content .ov2__lede { color: var(--ink-2); }
.product-overview--light .ov2--split__content .ov2__spec-val { color: var(--ink); }
.product-overview--light .ov2--split__content .ov2__spec-desc { color: var(--muted-2); }
.product-overview--light .ov2--split__content .ov2__icon { border-color: rgba(184,153,104,.35); color: var(--bronze-2); }
@media (max-width: 900px) {
  .ov2--split { grid-template-columns: 1fr; }
  .ov2--split__img { position: static; aspect-ratio: 16/9; }
}
@media (max-width: 680px) {
  .ov2--split__content .ov2__specs { grid-template-columns: 1fr; }
}

/* Related products (cross-sell) */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line-dark);
  background: #FFFBF3;
  color: var(--ink) !important;
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}
.related-card:hover { transform: translateY(-4px); border-color: var(--bronze); }
.related-card__img { aspect-ratio: 5/4; overflow: hidden; background: #ddd; }
.related-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.related-card:hover .related-card__img img { transform: scale(1.05); }
.related-card__meta { padding: 18px 20px 22px; }
.related-card__tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-2);
  margin-bottom: 8px;
}
.related-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.related-card__name span { font-size: 11px; vertical-align: super; color: var(--muted-2); margin-left: 1px; }
.related-card__line {
  margin-top: 8px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--bronze-2);
}
.related-card__cta {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--bronze-2);
  font-weight: 500;
}
.related-card__cta span {
  display: inline-block;
  margin-left: 6px;
  transition: transform .3s var(--ease);
}
.related-card:hover .related-card__cta span { transform: translateX(4px); }

@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr; } }

/* Compact 4-col variant for "pairs well with" with 4 items */
.related-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.related-grid--compact .related-card__img { aspect-ratio: 4/3; }
.related-grid--compact .related-card__meta { padding: 12px 14px 16px; }
.related-grid--compact .related-card__tag { font-size: 9px; margin-bottom: 5px; }
.related-grid--compact .related-card__name { font-size: 16px; }
.related-grid--compact .related-card__line { font-size: 12px; margin-top: 4px; }
.related-grid--compact .related-card__cta { margin-top: 10px; font-size: 11px; }
@media (max-width: 880px) { .related-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .related-grid--compact { grid-template-columns: 1fr; } }

/* Final CTA band */
.product-cta {
  background: linear-gradient(135deg, #0F0E0C 0%, #1C1916 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(60px, 8vw, 120px) var(--pad-x);
}
.product-cta .display { color: var(--cream); margin-bottom: 18px; }
.product-cta .dek { color: rgba(245,241,234,.75); margin-bottom: 36px; }
.product-cta .btn { height: 58px; }
/* Light variant */
.product-cta--light {
  background: var(--cream);
  color: var(--ink);
}
.product-cta--light .section-label { color: var(--bronze); }
.product-cta--light .display { color: var(--ink); }
.product-cta--light .dek { color: var(--muted-2); }

/* Mark current product in mega */
.mega__card.is-current,
.mega__cat.is-current { border-color: var(--bronze); background: #1A1612; pointer-events: none; }
.mega__card.is-current .mega__tag::after,
.mega__cat.is-current .mega__tag::after { content: " · current"; opacity: .6; }

/* COLLECTION PAGES — members grid (products in this collection) */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1440px;
  margin: 56px auto 0;
}
.member-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  color: var(--cream) !important;
  transition: transform .4s var(--ease), border-color .35s var(--ease);
}
.member-card:hover { transform: translateY(-5px); border-color: rgba(184,153,104,.55); }
.member-card__img { aspect-ratio: 16/10; overflow: hidden; background: #252018; }
.member-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.member-card:hover .member-card__img img { transform: scale(1.05); }
.member-card__meta {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}
.member-card__tag {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze);
  margin: 0;
}
.member-card__name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--cream);
  margin: 0;
}
.member-card__name span {
  font-size: 12px; vertical-align: super; color: rgba(245,241,234,.45); margin-left: 1px;
}
.member-card__line {
  font-family: var(--display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--bronze);
  margin: 0;
}
.member-card__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,241,234,.72);
  margin: 4px 0 0;
}
.member-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.member-card__price {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
}
.member-card__cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--bronze);
}
.member-card__cta em {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  margin-left: 4px;
  transition: transform .3s var(--ease);
}
.member-card:hover .member-card__cta em { transform: translateX(4px); }

@media (max-width: 1080px) { .members-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .members-grid { grid-template-columns: 1fr; } }

/* ---- Furniture — Material cards ---- */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.mat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mat-card__tag {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.mat-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.2;
}
.mat-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.mat-card__props {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mat-card__props li {
  font-size: 12.5px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.mat-card__props li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 10px;
}
@media (max-width: 900px) { .mat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .mat-grid { grid-template-columns: 1fr; } }

/* ---- Furniture — Catalog download cards ---- */
.catalog-dl-section { background: var(--bg); }
.catalog-dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.catalog-dl-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s var(--ease);
  background: var(--surface);
}
.catalog-dl-card:hover { border-color: rgba(184,153,104,0.5); }
.catalog-dl-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(184,153,104,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--bronze);
}
.catalog-dl-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  margin: 0;
}
.catalog-dl-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.catalog-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(184,153,104,0.35);
  border-radius: 6px;
  align-self: flex-start;
  transition: all .2s var(--ease);
}
.catalog-dl-btn:hover {
  background: rgba(184,153,104,0.1);
  border-color: var(--bronze);
  color: var(--bronze);
}
@media (max-width: 640px) { .catalog-dl-grid { grid-template-columns: 1fr; } }

/* ---------- reveal + motion system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Variants */
.reveal-fade { opacity: 0; transition: opacity 1.1s var(--ease); will-change: opacity; }
.reveal-fade.is-in { opacity: 1; }

.reveal-scale {
  opacity: 0; transform: scale(.96);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal-scale.is-in { opacity: 1; transform: scale(1); }

.reveal-slide-l {
  opacity: 0; transform: translateX(-48px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-slide-l.is-in { opacity: 1; transform: translateX(0); }

.reveal-slide-r {
  opacity: 0; transform: translateX(48px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-slide-r.is-in { opacity: 1; transform: translateX(0); }

/* Parallax: subtle Y translate on scroll, applied to figure wrappers */
.reveal-parallax { will-change: transform; }
.reveal-parallax img {
  transition: transform 1.4s var(--ease);
  transform: scale(1.05);
}
.reveal-parallax.is-in img { transform: scale(1); }

/* Display heading: letter fade-in via split words (handled by JS) */
/* padding-bottom + negative margin = room for descenders (g, y, p, j, comma) without breaking layout */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
  line-height: inherit;
}
.word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .9s var(--ease), opacity .9s var(--ease);
  transition-delay: calc(var(--wi, 0) * 90ms);
}
.is-in .word > span,
.word.is-in > span { transform: translateY(0); opacity: 1; }

/* Hero title shimmer — slow sweep on the bronze em.
   Also cascade onto the nested .word > span produced by the split-words JS,
   otherwise background-clip: text has no background to clip and the text vanishes. */
.hero__title em,
.hero__title em .word,
.hero__title em .word > span {
  background: linear-gradient(100deg, var(--bronze) 0%, #E2C489 45%, var(--bronze) 60%, var(--bronze) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Card hover tilt (gallery, products) — subtle perspective lift */
.card, .product, .tier, .cred, .features li, .steps li {
  transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.card:hover, .tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -18px rgba(26,24,22,.35);
}

/* Count-up placeholder (JS increments via data-count-to) */
.about__stat-n { transition: color .3s var(--ease); }

/* Marquee-style trust strip on hero (very slow) */
@keyframes trust-float { 0%,100% { opacity: .82; } 50% { opacity: .98; } }
.hero__trust li { animation: trust-float 6s ease-in-out infinite; }
.hero__trust li:nth-child(2) { animation-delay: .8s; }
.hero__trust li:nth-child(3) { animation-delay: 1.6s; }

/* Section heading subtle entrance */
.section__head .display { transition: letter-spacing .9s var(--ease); }

/* Smooth anchor scroll with nav offset already handled; add focus anim for buttons */
.btn:focus-visible, .nav__cta:focus-visible { animation: pulse .9s ease-out 1; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,153,104,.55); }
  100% { box-shadow: 0 0 0 18px rgba(184,153,104,0); }
}

/* Reduced motion — kill everything */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-fade, .reveal-scale, .reveal-slide-l, .reveal-slide-r,
  .hero__inner, .hero__trust, .hero__media img,
  .word > span, .reveal-parallax img {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- mobile nav overlay ---------- */
@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 22px;
    background: rgba(15,14,12,.96);
    backdrop-filter: blur(14px);
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
    padding: 80px 24px 100px;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { font-family: var(--display); font-size: 28px; color: var(--cream); }
  .nav__menu a.nav__cta { font-family: var(--sans); font-size: 15px; height: 48px; padding: 0 32px; }
  /* Pin CTA button to bottom of overlay */
  .nav__menu li:last-child {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/* ---------- DESIGN SIMULATOR ---------- */
.sim-section {
  padding-top: calc(var(--pad-y) * 0.9);
  padding-bottom: calc(var(--pad-y) * 1.1);
  background: var(--cream);
  color: var(--ink);
}

.sim {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: stretch;
  max-width: 1240px;
  margin: 72px auto 0;
}

.sim__stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(26,24,22,.08);
  box-shadow: 0 40px 80px -50px rgba(26,24,22,.28);
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.sim__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px;
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.sim__img.is-loading { opacity: 0; }
.sim__caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 16px;
  background: rgba(15,14,12,.82);
  backdrop-filter: blur(10px);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0;
}

.sim__panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.sim__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(26,24,22,.14);
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.sim__tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: rgba(26,24,22,.5);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 18px 14px;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  margin-bottom: -1px;
}
.sim__tab:hover { color: var(--ink); }
.sim__tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--bronze);
}

.sim__group { width: 100%; }
.sim__group[hidden] { display: none; }
.sim__group + .sim__group { margin-top: 48px; }
.sim__group-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  text-align: center;
}

.sim__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  justify-content: center;
}
.sim__options--swatches {
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .sim__options--swatches { grid-template-columns: repeat(3, 1fr); }
}

.sim__opt {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(26,24,22,.12);
  border-radius: 10px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  color: var(--ink);
  text-align: center;
}
.sim__opt:hover {
  border-color: rgba(184,153,104,.65);
  background: #fff;
  box-shadow: 0 6px 18px -12px rgba(26,24,22,.25);
}
.sim__opt.is-active {
  border-color: var(--bronze);
  background: rgba(184,153,104,.10);
}

.sim__swatch {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(26,24,22,.18);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
}
.sim__swatch--custom {
  background: conic-gradient(from 180deg at 50% 50%, #ff5a5f, #ffbe0b, #8ac926, #1982c4, #6a4c93, #ff5a5f);
}

.sim__opt-label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sim__new {
  display: inline-block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--bronze);
  color: #1A1816;
}

.sim__cta {
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(26,24,22,.1);
  width: 100%;
  max-width: 520px;
  text-align: center;
}
.sim__note {
  margin: 14px auto 0;
  font-size: 13px;
  color: rgba(26,24,22,.6);
  max-width: 42ch;
}

@media (max-width: 900px) {
  .sim { gap: 40px; }
  .sim__tab { padding: 10px 12px 12px; font-size: 12px; }
  .sim__img { padding: 32px; }
}
@media (max-width: 480px) {
  .sim__options { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- INTEGRATED FEATURES (photo + bulleted list) ---------- */
.integrated__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}
.integrated__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(26,24,22,.35);
  min-height: 100%;
}
.integrated__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.integrated__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}
.integrated__body .eyebrow { text-align: left; }
.integrated__body .display {
  text-align: left;
  font-size: clamp(30px, 3.8vw, 52px);
  max-width: none;
  margin-top: 8px;
}
.integrated__body .dek {
  text-align: left;
  max-width: 52ch;
  margin: 16px 0 0;
}
.integrated__head { flex: 0 0 auto; }
.integrated__list {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(26, 24, 22, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 28px;
  flex: 0 0 auto;
}
.integrated__list li {
  padding-left: 20px;
  position: relative;
}
.integrated__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--bronze);
}
.integrated__list h3 {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.integrated__list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-2);
}

@media (max-width: 960px) {
  .integrated__grid { grid-template-columns: 1fr; }
  .integrated__media { aspect-ratio: 16 / 10; }
}
@media (max-width: 540px) {
  .integrated__list { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-top: 1px solid rgba(26,24,22,.12);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(26,24,22,.12); }

.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 44px 26px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.faq__item > summary::-webkit-details-marker { display: none; }

.faq__item > summary h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  display: inline;
}

.faq__item > summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--bronze);
  transition: transform .25s var(--ease);
  font-family: var(--sans);
}
.faq__item[open] > summary::after { content: '−'; }

.faq__item > summary:hover h3 { color: var(--bronze); }

.faq__item > p {
  padding: 0 44px 28px 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(26,24,22,.78);
  max-width: 74ch;
}

@media (max-width: 680px) {
  .faq__item > summary h3 { font-size: 18px; }
  .faq__item > summary { padding: 20px 36px 20px 0; }
  .faq__item > p { padding: 0 36px 22px 0; font-size: 15px; }
}

/* Dark-background overrides for FAQ section */
.section--dark .faq__item { border-top-color: rgba(245,241,234,.12); }
.section--dark .faq__item:last-child { border-bottom-color: rgba(245,241,234,.12); }
.section--dark .faq__item > summary h3 { color: var(--cream); }
.section--dark .faq__item > summary:hover h3 { color: var(--bronze); }
.section--dark .faq__item > p { color: rgba(245,241,234,.65); }

/* Product page gallery preview */
.prod-gallery__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: 48px;
  max-width: var(--content-w);
  margin-left: auto;
  margin-right: auto;
}
.prod-gallery__featured {
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.prod-gallery__featured img { width: 100%; height: 100%; object-fit: cover; }
.prod-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.prod-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.btn--outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn--outline-dark:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 700px) {
  .prod-gallery__grid { grid-template-columns: 1fr 1fr; }
  .prod-gallery__featured { grid-row: auto; aspect-ratio: 4/3; }
}

/* Overview dark section overrides */
.product-overview.section--dark .ov2__lede { color: rgba(245,241,234,.68); }
.product-overview.section--dark .ov2__spec-val { color: rgba(245,241,234,.90); }
.product-overview.section--dark .ov2__spec-desc { color: rgba(245,241,234,.50); }

/* Smart feature outlined cards */
.features--outlined li {
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 32px 24px;
}
.section--about .features--outlined li {
  border-color: rgba(26,24,22,.10);
}

/* Enhanced integrated list */
.integrated__caption {
  font-size: 12px;
  color: rgba(245,241,234,.45);
  margin-top: 12px;
  font-style: italic;
  text-align: center;
}
.integrated__list--enhanced { display: flex; flex-direction: column; gap: 0; }
.integrated__list--enhanced li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,241,234,.08);
}
.integrated__list--enhanced li:last-child { border-bottom: none; }
.integrated__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  margin-top: 2px;
}
.integrated__list--enhanced h3 { font-size: 15px; margin-bottom: 2px; color: var(--cream); }
.integrated__list--enhanced p { font-size: 13px; color: rgba(245,241,234,.60); line-height: 1.5; }

/* Light-background overrides for integrated section */
.section--about .integrated__caption { color: var(--muted); }
.section--about .integrated__list--enhanced li { border-bottom-color: rgba(26,24,22,.08); }
.section--about .integrated__list--enhanced h3 { color: var(--ink); }
.section--about .integrated__list--enhanced p { color: var(--muted-2); }

/* Configuration diagram cards — cream bg */
.features--configs .feature__img--diagram {
  background: var(--cream-2);
  border-radius: 8px;
  padding: 20px;
}
.section--about .features--configs h3 { color: var(--ink); }
.section--about .features--configs p { color: var(--muted-2); }
