/* ============================================================
   TITLE24.PRO — stylesheet
   White · Gold · Black. Quiet, spacious, premium.

   Spacing rule: generous padding BETWEEN sections,
   tight spacing INSIDE them. Nothing is bold anywhere —
   hierarchy comes from size, colour and letter-spacing.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --gold:        #C08A2B;
  --gold-deep:   #9E6E19;
  --gold-bright: #DFB255;
  --gold-pale:   #F2E3C4;
  --gold-wash:   #FCF7EC;
  --gold-line:   rgba(192, 138, 43, .28);
  --gold-line-2: rgba(192, 138, 43, .16);
  --gold-glow:   rgba(192, 138, 43, .18);

  --ink:      #131210;
  --ink-2:    #2B2825;
  --body:     #5C574F;
  --muted:    #8B857B;
  --hairline: #EAE5DC;

  --white:    #FFFFFF;
  --paper:    #FDFCFA;
  --charcoal: #1A1917;

  --serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 3.2vw, 60px);
  --maxw: 1560px;
  --prose: 720px;

  /* type scale */
  --t-h1: clamp(38px, 4.3vw, 63px);
  --t-h2: clamp(36px, 3.16vw, 51px);
  --t-h3: 23px;

  --r-sm: 10px;
  --r:    14px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(19,18,16,.04), 0 3px 12px rgba(19,18,16,.04);
  --shadow:    0 2px 6px rgba(19,18,16,.05), 0 12px 32px rgba(19,18,16,.07);
  --shadow-lg: 0 8px 24px rgba(19,18,16,.08), 0 28px 70px rgba(19,18,16,.12);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 77px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  margin: 0; background: var(--white); color: var(--body);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; letter-spacing: -.012em; }
p, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }
b, strong { font-weight: 500; }
s { text-decoration-thickness: 1.5px; }
em { font-style: italic; }
::selection { background: var(--gold-pale); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- LAYOUT & TYPE ---------- */
/* Full-bleed up to --maxw, then centred. Without the cap, content strands
   itself across ultra-wide windows. At 1440 and below this is still edge-to-edge. */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(58px, 5.4vw, 82px) 0; }
.section--tight { padding: clamp(40px, 3.6vw, 56px) 0; }
.center { text-align: center; }

.h2 { font-size: var(--t-h2); line-height: 1.16; letter-spacing: -.02em; }
.h2 em, .hero__title em, .compare__panel--us .gold { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--ruled { display: flex; align-items: center; justify-content: center; gap: 14px; }
.eyebrow--ruled::before, .eyebrow--ruled::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .5; }

.lede { font-size: 16.5px; color: var(--body); margin-top: 12px; }
.lede.center { margin-inline: auto; max-width: var(--prose); }

/* ---------- BUTTONS / ICONS / TICKS ---------- */
.ico { width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.btn {
  --btn-py: 11px; --btn-px: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--btn-py) var(--btn-px); border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .01em; white-space: nowrap;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease),
              background-color .26s var(--ease), border-color .26s var(--ease), color .26s var(--ease);
}
.btn .ico { font-size: 16px; stroke-width: 1.8; transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }
.btn--gold {
  color: #fff;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 46%, var(--gold-deep) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.28) inset, 0 5px 14px rgba(160,112,28,.24);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.34) inset, 0 10px 24px rgba(160,112,28,.32); }
.btn--gold:active { transform: translateY(0); }
.btn--gold:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn--outline { color: var(--ink); border: 1px solid var(--gold-line); background: #fff; box-shadow: var(--shadow-sm); }
.btn--outline:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-deep); }
.btn--ghost { color: var(--ink-2); border: 1px solid var(--hairline); }
.btn--ghost:hover { border-color: var(--gold-line); color: var(--gold-deep); }
.btn--sm { --btn-py: 9px; --btn-px: 17px; font-size: 13px; }
.btn--lg { --btn-py: 13px; --btn-px: 26px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

.ticks { display: grid; gap: 9px; }
.ticks li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.ticks .ico { font-size: 16px; color: var(--gold); stroke-width: 2.2; margin-top: 2px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--hairline); box-shadow: 0 4px 18px rgba(19,18,16,.04); }
.header__inner { height: var(--header-h); display: flex; align-items: center; gap: 26px; }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { display: block; width: 35px; height: 35px; transition: transform .35s var(--ease); }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand:hover .brand__mark { transform: scale(1.08); }
.brand__word { font-family: var(--serif); font-weight: 500; font-size: 25px; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand__gold { color: var(--gold); }
.brand--footer .brand__mark { background: #fff; border-radius: 8px; padding: 3px; width: 34px; height: 34px; }
.brand--footer .brand__word { color: #fff; font-size: 22px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; font-size: 15.5px; font-weight: 500; color: var(--ink-2); transition: color .25s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1.5px; background: var(--gold); border-radius: 2px; transition: right .32s var(--ease); }
.nav a:hover { color: var(--gold-deep); }
.nav a:hover::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 11px; }
/* header CTA runs 10% larger than the base --sm button */
.header__actions .btn--sm { --btn-py: 10px; --btn-px: 22px; font-size: 14.3px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 12px; padding: 0 11px; }
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { padding: 8px 0 clamp(16px, 1.5vw, 22px); position: relative; }

/* small gold line above the headline */
.hero__eyebrow {
  font-size: 11.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.hero::before {
  content: ""; position: absolute; inset: -120px 0 auto -10%; height: 460px; pointer-events: none; z-index: -1;
  background: radial-gradient(56% 60% at 24% 34%, rgba(192,138,43,.07), transparent 70%);
}
/* California mark, watermarked in the gap between the copy and the cards */
.hero__mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(190px, 20vw, 330px);
  opacity: .11; z-index: 0; pointer-events: none;
}
.hero__mark img { width: 100%; height: auto; }

.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, clamp(360px, 38vw, 700px));
  gap: 44px; align-items: center;
}
.hero__title { margin: 0; font-size: var(--t-h1); line-height: 1.05; letter-spacing: -.035em; }
.hero__kicker { margin-top: 11px; font-size: clamp(11px, 1vw, 12.5px); font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-2); }
.hero__line { margin-top: 16px; }
.hero__lead { display: block; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(19px, 1.8vw, 25px); line-height: 1.15; color: var(--gold); margin-bottom: 5px; }
.hero__cats { display: block; font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.hero__cats i { color: var(--gold); font-style: normal; padding: 0 4px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* --- hero preview cards (CF1R + reviews) --- */
.hero__previews { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.preview { display: flex; flex-direction: column; }
.preview__label { text-align: center; font-size: 12px; color: var(--ink); margin-bottom: 8px; }
.preview__card {
  position: relative; display: flex; flex-direction: column;
  height: clamp(234px, 19.8vw, 306px); padding: 12px;
  border: 1px solid var(--gold-line); border-radius: var(--r);
  background: var(--white); box-shadow: var(--shadow-sm);
  overflow: hidden; text-align: center;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.preview__card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 0 var(--gold-glow); transition: box-shadow .32s var(--ease);
}
.preview__card:hover { transform: translateY(-4px); border-color: rgba(192,138,43,.5); box-shadow: var(--shadow); }
.preview__card:hover::after { box-shadow: 0 0 0 4px var(--gold-glow); }

.cf1r-stage, .review-stage { position: relative; flex: 1; overflow: hidden; border-radius: var(--r-sm); }
.cf1r-stage { background: linear-gradient(180deg, #FCFAF6, #F6F1E7); }
/* Simultaneous crossfade — no delay on the incoming slide, otherwise there is a
   brief frame where both are transparent and the card flashes empty. */
.slide {
  position: absolute; inset: 0; opacity: 0; transform: translateY(6px) scale(.996);
  transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none;
}
.slide.is-active { opacity: 1; transform: none; }
/* contained on the cream stage, so the whole report page reads as a document */
.cf1r-stage .slide { display: grid; place-items: center; padding: 4px; }
.cf1r-stage img { width: 100%; height: 100%; object-fit: contain; }
.review-stage .slide { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 10px; gap: 9px; }
.review-stage .rs { color: var(--gold); font-size: 11px; letter-spacing: 2px; }
.review-stage .rt {
  font-family: var(--serif); font-size: 14px; line-height: 1.45; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.review-stage .rn { font-size: 11.5px; color: var(--ink-2); }
.review-stage .rr { font-size: 10px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.preview__hint {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 9px; font-size: 11.5px; color: var(--gold-deep);
  opacity: .72; transition: opacity .3s var(--ease);
}
.preview__hint .ico { font-size: 13px; }
.preview__card:hover .preview__hint { opacity: 1; }

/* hidden on purpose — we don't reveal how many pages/reviews there are */
.dots { display: none; }

/* --- scrolling trust chips --- */
.marquee {
  margin-top: clamp(23px, 2.3vw, 34px); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; width: max-content; gap: 13px; }
.marquee__track.is-looping { animation: chip-scroll 46s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes chip-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 6.5px), 0, 0); } }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; flex: none; }
.chips li {
  padding: 9px 17px; border: 1px solid var(--gold-line); border-radius: 10px;
  background: var(--white); font-size: 12px; color: var(--ink-2); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), border-color .28s var(--ease);
}
.chips li:hover { transform: translateY(-2px); border-color: rgba(192,138,43,.55); }
.chips__ca { font-family: var(--serif); font-size: 17px !important; color: var(--ink) !important; padding: 5px 16px !important; }

.flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 9px;
  margin-top: clamp(16px, 1.6vw, 23px); font-size: 12.5px; color: var(--gold-deep);
}
.flow .ico { font-size: 15px; color: var(--gold); opacity: .85; }
.flow__end { color: var(--ink); }

/* ---------- PRICING ---------- */
/* Pricing → price-beat → Commercial share one even rhythm, so the three read
   as a single connected block rather than three separate sections. */
.pricing { padding-top: clamp(14px, 1.3vw, 20px); padding-bottom: clamp(38px, 3.4vw, 52px); }
.pricing .h2 { margin-bottom: clamp(26px, 2.4vw, 36px); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.price-card {
  position: relative; display: flex; flex-direction: column; text-align: center;
  padding: 30px 26px 26px;
  border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(192,138,43,.5); box-shadow: 0 8px 22px rgba(19,18,16,.06), 0 24px 52px rgba(160,112,28,.11); }
.price-card--featured { border-color: rgba(192,138,43,.5); box-shadow: 0 6px 20px rgba(160,112,28,.12); }
.price-card__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 15px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #fff; font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(160,112,28,.28); white-space: nowrap;
}
.price-card__name { font-size: 29px; letter-spacing: -.02em; }
.price-card__sub { margin-top: 6px; font-size: 12.5px; color: var(--muted); min-height: 34px; }
.price-card__market { margin-top: 14px; font-size: 13px; color: var(--muted); }
.price-card__market s { color: var(--muted); }
.price-card__from { margin-top: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.price-card__price { margin-top: 2px; font-family: var(--serif); font-size: 46px; line-height: 1; letter-spacing: -.035em; color: var(--gold); }
.price-card__save { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px; font-size: 13px; color: var(--ink-2); }
.off { padding: 4px 10px; border-radius: 7px; border: 1px solid var(--gold-line); background: var(--gold-wash); font-size: 12px; color: var(--gold-deep); }
.price-card .ticks { margin: 20px 0 22px; padding-top: 18px; border-top: 1px solid var(--hairline); text-align: left; }
.price-card .btn { margin-top: auto; }

/* sits under all three cards, bridging into the commercial section */
.beat-any {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: 700px; margin: 28px auto 0; padding: 11px 22px;
  border: 1px solid var(--gold-line); border-radius: 999px; background: var(--gold-wash);
  font-size: 13.5px; color: var(--ink-2); text-align: center;
}
.beat-any .ico { font-size: 17px; color: var(--gold); }

/* ---------- COMMERCIAL ---------- */
.commercial { position: relative; overflow: hidden; }
.commercial::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(56% 42% at 50% 0%, rgba(192,138,43,.06), transparent 66%); }
.commercial { padding-top: clamp(38px, 3.4vw, 52px); }
.commercial .h2 { margin-bottom: 18px; }
.tagline-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 820px; margin: 0 auto 24px; }
/* black + balanced line lengths so the paragraph reads evenly */
.commercial .lede.narrow {
  color: var(--ink); margin-top: 0; margin-bottom: 30px;
  text-wrap: balance;
}
.tagline-chips li { padding: 7px 15px; border-radius: 999px; border: 1px solid var(--gold-line-2); background: var(--white); font-size: 13px; color: var(--ink-2); transition: transform .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease); }
.tagline-chips li:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-deep); }
.tagline-chips .is-more { background: var(--gold-wash); color: var(--gold-deep); }

