/* ------------------------------------------------------------------
   Etnika Home — stylesheet (v2, multi-page)
   Etnika Home CVI 2026: warm neutrals, Brand Gold and Charcoal.
   Type: Cormorant Garamond for editorial display; Montserrat for
         body copy, navigation, labels, captions and specifications.
   ------------------------------------------------------------------ */

:root {
  --rime:  #FAFAF7;
  --paper: #FFFFFF;
  --steel: #1C1C1C;
  --fog:   #76736E;
  --line:  #D9D4CA;
  --line-soft: #E8E3DA;
  --brass: #A8872A;
  --brass-soft: #F2EFE9;
  --sand-gold: #C9A84C;
  --dusk:  #1C1C1C;
  --dusk-text: #F2EFE9;
  --danger: #B4453A;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --max: 1360px;
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --r-media: 0px;
  --r-card: 2px;
  --nav-h: 68px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --shadow-pill: 0 8px 30px -22px rgba(28,28,28,.35);
  --shadow-card: 0 18px 45px -36px rgba(28,28,28,.32);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  margin: 0;
  background: var(--rime);
  color: var(--fog);
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  color: var(--steel);
  letter-spacing: -0.015em;
  line-height: .98;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.55rem, 2.2vw, 2rem); letter-spacing: -.01em; line-height: 1.08; }
p { margin: 0; }
p + p { margin-top: 1em; }
h1 + p, h2 + p, h3 + p { margin-top: 1rem; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
strong { font-weight: 500; color: var(--steel); }
.band--dusk strong, .footer strong { color: var(--rime); }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 1rem; top: -3rem; background: var(--steel); color: var(--paper); padding: .5rem .75rem; z-index: 100; border-radius: 2px; }
.skip:focus { top: 1rem; }

/* ---------- layout utilities ---------- */

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-top: 0; }
.band--paper { background: var(--paper); }
.band--dusk { background: var(--dusk); color: var(--dusk-text); }
.band--dusk h1, .band--dusk h2, .band--dusk h3 { color: var(--rime); }

.mono { font-family: var(--mono); font-size: .66rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--fog); }
.eyebrow { font-family: var(--mono); font-size: .66rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); margin: 0 0 1.15rem; }
.eyebrow--light { color: var(--sand-gold); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; max-width: 40rem; }
.band--dusk .lede, .band--dusk p:not(.eyebrow) { color: rgba(217,220,218,.82); }

.link {
  display: inline-block; font-weight: 500; font-size: .95rem;
  color: var(--steel);
  padding: 0 0 .15rem; border: 0; border-bottom: 1px solid currentColor;
  background: none; cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.link:hover { color: var(--brass); }
.link--light { color: var(--paper); border-color: rgba(255,255,255,.5); }
.link--light:hover { color: var(--paper); border-color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 500; font-size: .95rem; letter-spacing: .01em; line-height: 1;
  padding: 1rem 1.6rem; min-height: 48px;
  background: var(--steel); color: var(--paper);
  border: 1px solid var(--steel); border-radius: 2px;
  cursor: pointer; white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--brass); border-color: var(--brass); color: var(--paper); }
.btn:active { transform: translateY(1px); }
.btn--light { background: var(--paper); color: var(--steel); border-color: var(--paper); }
.btn--light:hover { background: var(--rime); border-color: var(--rime); color: var(--steel); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--paper); border-color: rgba(255,255,255,.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); color: var(--paper); }
.btn--outline { background: transparent; color: var(--steel); border-color: var(--line); }
.btn--outline:hover { background: var(--steel); border-color: var(--steel); color: var(--paper); }
.btn--small { padding: .6rem 1.1rem; min-height: 38px; font-size: .86rem; }
.btn--wide { padding-inline: 2.2rem; }

