/* ==========================================================================
   Joá Rio — Caribbean-luxe editorial
   Palette: Turks-&-Caicos turquoise + Brazilian fuchsia over warm ivory.
   Tone:    Condé Nast — serif display, dropcaps, pull quotes, long margins.
   ========================================================================== */

:root {
  /* Turquoise family */
  --turq-50:  #EAF9FA;
  --turq-100: #CFF1F3;
  --turq-200: #A6E6EA;
  --turq-300: #6FD5DB;
  --turq-400: #2CC0C7;
  --turq-500: #10A9B1;    /* primary */
  --turq-600: #0E8F96;
  --turq-700: #0C747A;
  --turq-800: #0B5C60;

  /* Fuchsia family */
  --fuchsia-100: #FFE2F0;
  --fuchsia-300: #FF8ABF;
  --fuchsia-500: #E9439B;  /* accent */
  --fuchsia-600: #CF2380;
  --fuchsia-700: #A51666;

  /* Warmth */
  --ivory:  #FAF6F0;
  --oyster: #F2EBDE;
  --shell:  #EAE0CE;
  --sand:   #E5D7BE;

  /* Ink */
  --ink-900: #141414;
  --ink-700: #3A3A3A;
  --ink-500: #6D6D6D;
  --ink-300: #A8A8A8;
  --ink-150: #D9D2C5;

  /* Surface */
  --white:  #FFFFFF;
  --glass-bg: rgba(250, 246, 240, 0.62);
  --glass-border: rgba(20, 20, 20, 0.08);
  --glass-hover-bg: rgba(16, 169, 177, 0.88);
  --glass-hover-border: rgba(16, 169, 177, 0.55);

  /* Type */
  --serif: "Fraunces", "Didot", "Bodoni 72", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Geometry */
  --nav-h: 78px;
  --rail-w: 140px;
  --max: 1540px;
  --gutter: clamp(20px, 4vw, 72px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--fuchsia-500); color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink-900); color: var(--white);
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* --------------------------------------------------------------------------
   Navigation — glass morph, shifts to turquoise on scroll
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), box-shadow .4s var(--ease);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Default: over-hero translucent glass with light text */
.has-hero .nav { color: var(--white); }
.has-hero .nav::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,32,0.38) 0%, rgba(10,30,32,0) 100%);
  pointer-events: none;
}

/* Scrolled state — frosted ivory glass */
.nav.is-scrolled {
  background: rgba(250, 246, 240, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(20,20,20,.06), 0 10px 30px -20px rgba(20,20,20,.18);
  color: var(--ink-900);
}
.nav.is-scrolled::before { display: none; }

/* Hover / active — turquoise-tinted glass */
.nav.is-hovered {
  background: linear-gradient(180deg, rgba(16,169,177,.92) 0%, rgba(14,143,150,.88) 100%);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  color: var(--white);
}
.nav.is-hovered::before { display: none; }

/* Brand */
.nav__brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav__brand-mark { font-style: italic; }
.nav__brand-sep {
  width: 20px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.nav__brand-secondary {
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--sans);
  opacity: .85;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
}
.nav__link {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 2px;
  position: relative;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--fuchsia-500); }
.nav.is-hovered .nav__link.is-active,
.nav.is-scrolled .nav__link.is-active { color: var(--fuchsia-500); }

/* CTA pill */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.nav__cta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fuchsia-500);
  box-shadow: 0 0 0 3px rgba(233,67,155,.22);
}
.nav__cta:hover {
  background: var(--fuchsia-500);
  border-color: var(--fuchsia-500);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--glass-border);
}
[hidden] { display: none !important; }
.nav__mobile-link {
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  border-bottom: 1px solid var(--ink-150);
}
.nav__mobile-cta {
  margin-top: 18px;
  padding: 16px 22px;
  background: var(--turq-500);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Primitives
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--turq-600);
}
.eyebrow--light { color: rgba(255,255,255,.92); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
}
.btn--solid {
  background: var(--ink-900);
  color: var(--ivory);
}
.btn--solid:hover {
  background: var(--fuchsia-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -18px rgba(233,67,155,.55);
}
.btn--ghost {
  border-color: var(--ink-900);
  color: var(--ink-900);
}
.btn--ghost:hover {
  background: var(--ink-900);
  color: var(--ivory);
}
.btn--ghost-light {
  border-color: rgba(255,255,255,.75);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover {
  background: var(--white);
  color: var(--ink-900);
}
.btn--link-light {
  color: var(--white);
  padding: 16px 6px;
  letter-spacing: .2em;
}

.link-arrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--turq-600);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.link-arrow:hover {
  color: var(--fuchsia-500);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100vh, 980px);
  color: var(--white);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero--subject { min-height: min(85vh, 860px); }
.hero--short   { min-height: min(70vh, 680px); }

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroFloat 18s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.08) translateY(-14px); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(110% 80% at 20% 100%, rgba(10,30,32,.65) 0%, rgba(10,30,32,.15) 55%, rgba(10,30,32,0) 100%),
    linear-gradient(180deg, rgba(10,30,32,.15) 0%, rgba(10,30,32,0) 30%, rgba(10,30,32,.45) 100%);
}
.hero__veil--light {
  background:
    linear-gradient(180deg, rgba(10,30,32,.25) 0%, rgba(10,30,32,0) 40%, rgba(10,30,32,.55) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(56px, 10vh, 110px);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 18px 0 24px;
  max-width: 13ch;
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--turq-200);
}
.hero__headline--editorial {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 1;
}
.hero__line-1 { display: block; }
.hero__line-2 { display: block; }
.hero__line-3 { display: block; }

.hero__standfirst {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  max-width: 54ch;
  margin: 0 0 32px;
  color: rgba(255,255,255,.92);
}

.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; right: var(--gutter);
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .7;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px; height: 40px;
  background: currentColor;
  margin: 10px auto 0;
  transform-origin: top;
  animation: scrollTick 2.4s ease-in-out infinite;
}
@keyframes scrollTick {
  0%,100% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   Editorial opener (home) — magazine intro
   -------------------------------------------------------------------------- */
.editorial,
.house-lede {
  max-width: var(--max);
  margin: clamp(80px, 12vh, 140px) auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.editorial__rail,
.house-lede__rail {
  border-top: 1px solid var(--ink-900);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 30px);
}
.editorial__folio,
.house-lede__folio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-500);
}
.editorial__body,
.house-lede__body {
  max-width: 68ch;
}
.editorial__body p,
.house-lede__body p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.55;
  margin: 0 0 22px;
  font-weight: 300;
  color: var(--ink-700);
}
.editorial__sign {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-500);
}

/* Drop cap */
.dropcap {
  text-indent: 0;
}
.dropcap__letter {
  float: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 7vw, 108px);
  line-height: .82;
  padding: 8px 14px 0 0;
  color: var(--fuchsia-500);
}

/* --------------------------------------------------------------------------
   Full-bleed spreads
   -------------------------------------------------------------------------- */
.spread {
  margin: clamp(60px, 10vh, 120px) 0;
}
.spread--wide .spread__figure {
  width: 100%;
  margin: 0;
}
.spread--wide .spread__figure img {
  width: 100%;
  height: clamp(360px, 72vh, 820px);
  object-fit: cover;
}
.spread--tall .spread__figure img { height: clamp(440px, 86vh, 920px); }
.spread__figure figcaption {
  max-width: var(--max);
  margin: 16px auto 0;
  padding: 0 var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-500);
}

.spread--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.spread--split .spread__left img {
  width: 100%;
  height: clamp(400px, 70vh, 720px);
  object-fit: cover;
}
.spread__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 16px 0 22px;
  color: var(--ink-900);
}
.spread__head em { font-style: italic; color: var(--turq-600); }
.spread__right p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 44ch;
  margin: 0 0 22px;
}

/* --------------------------------------------------------------------------
   Pull quote
   -------------------------------------------------------------------------- */
