/* MK Sparkle — single stylesheet. Mobile-first. CSS vars driven. */

/* ============================
   1. RESET + BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding-left: 1.25em; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; }

/* ============================
   2. TOKENS
   ============================ */
:root {
  /* Editorial-refined palette — warm cream + ink + single blue accent. Lime is a micro-accent only. */
  --ink: #0F1A2E;            /* near-black ink for headlines + dark surfaces */
  --ink-soft: #2B3654;        /* secondary ink */
  --body: #4A5366;            /* body text — softer than ink */
  --grey: #6E7787;
  --grey-soft: #98A0AE;
  --line: #E8E2D6;            /* warm hairline (NOT cool blue) */
  --line-soft: #F0EAE0;
  --cream: #F8F4EC;           /* primary page bg — warm sand */
  --cream-deep: #EFE8DA;      /* deeper section bg */
  --paper: #FFFFFF;           /* card / paper surface */

  --accent: #0B4DD0;          /* refined editorial blue (slightly deeper than the original Wix blue) */
  --accent-soft: #2E6BFF;
  --accent-ink: #07338C;
  --lime: #D6E83A;            /* used VERY sparingly — micro-accent only */

  --success: #2F7A5F;         /* deeper, less candy than teal */
  --danger: #A33846;

  /* Legacy aliases — keep so existing component CSS keeps working without sweeping renames */
  --navy: var(--ink);
  --navy-700: var(--accent);
  --navy-soft: var(--body);
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);
  --gold-deep: var(--accent-ink);
  --warm: var(--cream);
  --warm-card: var(--paper);
  --grey-line: var(--line);

  /* Shadows — barely-there, editorial. Drop the heavy navy glow. */
  --shadow-card: 0 1px 0 rgba(15, 26, 46, 0.04), 0 6px 24px rgba(15, 26, 46, 0.04);
  --shadow-pop:  0 1px 0 rgba(15, 26, 46, 0.06), 0 18px 50px rgba(15, 26, 46, 0.08);
  --shadow-inset: inset 0 0 0 1px var(--line);

  /* Editorial radius — flatter than Material */
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 14px;

  --container: 1240px;
  --gap: clamp(1rem, 2vw, 1.5rem);

  /* Distinctive type pair — Fraunces (editorial display, italic for emphasis) + Inter Tight (refined body) */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* ============================
   3. TYPOGRAPHY (editorial scale — confident, large, generous)
   ============================ */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-feature-settings: 'ss01';
}
/* H1 — magazine-cover scale */
h1 { font-size: clamp(2.6rem, 6.8vw, 5.4rem); letter-spacing: -0.035em; line-height: 0.98; }
/* H2 — section title, generous */
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); letter-spacing: -0.028em; line-height: 1.04; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); line-height: 1.15; letter-spacing: -0.02em; }
h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); }
em, .italic { font-style: italic; font-family: var(--font-display); }
p { color: var(--body); max-width: 62ch; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); line-height: 1.5; max-width: 50ch; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.muted { color: var(--grey); }
.gold-text { color: var(--accent); }
.kicker { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); }
.kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--ink); }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ============================
   4. LAYOUT
   ============================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
section { padding-block: clamp(3rem, 7vw, 5.5rem); }
section.tight { padding-block: clamp(2rem, 4vw, 3.5rem); }
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.flex { display: flex; gap: var(--gap); flex-wrap: wrap; align-items: center; }
.center { text-align: center; }

