/* ═══════════════════════════════════════════════════════════════
   GMG — Luxe
   Dark, gold-hairlined stone showroom. Content from the approved
   company profile; motion per the project's Motion Blueprint.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink:        #0A0A0A;   /* page ground                        */
  --ink-raised: #0F0F0E;   /* bands, cards, modal                */
  --gold:       #D4AF37;
  --gold-lit:   #EBC85A;
  --amber:      #E4B84A;   /* form errors                        */
  --white:      #FFFFFF;

  --t-1: rgba(255,255,255,.88);
  --t-2: rgba(255,255,255,.62);
  --t-3: rgba(255,255,255,.55);
  --t-4: rgba(255,255,255,.42);
  --t-5: rgba(255,255,255,.35);

  --hair:      rgba(212,175,55,.20);  /* gold hairline rules      */
  --hair-soft: rgba(212,175,55,.14);
  --hair-lit:  rgba(212,175,55,.28);  /* image frames             */
  --edge:      rgba(255,255,255,.22); /* neutral outline buttons  */

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: 22px;
  --measure: 1180px;
  --ease: cubic-bezier(.2,.7,.3,1);
  --expo: cubic-bezier(.16,1,.3,1);
}

/* ── reset ───────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

/* Several toggled blocks below set display (flex/grid), which would
   otherwise beat the [hidden] attribute. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
/* Lenis drives scrolling itself; native smooth fights it. */
html.lenis, html.lenis body { height: auto; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body > * { min-width: 0; }

h1, h2, h3, p, blockquote, figure, dl, dd, address { margin: 0; }

img { display: block; max-width: 100%; }

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-lit); }

button { font: inherit; cursor: pointer; }

input, textarea { font-family: inherit; }
::placeholder { color: #6b6a66; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 12px 18px; background: var(--gold); color: var(--ink); font-size: 14px;
}
.skip:focus { left: 8px; top: 8px; color: var(--ink); }

/* ── intro ────────────────────────────────────────────────────────
   "Cut, then polished": a saw line crosses the screen, the cut opens
   on the logo, a sheen passes over it, then the whole panel lifts. */

.intro {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--ink);
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
/* Only shown when JS has confirmed it can also take it away. */
html:not(.js-motion) .intro { display: none; }

.intro__bloom {
  position: absolute; left: 50%; top: 50%;
  width: min(120vw, 1100px); aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(.4);
  background: radial-gradient(circle, rgba(212,175,55,.16), rgba(212,175,55,0) 62%);
  opacity: 0;
  pointer-events: none;
}

/* The saw pass. */
.intro__saw {
  position: absolute; left: 0; top: 50%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0), var(--gold-lit) 45%, var(--gold-lit) 55%, rgba(212,175,55,0));
  transform: scaleX(0); transform-origin: left center;
  box-shadow: 0 0 24px rgba(212,175,55,.8);
}

.intro__stage {
  position: relative; z-index: 2;
  display: grid; justify-items: center; gap: 26px;
  padding: 0 var(--gutter);
  clip-path: inset(50% 0 50% 0);
}
.intro__logo { position: relative; overflow: hidden; }
.intro__logo img {
  width: min(74vw, 460px); height: auto;
  opacity: 0; transform: translateY(18px) scale(1.04);
}
.intro__sheen {
  position: absolute; top: -25%; bottom: -25%; left: 0;
  width: 20%;
  background: linear-gradient(100deg,
    rgba(255,255,255,0),
    rgba(255,246,214,.34) 42%,
    rgba(235,200,90,.5) 50%,
    rgba(255,246,214,.34) 58%,
    rgba(255,255,255,0));
  transform: translateX(-160%) skewX(-14deg);
  pointer-events: none; mix-blend-mode: screen;
  filter: blur(2px);
}
.intro__tag {
  font-size: clamp(9px, 2.2vw, 11px);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--t-4);
  opacity: 0;
}
.intro__rule {
  position: absolute; left: 50%; bottom: 12vh;
  transform: translateX(-50%);
  width: min(46vw, 220px); height: 1px;
  background: rgba(212,175,55,.18);
  overflow: hidden;
}
.intro__rule i {
  display: block; width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
}
.intro__skip {
  position: absolute; right: 20px; bottom: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.16); background: transparent;
  color: var(--t-4);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  opacity: 0;
  transition: color .25s ease, border-color .25s ease;
}
.intro__skip:hover { color: var(--gold); border-color: var(--hair-lit); }

