/* =====================================================
   DG COLLISION EXPERTS — LUXURY BLACK + GOLD
   Shared design system across all pages
   ===================================================== */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #111;
  --ink-3:      #161616;
  --ink-4:      #1c1c1c;
  --gold:       #d4a857;
  --gold-light: #ecd08a;
  --cream:      #f4eedf;
  --cream-2:    #c9c2b1;
  --mute:       #877f6f;
  --line:       rgba(212, 168, 87, 0.18);
  --line-strong:rgba(212, 168, 87, 0.45);
  --gold-grad:  linear-gradient(135deg, #ecd08a 0%, #d4a857 45%, #a07f30 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.display {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

/* ---------- HEADER / NAV ---------- */
.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
/* Vertical padding only — `padding: 18px 0` would override .wrap’s horizontal padding on the same node */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-mark {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-sub { font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--mute); font-weight: 700; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 8px 2px;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a[aria-current="page"] {
  color: var(--gold-light);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: all .25s;
}
.nav-cta:hover { background: rgba(212,168,87,0.08); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  color: var(--gold);
}
.nav-toggle svg { width: 18px; height: 18px; }

/* ---------- HERO (shared base) ---------- */
.hero { position: relative; padding: 100px 0 80px; overflow: hidden; text-align: center; }
.hero::before {
  content: ""; position: absolute; top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, rgba(212,168,87,0.13) 0%, rgba(212,168,87,0.04) 35%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero-compact { padding: 80px 0 56px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.kicker-bar { width: 32px; height: 1px; background: var(--gold); }

.h1 { font-size: clamp(48px, 8vw, 96px); margin: 0 0 22px; }
.h1 em { font-style: italic; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--cream-2);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.55;
}
.hero-lead b { color: var(--cream); font-weight: 700; }

.cta-row { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 44px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 22px 38px;
  background: var(--gold-grad);
  color: #1a1305;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  box-shadow: 0 12px 40px -12px rgba(212,168,87,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform .22s, box-shadow .22s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(212,168,87,0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-gold svg { width: 16px; height: 16px; }
.btn-gold-sm { padding: 14px 24px; font-size: 12px; letter-spacing: 0.16em; }

.btn-ghost {
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--cream);
  padding: 18px 8px;
  position: relative;
}
.btn-ghost::after {
  content: ""; position: absolute;
  left: 8px; right: 8px; bottom: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0.6); transform-origin: left;
  transition: transform .25s;
}
.btn-ghost:hover::after { transform: scaleX(1); }

.trust-row {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute); font-weight: 700;
}
.trust-row .stars { color: var(--gold); letter-spacing: 0.1em; }
.trust-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.6; }

/* ---------- PROOF STRIP ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); padding: 48px 0; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.proof-cell { text-align: center; padding: 8px 16px; border-right: 1px solid var(--line); }
.proof-cell:last-child { border-right: none; }
.proof-num {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 60px);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 12px;
}
.proof-label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mute); font-weight: 700; }

/* ---------- SECTIONS ---------- */
section.s { padding: 110px 0; position: relative; z-index: 2; }
section.s-compact { padding: 80px 0; }
.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; text-align: center; }
.h2 { font-size: clamp(40px, 6vw, 72px); margin: 0 0 28px; text-align: center; }
.h2 em { font-style: italic; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--cream-2);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.gold-rule { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 56px; }

/* ---------- CARD VARIANTS ---------- */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px -10px rgba(212,168,87,0.45);
}
.card-icon svg { width: 24px; height: 24px; color: #1a1305; }
.card-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--cream);
}
.card-desc {
  font-size: 15px;
  color: var(--cream-2);
  line-height: 1.65;
  margin: 0 0 18px;
  font-weight: 500;
}
.card-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.card-link:hover { gap: 14px; color: var(--cream); }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--ink-2); padding: 56px 32px; text-align: center; }
.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 72px;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 22px;
}
.step-title {
  font-size: 13px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 800;
  color: var(--gold-light); margin-bottom: 14px;
}
.step-desc {
  font-size: 16px; color: var(--cream-2);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- OFFER LIST ---------- */
.offer-card {
  max-width: 680px; margin: 0 auto;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  padding: 56px 56px 44px;
  position: relative;
}
.offer-card::before, .offer-card::after { content: ""; position: absolute; width: 36px; height: 36px; border: 1px solid var(--gold); }
.offer-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.offer-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li {
  display: flex; align-items: center;
  gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px; color: var(--cream); font-weight: 600;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list b { color: var(--gold-light); font-weight: 800; }
.check-circle {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%; background: var(--gold-grad);
  display: grid; place-items: center;
}
.check-circle svg { width: 13px; height: 13px; color: #1a1305; }

/* ---------- GUARANTEE ---------- */
.guarantee {
  background: radial-gradient(circle at 50% 0%, rgba(212,168,87,0.08), transparent 60%), var(--ink);
  padding: 110px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.seal {
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: grid; place-items: center;
  position: relative;
}
.seal::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--line-strong); border-radius: 50%; }
.seal-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px; font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; text-align: center;
}
.guarantee h2 { font-size: clamp(40px, 6vw, 64px); margin: 0 0 24px; }
.guarantee p { font-size: 19px; color: var(--cream-2); max-width: 540px; margin: 0 auto; line-height: 1.5; font-weight: 600; }
.guarantee p b { color: var(--cream); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq details[open] summary { color: var(--gold-light); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 26px 40px 26px 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--cream);
  position: relative;
  transition: color .2s;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 28px; font-weight: 300; color: var(--gold);
}
.faq details[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 0 28px;
  color: var(--cream-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
  font-weight: 500;
}

/* ---------- FORM ---------- */
.form-section {
  padding: 110px 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,168,87,0.06), transparent 50%), var(--ink-2);
  border-top: 1px solid var(--line);
}
.form-card {
  max-width: 620px; margin: 0 auto;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 56px 48px;
  position: relative;
}
.form-card::before, .form-card::after { content: ""; position: absolute; width: 50px; height: 50px; border: 1px solid var(--gold); }
.form-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.form-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.form-eyebrow { text-align: center; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.form-h { text-align: center; font-size: clamp(32px, 4.5vw, 48px); margin: 0 0 12px; }
.form-sub { text-align: center; color: var(--cream-2); font-size: 15px; margin: 0 0 36px; font-weight: 500; }
.alert { display: none; }
.alert.is-shown { display: block; padding: 14px 18px; margin-bottom: 20px; background: rgba(212,168,87,0.1); border: 1px solid var(--line-strong); color: var(--gold-light); font-size: 14px; border-radius: 4px; }
.alert.is-shown.is-error { border-color: rgba(220, 90, 90, 0.45); color: #f0c4c4; background: rgba(220, 90, 90, 0.08); }
.alert.is-shown.is-success { border-color: rgba(120, 200, 150, 0.4); color: #c8ead4; background: rgba(120, 200, 150, 0.08); }
.form-row { margin-bottom: 14px; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 17px 18px;
  background: var(--ink-3); border: 1px solid var(--line);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 14px; letter-spacing: 0.06em; font-weight: 600;
  border-radius: 3px; transition: border-color .2s, background .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--mute); letter-spacing: 0.16em; font-weight: 700; text-transform: uppercase; font-size: 12px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); background: var(--ink-4); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23d4a857' d='M6 9L1 4h10z'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center;
  padding-right: 44px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 12px; font-weight: 700;
}
.form-select option { background: var(--ink-3); color: var(--cream); text-transform: none; letter-spacing: 0; font-weight: 500; }
.form-select:valid { color: var(--cream); }
.form-textarea { resize: vertical; min-height: 100px; }
.sms-note { font-size: 11px; color: var(--mute); line-height: 1.6; margin: 18px 0 12px; font-weight: 500; }
.sms-note a { color: var(--gold-light); text-decoration: underline; }
.sms-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; font-size: 12px; color: var(--cream-2); line-height: 1.55; font-weight: 500; }
.sms-row input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-submit {
  width: 100%; padding: 22px;
  background: var(--gold-grad); color: #1a1305;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  box-shadow: 0 12px 40px -12px rgba(212,168,87,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform .22s, box-shadow .22s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -12px rgba(212,168,87,0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
.form-secure { text-align: center; margin-top: 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--mute); }
.form-secure span { color: var(--gold); margin: 0 6px; }

.form-section.funnel-promoted-top {
  padding-top: 28px;
  border-top: none;
}
.form-input[readonly] {
  cursor: default;
  color: var(--cream-2);
  background: var(--ink-2);
}
.funnel-step { display: none; }
.funnel-step.is-active {
  display: block;
  animation: funnelStepFade 0.55s ease both;
}
@keyframes funnelStepFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-card {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Thank-you page: floating scroll cue below maps link on “We received your request” card */
.page-estimate-thank-you section.s .thanks-card .thank-you-funnel-float-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 22px auto 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  color: #1a1305;
  background: var(--gold-grad);
  box-shadow:
    0 10px 32px -8px rgba(212, 168, 87, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: thankYouFunnelArrowBob 1.75s ease-in-out infinite;
  transition: box-shadow 0.2s ease;
}
.page-estimate-thank-you section.s .thanks-card .thank-you-funnel-float-arrow:hover {
  box-shadow:
    0 14px 40px -8px rgba(212, 168, 87, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.page-estimate-thank-you section.s .thanks-card .thank-you-funnel-float-arrow:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
@keyframes thankYouFunnelArrowBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-estimate-thank-you section.s .thanks-card .thank-you-funnel-float-arrow {
    animation: none;
  }
}
.video-frame {
  position: relative;
  margin: 8px 0 28px;
  background: #000;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(212, 168, 87, 0.08);
}
.video-frame video {
  display: block;
  width: 100%;
  max-height: 70vh;
  background: #000;
}
.video-continue-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  z-index: 2;
  margin: 0;
  padding: 16px 18px;
}
.video-play-gate {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 20px;
  border: none;
  cursor: pointer;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.62);
  transition: background 0.2s ease;
}
.video-play-gate:hover {
  background: rgba(0, 0, 0, 0.48);
}
.video-play-gate:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}
.video-play-gate[hidden] {
  display: none !important;
}
.funnel-video-gate-hint {
  text-align: center;
  font-size: 13px;
  color: var(--cream-2);
  margin: 12px 0 0;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.funnel-video-gate-hint.funnel-video-gate-hint--met {
  color: var(--gold-light);
}
.form-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}
.video-play-gate-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}

/* ---------- GALLERY ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream-2);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s;
}
.gallery-filter:hover { border-color: var(--gold); color: var(--cream); }
.gallery-filter.is-active {
  background: var(--gold-grad);
  border-color: transparent;
  color: #1a1305;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  cursor: pointer;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.gallery-item img,
.gallery-item .gallery-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 50%, var(--ink-3) 100%);
  position: relative;
}
.gallery-placeholder svg {
  width: 80px; height: 80px;
  color: var(--line-strong);
  opacity: 0.4;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.3;
}
.gallery-label span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.gallery-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

/* ---------- TWO-COL (contact, about) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.info-block { display: flex; flex-direction: column; gap: 32px; }
.info-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.info-item p { margin: 0; font-size: 16px; color: var(--cream-2); line-height: 1.7; font-weight: 500; }
.info-item a { color: var(--cream); border-bottom: 1px solid var(--line); transition: border-color .2s, color .2s; }
.info-item a:hover { color: var(--gold-light); border-color: var(--gold); }
.info-phone {
  font-family: 'Fraunces', serif;
  font-size: 32px !important;
  font-weight: 800;
  color: var(--cream) !important;
  border-bottom: none !important;
  line-height: 1 !important;
}
.info-phone:hover { color: var(--gold-light) !important; }

.map-frame {
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink-3);
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.8) brightness(0.85) hue-rotate(15deg);
}

/* ---------- ABOUT / TIMELINE ---------- */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 64px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 12px; top: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-year {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.timeline-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 10px;
}
.timeline-body {
  font-size: 15px;
  color: var(--cream-2);
  line-height: 1.65;
  font-weight: 500;
}

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-item { text-align: center; padding: 24px 12px; }
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.value-icon::before { content: ""; position: absolute; inset: 4px; border: 1px solid var(--line); border-radius: 50%; }
.value-icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.value-title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  margin: 0 0 10px;
  color: var(--cream);
}
.value-desc { font-size: 14px; color: var(--cream-2); line-height: 1.65; margin: 0; font-weight: 500; }

/* ---------- SERVICE BLOCK (services page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block:nth-child(even) .service-visual { order: -1; }
.service-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.service-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--cream);
}
.service-lead {
  font-size: 17px;
  color: var(--cream-2);
  line-height: 1.65;
  margin: 0 0 28px;
  font-weight: 500;
}
.service-includes { list-style: none; padding: 0; margin: 0 0 32px; }
.service-includes li {
  display: flex; align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--cream);
  font-weight: 600;
}
.service-includes li:last-child { border-bottom: none; }
.service-includes .check-circle { width: 22px; height: 22px; }
.service-includes .check-circle svg { width: 11px; height: 11px; }

.service-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212,168,87,0.08), transparent 60%);
}
.service-visual svg {
  width: 50%; height: 50%;
  color: var(--line-strong);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.service-visual--photo {
  display: block;
  padding: 0;
}
.service-visual--photo::before {
  display: none;
}
.service-visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ---------- FOOTER ---------- */
.foot { background: var(--ink); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.foot h4 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foot p { font-size: 14px; color: var(--cream-2); line-height: 1.7; margin: 0 0 8px; font-weight: 500; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 8px; }
.foot ul a { font-size: 14px; color: var(--cream-2); transition: color .2s; }
.foot ul a:hover { color: var(--gold-light); }
.foot .foot-phone { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 800; color: var(--cream); }
.foot .foot-phone:hover { color: var(--gold-light); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mute); font-weight: 700;
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom a { color: var(--mute); margin-left: 24px; }
.foot-bottom a:hover { color: var(--gold-light); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .service-block:nth-child(even) .service-visual { order: 0; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-cell:nth-child(2) { border-right: none; }
  .proof-cell:nth-child(1), .proof-cell:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
  .proof-cell:nth-child(3), .proof-cell:nth-child(4) { padding-top: 28px; }
  .steps { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 24px;
    gap: 20px;
  }
  .nav-toggle { display: grid; place-items: center; }
}
@media (max-width: 640px) {
  .hero { padding: 70px 0 60px; }
  section.s, .guarantee, .form-section { padding: 80px 0; }
  .offer-card { padding: 40px 28px 30px; }
  .offer-list li { font-size: 16px; gap: 14px; padding: 16px 0; }
  .form-card { padding: 40px 24px; }
  .form-split { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .trust-row { gap: 14px; font-size: 10px; }
  .trust-dot { display: none; }
  .cta-row { flex-direction: column; gap: 6px; }
  .btn-gold { width: 100%; justify-content: center; padding: 20px 24px; }
  .card-grid-3, .card-grid-4, .card-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline-item { padding-left: 48px; }
  .timeline::before { left: 12px; }
  .timeline-dot { left: 4px; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: rise .8s ease both; }
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3) { animation-delay: .25s; }
.hero-inner > *:nth-child(4) { animation-delay: .35s; }
.hero-inner > *:nth-child(5) { animation-delay: .45s; }

/* ---------- Gallery lightbox ---------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-modal[hidden] { display: none !important; }
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}
.gallery-modal-panel {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}
.gallery-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--ink-3);
  color: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-modal-close:hover { border-color: var(--gold); color: var(--gold-light); }
.gallery-modal-inner { padding: 48px 28px 32px; text-align: center; }
.gallery-modal-inner .gallery-placeholder {
  aspect-ratio: 16 / 10;
  max-height: 52vh;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0 auto 24px;
}
.gallery-modal-caption {
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin: 0;
}
.gallery-modal-hint {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 16px;
  font-weight: 700;
}
body.gallery-modal-open { overflow: hidden; }

/* ---------- Legal / simple prose ---------- */
.legal-prose { max-width: 720px; margin: 0 auto; }
.legal-prose h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--cream);
  margin: 40px 0 14px;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h2:first-of-type {
  margin-top: 8px;
}
.legal-prose p, .legal-prose li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-2);
  font-weight: 500;
  margin: 0 0 16px;
}
.legal-prose ul { padding-left: 22px; margin: 0 0 16px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--gold-light); text-decoration: underline; }
.legal-prose a:hover { color: var(--gold); }
.legal-prose .legal-meta {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mute);
  margin: 0 0 28px;
  text-align: center;
}
.legal-prose .legal-disclaimer {
  font-size: 14px;
  color: var(--mute);
  margin-top: 28px;
  font-style: italic;
}

