/* Your Refined Space · quiet luxury, mobile-first (375px is the design size)
   One token block. Zero raw color values below it. */

:root {
  --bone: #E3E2DE;
  --blush: #E8DEDD;
  --ink: #202020;
  --ink-soft: #4A4741;
  --muted: #6B675F;
  --gold: #A6824C;
  --gold-deep: #8A6836;
  --champagne: #D0A070;
  --paper: #F7F5F1;
  --card: #FFFFFF;
  --line: #D8D5CE;
  --wash-gold: rgba(166, 130, 76, 0.07);
  --focus: #8A6836;

  --serif: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Mulish', 'Avenir Next', 'Segoe UI', sans-serif;
  --script: 'Pinyon Script', cursive;

  --fs-1: 11px;
  --fs-2: 12px;
  --fs-3: 14px;
  --fs-4: 16px;
  --fs-5: 19px;
  --fs-6: clamp(24px, 5.4vw, 32px);
  --fs-7: clamp(34px, 9vw, 56px);
  --fs-hero: clamp(40px, 11vw, 76px);

  --lh-tight: 1.12;
  --lh: 1.65;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;

  --r: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --tap: 48px;
  --shadow: 0 18px 50px -18px rgba(32, 32, 32, 0.22);
  --shadow-soft: 0 10px 30px -14px rgba(32, 32, 32, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-4);
  line-height: var(--lh);
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--s-5); }

/* ---------- type ---------- */
.display, h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: var(--lh-tight); color: var(--ink); }
h1 { font-size: var(--fs-7); }
h2 { font-size: var(--fs-6); }
h3 { font-size: var(--fs-5); font-weight: 600; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--fs-1); font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow .spark { flex: none; }
.script-accent {
  font-family: var(--script); font-weight: 400; color: var(--gold);
  font-size: 1.34em; line-height: 0.9; letter-spacing: 0; text-transform: none;
}
.lede { font-size: var(--fs-5); color: var(--ink-soft); max-width: 34em; }
.muted { color: var(--muted); }
.small { font-size: var(--fs-3); }

/* ---------- sparkle ---------- */
.spark { width: 14px; height: 14px; fill: var(--gold); }
.spark.lg { width: 22px; height: 22px; }

/* ---------- buttons: every target 48px minimum ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 52px; padding: 0 var(--s-6);
  border-radius: var(--r-pill); border: 1px solid transparent;
  font-family: var(--sans); font-size: var(--fs-3); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: transform 180ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--gold-deep); color: var(--card); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--card); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 245, 241, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head .bar { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: var(--s-4); }
.brand { display: inline-flex; align-items: baseline; gap: 6px; min-height: var(--tap); align-items: center; }
.brand .b-serif { font-family: var(--serif); font-weight: 500; font-size: 17px; letter-spacing: 0.18em; color: var(--ink); }
.brand .b-script { font-family: var(--script); font-size: 24px; color: var(--gold); transform: translateY(2px); }
.nav-links { display: none; }
.nav-cta { display: none; }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap); height: var(--tap); border: 0; background: none; cursor: pointer;
  color: var(--ink);
}
.menu-btn svg { width: 26px; height: 26px; }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--bone);
  display: none; flex-direction: column; padding: var(--s-5);
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.mobile-menu nav { display: flex; flex-direction: column; margin-top: var(--s-6); }
.mobile-menu nav a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px; font-family: var(--serif); font-size: 26px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a .spark { opacity: 0; transition: opacity 150ms ease; }
.mobile-menu nav a:hover .spark { opacity: 1; }
.mobile-menu .mm-actions { margin-top: auto; display: grid; gap: var(--s-3); padding-bottom: var(--s-5); }

/* ---------- hero ---------- */
.hero { background: var(--bone); position: relative; overflow: hidden; }
.hero .wrap { padding-top: var(--s-8); padding-bottom: var(--s-8); position: relative; }
.hero-mark { position: absolute; right: -70px; top: -40px; width: 300px; opacity: 0.16; pointer-events: none; }
.hero h1 { font-size: var(--fs-hero); letter-spacing: 0.01em; margin: var(--s-4) 0 var(--s-5); max-width: 10em; }
.hero h1 .script-accent { display: block; font-size: 0.82em; margin-top: 6px; }
.hero .lede { margin-bottom: var(--s-6); }
.hero-actions { display: grid; gap: var(--s-3); max-width: 420px; }
.hero-foot { margin-top: var(--s-7); display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); color: var(--muted); font-size: var(--fs-2); letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- sections ---------- */
.section { padding: var(--s-8) 0; }
.section.alt { background: var(--blush); }
.section.deep { background: var(--ink); color: var(--bone); }
.section.deep h2, .section.deep h3 { color: var(--bone); }
.section.deep .muted { color: rgba(227, 226, 222, 0.72); }
.sec-head { margin-bottom: var(--s-6); max-width: 620px; }
.sec-head h2 { margin-top: var(--s-3); }
.sec-head p { margin-top: var(--s-3); color: var(--ink-soft); }