/* Intro is running: hold the page still behind it. */
html.intro-running body { overflow: hidden; }

/* ── chrome: progress, grain, cursor ─────────────────────────── */

.progress {
  position: fixed; left: 0; top: 0; z-index: 80;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lit));
  transform: scaleX(0); transform-origin: left center;
  pointer-events: none;
}

.grain {
  position: fixed; inset: 0; z-index: 75;
  pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
}

/* ── shared type ─────────────────────────────────────────────── */

.display {
  font-family: var(--serif);
  font-size: clamp(34px, 8.5vw, 60px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--white);
  text-wrap: balance;
}
.display--xl {
  font-size: clamp(46px, 9.5vw, 92px);
  line-height: .98;
  letter-spacing: -.01em;
  max-width: 15ch;
  margin-top: 20px;
  text-wrap: initial;
}
.display--xl em { font-style: italic; color: var(--gold); }
.display--md { font-size: clamp(28px, 6.5vw, 42px); line-height: 1.06; }
.display--sm { font-size: clamp(26px, 6vw, 38px); line-height: 1.05; }

/* Split-word wrappers for the hero reveal. */
.word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word > i { display: inline-block; font-style: inherit; will-change: transform; }

.kicker {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker--muted { letter-spacing: .26em; color: var(--t-4); }

.eyebrow {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.rule { width: 34px; height: 1px; background: var(--gold); flex: 0 0 auto; }

.lede {
  margin-top: 24px; max-width: 54ch;
  font-size: 16px; line-height: 1.8; font-weight: 300;
  color: var(--t-2); text-wrap: pretty;
}
.body {
  margin-top: 22px;
  font-size: 15.5px; line-height: 1.8; font-weight: 300;
  color: var(--t-2); text-wrap: pretty;
}
.body + .body { margin-top: 16px; }
.body--intro { margin: 18px 0 36px; max-width: 52ch; color: rgba(255,255,255,.58); }
.body--narrow { max-width: 44ch; color: rgba(255,255,255,.58); }
.body--wide   { max-width: 64ch; font-size: 15px; margin-top: 16px; }
.body-sm { font-size: 14px; line-height: 1.7; font-weight: 300; color: var(--t-3); }

.fineprint {
  margin-top: 18px;
  font-size: 12.5px; line-height: 1.7; font-weight: 300; color: var(--t-4);
}

.link-underline {
  font-size: 13.5px; letter-spacing: .04em;
  border-bottom: 1px solid rgba(212,175,55,.5); padding-bottom: 3px;
}

/* ── layout ──────────────────────────────────────────────────── */

.wrap { max-width: var(--measure); margin-inline: auto; }

.section { padding: 96px var(--gutter) 0; }
.section--tight { padding-top: 64px; }

.band {
  margin-top: 96px;
  padding: 84px var(--gutter);
  background: var(--ink-raised);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.band--foot { padding-bottom: 0; border-bottom: 0; }

.rule-top { border-top: 1px solid var(--hair); padding-top: 36px; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  align-items: start;
}

.grid { display: grid; gap: 22px; }
.grid--cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
/* Four families, so they should land four-up rather than 3 + 1. */
#stone-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
/* Four steps, so 1 / 2 / 4 columns — auto-fit would sometimes give 3
   and leave a lone step stranded on its own row. */
.grid--steps { grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 560px)  { .grid--steps { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
@media (min-width: 1020px) { .grid--steps { grid-template-columns: repeat(4, 1fr); column-gap: 34px; } }

/* ── media & frames ──────────────────────────────────────────── */

.frame { position: relative; }
.frame::after {
  content: ""; position: absolute; inset: -1px; z-index: 2;
  border: 1px solid var(--hair-lit); pointer-events: none;
}

.media { position: relative; overflow: hidden; background: #141311; }
.media img { width: 100%; height: 100%; object-fit: cover; }
/* Parallax needs headroom so no edge shows as the image travels. */
.media [data-parallax], .media img[data-parallax] { height: 128%; top: -14%; position: relative; }

.media--about   { height: clamp(250px, 48vw, 420px); }
.media--card    { height: 260px; }
.media--modal   { height: clamp(200px, 38vw, 300px); }

/* ── hero ────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 140px 0 clamp(64px, 12vh, 120px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 122%;
  position: absolute; top: -11%; left: 0;
  object-fit: cover;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,.97) 4%, rgba(10,10,10,.72) 38%, rgba(10,10,10,.34) 72%, rgba(10,10,10,.6)),
    linear-gradient(to right, rgba(10,10,10,.8), rgba(10,10,10,.1) 62%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-inline: var(--gutter); }
.hero .lede { color: var(--t-1); max-width: 50ch; }

.hero__cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 1;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--t-4);
}
.hero__cue i {
  display: block; width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(212,175,55,0), var(--gold));
  animation: cue 2.2s var(--ease) infinite;
  transform-origin: top center;
}
@keyframes cue {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(42px); opacity: 0; }
}

/* ── yard band ───────────────────────────────────────────────── */

.yard {
  position: relative;
  margin-top: 96px;
  height: clamp(340px, 62vh, 620px);
  overflow: hidden;
  border-block: 1px solid var(--hair);
}
.yard__media { position: absolute; inset: 0; }
.yard__media img {
  width: 100%; height: 132%;
  position: absolute; top: -16%; left: 0;
  object-fit: cover;
  will-change: transform;
}
.yard__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92), rgba(10,10,10,.15) 60%, rgba(10,10,10,.5));
}
.yard__caption {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100%; max-width: var(--measure);
  padding: 0 var(--gutter) clamp(28px, 6vw, 54px);
  font-family: var(--serif);
  font-size: clamp(21px, 3.6vw, 34px); line-height: 1.25; font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,.65);
}
.yard__caption span { display: block; max-width: 24ch; }

/* ── buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 24px;
  font-size: 14.5px; font-weight: 500; letter-spacing: .02em;
  border: 1px solid transparent;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.btn--gold { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn--gold:hover { color: var(--ink); box-shadow: 0 0 36px rgba(212,175,55,.42); }

.btn--outline { border-color: var(--edge); color: var(--white); font-weight: 400; background: rgba(10,10,10,.3); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-gold { border-color: rgba(212,175,55,.4); color: var(--gold); background: transparent; }
.btn--outline-gold:hover { background: rgba(212,175,55,.12); color: var(--gold-lit); }

.btn--outline-soft { border-color: rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.7); }
.btn--outline-soft:hover { border-color: var(--edge); color: var(--white); }

.btn--ghost-gold { padding: 10px 16px; border-color: var(--gold); color: var(--gold); font-size: 13px; }
.btn--ghost-gold:hover { background: var(--gold); color: var(--ink); box-shadow: 0 0 24px rgba(212,175,55,.35); }

.btn--block { width: 100%; padding: 16px; letter-spacing: .03em; }

.ico { width: 17px; height: 17px; flex: 0 0 auto; }
.ico--lg { width: 18px; height: 18px; }

.icon-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,.35); background: transparent; color: var(--gold);
  transition: background-color .25s ease, color .25s ease;
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn:hover { background: rgba(212,175,55,.12); }
.icon-btn--onmedia {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 42px; height: 42px;
  border-color: rgba(212,175,55,.4); background: rgba(10,10,10,.72);
  backdrop-filter: blur(8px);
}
.icon-btn--onmedia:hover { background: var(--gold); color: var(--ink); }

/* ── header ──────────────────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s ease, border-color .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
/* Before it sticks, the header floats over the hero photograph — this
   keeps a dark ground under the logo so its darkest parts still read. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(10,10,10,.82), rgba(10,10,10,.34) 62%, rgba(10,10,10,0));
  transition: opacity .4s ease;
}
.site-header.is-stuck::before { opacity: 0; }
.site-header.is-stuck {
  padding: 10px var(--gutter);
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(212,175,55,.22);
}
.site-header__actions { display: flex; align-items: center; gap: 8px; }

.brand { display: block; line-height: 0; }
/* Sized so the wordmark is actually readable — the full lockup carries
   a tagline, so it needs more height than a plain monogram would. */
.brand__logo {
  height: 62px; width: auto;
  transition: height .4s ease, filter .4s ease;
  filter: drop-shadow(0 0 18px rgba(212,175,55,.16));
}
.brand:hover .brand__logo { filter: drop-shadow(0 0 22px rgba(212,175,55,.4)); }
.is-stuck .brand__logo { height: 48px; }

/* ── fullscreen menu ─────────────────────────────────────────── */

.menu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column;
  padding: var(--gutter);
  background: var(--ink);
}
.menu__top { display: flex; justify-content: flex-end; }
.menu__nav { display: flex; flex-direction: column; margin-top: 26px; }
.menu__nav a {
  font-family: var(--serif);
  font-size: clamp(28px, 7.5vw, 44px); font-weight: 400;
  color: var(--white);
  padding: 13px 0;
  border-bottom: 1px solid rgba(212,175,55,.18);
  overflow: hidden;
}
.menu__nav a span { display: block; }
.menu__nav a:hover { color: var(--gold); }
.menu__cta { margin-top: auto; padding: 17px; font-size: 15px; }

/* ── pillars ─────────────────────────────────────────────────── */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.pillar__figure {
  margin-top: 12px;
  font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.pillars .body-sm { margin-top: 10px; }

/* ── fact rows ───────────────────────────────────────────────── */

.facts { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 34px; padding-top: 24px; }
.facts dt { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--t-4); }
.facts dd {
  margin: 8px 0 0;
  font-family: var(--serif); font-size: 24px; color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ── services ledger ─────────────────────────────────────────── */

/* One column on phones, two from tablet up — never the 4-then-2 that
   auto-fit produced, which scrambled the numbering across rows. */
.ledger {
  position: relative;
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr;
  padding-top: 0;
}
@media (min-width: 760px) {
  .ledger { grid-template-columns: 1fr 1fr; column-gap: 52px; }
}
.ledger__draw {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--gold);
  transform: scaleY(0); transform-origin: top center;
}
.ledger > article {
  padding: 32px 0 34px 24px;
  border-bottom: 1px solid var(--hair);
}
.ledger > article:last-child { border-bottom: 0; }
@media (min-width: 760px) {
  /* With two columns the final row is the last pair, not the last item. */
  .ledger > article:last-child { border-bottom: 1px solid var(--hair); }
  .ledger > article:nth-last-child(-n+2) { border-bottom: 0; }
}
.ledger__num { font-size: 11px; letter-spacing: .2em; color: var(--gold); }
.ledger h3 {
  margin-top: 14px;
  font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--white);
}
.ledger .body-sm { margin-top: 10px; }