/* ---------- Resource guides (insurance, post-storm checklist) ---------- */
.page-resource-guide .guide-intro {
  max-width: 72ch;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--cream-2);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}
.page-resource-guide .guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.page-resource-guide .guide-grid + .guide-grid {
  margin-top: 24px;
}
@media (max-width: 860px) {
  .page-resource-guide .guide-grid {
    grid-template-columns: 1fr;
  }
}
.page-resource-guide .guide-panel {
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 26px;
}
.page-resource-guide .guide-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--cream);
}
.page-resource-guide .guide-panel ol,
.page-resource-guide .guide-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--cream-2);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}
.page-resource-guide .guide-panel li {
  margin-bottom: 10px;
}
.page-resource-guide .guide-panel li:last-child {
  margin-bottom: 0;
}
.page-resource-guide .guide-panel strong {
  color: var(--cream);
  font-weight: 700;
}
.page-resource-guide .guide-footer-note {
  margin-top: 36px;
  text-align: center;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--cream-2);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}
.page-resource-guide .guide-footer-note a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
}
.page-resource-guide .guide-footer-note a:hover {
  color: var(--gold);
}
.page-resource-guide .guide-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Link hub (linktree) ---------- */
.page-linktree .lt-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(24px, env(safe-area-inset-top, 0px)) 0 max(32px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}
.page-linktree .lt-card-surface {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 28px 70px -24px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(212, 168, 87, 0.08);
}
.page-linktree .lt-card-head {
  text-align: center;
  padding: 32px 26px 28px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 130% 90% at 50% 0%, rgba(212, 168, 87, 0.14) 0%, transparent 58%);
}
.page-linktree .lt-card-body {
  padding: 28px 26px 32px;
}
.page-linktree .lt-kicker {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.page-linktree .lt-brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  display: block;
}
.page-linktree .lt-brand-sub {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-linktree .lt-tagline {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--cream-2);
  text-align: center;
}
.page-linktree .lt-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.page-linktree .lt-links .btn-gold,
.page-linktree .lt-links .btn-ghost {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
.page-linktree .lt-links .lt-btn-secondary {
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  padding: 20px 22px;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}
.page-linktree .lt-links .lt-btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 87, 0.07);
  transform: translateY(-2px);
}
.page-linktree .lt-benefits {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border-radius: 4px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--ink-4);
  text-align: left;
}
.page-linktree .lt-benefit-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cream-2);
  line-height: 1.4;
}
.page-linktree .lt-benefit-row:last-child {
  margin-bottom: 0;
}
.page-linktree .lt-check {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 800;
}
.page-linktree .lt-foot {
  margin-top: 22px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mute);
}

/* ---------- Hybrid shell (index + contact): light main, shared dark nav/footer ---------- */
body.page-site-dfw-hybrid {
  margin: 0;
  background: #f5f9ff;
  color: #123b7a;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.page-site-dfw-hybrid::before {
  display: none;
}
body.page-site-dfw-hybrid > main {
  flex: 1 0 auto;
}

/* script.js (GHL estimate) toggles .alert.show — match legacy styles.css */
.alert.show {
  display: block;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(212, 168, 87, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--gold-light);
  font-size: 14px;
  border-radius: 4px;
}

/* Google reviews row (home / city-style hero) */
.trust-row-reviews {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-row-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.trust-row-reviews-link:hover {
  color: var(--gold-light);
}
.trust-row-reviews-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- Thank-you (standalone estimate-thank-you.html; matches DFW funnel thanks card) ---------- */
.form-h.display em,
.thanks-card .form-h em {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thanks-card {
  text-align: center;
  padding: 64px 48px;
}
.thanks-seal {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px -10px rgba(212, 168, 87, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  animation: thanksSealPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
@keyframes thanksSealPop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.thanks-seal svg {
  width: 36px;
  height: 36px;
  color: #1a1305;
}
.thanks-phone {
  margin-top: 28px;
  font-size: 14px;
  color: var(--mute);
  letter-spacing: 0.04em;
}
.thanks-phone a {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--gold-light);
  margin-left: 6px;
}
.thanks-phone a:hover {
  color: var(--cream);
}
.thanks-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .thanks-card {
    padding: 44px 24px;
  }
}
