/* home.css — extracted verbatim from the index.html <style> block so that
   'unsafe-inline' can be dropped from the CSP style-src directive (P7.11).
   Canonical tokens live in assets/tokens.css and are loaded before this. */
/* ============ REGISTERED CUSTOM PROPERTIES (animatable) ============ */
@property --grad-angle   { syntax: "<angle>";      initial-value: 0deg;  inherits: false; }
@property --glow         { syntax: "<percentage>"; initial-value: 0%;    inherits: false; }
@property --card-glint-x { syntax: "<percentage>"; initial-value: 50%;   inherits: false; }
@property --card-glint-y { syntax: "<percentage>"; initial-value: 50%;   inherits: false; }
@property --counter-val  { syntax: "<integer>";    initial-value: 0;     inherits: false; }

/* ============ DESIGN TOKENS ============
   Canonical tokens live in assets/tokens.css, loaded before this block.
   --ink was defined here as #FBF9F4 (a background) while site.css and
   pages.css defined it as #1D2B33 (text). That collision is fixed: --ink
   now means text everywhere, and this page's background uses --surface. */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html { background: var(--surface); }
.page-bg-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; display: block; }
body {
  background: transparent;
  color: var(--foam);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
  cursor: none;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) { body { cursor: auto; } }

::selection { background: var(--gold); color: var(--abyss); }

/* ============ SCROLL PROGRESS (scroll-driven animation) ============ */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 100;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
  animation: grow-x linear both;
  animation-timeline: scroll(root);
}
@keyframes grow-x { to { transform: scaleX(1); } }

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed; z-index: 200; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  translate: -50% -50%;
  transition: width .25s var(--ease-out-expo), height .25s var(--ease-out-expo), opacity .3s;
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 56px; height: 56px; }
@media (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor { display: none; } }

/* ============ NAV ============ */
.top-veil {
  /* soft paper wash behind the nav strip only — keeps brand/links readable over the sea */
  position: fixed; inset: 0 0 auto 0; height: 112px; z-index: 85; pointer-events: none;
  background: linear-gradient(to bottom, rgba(251,249,244,.66), rgba(251,249,244,.3) 55%, transparent);
}
nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.4rem, 5vw, 4rem);
  animation: nav-solidify linear both;
  animation-timeline: scroll(root);
  animation-range: 0 480px;
}
@keyframes nav-solidify {
  to { background: rgba(251,249,244,.86); backdrop-filter: blur(18px); padding-block: 1rem; }
}
.brand {
  font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400;
  letter-spacing: .06em; color: var(--foam); text-decoration: none;
}
.brand em { font-style: italic; color: var(--gold); }
.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  color: var(--foam-dim); text-decoration: none; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: .6rem 1.4rem; border-radius: 99px;
  transition: background .3s, color .3s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--abyss) !important; }

/* Collection dropdown (desktop) */
.nav-drop { position: relative; }
.nav-drop-panel { display: none; position: absolute; top: 100%; left: -1.2rem; padding-top: 1.1rem; z-index: 97; }
.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel { display: block; }
.nav-drop-box {
  background: rgba(251,249,244,.97); backdrop-filter: blur(18px);
  border: 1px solid var(--hairline); border-radius: 14px;
  box-shadow: 0 14px 40px rgba(29,43,51,.12);
  padding: .5rem 0; display: flex; flex-direction: column; min-width: 210px;
}
.nav-drop-box a { padding: .7rem 1.2rem !important; font-size: .74rem !important; letter-spacing: .18em !important; }
.nav-sub { display: none !important; }

/* ============ BURGER MENU (mobile drawer) ============ */
.nav-burger {
  display: none; background: none; border: 0; cursor: none;
  padding: 10px; margin: -10px -10px -10px 0;
  color: var(--foam); flex-direction: column; gap: 5px;
  position: relative; z-index: 96;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; background: currentColor;
  transition: transform .35s var(--ease-out-expo), opacity .3s;
}
@media (pointer: coarse) { .nav-burger { cursor: pointer; } }
@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; z-index: 95;
    background: rgba(251,249,244,.97); backdrop-filter: blur(18px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 5.4rem clamp(1.4rem, 5vw, 4rem) 2rem;
    box-shadow: 0 12px 40px rgba(29,43,51,.14);
    transform: translateY(-102%);
    transition: transform .45s var(--ease-out-expo);
  }
  nav.menu-open .nav-links { transform: none; }
  .nav-links a:not(.nav-cta) {
    display: block; padding: 1rem .2rem; font-size: .95rem;
    border-bottom: 1px solid var(--hairline); text-shadow: none;
  }
  .nav-links a.nav-cta { margin-top: 1.2rem; align-self: flex-start; }
  .nav-drop { display: contents; }
  .nav-drop-panel { display: none !important; }
  .nav-links a.nav-sub { padding-left: 1.4rem !important; font-size: .8rem !important; opacity: .72; border-bottom: 0 !important; }
  nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ HERO ============ */
.hero {
  position: relative; height: 100svh; min-height: 640px; overflow: clip;
  /* Painted fallback. The WebGL canvas sits on top of this, and removes
     itself on low-memory or low-core devices (P4.4) and when WebGL2 is
     unavailable — so this gradient is what those visitors see. It must
     never be left as a flat dark block. */
  background:
    radial-gradient(120% 78% at 22% 82%, rgba(154,123,63,.28), transparent 62%),
    linear-gradient(to bottom, #0B1D26 0%, #123240 46%, #1E4C58 78%, #2C6472 100%);
}
.hero-canvas {
  /* live WebGL sea — the only hero visual now, shown immediately */
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.live-tag {
  position: absolute; top: clamp(4.6rem, 11vh, 6.4rem); right: clamp(1.6rem, 5vw, 4rem);
  display: none; align-items: center; gap: .55rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--foam-dim);
}
.live-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sea); box-shadow: 0 0 8px var(--sea);
  animation: live-pulse 2.2s ease-in-out infinite;
}
@keyframes live-pulse { 50% { opacity: .3; } }
.hero.is-live .live-tag { display: flex; }
@media (max-width: 760px) { .live-tag { display: none !important; } }
.hero-content {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-content: center; justify-items: center; text-align: center;
  padding: clamp(1.6rem, 6vw, 5rem);
}
.hero-content::before {
  /* soft dark scrim so the copy stays legible over the live sea (replaces the
     old paper glow, which was removed) */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 60% at 50% 50%, rgba(11,29,38,.52), rgba(11,29,38,.24) 58%, transparent 82%);
}
.hero-kicker {
  font-size: .78rem; letter-spacing: .34em; text-transform: uppercase;
  color: #C9B98A; margin-bottom: 1.4rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-kicker::before { content: ""; width: 48px; height: 1px; background: #C9B98A; }
h1 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 1.02; letter-spacing: -0.015em;
  text-wrap: balance; max-width: 12ch;
}
h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  margin-top: 1.6rem; max-width: 44ch; color: var(--foam-dim);
  font-size: clamp(.95rem, 1.4vw, 1.1rem); text-wrap: pretty;
}
.hero-price {
  margin-top: 1.5rem; font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--foam); letter-spacing: .01em;
}
.hero-price b { font-family: var(--font-serif); font-weight: 400; font-size: 1.35em; color: var(--gold); }
.hero-price span { display: block; margin-top: .35rem; font-size: .8em; color: var(--foam-dim); letter-spacing: .04em; }
.hero-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.6rem; padding: .95rem 1.6rem; min-height: 44px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s var(--ease-out-expo), color .3s var(--ease-out-expo);
}
.hero-cta:hover, .hero-cta:focus-visible { background: var(--gold); color: var(--abyss); }

/* Hero copy sits on the live sea with no paper glow behind it, so the palette
   is inverted here only — light text, with the Kimi sand→aqua→gold gradient on
   the emphasised word. Type family is unchanged (var(--font-serif)). */
