/* ============================================================
   Lantern Pet Aftercare — design tokens
   Direction: "a lamp left on for you at night."
   Deep evergreen night, warm linen day sections, one amber
   lamplight accent. Calm, gentle motion. Never busy.
   ============================================================ */
:root {
  --night: #1b2d26;
  --night-2: #223930;
  --night-3: #2a463a;
  --linen: #f4f2ec;
  --card: #fdfcf9;
  --ink: #26332c;
  --muted: #5d6b62;
  --mist: #a7bbae;
  --amber: #c9932e;
  --amber-bright: #e3ae4b;
  --amber-pale: #f5c86b;
  --amber-soft: rgba(227, 174, 75, 0.14);
  --line: #dce2d6;
  --line-dark: rgba(227, 174, 75, 0.25);
  --radius: 14px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", sans-serif;
  --bar-height: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--linen);
  padding-bottom: calc(var(--bar-height) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); margin-bottom: 0.6em; }

section { padding: 60px 20px; max-width: 780px; margin: 0 auto; }

a { color: inherit; }

/* ---------- icon system ---------- */
.ic {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.ic-lg { width: 30px; height: 30px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--amber-bright); color: #241a05; box-shadow: 0 2px 16px rgba(227, 174, 75, 0.35); }
.btn-primary:hover { background: #ecba58; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(227, 174, 75, 0.45); }
.btn-ghost { background: transparent; color: var(--linen); border: 1.5px solid rgba(244, 242, 236, 0.4); }
.btn-ghost:hover { border-color: var(--amber-bright); color: var(--amber-bright); }
.btn-lg { padding: 16px 34px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }
.anim .btn-glowing { animation: breathe 4.5s ease-in-out infinite; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 2px 16px rgba(227, 174, 75, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(245, 200, 107, 0.6); }
}

/* ---------- header ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  background: var(--night);
  color: var(--linen);
  position: relative; z-index: 5;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--amber-bright); }
.brand-mark { width: 40px; height: 40px; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--linen);
  line-height: 1.05;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
}
.header-call {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; text-decoration: none;
  color: var(--amber-bright);
  border: 1.5px solid var(--line-dark);
  border-radius: 999px; padding: 8px 16px;
  transition: background 0.15s ease;
}
.header-call:hover { background: var(--amber-soft); }
.header-call .ic { width: 16px; height: 16px; }

/* ---------- hero: the night scene ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(178deg, #16261f 0%, var(--night) 40%, var(--night-2) 100%);
  color: var(--linen);
  text-align: center;
  padding: 30px 22px 120px;
  max-width: none;
}
#fireflies {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i {
  position: absolute;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(244, 242, 236, 0.7);
}
.stars i:nth-child(1) { top: 12%; left: 12%; }
.stars i:nth-child(2) { top: 22%; left: 26%; width: 2px; height: 2px; }
.stars i:nth-child(3) { top: 9%;  left: 58%; width: 2px; height: 2px; }
.stars i:nth-child(4) { top: 18%; left: 78%; }
.stars i:nth-child(5) { top: 34%; left: 88%; width: 2px; height: 2px; }
.stars i:nth-child(6) { top: 40%; left: 6%;  width: 2px; height: 2px; }
.stars i:nth-child(7) { top: 6%;  left: 88%; }
.anim .stars i { animation: twinkle 5s ease-in-out infinite; }
.anim .stars i:nth-child(2n) { animation-delay: 1.6s; animation-duration: 6.5s; }
.anim .stars i:nth-child(3n) { animation-delay: 3.1s; }
@keyframes twinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.9; } }

.hero-lantern { position: relative; z-index: 1; width: 108px; height: auto; margin: 0 auto; display: block; }
.anim .lantern-swing { transform-origin: 60px 2px; animation: swing 9s ease-in-out infinite; }
@keyframes swing { 0%, 100% { transform: rotate(-2.2deg); } 50% { transform: rotate(2.2deg); } }
.anim .lantern-flame { transform-origin: 60px 85px; animation: flicker 3.4s ease-in-out infinite; }
@keyframes flicker {
  0%, 100% { transform: scale(1); opacity: 1; }
  30% { transform: scale(1.06) translateY(-0.6px); opacity: 0.92; }
  55% { transform: scale(0.96); opacity: 1; }
  75% { transform: scale(1.04); opacity: 0.95; }
}
.anim .lantern-halo { animation: halo 4.5s ease-in-out infinite; }
@keyframes halo { 0%, 100% { opacity: 0.85; } 50% { opacity: 1.15; } }

.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 14px auto 0; }
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.hero-sub { font-size: 1.08rem; color: #d6ded6; max-width: 480px; margin: 0 auto 28px; }
.hero-cta-note { margin-top: 12px; font-size: 0.95rem; color: var(--amber-bright); font-weight: 600; }
.hero-reassure { margin-top: 18px; font-size: 0.9rem; color: var(--mist); }
.hero-reassure-quiet { margin-top: 6px; font-size: 0.82rem; }
.hero-hills {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 110px;
  display: block;
}
.hero-glow { /* kept for success page */
  position: absolute; left: 50%; bottom: -140px; transform: translateX(-50%);
  width: 560px; height: 280px;
  background: radial-gradient(ellipse at center, rgba(227, 174, 75, 0.28) 0%, rgba(227, 174, 75, 0) 65%);
  pointer-events: none;
}
.awake-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--amber-bright);
  background: rgba(27, 45, 38, 0.55);
  border: 1px solid var(--line-dark);
  border-radius: 999px; padding: 7px 15px;
  backdrop-filter: blur(4px);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-bright); }
