/* ============================================================
   Meridian Apostille — Design System
   Type:  Newsreader (display serif) + Public Sans (UI/body)
   Color: diplomatic navy + official-seal gold on warm paper
   ============================================================ */

:root {
  /* palette */
  --paper:      #F4F1E9;
  --paper-soft: #FAF8F2;
  --card:       #FFFFFF;
  --ink:        #1B2029;
  --muted:      #5A6473;
  --faint:      #8A93A1;
  --line:       #E4DFD2;
  --line-soft:  #ECE8DD;

  --navy:       #152741;
  --navy-2:     #1E3556;
  --navy-soft:  #2C476B;

  --gold:       #B0822F;
  --gold-2:     #C79544;
  --gold-soft:  #EFE3C8;
  --gold-tint:  #F6EFDD;

  /* typography */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 4px;

  /* derived */
  --shadow-sm: 0 1px 2px rgba(21,39,65,.05), 0 1px 1px rgba(21,39,65,.04);
  --shadow-md: 0 18px 40px -24px rgba(21,39,65,.35);
  --shadow-lg: 0 40px 80px -40px rgba(21,39,65,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(72px, 10vw, 132px) 0; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--navy); margin: 0; }

.display {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.62;
  max-width: 56ch;
}
.muted { color: var(--muted); }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

em.it { font-style: italic; color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn-gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--gold-tint); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.07); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gut);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.brand-mark span {
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.brand-name { font-family: "Marcellus", var(--serif); font-size: 21px; font-weight: 400; color: var(--navy); letter-spacing: .24em; text-transform: uppercase; padding-left: .24em; line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-top: 6px; line-height: 1.2; white-space: nowrap; padding-left: 0; }

.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold); transition: width .22s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--navy); }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav-links, .nav-phone { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px) clamp(64px, 8vw, 108px);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  flex-wrap: nowrap; white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 15px 7px 11px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
  max-width: 100%;
}
.hero-kicker .dot { flex-shrink: 0; }
.hero-kicker b { color: var(--gold); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

.display .ul { position: relative; white-space: nowrap; }
.display .ul::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: var(--gold-soft); z-index: -1;
}
.hero p.lead { margin: 26px 0 34px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); margin-top: 22px; }
.hero-note .check { color: var(--gold); font-weight: 700; }

/* hero document visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.doc {
  position: relative;
  width: min(360px, 88%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  padding: 34px 32px 40px;
  transform: rotate(-2.2deg);
  z-index: 2;
}
.doc::before {
  content: "";
  position: absolute; inset: 9px;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  pointer-events: none;
}
.doc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.doc-flag { font-family: var(--serif); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.doc-no { font-size: 11px; color: var(--faint); font-family: var(--sans); letter-spacing: .06em; }
.doc-title { font-family: var(--serif); font-size: 19px; color: var(--navy); margin-bottom: 4px; }
.doc-sub { font-size: 11.5px; color: var(--faint); margin-bottom: 20px; letter-spacing: .03em; }
.bar { height: 8px; border-radius: 4px; background: var(--line-soft); margin-bottom: 11px; }
.bar.w90 { width: 90%; } .bar.w75 { width: 75%; } .bar.w60 { width: 60%; } .bar.w40 { width: 40%; }
.doc-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 26px; }
.sign { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--navy-soft); border-bottom: 1px solid var(--line); padding-bottom: 2px; }

/* gold seal */
.seal {
  position: absolute;
  right: -22px; bottom: -22px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--gold-2), var(--gold) 70%);
  box-shadow: var(--shadow-md), inset 0 2px 6px rgba(255,255,255,.35), inset 0 -4px 10px rgba(0,0,0,.18);
  display: grid; place-items: center;
  z-index: 3;
  border: 3px solid #fff;
}
.seal::before {
  content: "";
  position: absolute; inset: 9px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.5);
}
.seal span {
  font-family: var(--serif);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.stamp {
  position: absolute;
  left: -26px; top: 150px;
  transform: rotate(-11deg);
  border: 2px solid var(--navy-soft);
  color: var(--navy-soft);
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.7);
  z-index: 4;
  opacity: .9;
}
.hero-card-2 {
  position: absolute;
  width: min(300px, 76%);
  height: 380px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  transform: rotate(4deg) translate(26px, 14px);
  z-index: 1;
  box-shadow: var(--shadow-md);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; margin-top: 8px; order: 2; }
}

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-soft); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 26px 0; flex-wrap: wrap; }
.strip-label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.strip-stats { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; }
.stat .num { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); color: var(--navy); line-height: 1; }
.stat .num em { color: var(--gold); font-style: normal; }
.stat .cap { font-size: 12.5px; color: var(--muted); margin-top: 6px; letter-spacing: .02em; }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 30px 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.svc-ico {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--gold-tint); border: 1px solid var(--gold-soft);
  display: grid; place-items: center; margin-bottom: 22px;
  color: var(--gold); 
}
.svc-ico svg { width: 24px; height: 24px; }
.svc h3 { margin-bottom: 10px; }
.svc p { font-size: 15px; color: var(--muted); margin: 0 0 18px; line-height: 1.58; }
.svc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.svc li {
  font-size: 12.5px; color: var(--navy);
  background: var(--paper-soft); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 100px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--navy); color: #fff; }
.process h2 { color: #fff; }
.process .eyebrow { color: var(--gold-2); }
.process .eyebrow::before { background: var(--gold-2); }
.process .lead { color: rgba(255,255,255,.72); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; }
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; right: 0; width: 1px; height: calc(100% - 20px);
  background: rgba(255,255,255,.12);
}
.step:first-child { padding-left: 0; }
.step-no {
  font-family: var(--serif);
  font-size: 15px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold-2); color: var(--gold-2);
  display: grid; place-items: center; margin-bottom: 22px;
}
.step h3 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: rgba(255,255,255,.66); margin: 0; line-height: 1.56; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .step:nth-child(2)::after { display: none; }
}
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .step::after { display: none !important; } .step { padding: 0; } }

/* ============================================================
   DOCUMENTS
   ============================================================ */
.docs-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.doc-list { columns: 2; column-gap: 28px; }
.doc-item {
  break-inside: avoid;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 15.5px; color: var(--ink);
}
.doc-item .tick { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.doc-aside {
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  padding: 38px 34px;
}
.doc-aside h3 { margin-bottom: 14px; }
.doc-aside p { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.doc-aside .mini { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid var(--gold-soft); }
.doc-aside .mini:last-child { padding-bottom: 0; }
.mini .mno { font-family: var(--serif); color: var(--gold); font-size: 18px; }
.mini b { font-size: 14.5px; color: var(--navy); display: block; }
.mini span { font-size: 13px; color: var(--muted); }
@media (max-width: 820px) { .docs-grid { grid-template-columns: 1fr; } .doc-list { columns: 1; } }
@media (max-width: 440px) { .doc-list { columns: 1; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, var(--paper) 0 14px, var(--paper-soft) 14px 28px);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
}
.about-visual .ph {
  font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); background: rgba(255,255,255,.7); padding: 8px 14px; border-radius: 4px; border: 1px solid var(--line);
}
.about-badge {
  position: absolute; left: 22px; bottom: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 18px 22px; box-shadow: var(--shadow-md); display: flex; gap: 14px; align-items: center;
}
.about-badge .b-seal { width: 40px; height: 40px; border-radius: 50%; background: radial-gradient(circle at 38% 32%, var(--gold-2), var(--gold)); flex-shrink: 0; }
.about-badge b { display: block; font-size: 14px; color: var(--navy); }
.about-badge span { font-size: 12.5px; color: var(--muted); }
.about p { color: var(--muted); font-size: 16.5px; line-height: 1.66; margin: 0 0 18px; }
.about p strong { color: var(--ink); font-weight: 600; }
.about-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-points .ico { width: 30px; height: 30px; border-radius: 6px; background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.about-points b { color: var(--navy); }
.about-points p { font-size: 14.5px; margin: 2px 0 0; }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } .about-visual { aspect-ratio: 16/10; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
.rev-rating { text-align: right; }
.rev-stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; }
.rev-rating b { font-family: var(--serif); font-size: 22px; color: var(--navy); }
.rev-rating span { font-size: 13px; color: var(--muted); display: block; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 30px 28px; display: flex; flex-direction: column;
}
.rev .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 16px; }
.rev blockquote { margin: 0 0 22px; font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--navy); font-weight: 400; }
.rev-by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.rev-av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold-2); display: grid; place-items: center; font-family: var(--serif); font-size: 16px; flex-shrink: 0; }
.rev-by b { font-size: 14.5px; color: var(--ink); display: block; }
.rev-by span { font-size: 12.5px; color: var(--muted); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; max-width: 560px; } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 14px;
  padding: clamp(44px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.08);
}
.cta::after {
  content: ""; position: absolute; left: -60px; bottom: -120px; width: 320px; height: 320px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.cta .eyebrow { color: var(--gold-2); justify-content: center; }
.cta .eyebrow::before { background: var(--gold-2); }
.cta h2 { color: #fff; margin-bottom: 18px; position: relative; }
.cta p { color: rgba(255,255,255,.74); max-width: 52ch; margin: 0 auto 32px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); }
.contact-info h2 { margin-bottom: 18px; }
.contact-info .lead { margin-bottom: 36px; }
.ci-list { display: grid; gap: 4px; }
.ci {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.ci .ico { width: 42px; height: 42px; border-radius: 8px; background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.ci-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin-bottom: 3px; }
.ci b { font-size: 16px; color: var(--navy); font-weight: 600; }
.ci span { font-size: 14px; color: var(--muted); display: block; }

.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 6px; }
.form-card .fc-sub { font-size: 14px; color: var(--muted); margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .01em; }
input, select, textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px;
  background: var(--paper-soft); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px var(--gold-soft);
}
textarea { resize: vertical; min-height: 96px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--faint); text-align: center; margin: 14px 0 0; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 440px) { .field.row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: clamp(56px, 7vw, 80px) 0 48px; }
.footer .brand-name { color: #fff; }
.footer .brand-mark { background: rgba(255,255,255,.08); }
.footer-about { font-size: 14.5px; line-height: 1.6; margin: 20px 0 0; max-width: 34ch; color: rgba(255,255,255,.6); }
.foot-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 18px; font-weight: 600; }
.foot-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.68); padding: 6px 0; transition: color .18s ease; }
.foot-col a:hover { color: #fff; }
.foot-addr { display: block; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.5); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 460px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- process highlights ---------- */
.proc-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 60px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.phl { padding: 0 30px; }
.phl:first-child { padding-left: 0; }
.phl:last-child { padding-right: 0; }
.phl:not(:last-child) { border-right: 1px solid rgba(255,255,255,.12); }
.phl .phl-ico { width: 42px; height: 42px; border-radius: 9px; background: rgba(199,149,68,.14); border: 1px solid rgba(199,149,68,.3); color: var(--gold-2); display: grid; place-items: center; margin-bottom: 18px; }
.phl .phl-ico svg { width: 21px; height: 21px; }
.phl .phl-big { font-family: var(--serif); font-size: 30px; color: #fff; line-height: 1; margin-bottom: 6px; }
.phl .phl-big em { color: var(--gold-2); font-style: normal; }
.phl h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.phl p { font-size: 14px; color: rgba(255,255,255,.66); margin: 0; line-height: 1.55; }
.phl p b { color: rgba(255,255,255,.92); font-weight: 600; }
@media (max-width: 820px) {
  .proc-highlights { grid-template-columns: 1fr; gap: 32px; }
  .phl { padding: 0; border-right: none !important; }
  .phl:not(:last-child) { padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-hero {
  background: var(--navy); color: #fff;
  padding: clamp(40px, 6vw, 64px) 0 clamp(72px, 9vw, 110px);
  position: relative; overflow: hidden;
}
.order-hero::after {
  content: ""; position: absolute; right: -90px; top: -90px; width: 300px; height: 300px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.07);
}
.crumb { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.crumb a { color: rgba(255,255,255,.6); }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.order-hero .eyebrow { color: var(--gold-2); }
.order-hero .eyebrow::before { background: var(--gold-2); }
.order-hero h1 { color: #fff; }
.order-hero p { color: rgba(255,255,255,.74); max-width: 54ch; margin: 16px 0 0; font-size: 17px; }
.steps-mini { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.steps-mini span { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.78); }
.steps-mini i { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--gold-2); color: var(--gold-2); display: grid; place-items: center; font-style: normal; font-size: 12px; font-family: var(--serif); }

.order-wrap { margin-top: -64px; position: relative; z-index: 2; padding-bottom: clamp(72px, 10vw, 120px); }
.order-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

.ocol { display: grid; gap: 22px; }
.ostep {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md);
}
.ostep-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.ostep-no {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; font-family: var(--serif); font-size: 15px;
}
.ostep-head h2 { font-size: clamp(20px, 2.4vw, 25px); }
.ostep-sub { font-size: 14px; color: var(--muted); margin: 0 0 24px 48px; }
@media (max-width: 560px) { .ostep-sub { margin-left: 0; } }

/* option cards (radio / checkbox) */
.opts { display: grid; gap: 12px; }
.opts.two { grid-template-columns: 1fr 1fr; }
.opts.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 620px) { .opts.two, .opts.three { grid-template-columns: 1fr; } }

.opt {
  position: relative; display: flex; align-items: flex-start; gap: 13px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--paper-soft); cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.opt:hover { border-color: var(--gold-soft); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt .mark {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; flex-shrink: 0; margin-top: 1px; display: grid; place-items: center;
  transition: border-color .18s ease;
}
.opt .mark::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); transform: scale(0); transition: transform .16s ease; }
.opt.check .mark { border-radius: 5px; }
.opt-body { flex: 1; min-width: 0; }
.opt-body b { display: block; font-size: 15px; color: var(--navy); font-weight: 600; }
.opt-body span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.45; }
.opt .price { font-size: 13.5px; font-weight: 600; color: var(--gold); white-space: nowrap; margin-top: 1px; }
.opt:has(input:checked) {
  border-color: var(--gold); background: var(--gold-tint);
  box-shadow: 0 0 0 1px var(--gold);
}
.opt:has(input:checked) .mark { border-color: var(--gold); }
.opt:has(input:checked) .mark::after { transform: scale(1); }
.opt.check:has(input:checked) .mark::after { width: 11px; height: 11px; border-radius: 2px; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.qty button { width: 44px; height: 46px; border: none; background: var(--paper-soft); font-size: 20px; color: var(--navy); cursor: pointer; transition: background .15s ease; }
.qty button:hover { background: var(--gold-tint); color: var(--gold); }
.qty input { width: 58px; text-align: center; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-radius: 0; background: #fff; font-size: 16px; font-weight: 600; padding: 12px 0; }
.qty input:focus { box-shadow: none; }
.qty-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.qty-row .hint { font-size: 13.5px; color: var(--muted); }

/* multi-document line items */
.docrows { display: grid; gap: 14px; }
.docrow {
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper-soft);
  padding: 18px 18px 16px;
}
.docrow-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.docrow-head .dr-no { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.dr-remove {
  border: none; background: transparent; color: var(--faint); cursor: pointer;
  font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 8px; border-radius: 6px; transition: background .15s ease, color .15s ease;
}
.dr-remove:hover { background: #FBE9E6; color: #C0492F; }
.dr-remove svg { width: 14px; height: 14px; }
.docrow-grid { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; }
.docrow-grid .dr-type label,
.docrow-grid .dr-qty label { font-size: 12px; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.docrow-grid select { background: #fff; }
.dr-qty .qty { background: #fff; }
.dr-qty .qty input { background: #fff; }
.docrow-addons { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.dr-addon { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: 13.5px; color: var(--navy); user-select: none; }
.dr-addon input { position: absolute; opacity: 0; pointer-events: none; }
.dr-addon .box { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; transition: border-color .15s ease, background .15s ease; flex-shrink: 0; }
.dr-addon .box::after { content: ""; width: 10px; height: 10px; border-radius: 2px; background: var(--gold); transform: scale(0); transition: transform .15s ease; }
.dr-addon input:checked + .box { border-color: var(--gold); }
.dr-addon input:checked + .box::after { transform: scale(1); }
.dr-addon b { font-weight: 600; }
.dr-addon .pr { color: var(--gold); font-weight: 600; }
.add-doc {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  border: 1.5px dashed var(--line); background: transparent; color: var(--navy);
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; cursor: pointer;
  padding: 13px 20px; border-radius: 8px; width: 100%; justify-content: center;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.add-doc:hover { border-color: var(--gold); background: var(--gold-tint); color: var(--gold); }
.add-doc svg { width: 17px; height: 17px; }
@media (max-width: 460px) {
  .docrow-grid { grid-template-columns: 1fr; }
}

/* summary */
.summary { position: sticky; top: 92px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; }
.summary-head { background: var(--navy); color: #fff; padding: 22px 26px; }
.summary-head h3 { color: #fff; font-size: 19px; }
.summary-head p { margin: 4px 0 0; font-size: 13px; color: rgba(255,255,255,.6); }
.summary-body { padding: 22px 26px; }
.sline { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; font-size: 14.5px; border-bottom: 1px solid var(--line-soft); }
.sline:first-child { padding-top: 0; }
.sline .lbl { color: var(--muted); }
.sline .lbl b { color: var(--ink); font-weight: 600; display: block; }
.sline .lbl small { font-size: 12px; color: var(--faint); }
.sline .val { color: var(--navy); font-weight: 600; white-space: nowrap; }
.sline.muted-line .val { color: var(--muted); font-weight: 500; }
.stotal { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0 4px; }
.stotal .lbl { font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.stotal .val { font-family: var(--serif); font-size: 32px; color: var(--navy); }
.summary-foot { padding: 0 26px 26px; }
.summary-foot .btn { width: 100%; justify-content: center; }
.summary-foot .reassure { display: grid; gap: 9px; margin-top: 18px; }
.summary-foot .reassure span { display: flex; gap: 9px; align-items: center; font-size: 12.5px; color: var(--muted); }
.summary-foot .reassure .tick { color: var(--gold); font-weight: 700; }

.empty-hint { font-size: 13px; color: var(--faint); font-style: italic; }

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
}

/* confirmation */
.order-done { display: none; }
.order-done.show { display: block; }
.confirm-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: clamp(40px, 6vw, 64px); text-align: center; max-width: 620px; margin: 0 auto;
}
.confirm-seal {
  width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--gold-2), var(--gold)); color: #fff;
  display: grid; place-items: center; font-size: 34px; box-shadow: var(--shadow-md);
}
.confirm-card h2 { margin-bottom: 12px; }
.confirm-card p { color: var(--muted); max-width: 46ch; margin: 0 auto 10px; }
.confirm-ref { display: inline-block; margin: 22px 0 28px; padding: 12px 22px; border: 1px dashed var(--gold); border-radius: 8px; background: var(--gold-tint); font-size: 14px; color: var(--navy); }
.confirm-ref b { font-family: var(--serif); font-size: 18px; letter-spacing: .04em; }

/* ============================================================
   COMPARISON ("the difference") — used on location pages
   ============================================================ */
.compare { background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
  margin-top: 52px; max-width: 940px; margin-left: auto; margin-right: auto;
}
.cmp {
  border-radius: 12px; padding: 44px 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cmp.ours { background: var(--navy); color: #fff; box-shadow: var(--shadow-lg); z-index: 2; }
.cmp.theirs { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.cmp .cmp-label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; }
.cmp.ours .cmp-label { color: var(--gold-2); }
.cmp.theirs .cmp-label { color: var(--faint); }
.cmp .cmp-big { font-family: var(--serif); font-size: clamp(46px, 7vw, 68px); line-height: 1; margin-bottom: 10px; }
.cmp.ours .cmp-big { color: #fff; }
.cmp.theirs .cmp-big { color: var(--muted); }
.cmp .cmp-cap { font-size: 15px; }
.cmp.ours .cmp-cap { color: rgba(255,255,255,.74); }
.cmp.theirs .cmp-cap { color: var(--muted); }
.cmp .cmp-seal { width: 46px; height: 46px; border-radius: 50%; background: radial-gradient(circle at 38% 32%, var(--gold-2), var(--gold)); margin-bottom: 22px; display: grid; place-items: center; color: #fff; font-size: 20px; box-shadow: var(--shadow-md); }
.cmp-vs {
  display: grid; place-items: center; padding: 0 22px;
}
.cmp-vs span {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 20px; font-weight: 500;
  box-shadow: var(--shadow-md); border: 3px solid var(--paper-soft);
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; gap: 0; }
  .cmp { padding: 34px 28px; }
  .cmp.ours { order: 1; border-radius: 12px 12px 0 0; }
  .cmp-vs { order: 2; padding: 0; margin: -22px 0; }
  .cmp.theirs { order: 3; border-radius: 0 0 12px 12px; }
}

/* location feature list */
.loc-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.loc-feats { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.loc-feats li { display: flex; gap: 14px; align-items: flex-start; }
.loc-feats .ico { width: 32px; height: 32px; border-radius: 7px; background: var(--gold-tint); border: 1px solid var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.loc-feats b { color: var(--navy); display: block; font-size: 15.5px; }
.loc-feats p { font-size: 14px; color: var(--muted); margin: 2px 0 0; line-height: 1.5; }
@media (max-width: 760px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- file upload ---------- */
.dropzone {
  position: relative;
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  background: var(--paper-soft);
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.dropzone:hover { border-color: var(--gold); background: var(--gold-tint); }
.dropzone.drag { border-color: var(--gold); background: var(--gold-tint); box-shadow: 0 0 0 3px var(--gold-soft); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dz-ico {
  width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%;
  background: #fff; border: 1px solid var(--gold-soft); color: var(--gold);
  display: grid; place-items: center;
}
.dz-ico svg { width: 24px; height: 24px; }
.dropzone b { display: block; font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.dropzone b u { color: var(--gold); text-decoration: none; border-bottom: 1.5px solid var(--gold-soft); }
.dropzone p { margin: 0; font-size: 13px; color: var(--muted); }

.filelist { display: grid; gap: 10px; margin-top: 16px; }
.fileitem {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.file-thumb {
  width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; overflow: hidden;
  background: var(--gold-tint); border: 1px solid var(--gold-soft);
  display: grid; place-items: center; color: var(--gold);
}
.file-thumb img { width: 100%; height: 100%; object-fit: cover; }
.file-thumb .ext { font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.file-meta { flex: 1; min-width: 0; }
.file-meta b { display: block; font-size: 14px; color: var(--navy); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-meta span { font-size: 12.5px; color: var(--muted); }
.file-status { font-size: 12px; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.file-status .ok { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; font-size: 10px; }
.file-remove {
  width: 30px; height: 30px; flex-shrink: 0; border: none; background: var(--paper-soft);
  border-radius: 6px; color: var(--muted); cursor: pointer; font-size: 16px; line-height: 1;
  transition: background .15s ease, color .15s ease;
}
.file-remove:hover { background: #FBE9E6; color: #C0492F; }
.upload-secure { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: var(--faint); }
.upload-secure svg { width: 14px; height: 14px; flex-shrink: 0; }