/* ── ordering numerals ───────────────────────────────────────── */

/* The heading sits directly above these — give it room. */
.grid--steps { margin-top: 52px; row-gap: 46px; }
.numeral {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--serif); font-size: 19px;
}
.grid--steps h3 {
  margin-top: 24px;
  font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--white);
}
.grid--steps .body-sm { margin-top: 12px; }

/* ── stone cards ─────────────────────────────────────────────── */

.stone {
  cursor: pointer;
  border: 1px solid rgba(212,175,55,.22);
  background: var(--ink-raised);
  transform-style: preserve-3d;
  transition: box-shadow .35s ease, border-color .35s ease;
}
.stone:hover, .stone:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,175,55,.22);
}
.stone .media img { transition: transform .8s var(--ease); }
.stone:hover .media img { transform: scale(1.06); }
.stone__body { padding: 22px; }
.stone__body h3 {
  font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--white);
}
.stone__more {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(212,175,55,.18);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.stone__more span { transition: transform .3s var(--ease); }
.stone:hover .stone__more span { transform: translateX(4px); }

/* ── rate table ───────────────────────────────────────────────────
   Five columns on desktop; the same cells reflow into a two-column
   card on narrow screens rather than scrolling sideways.          */

.rates { margin-top: 56px; }

.rates__head, .rates__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.4fr) minmax(0, .9fr) minmax(0, .9fr) auto;
  align-items: center;
  gap: 16px;
}
.rates__head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hair);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--t-4);
}
.rates__row { padding: 20px 0; border-bottom: 1px solid var(--hair-soft); }
.ta-r { text-align: right; }

