/* ==========================================================================
   Offmarket Auctions — seller-side prototype (working title)
   Shared stylesheet. Ink-navy accent, gallery-restrained palette.
   Brand name is set in site.js (BRAND) — not hard-coded in CSS.
   ========================================================================== */

/* ---- Design tokens ---------------------------------------------------- */
:root {
  /* Palette — ivory / paper backgrounds, near-black ink, ink-navy accent */
  --paper:        #F7F4EE;   /* warm off-white page background */
  --paper-2:      #FBF9F5;   /* lightest card/panel */
  --paper-3:      #EFEAE1;   /* subtle section band */
  --ink:          #1A1814;   /* near-black text */
  --ink-soft:     #4A4640;   /* secondary text */
  --ink-faint:    #857F74;   /* captions / microcopy */
  --line:         #E0D9CC;   /* hairline borders */
  --line-strong:  #CDC4B3;

  --navy:         #16233B;   /* deep ink navy — primary accent */
  --navy-600:     #1E3050;
  --navy-700:     #101B2E;
  --navy-tint:    #EEF1F6;   /* pale navy wash */

  --gold:         #9B8C6A;   /* restrained metallic detail line */

  /* Type */
  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;

  --shadow: 0 1px 2px rgba(22,35,59,.04), 0 12px 30px -18px rgba(22,35,59,.25);
}