.pull {
  background: linear-gradient(135deg, var(--turq-500) 0%, var(--turq-700) 100%);
  color: var(--white);
  padding: clamp(80px, 14vh, 150px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,67,155,.5), transparent 70%);
  filter: blur(40px);
}
.pull::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
  filter: blur(60px);
}
.pull__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.pull__quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.pull__mark,
.pull__mark-close {
  font-family: var(--serif);
  color: var(--fuchsia-300);
  font-style: normal;
  font-size: 1.2em;
  vertical-align: -0.1em;
  margin: 0 4px;
}
.pull__attr {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* --------------------------------------------------------------------------
   Stat row
   -------------------------------------------------------------------------- */
.stat-row {
  background: var(--oyster);
  padding: clamp(50px, 8vh, 90px) var(--gutter);
  border-top: 1px solid var(--shell);
  border-bottom: 1px solid var(--shell);
}
.stat-row--dark {
  background: var(--ink-900);
  color: var(--ivory);
  border-color: var(--ink-700);
}
.stat-row__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 60px);
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--turq-600);
}
.stat-row--dark .stat__n { color: var(--turq-300); }
.stat__l {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.stat-row--dark .stat__l { color: var(--ink-150); }

/* --------------------------------------------------------------------------
   Teaser cards (home)
   -------------------------------------------------------------------------- */
.teaser {
  max-width: var(--max);
  margin: clamp(80px, 12vh, 140px) auto;
  padding: 0 var(--gutter);
}
.teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--shell);
  border-radius: 4px;
  overflow: hidden;
}
.teaser__card {
  display: block;
  padding: clamp(38px, 5vw, 72px);
  background: var(--ivory);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.teaser__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  margin: 14px 0 18px;
  letter-spacing: -0.01em;
}
.teaser__card p {
  color: var(--ink-700);
  max-width: 50ch;
  margin: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.65;
}
.teaser__card:hover {
  background: var(--white);
}
.teaser__card--alt {
  background: var(--turq-500);
  color: var(--white);
}
.teaser__card--alt .eyebrow { color: rgba(255,255,255,.85); }
.teaser__card--alt p { color: rgba(255,255,255,.86); }
.teaser__card--alt .link-arrow { color: var(--white); }
.teaser__card--alt:hover {
  background: var(--turq-600);
}
.teaser__card--alt:hover .link-arrow { color: var(--fuchsia-300); }

/* --------------------------------------------------------------------------
   House — specs
   -------------------------------------------------------------------------- */
.specs {
  background: var(--white);
  padding: clamp(70px, 10vh, 120px) var(--gutter);
  border-top: 1px solid var(--shell);
}
.specs__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.specs__price {
  padding: 30px 0 0;
  border-top: 1px solid var(--ink-900);
}
.specs__price-amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  margin: 14px 0 8px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.specs__price-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 26px;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--shell);
  border: 1px solid var(--shell);
}
.specs__item {
  background: var(--ivory);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.specs__label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.specs__value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1;
  color: var(--turq-600);
  letter-spacing: -0.01em;
}
.specs__suffix {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   Essay (house + community)
   -------------------------------------------------------------------------- */
.essay {
  max-width: 860px;
  margin: clamp(70px, 10vh, 130px) auto;
  padding: 0 var(--gutter);
}
.essay--wide { max-width: 1040px; }
.essay__chapter {
  margin-bottom: clamp(44px, 6vh, 72px);
}
.essay__chapter .eyebrow { display: block; margin-bottom: 14px; }
.essay__chapter p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.6;
  color: var(--ink-700);
  font-weight: 300;
  margin: 0 0 22px;
}

/* --------------------------------------------------------------------------
   Features grid
   -------------------------------------------------------------------------- */
.features {
  background: var(--oyster);
  padding: clamp(70px, 10vh, 130px) var(--gutter);
  border-top: 1px solid var(--shell);
}
.features__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.features__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  margin: 14px 0 36px;
  letter-spacing: -0.015em;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--shell);
  border: 1px solid var(--shell);
  margin-bottom: 32px;
}
.features__item {
  background: var(--ivory);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900);
}
.features__tick {
  flex: 0 0 auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--turq-500);
  box-shadow: 0 0 0 3px var(--turq-100);
}
.features__note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 62ch;
  margin: 22px 0 0;
}
.features__note--security { color: var(--turq-700); }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
  max-width: var(--max);
  margin: clamp(80px, 12vh, 140px) auto;
  padding: 0 var(--gutter);
}
.gallery__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.gallery__head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  margin: 12px 0 16px;
  letter-spacing: -0.015em;
}
.gallery__head p {
  color: var(--ink-500);
  font-size: 16px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--shell);
  cursor: zoom-in;
  display: block;
  border-radius: 2px;
}
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.gallery__cell:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.gallery__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0) 50%, rgba(20,20,20,.55) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__cell:hover::after { opacity: 1; }
.gallery__num {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__cell:hover .gallery__num {
  opacity: 1;
  transform: translateY(0);
}

/* Editorial rhythm: first cell spans 2 wide every 7 cells */
.gallery__cell:nth-child(7n + 1) {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 20, 22, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: background .3s var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--fuchsia-500); }
.lightbox__close { top: 24px; right: 24px; font-size: 30px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: .7;
}

/* --------------------------------------------------------------------------
   Closing / CTA
   -------------------------------------------------------------------------- */
.closing {
  background: var(--ivory);
  padding: clamp(80px, 12vh, 140px) var(--gutter);
  border-top: 1px solid var(--shell);
}
.closing__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  margin: 14px 0 22px;
  letter-spacing: -0.018em;
}
.closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-700);
  margin: 0 auto 32px;
  max-width: 58ch;
  line-height: 1.6;
}
.closing__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  max-width: var(--max);
  margin: clamp(80px, 12vh, 140px) auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--shell);
  border: 1px solid var(--shell);
}
.contact__channel {
  background: var(--white);
  padding: clamp(26px, 4vw, 46px);
}
.contact__value {
  display: block;
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  transition: color .3s var(--ease);
}
.contact__value:hover { color: var(--fuchsia-500); }
.contact__help {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}

.contact__card {
  background: linear-gradient(160deg, var(--turq-500) 0%, var(--turq-700) 100%);
  color: var(--white);
  padding: clamp(32px, 4vw, 54px);
  border-radius: 2px;
  align-self: start;
  position: relative;
  overflow: hidden;
}
.contact__card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,67,155,.4), transparent 70%);
  filter: blur(30px);
}
.contact__card .eyebrow { color: rgba(255,255,255,.85); }
.contact__card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  margin: 12px 0 18px;
  letter-spacing: -0.01em;
}
.contact__card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin: 0 0 30px;
}
.contact__card-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Stage (empty journal + reviews placeholders)
   -------------------------------------------------------------------------- */
.stage {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: clamp(var(--nav-h), 20vh, 220px) var(--gutter) 80px;
  background:
    radial-gradient(1000px 500px at 20% 30%, rgba(16,169,177,.12), transparent 70%),
    radial-gradient(900px 500px at 85% 80%, rgba(233,67,155,.10), transparent 70%),
    var(--ivory);
  position: relative;
}
.stage__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.stage__head {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 20px 0 30px;
}
.stage__head em {
  font-style: italic;
  color: var(--turq-600);
}
.stage__standfirst {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 auto 40px;
  max-width: 54ch;
  font-style: italic;
  font-weight: 300;
}
.stage__actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.stage__ornament {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.stage__ornament span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fuchsia-500);
  opacity: .6;
}
.stage__ornament span:nth-child(2) { background: var(--turq-500); }
.stage__ornament span:nth-child(3) { background: var(--fuchsia-500); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink-900);
  color: var(--ivory);
  padding: clamp(60px, 8vh, 100px) var(--gutter) 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.footer__brand span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  vertical-align: 14px;
  margin-left: 8px;
  color: var(--turq-300);
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-150);
  margin: 12px 0 0;
}
.footer__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--turq-300);
  margin: 0 0 14px;
}
.footer__col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-150);
}
.footer__col a { transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--fuchsia-300); }
.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.footer__credit a {
  color: var(--ink-300);
  transition: color .3s var(--ease);
}
.footer__credit a:hover { color: var(--fuchsia-300); }

/* --------------------------------------------------------------------------
   Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .editorial,
  .house-lede {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .editorial__rail,
  .house-lede__rail {
    position: static;
    flex-direction: row;
    gap: 18px;
    align-items: center;
  }
  .specs__inner { grid-template-columns: 1fr; }
  .specs__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .spread--split { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .teaser__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__cell:nth-child(7n + 1) { grid-column: span 2; aspect-ratio: 16/9; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 68px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .hero__scroll { display: none; }
  .specs__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__cell:nth-child(7n + 1) { grid-column: auto; aspect-ratio: 4/3; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 12px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