.chip {
  font-size: .86rem; font-weight: 500; line-height: 1;
  padding: .55rem .95rem; min-height: 36px;
  border: 1px solid var(--line); border-radius: 2px; background: transparent; color: var(--steel);
  cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.chip:hover { border-color: var(--steel); }
.chip[aria-pressed="true"] { background: var(--steel); border-color: var(--steel); color: var(--paper); }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ---------- reveal + motion ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
img.fade { opacity: 0; transition: opacity .6s var(--ease); }
img.fade.is-loaded { opacity: 1; }

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

/* ---------- nav (floating pill) ---------- */

.nav { position: fixed; inset: 0 0 auto 0; z-index: 60; padding: .75rem var(--gutter) 0; pointer-events: none; }
.nav__pill {
  pointer-events: auto;
  max-width: var(--max); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 56px; padding: 0 .5rem 0 1.1rem;
  background: rgba(250,250,247,.9);
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(28,28,28,.1); border-radius: 2px;
  box-shadow: var(--shadow-pill);
  color: var(--steel);
  transition: background .3s var(--ease);
}
.nav.is-scrolled .nav__pill { background: rgba(250,250,247,.97); }
.nav__brand { display: inline-flex; align-items: center; gap: .65rem; flex: none; color: var(--steel); }
.nav__brand img { width: 16px; height: 28px; object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.nav__brand span { font-family: var(--body); font-size: .86rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.home .nav__brand { display: none; }
.home .nav { left: auto; right: 0; top: .75rem; width: auto; }
.home .nav__pill { width: max-content; max-width: none; margin: 0; padding-inline: 1.35rem; gap: 1.2rem; justify-content: flex-end; }
.nav__links { display: flex; align-items: center; gap: .1rem; }
.nav__links > a, .nav__item > a {
  display: inline-flex; align-items: center; height: 44px; padding: 0 .9rem;
  font-size: .84rem; font-weight: 400; letter-spacing: .065em; border-radius: 2px; color: var(--steel); white-space: nowrap;
  transition: background .2s var(--ease);
}
.nav__links > a:hover, .nav__item:hover > a { background: rgba(20,24,22,.06); }
.nav__links a[aria-current="page"] { font-weight: 500; }
.nav__links > a[aria-current="page"]::after, .nav__item > a[aria-current="page"]::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); margin-left: .5rem;
}
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__item--has-sub > a { padding-right: .5rem; }
.nav__sub-toggle {
  width: 30px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 0; border-radius: 999px; cursor: pointer; color: var(--fog); margin-right: .25rem;
}
.nav__sub-toggle svg { transition: transform .2s var(--ease); }
.nav__item.is-open .nav__sub-toggle svg { transform: rotate(180deg); }
.nav__sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--rime); border: 1px solid rgba(28,28,28,.1); border-radius: 2px;
  box-shadow: 0 20px 50px -20px rgba(20,24,22,.3);
  padding: .5rem; display: grid; gap: .15rem;
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav__item--has-sub:hover .nav__sub, .nav__item--has-sub:focus-within .nav__sub, .nav__item.is-open .nav__sub { opacity: 1; transform: none; pointer-events: auto; }
.nav__sub a { display: grid; padding: .6rem .8rem; border-radius: 1px; transition: background .2s var(--ease); }
.nav__sub a:hover { background: var(--rime); }
.nav__sub a strong { font-family: var(--display); font-weight: 500; font-size: .95rem; }
.nav__sub a span { font-size: .8rem; color: var(--fog); }
.nav__sub a[aria-current="page"] { background: var(--brass-soft); }
.nav__tools { display: flex; align-items: center; gap: .55rem; }
.nav__lang { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; padding: .5rem .6rem; color: var(--fog); border-radius: 999px; }
.nav__lang:hover, .nav__lang:focus-visible { color: var(--steel); background: var(--rime); }
.nav__cta { min-height: 44px; padding-inline: 1.25rem; }
.nav__burger { display: none; width: 42px; height: 42px; border: 0; background: transparent; border-radius: 50%; position: relative; cursor: pointer; }
.nav__burger-line { position: absolute; left: 12px; width: 18px; height: 1.5px; background: var(--steel); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav__burger-line:nth-child(1) { top: 17px; }
.nav__burger-line:nth-child(2) { top: 24px; }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 600px) {
  :root { --nav-h: 68px; }
  .nav { padding-top: .6rem; }
  .nav__pill { height: 56px; padding-left: .85rem; }
  .nav__burger { width: 46px; height: 46px; }
  .nav__burger-line { left: 13px; width: 20px; }
}
@media (max-width: 480px) { .nav__cta { display: none; } }

/* ---------- mobile menu ---------- */

.menu {
  position: fixed; inset: 0; z-index: 55; background: var(--rime);
  padding: calc(var(--nav-h) + 1.5rem) var(--gutter) 2rem; overflow-y: auto;
  animation: menu-in .3s var(--ease) both;
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.menu__inner { display: grid; gap: .25rem; max-width: 40rem; }
.menu__group { display: grid; gap: .25rem; padding-bottom: .5rem; margin-bottom: .25rem; border-bottom: 1px solid var(--line); }
.menu__top { font-family: var(--display); font-weight: 300; font-size: clamp(2.45rem, 8.5vw, 3.4rem); letter-spacing: -.015em; padding: .5rem 0; }
.menu__top[aria-current="page"] { color: var(--brass); }
.menu__sub { display: flex; align-items: baseline; gap: .8rem; font-size: 1.1rem; font-weight: 400; padding: .35rem 0 .35rem 1.2rem; }
.menu__sub span { font-size: .85rem; color: var(--fog); }
.menu__sub[aria-current="page"] { color: var(--brass); }
.menu__foot { margin-top: 2rem; display: grid; gap: 1.2rem; justify-items: start; }
.menu__mail { font-family: var(--display); font-size: 1.1rem; }
.menu__lang { font-family: var(--mono); font-size: .8rem; letter-spacing: .08em; color: var(--fog); }
body.menu-open { overflow: hidden; }

/* ---------- hero (home) ---------- */

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; color: var(--paper); overflow: hidden; isolation: isolate; }
.hero h1 { color: var(--paper); }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; animation: hero-settle 2.4s var(--ease) both; }
@keyframes hero-settle { from { transform: scale(1.05); } to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%),
    linear-gradient(0deg, rgba(10,14,16,.84) 0%, rgba(10,14,16,.45) 38%, rgba(10,14,16,0) 68%);
}
.hero__brand-lockup {
  position: absolute; z-index: 2; top: calc(var(--nav-h) + 2rem); left: var(--gutter);
  display: block; width: clamp(240px, 24vw, 346px); max-width: calc(100vw - (2 * var(--gutter)));
  filter: drop-shadow(0 2px 12px rgba(255,255,255,.5));
}
.hero__brand-main { display: block; aspect-ratio: 346 / 184; overflow: hidden; }
.hero__brand-main img { width: 100%; height: auto; }
.hero__copy { width: 100%; padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.home .hero__brand-lockup { top: 1.15rem; left: clamp(.5rem, 1.25vw, 1.25rem); }
.home .hero__copy { padding-bottom: clamp(8rem, 15vw, 12rem); }
.hero__copy > * { max-width: 44rem; }
.hero__lede { margin-top: 1.4rem; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; max-width: 34rem; color: rgba(255,255,255,.88); }
.hero__actions { display: flex; align-items: center; gap: .75rem; margin-top: 2rem; flex-wrap: wrap; }
.btn--hero {
  min-width: 10.75rem; background: rgba(250,250,247,.12); color: var(--paper);
  border-color: rgba(250,250,247,.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn--hero:hover { background: var(--rime); border-color: var(--rime); color: var(--steel); }
.hero__caption { position: absolute; right: var(--gutter); bottom: 1.4rem; color: rgba(255,255,255,.6); }
@media (max-width: 600px) {
  .home .nav { left: 0; right: 0; top: 0; width: auto; padding: .6rem var(--gutter) 0; }
  .home .nav__pill { width: auto; max-width: var(--max); margin-inline: auto; }
  .hero__brand-lockup { top: calc(var(--nav-h) + 1.25rem); }
  .home .hero__brand-lockup { top: calc(var(--nav-h) + 1.25rem); }
  .hero__brand-lockup { width: min(68vw, 280px); }
  .home .hero__copy { padding-bottom: clamp(6.5rem, 24vw, 8rem); }
  .hero__caption { display: none; }
  .hero__media img { object-position: 68% center; }
}

/* ---------- homepage atmosphere + trust ---------- */

.trust-strip { position: relative; z-index: 2; background: var(--steel); color: var(--rime); border-top: 1px solid rgba(201,168,76,.34); }
.trust-strip__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; }
.trust-strip strong { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 300; color: var(--rime); letter-spacing: -.01em; }
.trust-strip ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .75rem 2rem; flex-wrap: wrap; }
.trust-strip li { font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--sand-gold); }
.home-atmosphere { position: relative; isolation: isolate; background: linear-gradient(135deg, var(--rime) 0%, var(--rime) 58%, var(--brass-soft) 100%); }
.home-atmosphere::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(168,135,42,.12) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 88% 18%, rgba(201,168,76,.12), transparent 25rem);
}
.home-paths { padding-top: clamp(1rem, 2vw, 2rem); padding-bottom: var(--section); }
.home .home-longform { display: none; }
@media (max-width: 800px) {
  .trust-strip__inner { align-items: flex-start; flex-direction: column; padding-block: 1.25rem; }
  .trust-strip ul { gap: .5rem 1.25rem; }
}