/* ============================
   5. BUTTONS — editorial pill, tight, confident
   ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-align: center;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-gold { background: var(--ink); color: var(--cream); }
.btn-gold:hover { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-whatsapp { background: #1F2933; color: #fff; }
.btn-whatsapp:hover { background: var(--ink); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ============================
   6. NAV — refined editorial, generous spacing
   ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.02em; }
.logo-mark { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.nav-links { display: none; gap: 2.2rem; align-items: center; font-size: 0.92rem; font-weight: 400; letter-spacing: -0.005em; }
.nav-links a { color: var(--ink-soft); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: none; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--radius-s); }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }
@media (min-width: 900px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
.mobile-menu { display: none; padding: 1rem 0 1.25rem; border-top: 1px solid var(--line); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.7rem 0; font-weight: 400; color: var(--ink); font-size: 1.05rem; }

/* ============================
   7. MOBILE BOTTOM BAR — refined ink + cream
   ============================ */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--ink); color: var(--cream);
  z-index: 60; box-shadow: 0 -8px 30px rgba(15, 26, 46, 0.12);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  padding: 0.85rem 0.4rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.05em;
  color: var(--cream); border-right: 1px solid rgba(248, 244, 236, 0.08);
}
.bottom-bar a:last-child { border-right: 0; }
.bottom-bar a:nth-child(2) { background: var(--ink-soft); color: var(--cream); }
.bottom-bar a:nth-child(3) { background: var(--accent); color: #fff; }
.bottom-bar svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
@media (min-width: 900px) { .bottom-bar { display: none; } body { padding-bottom: 0 !important; } }
body { padding-bottom: 76px; } /* reserves space on mobile */

/* ============================
   8. WHATSAPP FLOAT (DESKTOP) — refined ink circle
   ============================ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(15, 26, 46, 0.18);
  transition: transform 0.22s ease, background 0.22s ease;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { transform: scale(1.05); background: var(--accent); }
@media (min-width: 900px) { .wa-float { display: inline-flex; } }

/* ============================
   9. HERO — editorial, generous, photography-led
   ============================ */
.hero {
  background: var(--cream);
  color: var(--ink);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative; overflow: hidden;
}
.hero h1, .hero h2, .hero h3 { color: var(--ink); }
.hero p { color: var(--ink-soft); }
.hero .eyebrow { color: var(--accent); }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.2rem; }
.hero-trust {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.2rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 700px) { .hero-trust { grid-template-columns: repeat(4, 1fr); } }
.hero-trust-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-trust-item strong {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2rem); color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
}
.hero-trust-item span { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.02em; }

/* Hero photo — editorial frame matching the wide-banner source.
   hero-glove.png is 1920×787 (~2.44:1) with the glove on the right.
   Use 16/10 desktop for a confident magazine feel, 4/3 mobile so the subject still reads. */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-photo .caption {
  position: absolute; left: 1.5rem; bottom: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.95rem; color: var(--ink); letter-spacing: -0.01em;
  background: rgba(248, 244, 236, 0.85); backdrop-filter: blur(6px);
  padding: 0.5rem 0.85rem; border-radius: var(--radius-s); width: fit-content;
}
.hero-photo .caption::before {
  content: "—"; margin-right: 0.5rem; color: var(--accent);
}
/* Service-page badge variant — same editorial chip, used by tools/add-service-photos.py */
.hero-photo .badge {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(248, 244, 236, 0.92); backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem; border-radius: 999px;
  box-shadow: 0 1px 0 rgba(15, 26, 46, 0.04);
}
.hero-photo .badge svg { width: 14px; height: 14px; color: var(--accent); }
@media (min-width: 900px) { .hero-photo { aspect-ratio: 16 / 11; } }

/* ============================
   9b. QUICK QUOTE SECTION (mini-calc) — restrained cream, no gradient
   ============================ */
.quick-quote {
  background: var(--cream-deep);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-quote .container { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .quick-quote .container { grid-template-columns: 1fr 1.3fr; align-items: center; gap: 4rem; } }
.quick-quote h2 { color: var(--ink); }
.quick-quote .lead { color: var(--ink-soft); max-width: 36ch; }
.quick-quote .calc { background: var(--paper); border: 1px solid var(--line); box-shadow: none; }

/* ============================
   9a. SERVICE PHOTO CARDS — editorial frame, real photo first
   ============================ */
.card-photo {
  display: flex; flex-direction: column;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
  height: 100%;
  color: var(--ink);
}
.card-photo:hover { transform: translateY(-3px); }
.card-photo:hover .photo { filter: brightness(0.96); }
.card-photo .photo {
  /* Source photos are wide banners (~2.4:1) with subject framed on the right edge.
     Use 16/10 so the subject is visible, and background-position: right center to
     anchor the cleaning subject (mop, broom, towels, etc.) in frame. */
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  margin-bottom: 1.1rem;
  transition: filter 0.3s ease;
}
.card-photo .body { padding: 0; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.card-photo .title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
}
.card-photo .price {
  font-size: 0.78rem; color: var(--grey); font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-feature-settings: 'tnum';
}
.card-photo .blurb { font-size: 0.95rem; color: var(--body); margin: 0.3rem 0 0; line-height: 1.45; }
.card-photo .more {
  margin-top: 0.9rem; padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: space-between;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.card-photo .more::after { content: "→"; transition: transform 0.25s ease; }
.card-photo:hover .more::after { transform: translateX(4px); }

/* ============================
   10. CARDS — flatter editorial, hairline borders, no glow
   ============================ */
.card {
  background: var(--paper);
  border-radius: var(--radius-s);
  padding: 1.6rem 1.5rem;
  box-shadow: none;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.75rem;
  height: 100%;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--ink); }
.card-icon { width: 40px; height: 40px; display: inline-grid; place-items: center; background: transparent; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); }
.card-icon svg { width: 20px; height: 20px; }
.card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; line-height: 1.15; }
.card-price { font-size: 0.78rem; color: var(--grey); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.card-foot { margin-top: auto; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; }
.card-foot:hover { color: var(--accent); }

/* ============================
   11. TRUST STRIP — hairline row, no card chrome
   ============================ */
.trust-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 2.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 400; font-size: 0.92rem; color: var(--ink-soft);
  font-family: var(--font-body);
  letter-spacing: -0.005em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; stroke-width: 2; }