.anim .pulse-dot { animation: pulse 2.2s ease-out infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 174, 75, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(227, 174, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 174, 75, 0); }
}

/* ---------- scroll reveal (only when .anim on <html>) ---------- */
.anim .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim .reveal.in { opacity: 1; transform: none; }

/* ---------- trust bar ---------- */
.trust-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding-top: 36px; padding-bottom: 8px;
}
.trust-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(27, 45, 38, 0.09); }
.trust-item .ic { color: var(--amber); margin-bottom: 10px; }
.trust-item h3 { font-size: 1.12rem; margin-bottom: 4px; color: var(--night); }
.trust-item p { font-size: 0.88rem; color: var(--muted); }
@media (min-width: 700px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }

/* ---------- quote / calculator ---------- */
.quote { padding-top: 30px; }
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 22px 38px;
  box-shadow: 0 8px 40px rgba(27, 45, 38, 0.07);
}
.quote-card h2 { color: var(--night); }
.quote-lede { color: var(--muted); font-size: 0.98rem; margin-bottom: 26px; }

.step { margin-top: 32px; scroll-margin-top: 20px; }
.step[hidden] { display: none; }
.step h3 { font-size: 1.25rem; color: var(--night); margin-bottom: 14px; }
.step-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 5px;
}

.field-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin: 16px 0 6px; }
input[type="text"], input[type="tel"], input[type="email"], input[type="datetime-local"], textarea {
  width: 100%;
  font: inherit;
  font-size: 1.05rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
input:hover, textarea:hover { border-color: #c6cfc0; }
input:focus-visible, textarea:focus-visible, .btn:focus-visible, .choice:focus-visible,
.crem-card:focus-visible, summary:focus-visible, a:focus-visible,
input[type="checkbox"]:focus-visible, input[type="radio"]:focus-visible {
  outline: 3px solid var(--amber-bright);
  outline-offset: 2px;
}

.postcode-row { display: flex; gap: 10px; }
.postcode-row input { flex: 1; text-transform: uppercase; }
.field-hint { font-size: 0.88rem; color: var(--muted); margin-top: 9px; }
.field-hint.good { color: #2c6b45; font-weight: 600; }
.field-hint.bad { color: #a04326; font-weight: 600; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice-grid-tight { margin-top: 4px; }
.choice {
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: 15px 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease, transform 0.12s ease;
}
.choice:hover { border-color: var(--amber); transform: translateY(-1px); }
.choice.selected { border-color: var(--amber); background: var(--amber-soft); color: var(--night); }

/* cremation cards */
.crem-options { display: grid; gap: 12px; }
.crem-card {
  position: relative; text-align: left; font: inherit; cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: grid; gap: 5px;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.crem-card:hover { border-color: var(--amber); }
.crem-card.selected { border-color: var(--amber); background: var(--amber-soft); }
.crem-tag {
  position: absolute; top: -11px; left: 16px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--night); color: var(--amber-bright);
  border-radius: 999px; padding: 4px 12px;
}
.crem-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--night); }
.crem-desc { font-size: 0.9rem; color: var(--muted); }
.crem-price { font-size: 1.05rem; font-weight: 700; color: var(--night); font-variant-numeric: tabular-nums; }

/* individual-only panel */
.crem-solo {
  background: var(--amber-soft);
  border: 1.5px solid var(--amber);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.crem-solo-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 8px; }
.crem-solo .crem-title { font-size: 1.25rem; }
.crem-solo .crem-price { font-size: 1.3rem; }
.crem-solo .crem-desc { margin-bottom: 14px; }
.crem-includes { list-style: none; display: grid; gap: 8px; }
.crem-includes li { position: relative; padding-left: 26px; font-size: 0.93rem; color: var(--ink); }
.crem-includes li::before {
  content: "";
  position: absolute; left: 2px; top: 4px;
  width: 14px; height: 14px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background:
    linear-gradient(var(--amber), var(--amber)) center / 6px 2px no-repeat;
}

/* memory upsell */
.memory-list { display: grid; gap: 10px; }
.memory-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.memory-item:hover { border-color: var(--amber); }
.memory-item input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--amber); flex-shrink: 0; }
.memory-item:has(input:checked) { border-color: var(--amber); background: var(--amber-soft); }
.memory-title { display: block; font-weight: 700; color: var(--night); }
.memory-desc { display: block; font-size: 0.88rem; color: var(--muted); }
.memory-bundle { margin-top: 12px; border-width: 2px; border-color: var(--night-3); }
.save-tag {
  font-style: normal; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--night); color: var(--amber-bright);
  border-radius: 999px; padding: 3px 9px; margin-left: 6px;
  vertical-align: 2px;
}
.extras { margin-top: 20px; }
.extras summary { font-weight: 600; color: var(--muted); cursor: pointer; padding: 6px 0; }
.extras .memory-list { margin-top: 12px; }