/* ---------- cards ---------- */
.svc-grid { display: grid; gap: var(--s-4); }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--champagne); }
.svc-card .spark-row { display: flex; align-items: center; gap: var(--s-2); }
.svc-card ul { list-style: none; display: grid; gap: var(--s-2); color: var(--ink-soft); font-size: var(--fs-3); }
.svc-card ul li { padding-left: 22px; position: relative; }
.svc-card ul li::before {
  content: ''; position: absolute; left: 0; top: 0.42em; width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
.svc-card .svc-link { margin-top: auto; font-weight: 600; font-size: var(--fs-3); letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; min-height: var(--tap); }

/* ---------- estimate promo band ---------- */
.promo { background: var(--ink); color: var(--bone); border-radius: var(--r-lg); padding: var(--s-6) var(--s-5); position: relative; overflow: hidden; }
.promo .script-accent { color: var(--champagne); }
.promo h2 { color: var(--bone); margin: var(--s-2) 0 var(--s-3); }
.promo p { color: rgba(227, 226, 222, 0.78); margin-bottom: var(--s-5); max-width: 30em; }
.promo .btn-gold { width: 100%; max-width: 360px; }
.promo-mark { position: absolute; right: -60px; bottom: -70px; width: 240px; opacity: 0.12; }

/* ---------- steps ---------- */
.steps { display: grid; gap: var(--s-4); counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-5); position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: var(--fs-6); color: var(--champagne); display: block; margin-bottom: var(--s-2);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { color: var(--ink-soft); font-size: var(--fs-3); }

/* ---------- standard (promise) ---------- */
.standard { display: grid; gap: var(--s-4); }
.standard-item { border-top: 1px solid var(--line); padding-top: var(--s-4); display: grid; gap: var(--s-2); }
.standard-item h3 { display: flex; align-items: center; gap: var(--s-2); }
.standard-item p { color: var(--ink-soft); font-size: var(--fs-3); max-width: 38em; }

/* ---------- area ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.chip {
  display: inline-flex; align-items: center; min-height: 40px; padding: 0 var(--s-4);
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--card);
  font-size: var(--fs-3); color: var(--ink-soft);
}

/* ---------- footer ---------- */
.site-foot { background: var(--bone); border-top: 1px solid var(--line); padding: var(--s-7) 0 calc(var(--s-7) + 8px); margin-top: var(--s-8); }
.site-foot .cols { display: grid; gap: var(--s-5); }
.site-foot .brand { margin-bottom: var(--s-2); }
.site-foot nav { display: grid; gap: 0; }
.site-foot nav a { display: inline-flex; align-items: center; min-height: var(--tap); color: var(--ink-soft); font-size: var(--fs-3); }
.site-foot nav a:hover { color: var(--gold-deep); }
.site-foot .fine { margin-top: var(--s-5); color: var(--muted); font-size: var(--fs-2); }
.site-foot .fine a {
  color: var(--muted); text-decoration: underline;
  display: inline-flex; align-items: center; min-height: var(--tap);
  padding: 0 var(--s-2); margin: calc(-1 * var(--s-4)) 0;
}

/* ---------- estimator ---------- */
.est-shell { max-width: 560px; margin: 0 auto; }
.est-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-5); box-shadow: var(--shadow-soft); }
.est-progress { display: flex; gap: var(--s-2); margin-bottom: var(--s-5); }
.est-progress .dot { height: 4px; flex: 1; border-radius: var(--r-pill); background: var(--line); transition: background 240ms ease; }
.est-progress .dot.on { background: var(--gold); }
.est-step-label { font-size: var(--fs-1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: var(--s-2); }
.est-q { font-family: var(--serif); font-size: var(--fs-6); line-height: var(--lh-tight); margin-bottom: var(--s-5); }
.opt-grid { display: grid; gap: var(--s-3); }
.opt {
  display: flex; align-items: center; gap: var(--s-3); width: 100%; text-align: left;
  min-height: 60px; padding: var(--s-3) var(--s-4);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r);
  font-family: var(--sans); font-size: var(--fs-4); color: var(--ink); cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms var(--ease-out);
}
.opt:hover { border-color: var(--champagne); transform: translateY(-1px); }
.opt.on { border-color: var(--gold); background: var(--wash-gold); }
.opt .opt-title { font-weight: 600; display: block; }
.opt .opt-sub { display: block; font-size: var(--fs-3); color: var(--muted); }
.opt .tick { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; display: flex; align-items: center; justify-content: center; transition: all 150ms ease; }
.opt.on .tick { background: var(--gold); border-color: var(--gold); }
.opt.on .tick::after { content: ''; width: 9px; height: 5px; border-left: 2px solid var(--card); border-bottom: 2px solid var(--card); transform: rotate(-45deg) translateY(-1px); }