/* ---------- page hero (sub pages) ---------- */

.phero { padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.phero__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2rem, 5vw, 5rem); align-items: end; }
.phero__grid .lede { margin-top: 1.2rem; }
.phero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.phero__media { margin: 0; border-radius: var(--r-media); overflow: hidden; aspect-ratio: 4 / 3; background: var(--line-soft); }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__full { margin: clamp(2rem, 5vw, 4rem) 0 0; border-radius: var(--r-media); overflow: hidden; aspect-ratio: 21 / 9; background: var(--line-soft); }
.phero__full img, .phero__full .shot { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .phero__grid { grid-template-columns: 1fr; }
  .phero__full { aspect-ratio: 4 / 3; }
}
.phero--product .phero__grid { align-items: start; }
.cta-block {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  padding: clamp(1.4rem, 2.5vw, 2rem); box-shadow: var(--shadow-card);
  display: grid; gap: 1.2rem;
}
.cta-block h3 { font-size: 1.15rem; }
.cta-block__actions { display: grid; gap: .6rem; }
.cta-block__actions .btn { width: 100%; }
.cta-block__note { font-size: .88rem; color: var(--fog); }
.cta-block .link { justify-self: start; }

/* ---------- intro ---------- */

.intro__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.intro__statement { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 2.9vw, 2.5rem); line-height: 1.22; letter-spacing: -.015em; text-wrap: balance; color: var(--steel); }
.intro__side { padding-top: .6rem; }
.intro__slogan {
  display: block; width: clamp(320px, 32vw, 520px); max-width: 100%; aspect-ratio: 1084.37 / 289.92; margin-bottom: 1.5rem;
  background: var(--brass); -webkit-mask-image: url('/img/slogan.svg'); mask-image: url('/img/slogan.svg');
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-position: left center; mask-position: left center;
}
@media (max-width: 800px) { .intro__grid { grid-template-columns: 1fr; } }

/* ---------- two paths ---------- */

.paths__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.path {
  background: var(--paper); border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.path:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(20,24,22,.04), 0 28px 60px -28px rgba(20,24,22,.35); }
.path__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--line-soft); }
.path__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.path:hover .path__media img { transform: scale(1.03); }
.path__body { padding: clamp(1.35rem, 2.4vw, 2rem); display: grid; grid-template-rows: auto auto auto 1fr auto; gap: 1rem; align-content: start; height: 100%; }
.path__body h2 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.path__body p:not(.eyebrow) { max-width: 34rem; }
.path__body .btn { justify-self: start; margin-top: .4rem; }
.steps { list-style: none; margin: .4rem 0 0; padding: 0; display: grid; gap: .5rem; counter-reset: step; }
.steps li { display: flex; gap: .8rem; align-items: baseline; font-size: .95rem; counter-increment: step; }
.steps li::before { content: counter(step); font-family: var(--mono); font-size: .7rem; color: var(--brass); border: 1px solid var(--brass); border-radius: 50%; width: 22px; height: 22px; flex: none; display: inline-flex; align-items: center; justify-content: center; transform: translateY(-2px); }
@media (max-width: 1050px) { .paths__grid { grid-template-columns: 1fr; } }

/* ---------- product cards ---------- */

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 2.5vw, 2rem); }
.card {
  position: relative; display: grid; grid-template-rows: auto 1fr;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-card); color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-3px); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--line-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__body { padding: clamp(1.4rem, 2.5vw, 2rem); display: grid; gap: .9rem; align-content: start; }
.card__body h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
.card__cta { display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; font-size: .95rem; margin-top: .3rem; color: var(--steel); }
.card__cta::after { content: "→"; transition: transform .25s var(--ease); }
.card:hover .card__cta::after { transform: translateX(4px); }
@media (max-width: 800px) { .cards { grid-template-columns: 1fr; } }

.facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
.facts li { display: grid; }
.facts strong { font-family: var(--display); font-weight: 500; font-size: 1.15rem; letter-spacing: -.01em; }
.facts span { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); }

/* ---------- house sections (product pages) ---------- */

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(1.8rem, 3vw, 2.5rem); }
.section-head .lede { margin-top: .8rem; }

.shot { display: block; width: 100%; padding: 0; border: 0; background: var(--line-soft); cursor: zoom-in; overflow: hidden; border-radius: inherit; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.shot:hover img { transform: scale(1.025); }

.house__hero { margin: 0; border-radius: var(--r-media); overflow: hidden; aspect-ratio: 16 / 9; background: var(--line-soft); }
.house__hero .shot { height: 100%; }
.house__body { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.house__text p { max-width: 36rem; }
.house__text em { font-family: var(--display); font-weight: 400; }
.house__links { display: flex; gap: .75rem 1.4rem; flex-wrap: wrap; align-items: center; margin-top: 1.8rem; }

.model-360 { background: linear-gradient(135deg, var(--rime), var(--brass-soft)); }
.model-360__head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.model-360__head p:not(.eyebrow) { max-width: 38rem; }
.model-360__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.model-360__viewer { position: relative; width: 100%; height: 100%; overflow: hidden; cursor: grab; user-select: none; touch-action: pan-y; outline: 0; }
.model-360__viewer:focus-visible { box-shadow: inset 0 0 0 3px var(--brass); }
.model-360__viewer.is-dragging { cursor: grabbing; }
.model-360__image { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.model-360__hint { position: absolute; left: 1rem; bottom: 1rem; display: flex; align-items: center; gap: .65rem; padding: .55rem .8rem; background: color-mix(in srgb, var(--paper) 88%, transparent); color: var(--steel); font-family: var(--mono); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.model-360__badge { display: grid; place-items: center; width: 2.7rem; height: 2.7rem; border: 1px solid var(--brass); border-radius: 50%; color: var(--brass); font-weight: 600; }
.model-360__count { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .65rem; background: color-mix(in srgb, var(--paper) 88%, transparent); color: var(--fog); font-family: var(--mono); font-size: .68rem; letter-spacing: .06em; }
.model-360__help { margin-top: 1rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--fog); }
@media (max-width: 700px) { .model-360__frame { aspect-ratio: 4 / 3; } }

.specs { margin: 0; border-top: 1px solid var(--line); }
.specs > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.specs dt { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); padding-top: .25rem; }
.specs dd { margin: 0; font-weight: 400; font-size: .98rem; }

.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.5vw, 1.4rem); }
.strip figure { margin: 0; }
.strip .shot { aspect-ratio: 4 / 5; border-radius: var(--r-media); }
.strip figcaption { margin-top: .7rem; }
@media (max-width: 800px) {
  .house__body { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip figure:last-child { grid-column: span 2; }
  .strip figure:last-child .shot { aspect-ratio: 16 / 10; }
}

.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 6vw, 5rem); }
.feature--flip .feature__media { order: -1; }
.feature__media { margin: 0; border-radius: var(--r-media); overflow: hidden; aspect-ratio: 4 / 3; background: var(--line-soft); }
.feature__media .shot { height: 100%; }
.feature__text p { max-width: 34rem; }
.feature__text .btn, .feature__text .link { margin-top: 1.4rem; }
@media (max-width: 800px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- compare (plans + table) ---------- */

.compare__head { max-width: 40rem; margin-bottom: 3rem; }
.compare__head .lede { margin-top: 1.2rem; }
.plans { margin: 0 0 clamp(2.5rem, 5vw, 4rem); }
.plans__row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 4%; max-width: 1000px; }
.plan { display: block; height: auto; color: var(--steel); }
.plan--a { width: 63%; }
.plan--z { width: 33%; }
.pl-line { fill: none; stroke: currentColor; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.pl-dim { fill: none; stroke: currentColor; stroke-width: 1; opacity: .55; vector-effect: non-scaling-stroke; }
.pl-txt { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; fill: currentColor; }
.pl-name { font-family: var(--display); font-size: 15px; font-weight: 500; letter-spacing: -.01em; fill: currentColor; }
.pl-fill { fill: currentColor; opacity: .04; }
.pl-accent { stroke: var(--brass); stroke-width: 3; }
.pl-accent-txt { fill: var(--brass); }
@media (max-width: 700px) {
  .plans__row { row-gap: 1.5rem; }
  .plan--a { width: 100%; }
  .plan--z { width: 52.4%; }
}

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-card); border: 1px solid var(--line-soft); background: var(--paper); }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { text-align: left; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; font-weight: 400; font-size: .98rem; }
.compare thead th { font-family: var(--display); font-weight: 500; font-size: 1.05rem; background: var(--rime); }
.compare tbody th { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); width: 9rem; padding-top: 1.2rem; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* ---------- night ---------- */