.comm-split {
  display: grid; grid-template-columns: 1.05fr .95fr;
  border: 1px solid var(--gold-line); border-radius: var(--r-xl); background: var(--white);
  box-shadow: 0 5px 18px rgba(19,18,16,.04), 0 24px 56px rgba(160,112,28,.09);
  overflow: hidden;
}
.comm-split__left  { padding: 30px 34px 32px; }
.comm-split__right { padding: 30px 34px 32px; border-left: 1px solid var(--gold-line-2); background: linear-gradient(180deg, var(--gold-wash), #fff 62%); display: flex; flex-direction: column; }
.comm-split__title { font-size: 21px; margin-bottom: 18px; }
.comm-scope { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 24px; }
.comm-scope li { font-size: 13.5px; }
/* highlighted promise — centred at the very bottom of the section */
.price-beat {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  max-width: 720px; margin: 26px auto 0; padding: 14px 26px;
  border: 1px solid var(--gold-line); border-radius: 999px;
  background: var(--gold-wash);
  font-size: 14px; line-height: 1.5; color: var(--ink); text-align: center;
}
.price-beat .ico { flex: none; font-size: 19px; color: var(--gold); }
.comm-split__eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.comm-split__quote { margin-top: 6px; font-family: var(--serif); font-size: 36px; line-height: 1.05; letter-spacing: -.03em; color: var(--ink); }
.comm-split__body { margin-top: 12px; font-size: 14.5px; }
.comm-split__right .btn { margin-top: 20px; }
.comm-split__note { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.comm-split__note .ico { font-size: 15px; color: var(--gold); margin-top: 1px; }

/* ---------- WHY / FEATURES ---------- */
/* shares the Work & Reviews backdrop (cream + faint grid + floating gold).
   Pointer tracking stays exclusive to .wr — this one just drifts. */
.why {
  position: relative; overflow: hidden;
  background: var(--gold-wash); border-block: 1px solid var(--hairline);
  /* Half the standard .section padding, matching .hfaq — the four cards sit in
     a tinted band, and the full clamp pushed the band past a single screen. */
  padding-block: clamp(29px, 2.7vw, 41px);
}
.why > .wrap { position: relative; z-index: 1; }
.why .lede { margin-bottom: 36px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  padding: 26px 24px 24px; border: 1px solid var(--hairline); border-radius: var(--r-xl);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.feature:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: 0 8px 22px rgba(160,112,28,.1); }
.feature__icon {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 13px; border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, #fff, var(--gold-wash)); color: var(--gold);
  transition: transform .34s var(--ease);
}
.feature__icon .ico { font-size: 21px; stroke-width: 1.5; }
.feature:hover .feature__icon { transform: scale(1.07); }
.feature h3 { font-size: 19px; line-height: 1.25; min-height: 48px; margin-bottom: 8px; }
.feature p { font-size: 13.5px; line-height: 1.6; }

/* ---------- COMPARISON ---------- */
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.compare__panel { position: relative; padding: 28px 30px; border-radius: var(--r-xl); }
.compare__panel h3 { font-size: 20px; margin-bottom: 18px; }
.compare__panel ul { display: grid; gap: 11px; }
.compare__panel li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.mk { display: grid; place-items: center; flex: none; width: 23px; height: 23px; border-radius: 999px; }
.mk .ico { font-size: 12px; stroke-width: 2.4; }
.mk--x { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #8B857B; }
.mk--check { color: #fff; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); }
.compare__panel--them { background: radial-gradient(120% 90% at 12% 0%, rgba(255,255,255,.05), transparent 62%), var(--charcoal); border: 1px solid rgba(255,255,255,.07); }
.compare__panel--them h3 { color: #E4DFD7; }
.compare__panel--them li { color: #918B81; }
.compare__panel--us { background: var(--white); border: 1px solid var(--gold-line); box-shadow: 0 5px 18px rgba(160,112,28,.1); }
.compare__panel--us li { color: var(--ink-2); }
.compare__flag {
  position: absolute; top: -11px; right: 26px; padding: 5px 14px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); color: #fff;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
}

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--paper); border-block: 1px solid var(--hairline); }
.how .h2 { margin-bottom: 38px; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: stretch; }
.step {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--hairline); border-radius: var(--r-xl);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.step:hover { transform: translateY(-5px); border-color: var(--gold-line); box-shadow: 0 8px 22px rgba(160,112,28,.1); }
.step__shot { margin: 0; overflow: hidden; background: var(--paper); }
/* sources are 1000x~560 (≈16:9). Contain, never cover — cover crops the
   01/02/03 badge off the top of every image. */
/* Sources are 1000x~560 (1.75:1) in a 16:9 box, so `cover` crops only ~1.5%.
   Anchoring to the top keeps the 01/02/03 badge and lets the image meet the
   card edges — `contain` left white bars that broke the rounded corners. */
.step__shot {
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}
.step__shot img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover; object-position: top center;
  transition: transform .6s var(--ease);
}
.step:hover .step__shot img { transform: scale(1.035); }
.step__body { padding: 20px 22px 22px; }
.step h3 { font-size: 19px; margin-bottom: 7px; }
.step p { font-size: 13.5px; line-height: 1.55; }
.step__list { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hairline); gap: 7px; }
.step__list li { font-size: 13px; }
.step__list .ico { font-size: 14px; }
.step-arrow { display: grid; place-items: center; color: var(--gold); opacity: .5; }
.step-arrow .ico { font-size: 22px; stroke-width: 1.5; }

/* ============================================================
   WORK & REVIEWS
   Two cards, exactly equal width and height. Each is a flex
   column — label / description / body (flex:1) / footer — so the
   footers always align no matter how long the review runs.
   ============================================================ */
.wr { position: relative; overflow: hidden; background: var(--gold-wash); border-block: 1px solid var(--hairline); padding-block: clamp(44px, 4vw, 62px); }

/* faint grid + soft floating gold particles */
.wr__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wr__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(192,138,43,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(192,138,43,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 45%, #000 35%, transparent 100%);
          mask-image: radial-gradient(72% 62% at 50% 45%, #000 35%, transparent 100%);
}
/* the whole light layer parallaxes very slightly with the cursor */
.wr__bg { transition: transform .55s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.wr:hover .wr__bg, .why:hover .wr__bg { transform: translate3d(calc(var(--mx, 0) * 16px), calc(var(--my, 0) * 16px), 0); }

.wr__bg i {
  position: absolute; border-radius: 999px;
  background: radial-gradient(circle, rgba(192,138,43,.20), rgba(192,138,43,0) 68%);
  animation: drift 22s ease-in-out infinite;
}

/* soft glow that follows the pointer inside this section only */
.wr__cursor {
  position: absolute; top: 0; left: 0; width: 340px; height: 340px; margin: -170px 0 0 -170px;
  border-radius: 999px; opacity: 0;
  background: radial-gradient(circle, rgba(192,138,43,.16), rgba(192,138,43,0) 70%);
  transform: translate3d(var(--cx, 50%), var(--cy, 50%), 0);
  transition: opacity .5s var(--ease);
  will-change: transform;
}
.wr:hover .wr__cursor, .why:hover .wr__cursor { opacity: 1; }
.wr__bg i:nth-child(1) { width: 190px; height: 190px; top: 8%;  left: 4%;   animation-delay: 0s; }
.wr__bg i:nth-child(2) { width: 130px; height: 130px; top: 62%; left: 12%;  animation-delay: -6s; }
.wr__bg i:nth-child(3) { width: 210px; height: 210px; top: 12%; right: 6%;  animation-delay: -11s; }
.wr__bg i:nth-child(4) { width: 120px; height: 120px; top: 70%; right: 14%; animation-delay: -16s; }
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -26px, 0) scale(1.08); }
}
.wr > .wrap { position: relative; z-index: 1; }

.wr .lede { max-width: 780px; }
.wr__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px; align-items: stretch;        /* equal height */
  margin-top: 26px;                        /* description → cards */
}
.wr__card {
  display: flex; flex-direction: column;
  padding: 22px 22px 20px;
  border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(19,18,16,.04), 0 18px 44px rgba(160,112,28,.09);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.wr__card:hover { transform: translateY(-4px); border-color: rgba(192,138,43,.5); box-shadow: 0 8px 24px rgba(19,18,16,.05), 0 26px 60px rgba(160,112,28,.14); }

.wr__label { display: flex; align-items: center; gap: 8px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.wr__label .ico { font-size: 15px; }
.wr__desc { margin-top: 18px; font-size: 13.5px; line-height: 1.55; color: var(--body); min-height: 36px; }

.wr__body { flex: 1; display: flex; flex-direction: column; justify-content: center; margin-top: 16px; }
/* min-height equalises the two footers (one holds a caption, the other a
   carousel bar) so the divider lines sit on the same baseline in both cards */
.wr__foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--hairline);
  display: grid; justify-items: center; align-content: center; gap: 10px;
  min-height: 104px;   /* fits the taller of the two (carousel bar + button) */
}
.wr__cap { font-size: 12px; color: var(--muted); text-align: center; }

/* --- stacked report deck --- */
.deck { position: relative; display: block; width: 100%; max-width: 372px; margin-inline: auto; padding: 0; perspective: 1100px; }
.deck__pages { position: relative; display: block; width: 100%; aspect-ratio: 7 / 5; transform-style: preserve-3d; }
.deck__page {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border: 1px solid var(--gold-line-2); border-radius: 12px; background: #fff;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), opacity .5s var(--ease);
  transform-origin: 50% 100%;
}
/* Depth is driven by data-d (1 = backmost, 5 = front) rather than DOM order,
   so the deck can shuffle by rotating the attribute — the transitions then
   animate the restack. translateZ handles the paint order. */
.deck__page[data-d="1"] { transform: translate3d(-26px, -28px, -60px) rotate(-4deg)   scale(.94);  opacity: .45; box-shadow: var(--shadow-sm); }
.deck__page[data-d="2"] { transform: translate3d(-13px, -20px, -45px) rotate(-2deg)   scale(.955); opacity: .62; box-shadow: var(--shadow-sm); }
.deck__page[data-d="3"] { transform: translate3d(0,     -13px, -30px)                 scale(.97);  opacity: .78; box-shadow: var(--shadow-sm); }
.deck__page[data-d="4"] { transform: translate3d(13px,  -7px,  -15px) rotate(2deg)    scale(.985); opacity: .9;  box-shadow: var(--shadow-sm); }
.deck__page[data-d="5"] { transform: none; opacity: 1; box-shadow: 0 8px 22px rgba(19,18,16,.09), 0 20px 44px rgba(160,112,28,.13); }

.deck:hover .deck__page, .deck:focus-visible .deck__page { opacity: 1; }
.deck:hover .deck__page[data-d="1"], .deck:focus-visible .deck__page[data-d="1"] { transform: translate3d(-52px, -40px, -60px) rotate(-7deg) scale(.94); }
.deck:hover .deck__page[data-d="2"], .deck:focus-visible .deck__page[data-d="2"] { transform: translate3d(-27px, -29px, -45px) rotate(-4deg) scale(.955); }
.deck:hover .deck__page[data-d="3"], .deck:focus-visible .deck__page[data-d="3"] { transform: translate3d(0,     -20px, -30px)               scale(.97); }
.deck:hover .deck__page[data-d="4"], .deck:focus-visible .deck__page[data-d="4"] { transform: translate3d(27px,  -13px, -15px) rotate(4deg)  scale(.985); }
.deck:hover .deck__page[data-d="5"], .deck:focus-visible .deck__page[data-d="5"] {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(19,18,16,.11), 0 30px 64px rgba(160,112,28,.2);
}

.deck__zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.85);
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 999px;
  background: rgba(255,255,255,.96); color: var(--gold-deep);
  border: 1px solid var(--gold-line); box-shadow: var(--shadow);
  opacity: 0; transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.deck__zoom .ico { font-size: 20px; }