.field { display: grid; gap: var(--s-2); margin-bottom: var(--s-4); }
.field label { font-size: var(--fs-2); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: var(--s-3) var(--s-4);
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--card); border: 1.5px solid var(--line); border-radius: var(--r);
  transition: border-color 150ms ease;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field .hint { font-size: var(--fs-2); color: var(--muted); letter-spacing: 0; text-transform: none; font-weight: 400; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }

.est-nav { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.est-nav .btn { flex: 1; }
.est-back { flex: 0 0 auto; width: 52px; min-height: 52px; padding: 0; border-radius: 50%; }

.est-result { text-align: center; padding: var(--s-4) 0; }
.est-result .range { font-family: var(--serif); font-size: clamp(38px, 10vw, 58px); color: var(--ink); line-height: 1.05; margin: var(--s-3) 0 var(--s-2); }
.est-result .range .sep { color: var(--champagne); font-size: 0.6em; padding: 0 6px; }
.est-result .per { color: var(--muted); font-size: var(--fs-3); margin-bottom: var(--s-2); }
.est-result .promise { font-size: var(--fs-3); color: var(--ink-soft); max-width: 26em; margin: 0 auto var(--s-5); }
.est-cta { display: grid; gap: var(--s-3); }
.est-error { background: var(--wash-gold); border: 1px solid var(--champagne); color: var(--gold-deep); border-radius: var(--r); padding: var(--s-3) var(--s-4); font-size: var(--fs-3); margin-top: var(--s-4); display: none; }
.est-error.show { display: block; }
.seg { display: flex; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r-pill); padding: 3px; margin-bottom: var(--s-4); }
.seg button {
  flex: 1; min-height: 44px; border: 0; background: none; border-radius: var(--r-pill);
  font-family: var(--sans); font-size: var(--fs-3); font-weight: 600; color: var(--muted); cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.seg button.on { background: var(--ink); color: var(--bone); }

/* ---------- contact ---------- */
.contact-rail { display: grid; gap: var(--s-3); margin-bottom: var(--s-6); }
.rail-item {
  display: flex; align-items: center; gap: var(--s-4); min-height: 72px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: var(--s-3) var(--s-4); color: var(--ink);
  transition: border-color 150ms ease, transform 150ms var(--ease-out), box-shadow 150ms ease;
}
.rail-item:hover { border-color: var(--champagne); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.rail-item .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--wash-gold); display: flex; align-items: center; justify-content: center; flex: none; }
.rail-item .ico svg { width: 20px; height: 20px; stroke: var(--gold-deep); }
.rail-item .t { font-weight: 600; }
.rail-item .s { font-size: var(--fs-3); color: var(--muted); }