.night__copy { max-width: 36rem; margin-bottom: 3rem; }
.night__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(.8rem, 1.5vw, 1.4rem); }
.night__grid figure { margin: 0; overflow: hidden; border-radius: var(--r-media); background: #182027; }
.night__grid .shot { aspect-ratio: 4 / 3; }
.night__grid .shot { background: #182027; }

.zen-sauna__copy { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.zen-sauna__copy .link { display: inline-block; margin-top: 1.2rem; }
.zen-sauna__gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(.8rem, 1.5vw, 1.4rem); }
.zen-sauna__gallery figure { margin: 0; min-width: 0; }
.zen-sauna__gallery .shot { border-radius: var(--r-media); background: #182027; }
.zen-sauna__gallery figcaption { margin-top: .65rem; color: rgba(250, 250, 247, .66); }
.zen-sauna__hero { grid-column: 1 / -1; }
.zen-sauna__hero .shot { aspect-ratio: 16 / 9; }
.zen-sauna__gallery figure:not(.zen-sauna__hero) .shot { aspect-ratio: 4 / 5; }
@media (max-width: 1000px) {
  .night__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .night__grid { grid-template-columns: 1fr; }
  .zen-sauna__gallery { grid-template-columns: 1fr; }
  .zen-sauna__hero { grid-column: auto; }
}

/* ---------- gallery ---------- */

.gallery__head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(200px, 22vw, 320px); grid-auto-flow: dense; gap: clamp(.8rem, 1.5vw, 1.4rem); }
.gallery figure { margin: 0; display: flex; flex-direction: column; min-height: 0; }
.gallery .shot { flex: 1; min-height: 0; border-radius: var(--r-media); }
.gallery figcaption { margin-top: .6rem; flex: none; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.gallery figure.is-filtered { display: none; }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(160px, 30vw, 260px); } }
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery figure { grid-column: auto !important; grid-row: auto !important; }
  .gallery .shot { aspect-ratio: 4 / 3; }
}

.photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); }
.photos figure { margin: 0; }
.photos .shot { aspect-ratio: 1; border-radius: var(--r-media); }
.photos figure:first-child { grid-column: span 2; grid-row: span 2; }
.photos figure:first-child .shot { height: 100%; }
@media (max-width: 700px) { .photos { grid-template-columns: repeat(2, 1fr); } }

/* ---------- stay options ---------- */

.stay-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.stay-option { display: grid; grid-template-rows: auto 1fr; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.stay-option__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--line-soft); }
.stay-option__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.stay-option:hover .stay-option__media img { transform: scale(1.025); }
.stay-option__body { display: grid; align-content: start; gap: .85rem; padding: clamp(1.4rem, 2.5vw, 2rem); }
.stay-option__body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.stay-option__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 1.25rem; margin-top: .5rem; }
@media (max-width: 800px) { .stay-options { grid-template-columns: 1fr; } }

/* ---------- booking ---------- */

.book__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.book__intro p:not(.eyebrow) { max-width: 26rem; }
.notes { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .55rem; }
.notes li { display: flex; gap: .7rem; align-items: baseline; font-size: .95rem; }
.notes li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex: none; transform: translateY(-2px); }
.book__contact { margin-top: 1.6rem; color: var(--fog); }
.book__panel { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--shadow-card); }
.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); }
.field small { text-transform: none; letter-spacing: 0; opacity: .8; }
.field input, .field select, .field textarea {
  font: inherit; font-weight: 400; color: var(--steel);
  background: var(--rime); border: 1px solid var(--line); border-radius: 2px;
  padding: .8rem .9rem; width: 100%; min-height: 48px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--paper); border-color: var(--steel); box-shadow: 0 0 0 3px rgba(20,24,22,.08); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea, .field.is-invalid .stepper { border-color: var(--danger); }