.deck:hover .deck__zoom, .deck:focus-visible .deck__zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* --- review --- */
.fr { text-align: center; }

/* Stars and score on one line. Stacked, they read as two separate facts and
   cost a row of height in a card that already has space to spare. */
.fr__rating {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 10px; margin: 0;
}
.fr__stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; line-height: 1; }
.fr__avg {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  padding-left: 10px; border-left: 1px solid var(--hairline);
}

.fr__text {
  position: relative;
  /* A measure, not the full card width. Long centred lines are hard to track
     back from; ~34 characters keeps a pull quote readable. */
  max-width: 34ch;
  margin: 22px auto 0;
  font-family: var(--serif); font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45; letter-spacing: -.012em; color: var(--ink);
  transition: opacity .35s var(--ease);
}
/* An anchor for the eye, and it stops the quote floating in the middle of an
   otherwise empty card. Decorative, so hidden from assistive tech. */
.fr__text::before {
  content: "\201C";
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 66px; line-height: 1;
  color: var(--gold); opacity: .16; pointer-events: none;
}
.fr.is-swapping .fr__text, .fr.is-swapping .fr__who { opacity: 0; }
/* No rule above the attribution: the quote and its author are one unit, and a
   divider between them read as a section break. The rule below the whole group
   (.wr__foot) already separates it from the controls. */
.fr__who {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 22px;
  transition: opacity .35s var(--ease);
}
.fr__av { display: grid; place-items: center; flex: none; width: 42px; height: 42px; border-radius: 999px; box-shadow: 0 0 0 3px var(--gold-wash); background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-size: 13px; }
.fr__id { text-align: left; }
.fr__name { display: block; font-size: 14px; color: var(--ink); }
.fr__role { display: block; font-size: 12.5px; color: var(--muted); }

.fr__bar { display: flex; align-items: center; justify-content: center; gap: 14px; }
.fr__nav {
  display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--hairline); background: #fff; color: var(--ink-2);
  transition: border-color .26s var(--ease), color .26s var(--ease), transform .26s var(--ease);
}
.fr__nav:hover { border-color: var(--gold); color: var(--gold-deep); transform: scale(1.06); }
.fr__nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.fr__dots button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.fr__nav .ico { font-size: 16px; }
.fr__bar .fr__nav:first-child .ico { transform: rotate(180deg); }
.fr__dots { display: flex; align-items: center; gap: 7px; }
.fr__dots button { width: 7px; height: 7px; padding: 0; border: 0; cursor: pointer; border-radius: 999px; background: var(--hairline); transition: width .3s var(--ease), background-color .3s var(--ease); }
.fr__dots button[aria-selected="true"] { width: 18px; background: var(--gold); }

/* ---------- CTA ---------- */
.cta {
  text-align: center; padding: clamp(34px, 3.4vw, 46px) 30px;
  border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  background: linear-gradient(112deg, var(--gold-wash) 0%, #FFFBF3 52%, var(--gold-wash) 100%);
}
.cta h2 { font-size: clamp(25px, 2.3vw, 33px); letter-spacing: -.02em; }
.cta p { margin-top: 8px; font-size: 15.5px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.cta__ticks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 24px; }
.cta__ticks li { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--ink-2); }
.cta__ticks .ico { font-size: 14px; color: var(--gold); stroke-width: 2.4; }

/* ---------- CONTACT ---------- */
/* half the standard section padding, identical top and bottom */
.contact { background: var(--paper); border-top: 1px solid var(--hairline); padding-block: clamp(29px, 2.7vw, 41px); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact__left .h2 { line-height: 1.12; }
.contact__left .lede { font-size: 17px; color: var(--ink-2); }
.contact__body { margin-top: 10px; font-size: 14.5px; line-height: 1.62; max-width: 440px; }

.quick { display: grid; gap: 11px; margin-top: 22px; }
.quick li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-2); }
.quick .ico { font-size: 18px; color: var(--gold); }
.quick a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.quick a:hover { color: var(--ink); }

.whyus { margin-top: 28px; padding: 22px 24px 20px; border: 1px solid var(--gold-line-2); border-radius: var(--r-xl); background: var(--white); box-shadow: var(--shadow-sm); }
.whyus__title { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.whyus__list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; }
.whyus__list li { font-size: 13.5px; }

.badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.badges li { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border: 1px solid var(--gold-line-2); border-radius: 12px; background: var(--white); transition: transform .28s var(--ease), border-color .28s var(--ease); }
.badges li:hover { transform: translateY(-2px); border-color: var(--gold-line); }
.badges__mark { color: var(--gold); display: grid; place-items: center; }
.badges__mark .ico { font-size: 20px; stroke-width: 1.5; }
.badges__t { display: flex; flex-direction: column; font-size: 12.5px; color: var(--ink); line-height: 1.25; }
.badges__t small { font-size: 10.5px; color: var(--muted); }

/* ---------- FORMS ---------- */
/* ~10% tighter than the rest of the page's form styling */
.form { padding: 27px 27px 23px; border: 1px solid var(--gold-line); border-radius: var(--r-xl); background: var(--white); box-shadow: 0 5px 18px rgba(19,18,16,.04), 0 22px 50px rgba(160,112,28,.08); }
.form__title { font-size: 19px; margin-bottom: 17px; }
.form .field { margin-bottom: 13px; }
.form .field label { font-size: 11.5px; margin-bottom: 5px; }
.form .field input, .form .field select, .form .field textarea { padding: 11px 13px; font-size: 13.5px; border-radius: 10px; }
.form .field textarea { min-height: 82px; }
.form .btn--lg { --btn-py: 12px; font-size: 14px; }
.form-plain { display: block; }