/* ---------- forms feedback ---------- */
.form-ok { display: none; text-align: center; padding: var(--s-6) var(--s-4); }
.form-ok.show { display: block; }
.form-ok .spark.lg { margin: 0 auto var(--s-3); }

/* ---------- about ---------- */
.story p { margin-bottom: var(--s-4); max-width: 38em; color: var(--ink-soft); }
.story .pull {
  font-family: var(--serif); font-size: var(--fs-5); color: var(--ink);
  border-left: 2px solid var(--gold); padding-left: var(--s-4); margin: var(--s-5) 0; max-width: 30em;
}
.about-mark { width: 180px; margin-bottom: var(--s-5); }

/* ---------- concierge ---------- */
.cg-fab {
  position: fixed; right: var(--s-4); bottom: var(--s-4); z-index: 80;
  width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ink); color: var(--bone); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  transition: transform 180ms var(--ease-out), background 180ms ease;
}
.cg-fab:hover { transform: translateY(-2px) scale(1.04); background: var(--gold-deep); }
.cg-fab svg { width: 26px; height: 26px; fill: var(--champagne); }
.cg-panel {
  position: fixed; right: 0; bottom: 0; left: 0; z-index: 90;
  background: var(--card); border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: 0 -18px 60px -20px rgba(32,32,32,0.35);
  display: none; flex-direction: column; max-height: 82dvh;
}
.cg-panel.open { display: flex; }
.cg-head { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--line); }
.cg-head .t { font-family: var(--serif); font-size: var(--fs-5); }
.cg-head .s { font-size: var(--fs-2); color: var(--muted); }
.cg-close { margin-left: auto; width: var(--tap); height: var(--tap); border: 0; background: none; cursor: pointer; color: var(--muted); display: flex; align-items: center; justify-content: center; }
.cg-close svg { width: 22px; height: 22px; }
.cg-log { flex: 1; overflow-y: auto; padding: var(--s-4) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); min-height: 180px; }
.cg-msg { max-width: 85%; padding: var(--s-3) var(--s-4); border-radius: var(--r); font-size: var(--fs-3); line-height: 1.55; }
.cg-msg.bot { background: var(--paper); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.cg-msg.me { background: var(--ink); color: var(--bone); align-self: flex-end; border-bottom-right-radius: 4px; }
.cg-msg.typing { color: var(--muted); font-style: italic; }
.cg-form { display: flex; gap: var(--s-2); padding: var(--s-3) var(--s-4) calc(var(--s-4) + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.cg-form input {
  flex: 1; min-height: 50px; padding: 0 var(--s-4); font-size: 16px; font-family: var(--sans);
  border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--paper);
}
.cg-form input:focus { border-color: var(--gold); outline: none; }
.cg-form button {
  width: 50px; height: 50px; flex: none; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--gold); color: var(--card); display: flex; align-items: center; justify-content: center;
  transition: background 150ms ease;
}
.cg-form button:hover { background: var(--gold-deep); }
.cg-form button svg { width: 20px; height: 20px; }

/* ---------- video layers ---------- */
.hero.has-media { position: relative; }
.hero.has-media .hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero.has-media .hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(227, 226, 222, 0.90) 0%, rgba(227, 226, 222, 0.82) 55%, rgba(227, 226, 222, 0.92) 100%);
}
.promo.has-media .promo-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.promo.has-media .promo-scrim {
  position: absolute; inset: 0; background: rgba(32, 32, 32, 0.84);
}
.promo.has-media > *:not(.promo-video):not(.promo-scrim) { position: relative; }

/* ---------- lifestyle photography ---------- */
.card-photo {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r); margin-bottom: var(--s-2);
}
.photo-band { border-radius: var(--r-lg); overflow: hidden; margin: var(--s-6) 0; position: relative; }
.photo-band img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; }
.photo-duo { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.photo-duo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); }