/* summary + form */
.summary {
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 6px;
}
.summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.95rem; padding: 4px 0; }
.summary-row span:last-child { font-variant-numeric: tabular-nums; font-weight: 600; }
.summary-total {
  display: flex; justify-content: space-between;
  border-top: 1.5px solid var(--line);
  margin-top: 8px; padding-top: 10px;
  font-weight: 700; font-size: 1.15rem; color: var(--night);
}
.field-set { border: none; margin-top: 4px; }
.radio-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 1rem; cursor: pointer; }
.radio-row input { width: 18px; height: 18px; accent-color: var(--amber); }
#booking-form .btn-block { margin-top: 24px; }
.secure-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem; color: var(--muted);
}
.secure-row .ic { width: 15px; height: 15px; color: var(--amber); }
.form-error { margin-top: 14px; color: #a04326; font-weight: 600; font-size: 0.95rem; }

/* ---------- memory upsell: illustrated cards ---------- */
.memory-intro { font-size: 0.93rem; color: var(--muted); margin: -6px 0 14px; }
.memory-illustrated { align-items: center; gap: 14px; }
.mem-art {
  width: 62px; height: 62px; flex-shrink: 0;
  color: var(--amber);
  background: var(--amber-soft);
  border-radius: 14px;
  padding: 6px;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.bundle-note {
  margin-top: 12px;
  background: var(--amber-soft);
  border: 1.5px solid var(--amber);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 0.95rem; color: var(--night);
}
.bundle-note[hidden] { display: none; }
.bundle-note strong { font-size: 1.05rem; }

/* ---------- right-now care card ---------- */
.care { padding-top: 6px; }
.care-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber-bright);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.care-card h2 { color: var(--night); font-size: 1.5rem; }
.care-lede { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.care-list { list-style: none; display: grid; gap: 14px; }
.care-list li { display: flex; gap: 13px; align-items: flex-start; }
.care-list .ic { color: var(--amber); margin-top: 3px; width: 21px; height: 21px; }
.care-list p { font-size: 0.95rem; color: var(--muted); }
.care-list strong { color: var(--night); }
.hero-now-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--amber-bright);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ---------- paw divider ---------- */
.paw-divider { display: flex; justify-content: center; gap: 26px; margin-bottom: 34px; }
.paw-divider .paw { width: 20px; height: 20px; fill: var(--amber); opacity: 0.35; stroke: none; }
.paw-divider .paw:nth-child(1) { transform: rotate(-14deg) translateY(6px); opacity: 0.2; }
.paw-divider .paw:nth-child(2) { transform: rotate(4deg); opacity: 0.3; }
.paw-divider .paw:nth-child(3) { transform: rotate(16deg) translateY(-5px); opacity: 0.45; }
.voices .paw-divider, .faq .paw-divider { margin-bottom: 26px; }
.paw-divider-footer { margin: 10px 0 2px; }
.paw-divider-footer .paw { fill: var(--amber-bright); }
.footer-vow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mist);
}

/* ---------- process (timeline) ---------- */
.process h2 { color: var(--night); text-align: center; margin-bottom: 34px; text-wrap: balance; }
.process-list { list-style: none; position: relative; display: grid; gap: 26px; max-width: 560px; margin: 0 auto; }
.process-list::before {
  content: "";
  position: absolute; left: 23px; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--line);
}
.process-list li { position: relative; display: flex; gap: 18px; align-items: flex-start; }
.p-num {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--linen);
}
.p-body { padding-top: 6px; }
.p-body h3 { font-size: 1.18rem; color: var(--night); margin-bottom: 3px; }
.p-body p { font-size: 0.95rem; color: var(--muted); }

/* ---------- how we collect ---------- */
.collect h2 { color: var(--night); text-align: center; }
.collect-lede {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 30px;
}
.collect-grid { display: grid; gap: 16px; }
.collect-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
}
.collect-item .ic { color: var(--amber); width: 24px; height: 24px; margin-top: 2px; }
.collect-item h3 { font-size: 1.1rem; color: var(--night); margin-bottom: 3px; }
.collect-item p { font-size: 0.92rem; color: var(--muted); }
@media (min-width: 700px) { .collect-grid { grid-template-columns: 1fr 1fr; } }
.collect-close {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--night);
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}
.collect-close em { color: var(--amber); font-style: italic; }

/* ---------- custody (signature: the lit path) ---------- */
.custody {
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, rgba(227, 174, 75, 0.14), transparent 70%),
    var(--night);
  color: var(--linen);
  max-width: none;
  padding: 68px 20px 76px;
}
.custody-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.custody h2 { color: var(--linen); }
.custody-lede { color: var(--mist); max-width: 420px; margin: 0 auto 42px; }
.custody-path { list-style: none; position: relative; display: grid; gap: 34px; width: max-content; margin: 0 auto; text-align: left; }
.custody-path::before {
  content: "";
  position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(227,174,75,0.15), var(--amber-bright), rgba(227,174,75,0.15));
  box-shadow: 0 0 18px rgba(227, 174, 75, 0.5);
}
.custody-path li {
  position: relative;
  padding-left: 34px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.custody-path li::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--night);
  border: 2.5px solid var(--amber-bright);
  box-shadow: 0 0 12px rgba(227, 174, 75, 0.6);
}
.custody-path li.custody-home { color: var(--amber-bright); }
.custody-path li.custody-home::before {
  width: 24px; height: 24px;
  left: -4px;
  background: var(--night) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e3ae4b'%3E%3Cellipse cx='12' cy='16' rx='4.6' ry='3.8'/%3E%3Cellipse cx='5.4' cy='10' rx='1.9' ry='2.5' transform='rotate(-20 5.4 10)'/%3E%3Cellipse cx='9.6' cy='6.8' rx='1.9' ry='2.6'/%3E%3Cellipse cx='14.4' cy='6.8' rx='1.9' ry='2.6'/%3E%3Cellipse cx='18.6' cy='10' rx='1.9' ry='2.5' transform='rotate(20 18.6 10)'/%3E%3C/svg%3E") center / 15px no-repeat;
  box-shadow: 0 0 20px rgba(227, 174, 75, 0.85);
}

/* ---------- testimonials ---------- */
/* ⚠ Quotes are placeholders — swap for genuine reviews before launch. */
.voices h2 { color: var(--night); text-align: center; margin-bottom: 30px; }
.voices-grid { display: grid; gap: 16px; }
.voice {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 22px 22px;
}
.voice::before {
  content: "\201C";
  position: absolute; top: 4px; left: 16px;
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1;
  color: var(--amber-bright);
}
.voice blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--night);
  margin-bottom: 14px;
}
.voice figcaption { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.voice figcaption span { display: block; font-weight: 500; color: var(--muted); font-size: 0.82rem; }
@media (min-width: 760px) { .voices-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- why + promise ---------- */
.why h2 { color: var(--night); }
.why-grid { display: grid; gap: 16px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 6px 0; }
.why-item .ic { color: var(--amber); margin-top: 3px; width: 24px; height: 24px; }
.why-item h3 { font-size: 1.12rem; color: var(--night); margin-bottom: 3px; }
.why-item p { font-size: 0.93rem; color: var(--muted); }
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 20px 36px; } }
.promise {
  display: flex; gap: 18px; align-items: flex-start;
  margin-top: 36px;
  background: var(--night);
  color: var(--linen);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.promise .ic-lg { color: var(--amber-bright); width: 40px; height: 40px; margin-top: 2px; }
.promise p { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; }
.promise em { color: var(--amber-bright); font-style: italic; }

/* ---------- night / out of hours ---------- */
.night {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(227, 174, 75, 0.1), transparent 70%),
    linear-gradient(180deg, var(--night-2), var(--night));
  color: var(--linen);
  max-width: none;
  text-align: center;
  padding: 66px 22px;
}
.night-inner { max-width: 520px; margin: 0 auto; display: grid; gap: 10px; }
.night h2 { color: var(--linen); margin-bottom: 8px; }
.night p { color: #cfd8cf; }
.night-strong { font-weight: 700; color: var(--linen); margin-top: 8px; }
.night-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }

/* ---------- faq ---------- */
.faq h2 { color: var(--night); }
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
  margin-bottom: 10px;
}
.faq summary {
  font-weight: 600; font-size: 1rem; color: var(--night);
  padding: 15px 0; cursor: pointer; list-style: none;
  position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.4rem; color: var(--amber);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 16px; font-size: 0.95rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--night);
  color: var(--mist);
  text-align: center;
  padding: 46px 20px 42px;
  font-size: 0.92rem;
  display: grid; gap: 8px; justify-items: center;
}
.brand-mark-footer { width: 52px; height: 52px; color: var(--amber-bright); }
.footer-brand { font-size: 1.5rem; color: var(--linen); margin-bottom: 4px; }
.site-footer a { color: var(--amber-bright); text-decoration: none; font-weight: 600; }
.footer-small { margin-top: 12px; font-size: 0.8rem; color: #6d8177; }

/* ---------- persistent bottom bar ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(27, 45, 38, 0.96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
}
.cta-bar-default { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.cta-bar-default .btn { flex: 1; }
.cta-bar-total { display: flex; align-items: center; gap: 14px; max-width: 560px; margin: 0 auto; }
.cta-bar-total[hidden], .cta-bar-default[hidden] { display: none; }
.total-copy { flex: 1; display: grid; line-height: 1.25; color: var(--linen); }
.total-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); }
.total-amount { font-size: 1.45rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.total-desc { font-size: 0.72rem; color: var(--mist); }

/* ---------- reduced motion: stillness everywhere ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