/* ---- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---- Typography ------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--navy); line-height: 1.6; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.12; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 1.1em;
}
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 12px; transform: translateY(-3px); }

/* ---- Layout ----------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(36px, 5.4vw, 72px); }
.section--band { background: var(--paper-3); }
.section--navy { background: var(--navy); color: #EDE7DB; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #FBF9F5; }
.section--navy p { color: #C7CCD6; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.narrow { max-width: 720px; margin-inline: auto; }

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; border: 0; }
.btn--primary:hover { background: var(--navy-600); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--on-navy { background: var(--paper); color: var(--navy-700); border: 0; }
.btn--on-navy:hover { background: #fff; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow { color: var(--navy); font-weight: 600; display: inline-flex; align-items: center; gap: .4em; }
.link-arrow .arrow { transition: transform .18s ease; }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ---- Header / nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .02em; color: var(--ink); display: flex; align-items: baseline; gap: .5ch; }
.brand .brand-mark { color: var(--navy); }
.brand small { font-family: var(--sans); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: .95rem; color: var(--navy); font-weight: 500; padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .2s, border-color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--navy); border-color: var(--navy); }
.nav-cta { margin-left: 6px; }
.nav-links .nav-cta .btn--primary { color: #ffffff; padding: 15px 30px; font-size: .98rem; font-weight: 600; border-bottom: 0; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 22px; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links a.active { border-color: var(--line); }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.8em; }
.hero-cta { display: flex; flex-wrap: nowrap; gap: 14px; align-items: center; }
@media (max-width: 860px) and (min-width: 561px) { .hero-cta .btn--lg { padding-inline: 24px; } }
@media (max-width: 860px) { .hero-cta { flex-wrap: wrap; } }
@media (max-width: 560px) { .hero-cta .btn { width: 100%; justify-content: center; } }
.hero-note { margin-top: 22px; font-size: .9rem; color: var(--ink-faint); display: flex; align-items: center; gap: .5em; }
.hero-figure { position: relative; }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
}

/* ---- Artwork placeholders (inline SVG framed works) ------------------- */
.artframe { background: #fff; padding: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 2px; }
.artframe--gold { padding: 10px; background: linear-gradient(135deg, #b9a878, #8c7c58 45%, #cbbd93 60%, #7d6f4d); border: none; border-radius: 2px; }
.artframe--gold .art-inner { background: #fff; padding: 12px; }
.art-svg { width: 100%; height: auto; display: block; border-radius: 1px; }
.art-photo { margin: 0; }
.art-photo img { width: 100%; height: auto; display: block; border-radius: 2px; box-shadow: 0 2px 6px rgba(22,35,59,.08), 0 24px 60px -28px rgba(22,35,59,.45); }
.art-caption { font-size: .78rem; color: var(--ink-faint); margin-top: 10px; font-style: italic; }

/* ---- Pillars ---------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--paper-2); padding: 34px 28px; }
.pillar .num { font-family: var(--serif); font-size: 1rem; color: var(--gold); display: block; margin-bottom: 14px; }
.pillar h3 { font-size: 1.25rem; margin-bottom: .35em; }
.pillar p { font-size: .95rem; margin: 0; }
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ---- Steps ------------------------------------------------------------ */
.steps { display: grid; gap: 26px; counter-reset: step; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .steps--3 { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 20px; border-top: 2px solid var(--navy); }
.step .step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--navy); line-height: 1; display: block; margin-bottom: .3em; }
.step h3 { font-size: 1.3rem; }
.step p { font-size: .97rem; }
.step .reassure { display: inline-flex; align-items: center; gap: .45em; font-size: .84rem; color: var(--navy); background: var(--navy-tint); padding: 5px 11px; border-radius: 100px; margin-top: 4px; }

/* full numbered list variant (how it works page) */
.steplist { display: grid; gap: 0; }
.steplist .step-row { display: grid; grid-template-columns: 92px 1fr; gap: clamp(18px,3vw,40px); padding: 34px 0; border-top: 1px solid var(--line); }
.steplist .step-row:last-child { border-bottom: 1px solid var(--line); }
.steplist .big-num { font-family: var(--serif); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--navy); line-height: .9; }
.steplist h3 { margin-bottom: .35em; }
.steplist .reassure { display: inline-flex; align-items: center; gap: .45em; font-size: .85rem; color: var(--navy); background: var(--navy-tint); padding: 6px 13px; border-radius: 100px; margin-top: 6px; }
@media (max-width: 620px){ .steplist .step-row { grid-template-columns: 1fr; gap: 8px; } }

/* ---- Comparison table ------------------------------------------------- */
.cmp-scroll { overflow-x: auto; }
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--paper-2); }
.cmp th, .cmp td { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.cmp th { font-size: .8rem; letter-spacing: .04em; line-height: 1.25; background: var(--paper-3); font-weight: 700; text-align: center; }
.cmp th:not(:last-child), .cmp td:not(:last-child) { border-right: 1px solid var(--line); }
.cmp thead th:first-child { background: var(--paper-2); }
.cmp th.ours { background: var(--navy); color: #fff; }
.cmp td { text-align: center; }
.cmp td.ours { background: var(--navy-tint); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp .cmp-label { text-align: left; font-weight: 600; font-size: .95rem; background: var(--paper-2); width: 40%; min-width: 220px; color: var(--ink); }
.cmp .cmp-note { font-size: .85rem; color: var(--ink-faint); }
.cmp .tick, .cmp .cross { width: 30px; height: 30px; border-radius: 50%; display: inline-grid; place-items: center; vertical-align: middle; }
.cmp .tick { background: var(--navy); color: #fff; }
.cmp .tick svg { width: 15px; height: 15px; }
.cmp .cross { border: 1.5px solid var(--line-strong); color: var(--ink-faint); }
.cmp .cross svg { width: 13px; height: 13px; }
@media (max-width: 720px) {
  .cmp th, .cmp td { padding: 10px 6px; }
  .cmp th { font-size: .68rem; }
  .cmp .cmp-label { width: 31%; min-width: 104px; font-size: .85rem; }
  .cmp td:not(.cmp-label), .cmp th:not(:first-child) { min-width: 72px; }
  .cmp .tick, .cmp .cross { width: 26px; height: 26px; }
}

@media (max-width: 860px) {
  .center-mobile { text-align: center; }
}

/* ---- Trust bar -------------------------------------------------------- */
.trustbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { flex: none; width: 26px; height: 26px; color: var(--navy); margin-top: 2px; }
.trust-item h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin: 0 0 3px; }
.trust-item p { font-size: .88rem; margin: 0; color: var(--ink-soft); }
@media (max-width: 900px) { .trustbar { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 520px) { .trustbar { grid-template-columns: 1fr; } }

/* ---- Placeholder (results/testimonials) ------------------------------- */
.placeholder-strip {
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: 40px; text-align: center; background: var(--paper-2);
}
.placeholder-strip .tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.placeholder-strip p { margin: 8px auto 0; color: var(--ink-faint); }

/* ---- Cards / callouts ------------------------------------------------- */
.cardgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 820px){ .cardgrid { grid-template-columns: 1fr; } }
.card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.card h3 { font-size: 1.25rem; }
.card p { font-size: .95rem; margin-bottom: 0; }
.card > svg { width: 26px; height: 26px; color: var(--navy); margin-bottom: 14px; display: block; }

/* Email-us alternative card */
.email-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 36px); }
.email-card .btn { width: 100%; justify-content: center; box-sizing: border-box; font-size: clamp(.85rem, 3.6vw, 1.05rem); }

.callout { background: var(--navy-tint); border-left: 3px solid var(--navy); padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0; }
.callout p { margin: 0; color: var(--navy-700); }

/* ---- FAQ (accordion) -------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; min-height: 80px; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute; background: var(--navy); transition: transform .2s ease; }
.faq summary .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq summary .plus::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq .faq-body { padding: 0 0 24px; }
.faq .faq-body p { margin: 0; font-size: .98rem; }

/* ---- Forms (multi-step submit + contact) ------------------------------ */
.form-shell { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px,4vw,56px); align-items: start; }
.form-shell > * { min-width: 0; }
@media (max-width: 900px){ .form-shell { grid-template-columns: 1fr; } }