.rates__name { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--white); }
.rates__spec { font-size: 13px; font-weight: 300; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.rates__rate {
  text-align: right;
  font-size: 16px; font-variant-numeric: tabular-nums; letter-spacing: .02em; color: var(--gold);
}
.rates__stock {
  text-align: right;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6);
}
.rates__cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.rates__cta:hover { background: var(--gold); color: var(--ink); box-shadow: 0 0 24px rgba(212,175,55,.3); }
.rates__cta--ghost { visibility: hidden; }

@media (max-width: 860px) {
  .rates__head { display: none; }
  .rates__row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 22px 0; }
  .rates__name  { grid-column: 1 / -1; }
  .rates__spec  { grid-column: 1; }
  .rates__rate  { grid-column: 2; grid-row: 2; }
  .rates__stock { grid-column: 1; text-align: left; margin-top: 8px; }
  .rates__cta   { grid-column: 2; margin-top: 8px; }
}

/* ── reviews ─────────────────────────────────────────────────── */

.reviews { margin-top: 40px; }
.reviews figure {
  border: 1px solid var(--hair);
  background: var(--ink);
  transition: border-color .35s ease, box-shadow .35s ease;
}
.reviews figure:hover { border-color: var(--gold); box-shadow: 0 0 34px rgba(212,175,55,.16); }
.review__body { padding: 28px 24px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: .22em; }
.review__body blockquote {
  margin-top: 16px;
  font-family: var(--serif); font-size: 20px; line-height: 1.5; font-weight: 400;
  color: var(--t-1);
}
.review__name {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px solid rgba(212,175,55,.16);
  font-size: 13.5px; font-weight: 500; color: var(--white);
}
.review__body .kicker--muted { margin-top: 5px; letter-spacing: .22em; }

/* ── quote form ──────────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: 18px; }
.form label { display: flex; flex-direction: column; gap: 8px; }
.form input, .form textarea {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--white);
  font-size: 15px; font-weight: 300; line-height: 1.6;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form textarea { resize: vertical; min-height: 96px; }
.form input:focus, .form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(212,175,55,.18);
}
.form__error { font-size: 13px; color: var(--amber); }
.form .fineprint { margin-top: 0; font-size: 12px; color: var(--t-5); }

.sent {
  padding: 30px 26px;
  border: 1px solid var(--hair-lit);
  background: var(--ink);
  animation: rise .35s ease both;
}
.sent .body-sm { margin-top: 14px; }
.sent .btn-row { margin-top: 22px; }
.sent .btn { padding: 13px 20px; font-size: 13.5px; }

/* ── plaque + footer ─────────────────────────────────────────── */

.plaque-row { margin-top: 84px; display: flex; justify-content: center; }
.plaque {
  display: block; padding: 26px 34px;
  background: #F6F3ED;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(212,175,55,.3);
  transition: box-shadow .4s ease, transform .4s var(--ease);
}
.plaque:hover { transform: translateY(-3px); box-shadow: 0 26px 70px rgba(0,0,0,.55), 0 0 0 1px var(--gold); }
.plaque img { width: min(64vw, 340px); height: auto; }

.footer {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px;
}
.footer .contact-line, .footer address {
  margin-top: 10px;
  font-size: 15px; line-height: 1.7; font-weight: 300; font-style: normal;
  color: rgba(255,255,255,.82);
  overflow-wrap: anywhere;
}
.footer .contact-line a { color: rgba(255,255,255,.82); }
.footer .contact-line a:hover { color: var(--gold); }
.map-row { margin-top: 14px; }

.hours {
  margin-top: 30px;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--t-4);
}

.colophon {
  margin-top: 40px; padding: 24px 0 36px;
  border-top: 1px solid var(--hair-soft);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: 12px; font-weight: 300; color: var(--t-5);
}
.colophon__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.colophon__nav a { font-size: 12px; color: var(--t-4); }
.colophon__nav a:hover { color: var(--gold); }

/* ── floating WhatsApp ───────────────────────────────────────── */

.fab {
  position: fixed; right: 16px; bottom: 18px; z-index: 70;
  display: flex; align-items: center; gap: 9px;
  padding: 14px 20px;
  background: var(--gold); color: var(--ink);
  font-size: 13.5px; font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 26px rgba(212,175,55,.28);
  transition: box-shadow .3s ease;
}
.fab:hover { color: var(--ink); box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 44px rgba(212,175,55,.5); }

/* ── material dialog ─────────────────────────────────────────── */

.scrim {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(4,4,4,.88);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: clamp(12px, 4vw, 48px) 0;
  animation: fade .25s ease both;
}
.modal {
  position: relative;
  /* `margin: auto` would centre it vertically and put the top out of
     reach once the dialog is taller than the viewport. */
  width: 100%; max-width: 940px; margin: 0 auto;
  background: var(--ink-raised);
  border: 1px solid rgba(212,175,55,.36);
  box-shadow: 0 0 80px rgba(212,175,55,.14);
  animation: rise .4s var(--ease) both;
}
.modal__head { padding: 30px 26px 0; }
.modal__head .display { margin-top: 12px; }
.modal__body { padding: 4px 26px 32px; }
.modal__actions { margin-top: 28px; align-items: center; }
.modal__actions .btn { padding: 15px 22px; font-size: 14px; }
.modal__body .fineprint { margin-top: 18px; font-size: 12px; }
.modal__body > .kicker--muted { display: block; margin-top: 30px; }

.modal__rates { margin-top: 14px; border-top: 1px solid var(--hair); }
.modal__rate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.modal__rate b { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--white); }
.modal__spec { grid-column: 1; font-size: 13px; font-weight: 300; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.modal__price { grid-column: 2; grid-row: 1; text-align: right; font-size: 16px; font-variant-numeric: tabular-nums; color: var(--gold); }
.modal__rate .rates__stock { grid-column: 2; grid-row: 2; }

/* ── gallery ─────────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  padding: 26px 26px 0;
}
.gallery button {
  position: relative; display: block; padding: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(212,175,55,.18);
  background: #141311;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.gallery button::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10,10,10,.28);
  transition: opacity .3s ease;
}
.gallery button:hover, .gallery button:focus-visible { border-color: var(--gold); box-shadow: 0 0 24px rgba(212,175,55,.2); }
.gallery button:hover::after { opacity: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery button:hover img { transform: scale(1.07); }

/* ── lightbox ────────────────────────────────────────────────── */

.lightbox {
  position: fixed; inset: 0; z-index: 160;
  display: grid; place-items: center;
  background: rgba(4,4,4,.96);
  padding: 64px 16px;
  animation: fade .2s ease both;
}
.lightbox img {
  max-width: min(1100px, 94vw); max-height: 78vh;
  width: auto; height: auto;
  object-fit: contain;
  border: 1px solid var(--hair-lit);
}
.lb-caption {
  position: absolute; left: 0; right: 0; bottom: 26px;
  padding: 0 16px; text-align: center;
  font-size: 12.5px; font-weight: 300; color: var(--t-3);
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(212,175,55,.35); background: rgba(10,10,10,.7); color: var(--gold);
  transition: background-color .25s ease, color .25s ease;
}
.lb-nav svg { width: 20px; height: 20px; }
.lb-nav:hover { background: var(--gold); color: var(--ink); }
.lb-nav--prev { left: 14px; }
.lb-nav--next { right: 14px; }

/* ── motion ──────────────────────────────────────────────────── */

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.js-motion [data-reveal],
.js-motion [data-card],
.js-motion [data-step],
.js-motion [data-hero],
.js-motion [data-clip] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .intro, .hero__cue { display: none !important; }
  [data-reveal], [data-card], [data-step], [data-hero], [data-clip] {
    opacity: 1 !important; transform: none !important;
  }
}

/* ── narrow screens ──────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero { min-height: 92svh; padding-top: 120px; }
  .hero__scrim { background: linear-gradient(to top, rgba(10,10,10,.97) 6%, rgba(10,10,10,.78) 42%, rgba(10,10,10,.5)); }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); padding-inline: 20px; }
}

@media (max-width: 700px) {
  .brand__logo { height: 44px; }
  .is-stuck .brand__logo { height: 38px; }
  .section { padding-top: 76px; }
  .band { margin-top: 76px; padding-block: 68px; }
  .yard { margin-top: 76px; }
  .modal__head, .modal__body { padding-inline: 20px; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-nav--prev { left: 8px; }
  .lb-nav--next { right: 8px; }
}

@media (max-width: 560px) {
  .fab { padding: 13px 17px; font-size: 0; gap: 0; }
  .fab .ico { width: 22px; height: 22px; }
  .ledger > article { padding-right: 0; }
  .modal__actions .btn { flex: 1 1 100%; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .site-header .btn--ghost-gold { font-size: 0; gap: 0; padding: 10px 12px; }
  .site-header .btn--ghost-gold .ico { width: 16px; height: 16px; }
}