.field__error { display: none; font-size: .82rem; color: var(--danger); }
.field.is-invalid .field__error { display: block; }
.stepper { display: grid; grid-template-columns: 48px 1fr 48px; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: var(--rime); }
.stepper:focus-within { border-color: var(--steel); box-shadow: 0 0 0 3px rgba(20,24,22,.08); }
.stepper input { border: 0; border-radius: 0; text-align: center; -moz-appearance: textfield; appearance: textfield; min-height: 46px; background: transparent; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input:focus { box-shadow: none; background: transparent; }
.stepper__btn { border: 0; background: transparent; font-size: 1.2rem; cursor: pointer; color: var(--steel); transition: background .2s var(--ease); }
.stepper__btn:hover { background: var(--line-soft); }
.stepper__btn:disabled { color: var(--line); cursor: default; background: transparent; }
.nights { display: block; font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brass); margin-top: -.4rem; }
.nights:empty { display: none; }
.form__foot { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .2rem; }
.form__status { font-size: .88rem; color: var(--danger); }
.success { display: grid; gap: .8rem; justify-items: start; padding: .5rem 0; }
.success h3 { margin-top: .4rem; }
.success p { max-width: 30rem; }
.success__again { margin-top: .6rem; color: var(--fog); }
@media (max-width: 800px) { .book__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-groups { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.faq-group { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.faq-group h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.faq-group h2 + p { color: var(--fog); font-size: .95rem; }
.faq-list { display: grid; gap: .6rem; }
.faq { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 2px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq[open] { border-color: var(--line); box-shadow: var(--shadow-card); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; font-family: var(--display); font-weight: 500; font-size: 1.05rem; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 1.1rem; color: var(--brass); flex: none; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s var(--ease); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.25rem 1.25rem; max-width: 46rem; }
.faq__body p { font-size: .98rem; }
@media (max-width: 800px) {
  .faq-group { grid-template-columns: 1fr; }
  .faq-group h2 { position: static; }
}

/* ---------- tiles, process, checklist, prose ---------- */

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.tile { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: clamp(1.4rem, 2.5vw, 2rem); display: grid; gap: .8rem; align-content: start; }
.tile .mono { color: var(--brass); }
.tile h3 { font-size: 1.25rem; }
.tile p { font-size: .98rem; }
.tile ul { margin: .2rem 0 0; padding-left: 1.1rem; font-size: .95rem; display: grid; gap: .3rem; }
.band--dusk .tile { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
@media (max-width: 900px) { .tiles { grid-template-columns: 1fr; } }

.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); counter-reset: p; }
.process li { counter-increment: p; display: grid; gap: .6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); align-content: start; }
.process li::before { content: "0" counter(p); font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; color: var(--brass); }
.process h3 { font-size: 1.1rem; }
.process p { font-size: .95rem; }
.band--dusk .process li { border-color: rgba(255,255,255,.15); }
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

.checklist { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .8rem; align-items: baseline; }
.checklist li::before { content: "✓"; font-family: var(--mono); color: var(--brass); flex: none; }

.prose { max-width: 40rem; }
.prose p + p { margin-top: 1.1em; }
.prose h3 { margin-top: 2rem; }
.prose h3 + p { margin-top: .6rem; }
.pull { font-family: var(--display); font-weight: 400; font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.25; letter-spacing: -.015em; max-width: 34rem; margin: 2.5rem 0; padding-left: 1.4rem; border-left: 2px solid var(--brass); color: var(--steel); }

/* ---------- team + contact ---------- */

.team { list-style: none; margin: 0; padding: 1.35rem 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team li { padding: 0; display: grid; gap: .2rem; align-content: start; }
.team strong { font-family: var(--display); font-weight: 500; letter-spacing: -.01em; font-size: 1.05rem; }
.team span { font-size: .9rem; color: var(--fog); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }

.contact-team { position: relative; overflow: hidden; }
.contact-team::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 90% 8%, rgba(201,168,76,.12), transparent 28rem); }
.contact-team .wrap { position: relative; }
.contact-team__intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; }
.contact-team__intro h2 { margin-top: .5rem; }
.contact-team__mail { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 300; line-height: 1.1; color: var(--steel); border-bottom: 1px solid var(--brass); padding-bottom: .2rem; }
.contact-team__mail:hover { color: var(--brass); }
.contact-team .team { margin-top: clamp(2rem, 4vw, 3rem); }
.contact-team__routes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.contact-team__route { padding: 0 clamp(1rem, 2.5vw, 2rem) 1.5rem; border-left: 1px solid var(--line); }
.contact-team__route:first-child { padding-left: 0; border-left: 0; }
.contact-team__route p:last-child { margin-top: .7rem; max-width: 22rem; font-size: .92rem; color: var(--fog); }
.contact-team__social { margin-top: 1.4rem; }
@media (max-width: 800px) {
  .contact-team__intro { grid-template-columns: 1fr; align-items: start; }
  .contact-team__mail { width: max-content; max-width: 100%; overflow-wrap: anywhere; }
  .contact-team__routes { grid-template-columns: 1fr; }
  .contact-team__route, .contact-team__route:first-child { padding: 1.2rem 0; border-left: 0; border-top: 1px solid var(--line); }
}

/* ---------- CTA band + footer ---------- */

.cta-band { padding-block: clamp(3.5rem, 7vw, 6rem); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.cta-band__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.footer { background: var(--steel); color: #C9CDCA; padding: clamp(2.4rem, 4vw, 3.5rem) 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1.4fr 1fr; gap: 3rem; }
.footer__brand { display: grid; gap: .85rem; align-content: start; }
.footer__tag { font-family: var(--display); font-weight: 300; font-size: clamp(1.55rem, 2.2vw, 2.15rem); color: var(--rime); line-height: 1.05; }
.footer__tag span { font-family: var(--body); font-weight: 300; color: #C9CDCA; }
.footer__note { font-size: .9rem; color: #9BA19D; max-width: 22rem; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer__nav a { font-size: .95rem; color: #DADDDB; }
.footer__nav a:hover { color: var(--sand-gold); }
.footer .eyebrow { color: #B8924A; }
.footer__mail { font-family: var(--display); font-size: 1.45rem; font-weight: 300; color: var(--rime); letter-spacing: -.01em; }
.footer__mail:hover { color: var(--sand-gold); }
.footer__social { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer__social a { font-size: .9rem; color: #DADDDB; }
.footer__social a:hover { color: var(--sand-gold); }
.footer__legal { margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); color: #7F8582; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------- sticky mobile CTA ---------- */

.mobile-cta {
  position: fixed; left: .75rem; right: .75rem; bottom: calc(.75rem + env(safe-area-inset-bottom)); z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .55rem .6rem .55rem 1.1rem;
  background: rgba(27,30,29,.92); color: var(--paper);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: 2px; box-shadow: 0 18px 40px -18px rgba(0,0,0,.5);
  animation: cta-in .35s var(--ease) both;
}
@keyframes cta-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.mobile-cta__text { font-size: .86rem; color: rgba(255,255,255,.8); }
.mobile-cta .btn--small { background: var(--paper); color: var(--steel); border-color: var(--paper); }
@media (min-width: 761px) { .mobile-cta { display: none !important; } }

/* ---------- lightbox ---------- */

.lb { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; }
.lb::backdrop { background: rgba(10,14,16,.94); }
.lb[open] { display: grid; place-items: center; }
.lb__figure { margin: 0; display: grid; gap: .8rem; justify-items: center; width: min(92vw, 1400px); }
.lb__figure img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 0; object-fit: contain; animation: lb-in .3s var(--ease) both; }
@keyframes lb-in { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
.lb__caption { display: flex; gap: 1.5rem; align-items: center; color: rgba(255,255,255,.7); }
.lb__caption .mono { color: inherit; }
.lb__close, .lb__nav {
  position: fixed; z-index: 2; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: var(--paper);
  font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,.2); }
.lb__close { top: 1rem; right: 1rem; }
.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__nav--prev { left: 1rem; }
.lb__nav--next { right: 1rem; }
@media (max-width: 700px) {
  .lb__nav { top: auto; bottom: 1rem; transform: none; }
  .lb__figure img { max-height: 70vh; }
}