@media (min-width: 768px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }

/* ============================
   12. PRICING TABLE — magazine-table, no chrome
   ============================ */
.price-table {
  width: 100%; border-collapse: collapse; background: transparent;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0; overflow: visible;
  box-shadow: none;
  font-family: var(--font-body);
}
.price-table th, .price-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
  background: transparent; color: var(--ink);
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.price-table tbody td.price { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; font-family: var(--font-display); font-size: 1.05rem; }

/* ============================
   13. CHECKLIST (what's included)
   ============================ */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; }
.checklist li::before {
  content: ""; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--success);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19l12-12-1.4-1.4z'/></svg>") center/14px no-repeat;
  margin-top: 4px; border-radius: 50%;
}
.checklist.dense { gap: 0.35rem; }

/* ============================
   14. FAQ ACCORDION — hairline rows, no card chrome
   ============================ */
.faq { display: grid; gap: 0; max-width: 820px; margin-inline: auto; border-top: 1px solid var(--ink); }
.faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 0.5rem 1.4rem 0;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: 1.2rem; letter-spacing: -0.015em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 300; color: var(--ink); font-size: 1.5rem; line-height: 1;
  transition: transform 0.25s ease; flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 1.4rem; color: var(--body); }
.faq .a p { margin-bottom: 0.6rem; max-width: 65ch; }
.faq .a p:last-child { margin-bottom: 0; }

/* ============================
   15. TESTIMONIAL — magazine pull-quote, no card chrome
   ============================ */
.testimonial {
  background: transparent;
  border-radius: 0; border: 0;
  padding: 0; box-shadow: none;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial .stars { color: var(--accent); letter-spacing: 0.2em; font-size: 0.95rem; }
.testimonial blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.4;
  color: var(--ink); letter-spacing: -0.015em;
  padding-left: 0; border-left: 0;
  position: relative;
}
.testimonial blockquote::before { content: "“"; font-family: var(--font-display); color: var(--accent); display: block; font-size: 2rem; line-height: 0.4; margin-bottom: 0.4rem; }
.testimonial cite { font-style: normal; font-weight: 500; color: var(--ink); font-size: 0.9rem; padding-top: 0.4rem; border-top: 1px solid var(--line); }
.testimonial cite span { font-weight: 400; color: var(--grey); display: block; margin-top: 0.15rem; font-size: 0.82rem; }

/* ============================
   16. FORMS
   ============================ */
.form { display: grid; gap: 1rem; max-width: 560px; }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-size: 0.92rem; font-weight: 500; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-s);
  background: var(--warm-card); color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row.error input, .form-row.error select { border-color: var(--danger); }
.form-row .err-msg { color: var(--danger); font-size: 0.85rem; margin-top: 0.25rem; display: none; }
.form-row.error .err-msg { display: block; }
.form-grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-help { font-size: 0.85rem; color: var(--grey); }

/* ============================
   17. CALCULATOR — refined paper, hairline borders
   ============================ */
.calc {
  background: var(--paper); border-radius: var(--radius-s);
  padding: 1.8rem 1.6rem; box-shadow: none;
  border: 1px solid var(--line);
  display: grid; gap: 1.2rem;
}
.calc-step { display: none; }
.calc-step.active { display: grid; gap: 0.9rem; }
.calc-progress { display: flex; gap: 4px; }
.calc-progress span { flex: 1; height: 2px; border-radius: 0; background: var(--line); transition: background 0.2s ease; }
.calc-progress span.done { background: var(--ink); }
.calc-options { display: grid; gap: 0.5rem; grid-template-columns: 1fr 1fr; }
.calc-options label {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-s);
  cursor: pointer; font-weight: 500; transition: border-color 0.18s ease, background 0.18s ease;
  background: var(--paper); font-size: 0.95rem;
}
.calc-options label:hover { border-color: var(--ink); }
.calc-options input[type="radio"], .calc-options input[type="checkbox"] { accent-color: var(--accent); }
.calc-options label.selected { border-color: var(--ink); background: var(--cream); }
.calc-result {
  background: var(--ink); color: var(--cream); border-radius: var(--radius-s);
  padding: 1.8rem; text-align: center; display: grid; gap: 0.6rem;
}
.calc-result .price { font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--cream); letter-spacing: -0.025em; line-height: 1; }
.calc-result .small { color: rgba(248, 244, 236, 0.7); font-size: 0.85rem; letter-spacing: 0.02em; }
.calc-nav { display: flex; justify-content: space-between; gap: 0.5rem; }

/* ============================
   18. AREAS / LOCATION GRID — hairline rows, magazine-list
   ============================ */
.area-list { display: grid; gap: 0; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
@media (min-width: 768px) { .area-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .area-list { grid-template-columns: repeat(4, 1fr); } }
.area-list a {
  padding: 1rem 1.2rem 1rem 0;
  background: transparent; border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-weight: 500; color: var(--ink);
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--font-body); font-size: 0.98rem;
  transition: padding-left 0.22s ease;
}
.area-list a:hover { padding-left: 0.5rem; color: var(--accent); }
.area-list a span { color: var(--grey); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ============================
   19. SECTION HELPERS
   ============================ */
.bg-warm { background: var(--cream); }
.bg-card { background: var(--paper); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-navy { background: var(--ink); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy p { color: rgba(248, 244, 236, 0.75); }
.bg-gold-tint { background: var(--cream-deep); }

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { margin-inline: auto; }
/* Asymmetric editorial section head — left-aligned with kicker */
.section-head-left { max-width: 760px; margin: 0 0 3rem; text-align: left; }
.section-head-left p { max-width: 60ch; }

/* ============================
   20. CTA STRIP
   ============================ */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 2.5rem; border-radius: var(--radius-s);
  display: grid; gap: 1.5rem; align-items: center;
  box-shadow: none;
  border: 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; left: 2.5rem; top: 50%; width: 1px; height: 60px;
  background: var(--accent); transform: translateY(-50%);
  display: none;
}
.cta-strip h2 { color: var(--cream); font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -0.025em; }
.cta-strip p { color: rgba(248, 244, 236, 0.78); max-width: 50ch; }
.cta-strip .actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cta-strip .btn-gold { background: var(--cream); color: var(--ink); }
.cta-strip .btn-gold:hover { background: var(--paper); }
.cta-strip .btn-ghost { color: var(--cream); box-shadow: inset 0 0 0 1px rgba(248, 244, 236, 0.3); }
.cta-strip .btn-ghost:hover { background: var(--cream); color: var(--ink); }
@media (min-width: 768px) { .cta-strip { grid-template-columns: 1.4fr 1fr; padding: 3.5rem 3rem; } }

/* ============================
   21. BREADCRUMBS
   ============================ */
.breadcrumb { font-size: 0.82rem; color: var(--grey); padding-block: 1.2rem; letter-spacing: 0.05em; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span.sep { margin-inline: 0.5rem; color: var(--grey-soft); }

/* ============================
   22. FOOTER — refined ink, generous space
   ============================ */
.footer {
  background: var(--ink); color: rgba(248, 244, 236, 0.7);
  padding-block: 4rem 2rem; margin-top: 4rem;
}
.footer h4 { color: var(--cream); margin-bottom: 1.2rem; font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
.footer a { color: rgba(248, 244, 236, 0.78); transition: color 0.2s ease; }
.footer a:hover { color: var(--cream); }
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(248, 244, 236, 0.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: rgba(248, 244, 236, 0.5); letter-spacing: 0.02em; }
.footer .nap { line-height: 1.7; font-size: 0.95rem; }

/* ============================
   23. UTILITY + SKIP LINK
   ============================ */
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--gold); color: var(--navy);
  padding: 0.6rem 1rem; border-radius: var(--radius-s);
  font-weight: 600; z-index: 100;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 1rem; outline: 3px solid var(--navy); outline-offset: 2px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.gap-sm { gap: 0.5rem; }

/* ============================
   24. ANIMATIONS (subtle)
   ============================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeIn 0.6s ease both; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
}

/* ============================
   25. CONSENT BANNER
   ============================ */
.consent {
  position: fixed; bottom: 90px; left: 1rem; right: 1rem; z-index: 70;
  background: var(--navy); color: var(--warm); padding: 1rem 1.2rem;
  border-radius: var(--radius-m); box-shadow: var(--shadow-pop);
  display: none; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.92rem;
}
.consent.show { display: flex; }
.consent button { background: var(--gold); color: var(--navy); padding: 0.5rem 1rem; border-radius: var(--radius-s); font-weight: 600; }
.consent button.secondary { background: transparent; color: var(--warm); box-shadow: var(--shadow-inset); }
@media (min-width: 900px) { .consent { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 460px; } }

/* ============================
   26. LIGHT FONTS (system fallback first; swap-in not required)
   ============================ */
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: local('Inter');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 400 700;
  font-display: swap;
  src: local('Fraunces');
}