/* ---------- Sara portrait ---------- */
.meet-grid { display: grid; gap: var(--s-5); align-items: start; }
.meet-grid .portrait { width: 100%; max-width: 340px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-soft); }
.portrait-video-card { position: relative; max-width: 380px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: var(--s-6); }
.portrait-video-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.portrait-video-card .pv-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--s-5) var(--s-4) var(--s-4);
  background: linear-gradient(180deg, transparent, rgba(32, 32, 32, 0.55));
  color: var(--bone); font-size: var(--fs-3);
}
.portrait-video-card .pv-cap .script-accent { color: var(--champagne); display: block; font-size: 1.5em; }
@media (min-width: 700px) {
  .meet-grid { grid-template-columns: 340px 1fr; }
  .about-grid { display: grid; grid-template-columns: 380px 1fr; gap: var(--s-7); align-items: start; }
}

/* ---------- checklist ---------- */
.checklist { display: grid; gap: var(--s-4); }
.check-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-5); }
.check-col h3 { margin-bottom: var(--s-3); }
.check-col ul { list-style: none; display: grid; gap: var(--s-2); color: var(--ink-soft); font-size: var(--fs-3); }
.check-col ul li { padding-left: 22px; position: relative; }
.check-col ul li::before {
  content: ''; position: absolute; left: 0; top: 0.42em; width: 10px; height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: 64px; padding: var(--s-3) 0;
  font-family: var(--serif); font-size: var(--fs-5); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .fx {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: transform 200ms var(--ease-out), background 150ms ease;
  font-family: var(--sans); font-size: 16px; color: var(--gold-deep);
}
.faq details[open] summary .fx { transform: rotate(45deg); background: var(--wash-gold); }
.faq .fa { padding: 0 0 var(--s-4); color: var(--ink-soft); font-size: var(--fs-3); max-width: 40em; }

/* ---------- guarantee ---------- */
.promise-band {
  border: 1px solid var(--champagne); background: var(--wash-gold); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5); text-align: center; max-width: 720px; margin: 0 auto;
}
.promise-band .script-accent { font-size: 1.8em; }
.promise-band h2 { margin: var(--s-2) 0 var(--s-3); }
.promise-band p { color: var(--ink-soft); max-width: 30em; margin: 0 auto; }

/* ---------- reveal (only when JS is present; content is never hidden without it) ---------- */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.js .rv.in { opacity: 1; transform: none; }

/* ---------- 404 ---------- */
.nf { min-height: 70dvh; display: flex; align-items: center; text-align: center; }
.nf .wrap { display: grid; gap: var(--s-4); justify-items: center; }

/* ================= scale up ================= */
@media (min-width: 700px) {
  .hero-actions { grid-template-columns: auto auto; }
  .checklist { grid-template-columns: 1fr 1fr; }
  .photo-duo { grid-template-columns: 1fr 1fr; }
  .hero.has-media .hero-scrim {
    background: linear-gradient(90deg, rgba(227, 226, 222, 0.94) 0%, rgba(227, 226, 222, 0.85) 48%, rgba(227, 226, 222, 0.45) 100%);
  }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .standard { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-6); }
  .site-foot .cols { grid-template-columns: 1.4fr 1fr 1fr; }
  .promo { padding: var(--s-7); }
  .cg-panel { left: auto; right: var(--s-5); bottom: var(--s-5); width: 400px; border-radius: var(--r-lg); max-height: 600px; }
  .contact-rail { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .menu-btn { display: none; }
  .checklist { grid-template-columns: repeat(4, 1fr); }
  .nav-links { display: flex; gap: var(--s-2); }
  .nav-links a {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0 var(--s-3);
    color: var(--ink-soft); font-size: var(--fs-3); letter-spacing: 0.06em;
    border-radius: var(--r-pill); transition: color 150ms ease, background 150ms ease;
  }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: var(--wash-gold); }
  .nav-cta { display: inline-flex; min-height: 44px; padding: 0 var(--s-5); }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid.two { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .hero .wrap { padding-top: var(--s-9); padding-bottom: var(--s-9); }
  .hero-mark { width: 420px; right: 20px; top: 40px; opacity: 0.2; }
  .section { padding: var(--s-9) 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  .btn, .opt, .svc-card, .rail-item, .cg-fab { transition: none; }
}