.hero .hero-kicker { color: rgba(251,249,244,.8); }
.hero .hero-kicker::before { background: rgba(251,249,244,.45); }
.hero h1 { color: #FBF9F4; }
.hero h1 em {
  color: #EAE1CB;
  background: linear-gradient(100deg, #EAE1CB 10%, #54E2E7 45%, #DEB36E 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .hero-sub { color: rgba(251,249,244,.8); }
.hero .hero-price { color: #FBF9F4; }
.hero .hero-price b { color: #DEB36E; }
.hero .hero-price span { color: rgba(251,249,244,.72); }
.hero .hero-cta { border-color: rgba(251,249,244,.8); color: #FBF9F4; }
.hero .hero-cta:hover, .hero .hero-cta:focus-visible { background: #FBF9F4; color: var(--abyss); }

.hero-content > * { opacity: 0; animation: rise-in 1.2s var(--ease-out-expo) forwards; }
.hero-content > *:nth-child(2) { animation-delay: .15s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .42s; }
.hero-content > *:nth-child(5) { animation-delay: .54s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(2.2rem); } to { opacity: 1; transform: none; } }

.scroll-hint {
  position: absolute; bottom: 2rem; right: clamp(1.6rem, 5vw, 4rem);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--foam-dim);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: .8rem;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: hint-drip 2.2s var(--ease-lux) infinite;
}
@keyframes hint-drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--hairline);
  overflow: clip; padding-block: 1.1rem;
  background: var(--ink-2);
  display: flex; white-space: nowrap;
}
.marquee-track {
  display: flex; gap: 3rem; padding-right: 3rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--foam-dim);
}
.marquee-track span::after { content: "✦"; margin-left: 3rem; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ============ SECTION SCAFFOLD ============ */
section { padding: clamp(5rem, 12vw, 10rem) clamp(1.4rem, 6vw, 5rem); position: relative; }
.section-kicker {
  font-size: .74rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
h2 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.08;
  letter-spacing: -0.01em; text-wrap: balance;
}
h2 em { font-style: italic; color: var(--gold); }

/* view()-timeline reveal — pure CSS scroll-driven */
.reveal {
  animation: reveal-up 1s var(--ease-out-expo) both;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
}
@keyframes reveal-up { from { opacity: 0; transform: translateY(3rem); } }
@supports not (animation-timeline: view()) {
  .reveal { animation: none; opacity: 1; }
}

/* ============ MANIFESTO — per-word scroll reveal ============ */
.manifesto { max-width: 1100px; margin-inline: auto; text-align: center; }
.manifesto p {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.7rem, 4.2vw, 3.4rem); line-height: 1.32;
  text-wrap: balance;
}
.manifesto .w {
  display: inline-block;
  animation: word-in linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 42%;
}
@keyframes word-in { from { opacity: .12; filter: blur(3px); } to { opacity: 1; filter: blur(0); } }
@supports not (animation-timeline: view()) { .manifesto .w { animation: none; } }
.manifesto .gold { color: var(--gold); font-style: italic; }

/* ============ RESIDENCES ============ */
.residences-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.residences-head p { max-width: 38ch; color: var(--foam-dim); text-wrap: pretty; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 1.4rem; }

.card {
  --grad-angle: 135deg;
  position: relative; border-radius: 20px; padding: 2.4rem 2rem;
  background:
    linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
    conic-gradient(from var(--grad-angle), oklch(94% .008 90 / .05), var(--gold-deep), oklch(94% .008 90 / .05), oklch(94% .008 90 / .05)) border-box;
  border: 1px solid transparent;
  transition: --grad-angle 1.4s var(--ease-out-expo), transform .5s var(--ease-out-expo);
  transform-style: preserve-3d;
  overflow: clip;
}
.card:hover { --grad-angle: 495deg; }
.card::before { /* pointer-tracked sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--card-glint-x) var(--card-glint-y), oklch(78% .11 85 / .1), transparent 60%);
  transition: opacity .4s; opacity: 0;
}
.card:hover::before { opacity: 1; }
.card.is-featured {
  background:
    linear-gradient(var(--paper), var(--ink-2)) padding-box,
    conic-gradient(from var(--grad-angle), var(--gold-deep), var(--gold), var(--gold-deep)) border-box;
}
.card-img { position: relative; margin: -2.4rem -2rem 1.6rem; height: 260px; overflow: hidden; }
.card-img img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card-tier { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.card h3 { font-family: var(--font-serif); font-weight: 400; font-size: 2rem; margin: .8rem 0 .2rem; }
.card-view { font-style: italic; font-family: var(--font-serif); color: var(--foam-dim); margin-bottom: 1.6rem; }
.card ul { list-style: none; display: grid; gap: .65rem; margin-bottom: 2rem; }
.card li { display: flex; gap: .7rem; align-items: baseline; font-size: .92rem; color: var(--foam-dim); }
.card li::before { content: "—"; color: var(--gold); }
.card-price { font-family: var(--font-serif); font-size: 1.7rem; color: var(--foam); }
.card-price small { font-family: var(--font-sans); font-size: .72rem; color: var(--foam-dim); letter-spacing: .1em; display: block; margin-top: .2rem; }
.card-cta {
  margin-top: 1.6rem; display: inline-flex; align-items: center; gap: .6rem;
  color: var(--gold); text-decoration: none; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase;
}
.card-cta::after { content: "→"; transition: translate .3s var(--ease-out-expo); }
.card-cta:hover::after { translate: 6px 0; }
/* ---- region / locality grouping ---- */
.region { margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.region-head { display: flex; align-items: baseline; gap: 1rem 1.4rem; flex-wrap: wrap; padding-bottom: 1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--hairline); }
.region-name { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--foam); }
.region-sub { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }
.locality-block { margin-bottom: 2.4rem; }
.locality-name { font-family: var(--font-serif); font-size: clamp(2.1rem, 4.2vw, 3.1rem); font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.1; color: var(--gold); margin-bottom: 1.4rem; display: flex; gap: 1.2rem; align-items: baseline; flex-wrap: wrap; }
.locality-name a { font-family: var(--font-sans); color: var(--foam-dim); text-transform: none; letter-spacing: .02em; font-size: .85rem; }
.locality-name a:hover { color: var(--gold); }
.loc-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.loc-links a { border: 1px solid var(--hairline); color: var(--foam); padding: .6rem 1.2rem; border-radius: 99px; font-size: .85rem; letter-spacing: .03em; transition: border-color .3s, color .3s; }
.loc-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ============ STATS ============ */
.stats {
  position: relative; overflow: clip;
  border-block: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; text-align: center; background: var(--abyss);
}
.stats-canvas {
  /* live WebGL caustics behind the counters; --abyss remains the fallback */
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
}
.stats > *:not(.stats-canvas) { position: relative; z-index: 1; }
.stat b {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--gold); display: block;
}
.stat b sup { font-size: .45em; }
.stat > span { font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(251,249,244,.68); }
.stat b span { font: inherit; color: inherit; letter-spacing: inherit; }

/* ============ GALLERY — sticky horizontal scroll, CSS-driven ============ */
.gallery-wrap { height: 340vh; padding: 0; view-timeline: --gallery block; }
.gallery-sticky {
  position: sticky; top: 0; height: 100svh; overflow: clip;
  display: flex; align-items: center;
}
.gallery-track {
  display: flex; gap: clamp(1rem, 3vw, 2.4rem); padding-inline: clamp(1.4rem, 6vw, 5rem);
  will-change: transform;
  animation: track-pan linear both;
  animation-timeline: --gallery;
  animation-range: contain 0% contain 100%;
}
@keyframes track-pan { to { transform: translateX(calc(-100% + 100vw - clamp(2.8rem, 12vw, 10rem))); } }
.panel {
  position: relative; flex: 0 0 auto;
  width: clamp(300px, 62vw, 720px); aspect-ratio: 4 / 3;
  border-radius: 22px; overflow: clip;
  display: grid; align-content: end; padding: 2rem;
  border: 1px solid var(--hairline);
}
.panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, oklch(10% .015 250 / .82), transparent 45%);
}
.panel figcaption { position: relative; z-index: 1; color: #FBF9F4; }
.panel figcaption b { font-family: var(--font-serif); font-weight: 400; font-size: 1.5rem; display: block; }
.panel figcaption span { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(251,249,244,.72); }
@supports not (animation-timeline: view()) {
  .gallery-wrap { height: auto; }
  .gallery-sticky { position: static; height: auto; }
  .gallery-track { overflow-x: auto; animation: none; }
}

/* ============ QUOTE ============ */
.quote { text-align: center; max-width: 950px; margin-inline: auto; }
.quote blockquote {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); line-height: 1.3; text-wrap: balance;
}
.quote blockquote em { color: var(--gold); }
.quote cite {
  display: block; margin-top: 2rem; font-style: normal;
  font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; color: var(--foam-dim);
}

/* ============ DUSK / LOCATION ============ */
.loc-list {
  list-style: none; margin-top: 2.4rem; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
}
.loc-list li {
  background: var(--paper);
  display: flex; justify-content: space-between; align-items: baseline; gap: 2rem;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
}
/* uniform grid: no first-child border override needed */
.loc-list b { font-weight: 500; color: var(--foam); }
.loc-list span { color: var(--foam-dim); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ============ REPORTS ============ */
.reports { padding: clamp(4rem, 10vw, 7rem) clamp(1.4rem, 6vw, 5rem); max-width: 1300px; margin-inline: auto; }
.reports-head { max-width: 60ch; margin-bottom: 2.4rem; }
.reports-head p:last-child { color: var(--foam-dim); margin-top: 1rem; }
.reports-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); gap: 1.6rem; }
.report-card {
  display: block; padding: 1.8rem; border: 1px solid var(--hairline); border-radius: 16px;
  background: var(--paper); transition: border-color .3s, transform .3s;
}
.report-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.report-card h3 { font-family: var(--font-serif); font-weight: 400; font-size: 1.3rem; margin-bottom: .6rem; }
.report-card p { color: var(--foam-dim); font-size: .92rem; margin-bottom: 1.2rem; }
.report-cta { color: var(--gold); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

/* ============ CTA / FORM ============ */
.cta { text-align: center; }
.cta-panel {
  max-width: 640px; margin: 3rem auto 0;
  background: rgba(255,255,255,.7); backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(29,43,51,.08);
  border: 1px solid var(--hairline); border-radius: 24px;
  padding: clamp(1.8rem, 5vw, 3rem); text-align: left;
}
.field { display: grid; gap: .45rem; margin-bottom: 1.4rem; }
.field label { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--foam-dim); }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--hairline);
  color: var(--foam); font: inherit; padding: .6rem 0; outline: none;
  transition: border-color .3s;
}
.field textarea { field-sizing: content; min-height: 2.6rem; resize: none; }
.field :is(input, textarea):focus { border-color: var(--gold); }
.btn-gold {
  --glow: 0%;
  width: 100%; padding: 1.1rem; border-radius: 99px; border: 0;
  font: 500 .84rem var(--font-sans); letter-spacing: .26em; text-transform: uppercase;
  color: var(--abyss); cursor: none;
  background: radial-gradient(120% 200% at 50% calc(100% + var(--glow)), oklch(88% .12 90), var(--gold) 55%, var(--gold-deep));
  transition: --glow .6s var(--ease-out-expo), transform .3s var(--ease-out-expo);
}
.btn-gold:hover { --glow: 90%; transform: translateY(-2px); }
@media (pointer: coarse) { .btn-gold { cursor: pointer; } }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--hairline);
  padding: 3rem clamp(1.4rem, 6vw, 5rem);
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  color: var(--foam-dim); font-size: .82rem;
}
footer .brand { font-size: 1.2rem; }
.footer-wordmark { letter-spacing: .3em; font-weight: 600; text-transform: uppercase; }
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--gold); }

/* grain overlay */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
}