.stepper { position: sticky; top: 100px; }
.stepper ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.stepper li { display: flex; gap: 14px; align-items: center; padding: 12px 14px; border-radius: var(--radius); color: var(--ink-faint); font-size: .95rem; font-weight: 500; }
.stepper li .dot { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; font-size: .82rem; font-family: var(--serif); color: var(--ink-faint); background: var(--paper-2); }
.stepper li.active { color: var(--ink); background: var(--paper-2); }
.stepper li.active .dot { border-color: var(--navy); background: var(--navy); color: #fff; }
.stepper li.done .dot { border-color: var(--navy); background: var(--navy-tint); color: var(--navy); }
.stepper .reassure-box { margin-top: 22px; background: var(--navy-tint); border-radius: var(--radius); padding: 16px 18px; font-size: .85rem; color: var(--navy-700); }
.stepper .reassure-box strong { display:block; margin-bottom: 4px; }
@media (max-width: 900px){ .stepper { position: static; } .stepper ol { grid-auto-flow: column; overflow-x: auto; } .stepper .reassure-box { display:none; } }

.fstep { display: none; }
.fstep.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:none;} }
.fstep > h2 { font-size: clamp(1.5rem,2.6vw,2rem); }
.fstep .step-intro { color: var(--ink-soft); margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: .92rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-faint); font-size: .85rem; margin-left: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--sans); font-size: 1rem;
  color: var(--ink); background: var(--paper-2);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,35,59,.1);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.check input { width: auto; margin-top: 3px; }

.dropzone { border: 2px dashed var(--line-strong); border-radius: var(--radius); background: var(--paper-2); padding: 34px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.dropzone:hover { border-color: var(--navy); background: var(--navy-tint); }
.dropzone svg { width: 34px; height: 34px; color: var(--navy); margin: 0 auto 12px; }
.dropzone .big { font-weight: 600; color: var(--ink); }
.dropzone .small { font-size: .85rem; color: var(--ink-faint); margin-top: 4px; }

.tips { background: var(--paper-3); border-radius: var(--radius); padding: 24px 26px; }
.tips h4 { font-family: var(--sans); font-size: .95rem; font-weight: 700; margin: 0 0 12px; }
.tips ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 11px; }
.tips li { display: flex; gap: 11px; font-size: .9rem; color: var(--ink-soft); align-items: flex-start; }
.tips li svg { flex: none; width: 18px; height: 18px; color: var(--navy); margin-top: 3px; }

.form-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.form-nav-group { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 560px){ .form-nav .btn, .form-nav-group { width: 100%; justify-content: center; } }

.photo-scope {
  background: var(--navy-tint); color: var(--navy-700);
  font-size: .88rem; border-radius: 8px; padding: 11px 14px; margin: 0 0 20px;
}