.field { display: flex; flex-direction: column; margin-bottom: 15px; }
.field label { font-size: 12.5px; font-weight: 500; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 11px;
  background: var(--paper); font-size: 14px; color: var(--ink);
  transition: border-color .26s var(--ease), box-shadow .26s var(--ease), background-color .26s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: #B4AEA4; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: var(--white); border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #C9463C; }
.field__err { font-size: 11.5px; color: #C9463C; }
.field.is-invalid .field__err { margin-top: 5px; }
.field-hint, .hintline { font-size: 12px; line-height: 1.5; color: var(--muted); }
.field-hint { margin: -6px 0 12px; }
.hintline { margin-top: 6px; }
.req { color: var(--gold-deep); }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.select-wrap .ico { position: absolute; right: 14px; top: 50%; font-size: 14px; transform: translateY(-50%) rotate(90deg); color: var(--muted); pointer-events: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }

.drop {
  display: grid; place-items: center; gap: 2px; padding: 26px 18px;
  border: 1.5px dashed var(--gold-line); border-radius: 14px; background: var(--gold-wash);
  text-align: center; cursor: pointer;
  transition: border-color .26s var(--ease), background-color .26s var(--ease), transform .26s var(--ease);
}
.drop:hover, .drop.is-over { border-color: var(--gold); background: #FBF2DF; transform: translateY(-2px); }
.drop__icon { font-size: 24px; color: var(--gold); margin-bottom: 5px; }
.drop__title { font-size: 14px; color: var(--ink); }
.drop__sub { font-size: 12px; color: var(--muted); }

.filelist { display: grid; gap: 7px; margin-top: 10px; }
.filelist li { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border: 1px solid var(--hairline); border-radius: 9px; background: var(--paper); font-size: 12.5px; color: var(--ink-2); }
.filelist .fname { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filelist .fsize { color: var(--muted); font-size: 11.5px; }
.filelist .fdel { color: var(--muted); display: grid; place-items: center; }
.filelist .fdel:hover { color: #C9463C; }
.filelist .fdel .ico { font-size: 14px; }

.form__fine { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
.form__status { margin-top: 10px; font-size: 13px; text-align: center; }
.form__status.ok { color: #2E7D5B; }
.form__status.err { color: #C9463C; }

.fset { margin-bottom: 22px; }
.fset__legend { display: block; width: 100%; padding-bottom: 8px; margin-bottom: 14px; border-bottom: 1px solid var(--hairline); font-family: var(--serif); font-size: 17px; color: var(--ink); }

.opts { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--hairline); border-radius: 999px; background: var(--paper); font-size: 13px; color: var(--ink-2); cursor: pointer; transition: border-color .22s var(--ease), background-color .22s var(--ease); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt em { font-style: normal; color: var(--gold-deep); font-size: 12px; }
.opt__box { display: grid; place-items: center; flex: none; width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid #CFC8BC; background: #fff; transition: background-color .22s var(--ease), border-color .22s var(--ease); }
.opt__box .ico { font-size: 10px; color: #fff; stroke-width: 3; opacity: 0; transition: opacity .2s var(--ease); }
.opt:hover { border-color: var(--gold-line); background: var(--gold-wash); }
.opt:has(input:checked) { border-color: var(--gold); background: var(--gold-wash); color: var(--ink); }
.opt:has(input:checked) .opt__box { background: var(--gold); border-color: var(--gold); }
.opt:has(input:checked) .opt__box .ico { opacity: 1; }
.opt:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.callout { padding: 12px 15px; margin-bottom: 18px; border: 1px solid var(--gold-line); border-left-width: 3px; border-radius: 9px; background: var(--gold-wash); font-size: 12.5px; line-height: 1.55; color: var(--ink-2); }
.secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; font-size: 11.5px; color: var(--muted); text-align: center; }
.secure .ico { font-size: 14px; color: var(--gold); }
.legal-note { margin-top: 6px; font-size: 11px; line-height: 1.5; color: var(--muted); text-align: center; }
.legal-note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   ORDER FLOW — 3 steps + sticky live summary
   ============================================================ */
/* doubled class beats the generic .modal__panel width defined later in the file.
   1080 -> 880 is about 18% narrower: the checkout read as a long application
   form, and the two-column body does not need that much room. */
/* Step 1 is a single column and reads better narrow; step 2 is 65/35 and needs
   enough room that Stripe's card form is not squeezed. 980 splits the
   difference and is still well under the 1080 this started at. */
.modal__panel.modal__panel--order { max-width: 980px; max-height: min(88vh, 860px); }
.modal__sub { margin-top: 6px; font-size: 13px; color: var(--muted); }

.order__body { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 30px; align-items: start; }
.order__form { min-width: 0; }

/* headings + labels per spec: 28–32px section headings, 14px labels */
.ord-h {
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  margin: 30px 0 4px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline);
}
.wiz-step > .ord-h:first-child { margin-top: 0; }
.ord-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; }

.order__form .field { margin-bottom: 20px; }
.order__form .field label { font-size: 14px; font-weight: 500; color: var(--ink-2); margin-bottom: 8px; }
.order__form .field input,
.order__form .field select,
.order__form .field textarea { min-height: 50px; padding: 13px 15px; font-size: 14.5px; border-radius: 12px; }
.order__form .field textarea { min-height: 96px; }
.order__form .num__btn, .order__form .num__val { height: 50px; }
.order__form .hintline { margin-top: 7px; font-size: 12.5px; color: var(--muted); }

/* accepted-formats row under the dropzone */
.accepts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 14px; }
.accepts li { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.accepts .ico { font-size: 14px; color: var(--gold); stroke-width: 2.4; }

/* step 3 review */
.review { display: grid; gap: 0; margin-top: 6px; }
.review div { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.review dt { font-size: 13px; color: var(--muted); flex: none; }
.review dd { margin: 0; font-size: 14px; color: var(--ink); text-align: right; }
.review-price { margin-top: 6px; }
.review-price div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; color: var(--body); }
.review-price div span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }
.review-price .is-total { border-bottom: 0; padding-top: 15px; margin-top: 4px; border-top: 1px solid var(--gold-line); font-size: 15px; }
.review-price .is-total span:last-child { font-family: var(--serif); font-size: 28px; line-height: 1; letter-spacing: -.02em; }

.assure { display: grid; gap: 8px; margin-top: 20px; }
.assure li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--body); }
.assure .ico { font-size: 14px; color: var(--gold); stroke-width: 2.4; }
.assure--sm { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--gold-line-2); gap: 7px; }
.assure--sm li { font-size: 11.5px; }
.assure--left { text-align: left; max-width: 340px; margin-inline: auto; }

/* sticky summary */
.ordsum { position: sticky; top: 14px; }

/* --- upload progress --------------------------------------------------
   Driven by real XHR byte counts, not a timer, so the number means
   something. Percentage is across the whole set rather than per file: a bar
   that resets to zero for each file tells the customer nothing about how
   much longer they are waiting. */
.uprog { margin-top: 16px; }
.uprog__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 14px; margin-bottom: 8px;
}
.uprog__label {
  font-size: 13px; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.uprog__pct {
  font-size: 14px; color: var(--gold-deep); font-variant-numeric: tabular-nums;
  flex: none;
}
.uprog__track {
  height: 7px; border-radius: 999px; overflow: hidden;
  background: var(--gold-line-2);
}
.uprog__bar {
  display: block; height: 100%; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  transition: width .18s linear;
}
.uprog__note {
  margin: 7px 0 0; font-size: 12px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.uprog.is-done .uprog__bar { background: #1d6b32; }
.uprog.is-done .uprog__pct { color: #1d6b32; }

@media (prefers-reduced-motion: reduce) {
  .uprog__bar { transition: none; }
}

/* ==========================================================================
   STEP 2 — REVIEW & PAYMENT
   Two columns and nothing else: the order on the left with Stripe's form
   directly beneath it, a sticky summary on the right. Stripe mounts on
   arrival, so there is no loading state or extra button to look at.
   ========================================================================== */
/* No grid here: .order__body already supplies the two columns, with
   #orderSummary as the sticky right rail. Nesting a second grid inside the
   left column was what squeezed this to 581px inside a 980px modal. */
.pay2 { min-width: 0; }
.pay2__main { min-width: 0; }
.pay2__plan {
  margin: -2px 0 16px;
  font-family: var(--serif); font-size: 19px; color: var(--gold-deep);
}
.pay2__payh { margin-top: 30px; }

/* Uploaded files, named so the customer can confirm the right set went up. */
.pay2__files { margin-top: 20px; }
.pay2__filesh {
  margin: 0 0 8px; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-2);
}
.filedone { display: grid; gap: 7px; }
.filedone li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--ink);
  overflow-wrap: anywhere;
}
.filedone .ico { font-size: 15px; color: var(--gold); stroke-width: 2.6; flex: none; }

#stripeCheckout {
  min-height: 320px;
  /* Stripe renders in an iframe it sizes itself. Giving the host its own
     scroll would produce a scrollbar inside a scrollbar, so it is left to
     grow and the modal body does the scrolling. */
  overflow: visible;
}
#stripeCheckout iframe { width: 100% !important; border: 0; }

/* An unselected extra reads as an em dash rather than disappearing. */
.review-price div span:last-child i { font-style: normal; color: var(--muted); }

.ordsum__help {
  margin: 16px 0 0; padding-top: 14px;
  border-top: 1px solid var(--gold-line-2);
  font-size: 12.5px; line-height: 1.7; color: var(--muted);
}
.ordsum__help a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.ordsum__inner {
  padding: 20px 20px 18px;
  border: 1px solid var(--gold-line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--gold-wash), #fff 65%);
}
.ordsum__title { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.ordsum__plan { margin-top: 8px; font-family: var(--serif); font-size: 19px; color: var(--ink); margin-bottom: 12px; }
.ordsum__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; font-size: 13px; color: var(--body); border-bottom: 1px solid var(--gold-line-2);
}
.ordsum__row span:last-child { color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.ordsum__row--market s { color: var(--muted); }
.ordsum__row--save > span:last-child { display: flex; align-items: center; gap: 8px; }
.ordsum__row--save b { color: var(--gold-deep); font-family: var(--serif); font-size: 19px; letter-spacing: -.02em; }
.ordsum__row--total { border-bottom: 0; padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--gold-line); font-size: 15px; }
.ordsum__row--total span:last-child { font-family: var(--serif); font-size: 34px; line-height: 1; letter-spacing: -.025em; }
.wiz-total b { font-size: 26px; }

/* thank you */
.modal__panel--thanks { max-width: 560px; }
.thanks { text-align: center; padding: 34px 30px 32px; }
.thanks__mark {
  display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 18px;
  border-radius: 999px; color: #fff;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 8px 22px rgba(160,112,28,.32);
}
.thanks__mark .ico { font-size: 30px; stroke-width: 2.2; }
.thanks__h { font-size: 32px; letter-spacing: -.02em; }
.thanks__lede { margin-top: 8px; font-size: 15.5px; color: var(--body); }
.thanks__mail { margin-top: 14px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.thanks__mail b { color: var(--ink); }
.thanks__box { margin-top: 22px; padding: 18px 20px 16px; border: 1px solid var(--gold-line); border-radius: var(--r-lg); background: var(--gold-wash); text-align: left; }
.thanks__next { margin-top: 24px; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

/* ---------- ORDER WIZARD ---------- */
/* flex:none on the fixed chrome, otherwise the flex column squeezes them
   when the body is tall */
.modal__head, .modal__foot, .wiz-nav { flex: none; }
.wiz-nav { display: flex; padding-inline: 26px; border-bottom: 1px solid var(--hairline); background: var(--paper); overflow-x: auto; }
.wiz-nav li { flex: 1 0 auto; display: flex; align-items: center; gap: 8px; padding: 13px 10px; font-size: 12.5px; color: var(--muted); border-bottom: 2px solid transparent; white-space: nowrap; transition: color .25s var(--ease), border-color .25s var(--ease); }
.wiz-nav li span { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--hairline); background: #fff; font-size: 11.5px; transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease); }
.wiz-nav li.is-active { color: var(--ink); border-bottom-color: var(--gold); }
.wiz-nav li.is-active span { border-color: var(--gold); color: var(--gold-deep); }
.wiz-nav li.is-done span { background: var(--gold); border-color: var(--gold); color: #fff; }

.wiz-title { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 16px; }
.wiz-sub { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin: 20px 0 10px; }

.wiz-foot { justify-content: space-between; }
.wiz-total { font-size: 13px; color: var(--muted); }
.wiz-total b { font-family: var(--serif); font-size: 22px; color: var(--ink); letter-spacing: -.02em; margin-left: 4px; }

/* report / speed choosers */
.pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.opt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pick label, .opt-cards label {
  position: relative; display: block; padding: 16px 16px 14px; cursor: pointer;
  border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--paper);
  transition: border-color .24s var(--ease), background-color .24s var(--ease), transform .24s var(--ease);
}
.pick label:hover, .opt-cards label:hover { border-color: var(--gold-line); background: var(--gold-wash); transform: translateY(-2px); }
.pick input, .opt-cards input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick label:has(input:checked), .opt-cards label:has(input:checked) { border-color: var(--gold); background: var(--gold-wash); box-shadow: 0 0 0 3px var(--gold-glow); }
.pick label:has(input:focus-visible), .opt-cards label:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
.pick__name { display: block; font-size: 15px; color: var(--ink); }
.pick__sub { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.pick__price { display: block; margin-top: 8px; font-family: var(--serif); font-size: 22px; color: var(--gold); letter-spacing: -.02em; }

/* delivery-speed cards — icon, name, timing, price.
   Flex column + margin-top:auto keeps the price badges on one baseline even
   when a timing label wraps to two lines. */
.opt-cards .oc { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 16px 18px; }
.oc__ico {
  display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 12px;
  border-radius: 999px; border: 1px solid var(--gold-line);
  background: linear-gradient(180deg, #fff, var(--gold-wash)); color: var(--gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.oc__ico .ico { font-size: 21px; stroke-width: 1.7; }
.oc:hover .oc__ico { transform: scale(1.08); }
.oc:has(input:checked) .oc__ico {
  color: #fff; border-color: transparent;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 6px 16px rgba(160,112,28,.3);
}
.oc__name { display: block; font-size: 15px; color: var(--ink); }
.oc__lead { display: block; margin-top: 10px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.oc__time { display: block; margin-top: 3px; font-family: var(--serif); font-size: 18px; line-height: 1.25; color: var(--ink); letter-spacing: -.015em; text-wrap: balance; }
.oc__price {
  display: inline-block; margin-top: auto; padding: 5px 14px 4px; border-radius: 999px;
  border: 1px solid var(--gold-line); background: var(--gold-wash);
  font-size: 13px; color: var(--gold-deep); font-variant-numeric: tabular-nums;
}
.oc__price.is-free { color: var(--body); background: var(--paper); border-color: var(--hairline); }
/* reserve room for a two-line timing so the cards stay visually even */
.oc__lead + .oc__time { min-height: 2.5em; }

/* number stepper inside the form */
.num { display: grid; grid-template-columns: 40px 1fr 40px; gap: 7px; }
.num__btn { display: grid; place-items: center; height: 42px; border-radius: 10px; border: 1px solid var(--hairline); background: #fff; font-size: 18px; color: var(--ink); line-height: 1; transition: border-color .24s var(--ease), color .24s var(--ease), background-color .24s var(--ease); }
.num__btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-wash); }
.num__btn:disabled { opacity: .35; cursor: not-allowed; }
.num__val { display: grid; place-items: center; height: 42px; border-radius: 10px; border: 1px solid var(--hairline); background: var(--paper); font-size: 14.5px; color: var(--ink); font-variant-numeric: tabular-nums; }

/* live cost panel inside step 2 */
.livecost {
  display: grid; gap: 8px; margin: 4px 0 20px; padding: 15px 18px;
  border: 1px solid var(--gold-line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--gold-wash), #fff 75%);
}
.livecost__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 13.5px; color: var(--body); }
.livecost__row b { font-family: var(--serif); font-size: 20px; color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.livecost__row s { color: var(--muted); font-variant-numeric: tabular-nums; }
.livecost__row--save { padding-top: 8px; border-top: 1px solid var(--gold-line-2); }
.livecost__row--save b { color: var(--gold-deep); font-size: 18px; }
.livecost__row--save > span:last-child { display: flex; align-items: center; gap: 9px; }

/* order summary */
.summary { margin-top: 20px; border: 1px solid var(--gold-line); border-radius: var(--r-lg); background: linear-gradient(180deg, var(--gold-wash), #fff 70%); padding: 20px 22px; }
.summary__title { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 12px; }
.summary__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 13.5px; color: var(--body); border-bottom: 1px solid var(--gold-line-2); }
.summary__row span:last-child { color: var(--ink); font-variant-numeric: tabular-nums; }
.summary__row--save span:last-child { color: var(--gold-deep); }
.summary__row--total { border-bottom: 0; padding-top: 12px; margin-top: 3px; border-top: 1px solid var(--gold-line); font-size: 14.5px; }
.summary__row--total span:last-child { font-family: var(--serif); font-size: 27px; line-height: 1; letter-spacing: -.02em; }
.summary__eta { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 12px; color: var(--muted); }
.summary__eta .ico { font-size: 14px; }

/* ---------- CREDIBILITY ---------- */
.cred { padding: 26px 0 34px; border-top: 1px solid var(--hairline); }
.cred__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.cred__item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--body); }
.cred__item--center { justify-content: center; }
.cred__item--right { justify-content: flex-end; text-align: right; }
.cred__item b { color: var(--ink); display: block; font-size: 13.5px; }
.cred__item small { display: block; font-size: 12px; color: var(--muted); }
.cred__item > .ico { font-size: 24px; color: var(--gold); stroke-width: 1.4; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--charcoal); color: #9C968C; padding: 54px 0 0; border-top: 3px solid var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1.25fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer__desc { margin-top: 14px; font-size: 13px; line-height: 1.62; max-width: 320px; }
.footer__badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.footer__badges li { padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(192,138,43,.34); background: rgba(192,138,43,.07); font-size: 11px; color: var(--gold-bright); }
.footer__col h4 { font-family: var(--sans); font-size: 11.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 9px; }
.footer__col li { font-size: 13px; line-height: 1.5; }
.footer__col a { color: #B6B0A6; transition: color .25s var(--ease), transform .25s var(--ease); display: inline-block; }
.footer__col a:hover { color: var(--gold-bright); transform: translateX(3px); }
.footer__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-block: 18px 22px; border-top: 1px solid rgba(255,255,255,.07); }
.footer__legal { font-size: 12px; color: #7E786F; }
.footer__legal .sep { color: var(--gold); padding: 0 5px; opacity: .6; }
.footer__links { display: flex; gap: 20px; font-size: 12px; }
.footer__links a { color: #9C968C; transition: color .25s var(--ease); }
.footer__links a:hover { color: var(--gold-bright); }

/* ---------- MODALS ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(19,18,16,.58); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s var(--ease); }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; display: flex; flex-direction: column;
  width: 100%; max-width: 820px; max-height: min(90vh, 940px);
  border-radius: var(--r-xl); background: var(--white); border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg); overflow: hidden;
  opacity: 0; transform: translateY(12px) scale(.99);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.modal__panel--wide { max-width: 1000px; }
.modal__panel--form { max-width: 880px; }
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 22px 26px 16px; border-bottom: 1px solid var(--hairline); }
.modal__eyebrow { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.modal__title { font-size: clamp(21px, 2.3vw, 27px); letter-spacing: -.02em; }
.modal__close { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--hairline); color: var(--ink-2); transition: transform .26s var(--ease), background-color .26s var(--ease), border-color .26s var(--ease); }
.modal__close .ico { font-size: 17px; }
.modal__close:hover { background: var(--gold-wash); border-color: var(--gold-line); color: var(--gold-deep); transform: rotate(90deg); }
.modal__body { padding: 22px 26px 26px; overflow-y: auto; overscroll-behavior: contain; }
.modal__lede { font-size: 14px; line-height: 1.6; max-width: 660px; margin-bottom: 20px; }
.modal__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 26px 18px; border-top: 1px solid var(--hairline); background: var(--gold-wash); }
.modal__foot p { font-size: 12.5px; color: var(--body); }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery__item { display: flex; flex-direction: column; gap: 9px; padding: 0; text-align: left; }
.gallery__thumb { position: relative; overflow: hidden; aspect-ratio: 7 / 5; border: 1px solid var(--gold-line-2); border-radius: 12px; background: linear-gradient(180deg, #FCFAF6, #F4EFE4); box-shadow: var(--shadow-sm); transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.gallery__item:hover .gallery__thumb { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 26px rgba(160,112,28,.18); }
.gallery__zoom { position: absolute; inset: auto 9px 9px auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--gold-deep); border: 1px solid var(--gold-line); opacity: 0; transform: translateY(5px); transition: opacity .28s var(--ease), transform .28s var(--ease); }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }
.gallery__cap { font-size: 12.5px; color: var(--ink); line-height: 1.35; }
.gallery__cap small { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.modal--lightbox { z-index: 210; }
.lightbox__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; max-width: min(94vw, 1040px); opacity: 0; transform: scale(.98); transition: opacity .28s var(--ease), transform .28s var(--ease); }
.modal.is-open .lightbox__inner { opacity: 1; transform: none; }
.lightbox__figure { margin: 0; flex: 1; min-width: 0; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lightbox__figure img { width: 100%; max-height: 78vh; object-fit: contain; background: #FAF7F1; }
.lightbox__figure figcaption { padding: 12px 18px; font-size: 13px; color: var(--ink); border-top: 1px solid var(--hairline); text-align: center; }
.lightbox__nav { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--ink); border: 1px solid rgba(255,255,255,.3); box-shadow: var(--shadow); transition: transform .26s var(--ease); }
.lightbox__nav:hover { transform: scale(1.08); }
.lightbox__nav .ico { font-size: 19px; stroke-width: 2; }
.lightbox__nav--prev .ico { transform: rotate(180deg); }
.modal__close--float { position: absolute; top: -50px; right: 0; background: rgba(255,255,255,.94); border-color: rgba(255,255,255,.3); }

.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-card { padding: 22px 22px 20px; border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.review-card:hover { transform: translateY(-3px); border-color: var(--gold-line); }
.review-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.review-card__text { margin-top: 10px; font-family: var(--serif); font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.review-card__who { display: flex; align-items: center; gap: 11px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--hairline); }
.review-card__av { display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 999px; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); color: #fff; font-size: 13px; font-family: var(--sans); }
.review-card__name { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.3; }
.review-card__role { display: block; font-size: 12px; color: var(--muted); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- RESPONSIVE ---------- */
/* ==========================================================================
   THANK YOU PAGE  (/thank-you/) — post-payment landing, also the Google Ads
   conversion destination. Centred and calm; nothing to do but read.
   ========================================================================== */
.ty { padding: clamp(46px, 5vw, 84px) 0 clamp(56px, 6vw, 96px); background: var(--paper); }
.ty__wrap { max-width: 680px; text-align: center; }

.ty__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 66px; height: 66px; margin-bottom: 22px;
  border-radius: 999px; background: var(--gold-wash);
  border: 1px solid var(--gold-line-2);
}
.ty__check svg {
  width: 30px; height: 30px; fill: none; stroke: var(--gold-deep);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.ty__eyebrow {
  margin: 0 0 8px; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.ty__title {
  margin: 0 0 12px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.025em;
}
.ty__lede {
  margin: 0 auto 30px; max-width: 46ch;
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.65; color: var(--ink-2);
}

.ty__card {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: var(--r-xl); padding: 6px 24px; text-align: left;
  box-shadow: 0 10px 30px rgba(19,18,16,.04);
}
.ty__meta { margin: 0; }
.ty__meta > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--hairline);
}
.ty__meta > div:last-child { border-bottom: 0; }
.ty__meta dt { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.ty__meta dd { margin: 0; font-size: 15px; text-align: right; }
.ty__total dd { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 27px); }

.ty__h2 {
  margin: 42px 0 16px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(20px, 2vw, 25px); letter-spacing: -.02em;
}
.ty__steps {
  margin: 0; padding: 0; list-style: none; text-align: left;
  counter-reset: ty;
}
.ty__steps li {
  position: relative; counter-increment: ty;
  padding: 0 0 16px 42px; font-size: 14.5px; line-height: 1.65; color: var(--body);
}
.ty__steps li::before {
  content: counter(ty, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 27px; height: 27px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-wash); border: 1px solid var(--gold-line-2);
  color: var(--gold-deep); font-size: 11.5px;
}
.ty__steps b { font-weight: 500; color: var(--ink); }

.ty__note {
  margin: 10px auto 0; max-width: 52ch; padding: 15px 20px;
  background: var(--gold-wash); border: 1px solid var(--gold-line-2);
  border-radius: var(--r-lg); font-size: 14px; line-height: 1.6; color: var(--ink-2);
}
.ty__actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 32px 0 0;
}
.ty__support { margin: 22px 0 0; font-size: 13.5px; color: var(--muted); }
.ty__support a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 560px) {
  .ty__meta > div { flex-direction: column; align-items: flex-start; gap: 3px; }
  .ty__meta dd { text-align: left; }
  .ty__actions .btn { flex: 1; }
}

@media (max-width: 1120px) {
  .hero__grid { gap: 36px; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr; gap: 26px; }
}

/* The hero has to stack well before the desktop breakpoint. Two columns below
   ~1280px leaves the copy column half empty while squeezing the preview pair
   into a width the review quote cannot wrap in — four words per line. Desktop
   above 1280px is untouched. */
@media (max-width: 1280px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }

  /* width:100% is load-bearing. `margin-inline: auto` on a grid item cancels
     its stretch alignment — the auto margins absorb the free space and the
     element collapses to fit-content (133px), so max-width never binds.
     Aligned to the start edge so the pair sits under the headline rather than
     floating centred in the space the stacked layout frees up. */
  .hero__previews { width: 100%; max-width: 680px; margin-inline: 0 auto; }

  /* once the hero stacks there is no gap for the mark to sit in */
  .hero__mark { display: none; }
}

@media (max-width: 1000px) {
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 16px;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline); box-shadow: 0 16px 34px rgba(19,18,16,.07);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--hairline); font-size: 15px; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }

  /* Work & Reviews stacks; cards stay centred and equal */
  .wr__grid { grid-template-columns: 1fr; gap: 20px; max-width: 560px; margin-inline: auto; }
  .wr__desc { min-height: 0; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .step-arrow { display: none; }
  .step__shot img { aspect-ratio: 16 / 9; }
  /* min-width:0 — grid items default to min-content, so a long unbroken string
     inside these panels stops them shrinking and pushes past the viewport. */
  .comm-split { grid-template-columns: 1fr; }
  .comm-split__left, .comm-split__right { min-width: 0; }
  .comm-split__right { border-left: 0; border-top: 1px solid var(--gold-line-2); }
  .contact__grid { grid-template-columns: 1fr; gap: 38px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brandcol { grid-column: 1 / -1; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card__sub { min-height: 0; }
  .compare__grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .cred__inner { grid-template-columns: 1fr; justify-items: center; gap: 18px; }
  .cred__item--right { justify-content: center; text-align: center; }
  .feature h3 { min-height: 0; }
  .pick, .opt-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 20px; }
  /* one card per row on phones, at the full width of the column — 320px here
     was forcing the review quote to wrap every two or three words */
  .hero__previews { grid-template-columns: 1fr; max-width: 440px; }
  .fr__card { padding: 30px 24px 24px; }
  .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .comm-scope, .whyus__list { grid-template-columns: 1fr; }
  .form { padding: 26px 20px 24px; }
  .compare__panel { padding: 24px 22px; }
  .comm-split__left, .comm-split__right { padding: 26px 22px 28px; }
  .cta { padding: 30px 22px; }
  .cta__actions .btn { flex: 1; }
  .modal { padding: 12px; }
  .modal__head { padding: 18px 18px 14px; }
  .modal__body { padding: 18px 18px 22px; }
  .modal__foot { padding: 14px 18px 16px; }
  .wiz-nav { padding-inline: 14px; }
  .wiz-nav li span { margin: 0; }
  /* summary drops below the form and stops sticking */
  .order__body { grid-template-columns: 1fr; gap: 24px; }
  .ordsum { position: static; }
  .gallery { grid-template-columns: 1fr; }
  .lightbox__nav { width: 38px; height: 38px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* Two columns of feature cards stop working around here: the blurbs fall to
   ~100px wide and wrap every three words. One per row reads far better. */
@media (max-width: 560px) {
  .cards-4 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .feature { min-width: 0; }
}

@media (max-width: 520px) {
  .header__inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand__mark { width: 28px; height: 28px; }
  .brand__word { font-size: 20px; }
  .header__actions { gap: 8px; }
  .header__actions .btn { --btn-px: 14px; font-size: 12.5px; }
  .header__actions .btn .ico { display: none; }
  .nav-toggle { width: 36px; height: 36px; padding: 0 9px; }
  .hero__actions .btn { flex: 1; }
  .strip { gap: 10px 18px; }
  .strip li { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  /* the marquee falls back to a plain wrapped row */
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { width: 100%; }
  .chips { flex-wrap: wrap; }
}

@media print {
  .site-header, .modal, .nav-toggle, .drop, .btn { display: none !important; }
  body { color: #000; }
}

/* ============================================================
   ARTICLE / SUB-PAGE LAYOUT + FAQ ACCORDION
   ============================================================ */
.crumbs { padding: 22px 0 0; font-size: 12.5px; color: var(--muted); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--gold); opacity: .6; }
.crumbs a { color: var(--gold-deep); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink-2); }

.article { padding-bottom: clamp(48px, 5vw, 76px); }
.art-head { max-width: 780px; margin: clamp(22px, 2.4vw, 34px) 0 clamp(26px, 3vw, 40px); }
.art-head h1 { font-size: clamp(30px, 3.2vw, 46px); line-height: 1.14; letter-spacing: -.022em; }
.art-lede { margin-top: 14px; font-size: 17px; line-height: 1.6; color: var(--body); }

.art-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: clamp(30px, 3.6vw, 56px); align-items: start; }
.art-body { min-width: 0; max-width: 760px; }
.art-body h2 { font-size: clamp(22px, 2vw, 27px); margin: 34px 0 12px; letter-spacing: -.018em; }
.art-body h3 { font-size: 18px; margin: 24px 0 6px; }
.art-body p { margin-bottom: 14px; font-size: 15.5px; line-height: 1.72; }
.art-body ul.ticks { margin: 16px 0 20px; gap: 10px; }
.art-body ul.ticks li { font-size: 15px; line-height: 1.6; }
.art-body ul.ticks li::before { content: "✓"; color: var(--gold); flex: none; }

/* The global reset strips list-style from every ul/ol, which is right for nav
   and card lists but wrong in prose — plain lists were rendering as unindented
   lines that ran straight into the next paragraph. Restore real markers for
   article body copy only. */
.art-body ul:not(.ticks),
.art-body ol {
  margin: 14px 0 20px;
  padding-left: 24px;
  list-style: disc;
}
.art-body ol { list-style: decimal; }
.art-body ul:not(.ticks) li,
.art-body ol li {
  margin-bottom: 7px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--body);
}
.art-body li::marker { color: var(--gold); }
.art-body ul ul, .art-body ol ol { margin: 7px 0 0; }
.art-body a:not(.btn) { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.art-body a:not(.btn):hover { color: var(--ink); }
.art-body strong { color: var(--ink); }

.zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.art-faq { margin-top: 40px; }
.acc { border-top: 1px solid var(--hairline); }
.acc__item { border-bottom: 1px solid var(--hairline); }
.acc__h { margin: 0; font-family: var(--sans); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 17px 0; text-align: left;
  font-size: 15.5px; font-weight: 500; color: var(--ink);
  transition: color .25s var(--ease);
}
.acc__btn:hover { color: var(--gold-deep); }
.acc__chev { font-size: 20px; flex: none; color: var(--gold); transition: transform .3s var(--ease); }
.acc__btn[aria-expanded="true"] .acc__chev { transform: rotate(180deg); }
.acc__panel { overflow: hidden; transition: max-height .3s var(--ease); }
.acc__panel p { padding: 0 0 18px; margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); max-width: 68ch; }

.art-cta {
  margin-top: 40px; padding: 26px 28px;
  border: 1px solid var(--gold-line); border-radius: var(--r-xl);
  background: linear-gradient(112deg, var(--gold-wash), #FFFBF3 60%, var(--gold-wash));
}
.art-cta h2 { margin: 0 0 8px; font-size: 23px; }
.art-cta p { margin: 0; font-size: 15px; }
.art-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px !important; }

.art-side { position: sticky; top: 92px; display: grid; gap: 16px; }
.linkbox { padding: 20px 20px 18px; border: 1px solid var(--gold-line-2); border-radius: var(--r-lg); background: var(--paper); }
.linkbox h2 { margin: 0 0 12px; font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.linkbox ul { display: grid; gap: 10px; }
.linkbox li { font-size: 14px; line-height: 1.45; }
.linkbox a { color: var(--ink-2); transition: color .22s var(--ease); }
.linkbox a:hover { color: var(--gold-deep); }

/* homepage FAQ block */
.hfaq {
  background: var(--paper); border-block: 1px solid var(--hairline);
  /* Half the standard .section padding. The accordion reads as a compact block
     between two hairlines, so the full clamp left a conspicuous gap above the
     eyebrow and below the FAQ Center button. */
  padding-block: clamp(29px, 2.7vw, 41px);
}
.hfaq__inner { max-width: 820px; margin-inline: auto; margin-top: 30px; }
.hfaq .acc__panel p a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.hfaq__all { text-align: center; margin-top: 26px; }

@media (max-width: 1000px) {
  .art-grid { grid-template-columns: 1fr; }
  .art-side { position: static; }
}
/* ---- order form + summary trimmed ~10% so the total stays in view ---- */
.order__form .field { margin-bottom: 16px; }
.order__form .field label { font-size: 13px; margin-bottom: 6px; }
.order__form .field input,
.order__form .field select,
.order__form .field textarea { min-height: 44px; padding: 11px 13px; font-size: 14px; border-radius: 11px; }
.order__form .field textarea { min-height: 78px; }
.order__form .num__btn, .order__form .num__val { height: 44px; }
.order__form .hintline { margin-top: 6px; font-size: 12px; }
.ord-h { font-size: 20px; margin: 24px 0 4px; padding-bottom: 9px; }
.pick label, .opt-cards label { padding: 14px 13px 12px; }
.opt-cards .oc { padding: 16px 12px 14px; }
.oc__ico { width: 38px; height: 38px; margin-bottom: 10px; }
.oc__ico .ico { font-size: 18px; }
.oc__name { font-size: 14px; }
.oc__lead { margin-top: 8px; font-size: 10.5px; }
.oc__time { font-size: 16px; }
.oc__price { margin-top: 10px; padding: 4px 12px; font-size: 12px; }
.pick__name { font-size: 14px; }
.pick__price { font-size: 20px; margin-top: 6px; }
.drop { padding: 22px 16px; }

.ordsum { top: 10px; }
.ordsum__inner { padding: 17px 17px 15px; }
.ordsum__plan { font-size: 17px; margin-top: 6px; margin-bottom: 10px; }
.ordsum__row { padding: 7px 0; font-size: 12px; }
.ordsum__row--save b { font-size: 17px; }
.ordsum__row--total { padding-top: 12px; font-size: 13.5px; }
.ordsum__row--total span:last-child { font-size: 30px; }
.assure--sm { margin-top: 14px; padding-top: 13px; }
.assure--sm li { font-size: 11px; }
/* ---- currency symbol: heavier serif $, optically aligned to the numerals ---- */
.cur {
  font-family: "Playfair Display", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  font-size: .78em;
  vertical-align: .09em;
  margin-right: .02em;
  letter-spacing: 0;
}
/* small inline figures need less optical correction than the big totals */
.ordsum__row .cur, .summary__row .cur, .review-price .cur,
.price-card__market .cur, .price-card__save .cur, .oc__price .cur,
.opt em .cur, .art-body .cur { font-size: .86em; vertical-align: .05em; }
/* ---- hero promise: from $199 · 24 hours · 100% online ---- */
.hero__promise {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 0;
  margin-top: 18px;
}
/* block, not flex — flex turns the text nodes into anonymous items and
   trims the space, rendering "From$199" */
.hero__promise li {
  display: block;
  font-size: clamp(13.5px, 1.15vw, 15.5px);
  color: var(--ink); letter-spacing: -.005em; white-space: nowrap;
}
.hero__promise li + li::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 4px; height: 4px; margin: 0 14px 2px;
  border-radius: 999px; background: var(--gold);
}
.hero__promise .cur { font-size: .82em; vertical-align: .06em; }
@media (max-width: 420px) {
  .hero__promise li + li::before { margin: 0 10px; }
  .hero__promise li { font-size: 13px; }
}
/* Payment step: Stripe renders its own Pay button, so the wizard's Continue
   is hidden — but Back must stay, or the customer cannot correct an earlier
   answer without reloading and re-entering the whole form. */
.wiz-foot--pay { justify-content: flex-start; gap: 18px; }
.wiz-foot--pay .wiz-total { margin-left: auto; }

/* Conversion hook inside an article: sits under the direct answer, above the
   body. Deliberately not part of the H1 or the title tag — the query is
   informational, and a commercial headline reads as spam against it. */
.art-body .hook {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0 12px;
  margin: 0 0 26px; padding: 12px 18px;
  background: var(--gold-wash); border: 1px solid var(--gold-line-2);
  border-radius: var(--r-lg);
  font-size: 15px; color: var(--ink);
}
.art-body .hook strong { font-weight: 500; }
.hook__sep { width: 3px; height: 3px; border-radius: 999px; background: var(--gold); flex: none; }
/* --- SEO hub + leaf furniture ------------------------------------------- */
.hublist { display: grid; gap: 9px; margin: 14px 0 22px; padding-left: 24px; list-style: disc; }
.hublist li { font-size: 15.5px; line-height: 1.6; }
.hublist__note { color: var(--muted); font-size: 13px; }

/* Questions are numbered and always carry the full question as the anchor —
   "Learn more" tells neither a reader nor a crawler what is on the other side. */
.qlist { counter-reset: q; list-style: none; padding: 0; margin: 14px 0 24px; display: grid; gap: 2px; }
.qlist li { counter-increment: q; }
.qlist li a {
  display: flex; gap: 12px; align-items: baseline;
  padding: 12px 4px; border-bottom: 1px solid var(--hairline);
  font-size: 15px; line-height: 1.5; color: var(--ink); text-decoration: none;
  transition: color .2s var(--ease);
}
.qlist li a::before {
  content: counter(q, decimal-leading-zero);
  color: var(--gold); font-size: 12px; flex: none;
}
.qlist li a:hover { color: var(--gold-deep); }

/* Sticky conversion box: SEO traffic may never see the homepage, so ordering
   has to be reachable from any article. */
.linkbox--cta { background: var(--gold-wash); border-color: var(--gold-line-2); }
.linkbox--cta .linkbox__price {
  margin: 2px 0 10px; font-family: var(--serif); font-size: 26px; line-height: 1;
}
.linkbox__pts { display: grid; gap: 6px; margin: 0 0 14px; padding: 0; list-style: none; }
.linkbox__pts li { font-size: 13px; color: var(--ink-2); }
.linkbox__pts li::before { content: "✓ "; color: var(--gold); }
@media (min-width: 1001px) { .art-side { position: sticky; top: 96px; } }
.hublist__soon { color: var(--muted); }

/* A button inside article prose keeps its own colours. The generic
   .art-body a rule was repainting the label gold and underlining it, so the
   gold button read as a broken link on a gold background. */
.art-body .btn { text-decoration: none; }
.art-body .btn--gold { color: #fff; }
.art-body .btn--outline { color: var(--ink); }

/* --- sticky conversion sidebar on SEO pages --- */
.linkbox--cta { background: var(--gold-wash); border-color: var(--gold-line-2); }
.cta-side__eyebrow {
  margin: 0 0 4px; font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.linkbox--cta h2 { margin: 0 0 10px; font-size: 17px; line-height: 1.25; }
.cta-side__price {
  margin: 0 0 14px; font-family: var(--serif); font-size: 30px; line-height: 1;
  letter-spacing: -.02em; color: var(--ink);
}
.cta-side__specs { margin: 0 0 14px; display: grid; gap: 0; }
.cta-side__specs > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid var(--gold-line-2);
}
.cta-side__specs > div:last-child { border-bottom: 0; }
.cta-side__specs dt { margin: 0; font-size: 12.5px; color: var(--ink-2); }
.cta-side__specs dd { margin: 0; font-size: 13px; text-align: right; color: var(--ink); }
.linkbox__pts {
  display: grid; gap: 7px; margin: 0 0 16px; padding: 14px 0 0;
  list-style: none; border-top: 1px solid var(--gold-line-2);
}
.linkbox__pts li { font-size: 12.5px; color: var(--ink-2); line-height: 1.45; }
.linkbox__pts li::before { content: "✓ "; color: var(--gold); }
.cta-side__act { margin: 0 0 10px; }
.cta-side__act .btn { width: 100%; justify-content: center; }
.cta-side__alt { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.6; }
.cta-side__alt a { color: var(--gold-deep); }

@media (min-width: 1001px) { .art-side { position: sticky; top: 96px; } }
/* The CTA box is a card, not a link list, so it opts out of the .linkbox
   heading treatment: gold uppercase letterspacing reads as a label, and this
   is the primary action on the page. Black, sentence case, serif. */
.linkbox--cta h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: 19px; line-height: 1.2; letter-spacing: -.015em;
  text-transform: none; color: var(--ink);
}
/* Button labels keep their own colour everywhere, including the sidebar —
   the surrounding link rules were repainting them gold. */
.linkbox .btn, .art-side .btn { text-decoration: none; }
.linkbox .btn--gold, .art-side .btn--gold { color: #fff; }
.linkbox .btn--outline, .art-side .btn--outline { color: var(--ink); }
/* Official References: small, at the foot of regulatory articles only. Names
   and links, nothing quoted — they support accuracy without becoming content. */
.refs { margin: 32px 0 0; padding-top: 16px; border-top: 1px solid var(--hairline); }
.refs__label {
  margin: 0 0 8px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.refs ul { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.refs li { font-size: 12.5px; line-height: 1.5; }
.refs a { color: var(--ink-2); text-decoration: none; }
.refs a:hover { color: var(--gold-deep); text-decoration: underline; }
/* Questions listed before their pages exist: numbered like the linked
   version, but plain text — a href="#" would be a dead link on a live page. */
.qlist--plain li { counter-increment: q; }
.qlist--plain li span { display: flex; gap: 12px; align-items: baseline; padding: 12px 4px; border-bottom: 1px solid var(--hairline); font-size: 15px; line-height: 1.5; color: var(--ink); }
.qlist--plain li span::before { content: counter(q, decimal-leading-zero); color: var(--gold); font-size: 12px; flex: none; }