/* Multi-artwork chips (step 1) */
.artwork-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.artwork-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-tint); color: var(--navy-700);
  font-size: .88rem; font-weight: 500;
  padding: 8px 12px; border-radius: 100px;
}
.artwork-chip .chip-count {
  font-weight: 400; font-size: .8rem; color: var(--ink-faint);
  padding-left: 8px; border-left: 1px solid var(--line);
}
.artwork-chip .chip-remove {
  border: 0; background: none; cursor: pointer; color: var(--navy);
  font-size: 1rem; line-height: 1; padding: 0 2px;
}
.microcopy { font-size: .85rem; color: var(--ink-faint); display: inline-flex; align-items: center; gap: .5em; }

.form-success { display:none; text-align:center; padding: 30px 0; }
.form-success.show { display:block; }
/* Once sent, strip the page back to the confirmation alone - the hero, the
   stepper and the email-alternative card all repeat what it already says. */
body.submitted #submitHero,
body.submitted #emailAlt,
body.submitted .stepper { display: none; }
body.submitted .form-shell { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
body.submitted .form-success { padding: clamp(40px,8vw,86px) 0; }
.form-success .tick { width: 62px; height: 62px; border-radius: 50%; background: var(--navy-tint); color: var(--navy); display:grid; place-items:center; margin: 0 auto 20px; }
.form-success .tick svg { width: 30px; height: 30px; }

/* ---- Submit wizard extras --------------------------------------------- */
.dropzone.drag { border-color: var(--navy); background: var(--navy-tint); }
.filegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-top: 18px; }
.filecard { position: relative; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.filecard img { width: 100%; height: 110px; object-fit: cover; display: block; background: var(--paper-3); }
.filemeta { display: block; padding: 8px 10px; font-size: .75rem; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fileremove {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  border: 0; border-radius: 50%; background: rgba(22,35,59,.82); color: #fff;
  font-size: 1rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
}
.fileremove:hover { background: var(--navy-600); }
.form-error { display: none; color: #9a4a4a; font-size: .92rem; margin: 12px 0 0; }
.form-error.show { display: block; }
.progresswrap { margin-top: 22px; }
.progressbar { height: 6px; border-radius: 100px; background: var(--paper-3); border: 1px solid var(--line); overflow: hidden; }
.progressbar span { display: block; height: 100%; width: 0; background: var(--navy); transition: width .25s ease; }
.progresswrap .microcopy { margin-top: 8px; }
.review { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); overflow: hidden; }
.review-row { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.review-row:last-child { border-bottom: 0; }
.review-label { font-weight: 600; color: var(--ink); }
.review-row span:last-child { color: var(--ink-soft); overflow-wrap: anywhere; }
@media (max-width: 560px){ .review-row { grid-template-columns: 1fr; gap: 2px; } }

/* ---- Contact split ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail svg { flex:none; width: 22px; height: 22px; color: var(--navy); margin-top: 3px; }
.contact-detail h4 { font-family: var(--sans); font-size: .95rem; font-weight: 700; margin: 0 0 2px; }
.contact-detail p { margin: 0; font-size: .95rem; }

/* ---- CTA band --------------------------------------------------------- */
.cta-band { text-align:center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; margin-bottom: 1.8em; }

/* ---- Footer ----------------------------------------------------------- */
.site-footer { background: var(--navy-700); color: #B9C0CC; padding-block: 60px 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.site-footer .brand { color: #F7F4EE; margin-bottom: 12px; }
.site-footer .brand .brand-mark { color: #fff; }
.site-footer p { color: #97A0AE; font-size: .9rem; max-width: 34ch; }
.site-footer h5 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #7C8797; margin: 0 0 14px; font-weight: 700; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: .92rem; color: #B9C0CC; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: #7C8797; }
.footer-bottom a { color: #7C8797; } .footer-bottom a:hover { color:#fff; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---- Misc ------------------------------------------------------------- */
.section-head { max-width: 640px; margin-bottom: clamp(20px,3.2vw,34px); }
.section-head.center { margin-inline:auto; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.mt-s{margin-top:14px}.mt-m{margin-top:26px}.mt-l{margin-top:44px}
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }
