/* ==========================================================================
   GET ROOFERS — SHARED DESIGN SYSTEM
   Used by: index.html, roof-repairs.html, new-roof.html, future pages.
   Country-agnostic: copy strings are page-level, structure is global.
   ========================================================================== */

:root {
  /* COLOR TOKENS */
  --ink: #0E1B2C;
  --ink-soft: #1B2940;
  --paper: #FAF6EF;
  --paper-warm: #F2EBDC;
  --amber: #E8A33D;
  --amber-deep: #C97F1B;
  --rust: #B23A2E;
  --slate: #5B6B82;
  --slate-light: #95A2B5;
  --line: rgba(14, 27, 44, 0.12);
  --line-strong: rgba(14, 27, 44, 0.2);
  --green: #16a34a;
  --green-bg: #DCFCE7;

  /* SHADOWS */
  --shadow-sm: 0 1px 2px rgba(14, 27, 44, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(14, 27, 44, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(14, 27, 44, 0.35);

  /* SPACING */
  --container-max: 1240px;
  --container-pad: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* ==========================================================================
   TOP STRIP — value-prop bar (shared across all pages)
   ========================================================================== */
.top-strip {
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.top-strip strong { color: var(--amber); font-weight: 600; }
.top-strip .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ==========================================================================
   NAV — shared, sticky
   ========================================================================== */
nav.site-nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(250, 246, 239, 0.92);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  position: relative;
}
.logo-mark::before {
  content: "";
  width: 20px; height: 12px;
  border-top: 3px solid var(--amber);
  border-left: 3px solid var(--amber);
  border-right: 3px solid var(--amber);
  border-radius: 3px 3px 0 0;
  transform: translateY(2px);
}
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: none; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--amber-deep); }
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-phone {
  display: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  margin-right: 16px;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); background: var(--ink-soft); }

/* ==========================================================================
   COMMON SECTION TYPOGRAPHY
   ========================================================================== */
section { padding: 80px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--amber-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  max-width: 720px;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
.section-sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 620px;
  margin-bottom: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--rust); border-radius: 50%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: start; }
}

h1.hero-title {
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 700;
  margin-bottom: 22px;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-deep);
  position: relative;
  white-space: nowrap;
}
h1.hero-title em::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 8px;
  background: var(--amber);
  opacity: 0.25;
  z-index: -1;
}

.hero-sub {
  font-size: 19px;
  color: var(--slate);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.intent-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.intent-pill svg { flex-shrink: 0; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 36px;
}
.trust-item .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .lbl {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 600px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

/* ==========================================================================
   LEAD FORM — single-screen, compact, mobile-first
   ========================================================================== */
.form-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -2px; left: 24px; right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  border-radius: 4px 4px 0 0;
}
.form-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.form-header h2 { font-size: 22px; margin-bottom: 6px; }
.form-header p { color: var(--slate); font-size: 13px; }
.form-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: #166534;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-header .badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* Compact form section grouping */
.form-group {
  margin-bottom: 18px;
}
.form-group-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group-label .num-badge {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  background: var(--ink);
  color: var(--amber);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}

/* Pill option group — for short option sets */
.pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s;
  background: white;
  user-select: none;
}
.pill-option:hover { border-color: var(--ink); }
.pill-option.selected {
  border-color: var(--amber-deep);
  background: var(--ink);
  color: var(--paper);
}
.pill-option .check-ico { display: none; }
.pill-option.selected .check-ico { display: inline-flex; }
.pill-option input[type="radio"] { display: none; }

/* Icon options grid (slightly larger, with icons) */
.icon-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (max-width: 380px) { .icon-options { grid-template-columns: 1fr; } }
.icon-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s;
  background: white;
  user-select: none;
}
.icon-option:hover { border-color: var(--ink); }
.icon-option.selected {
  border-color: var(--amber-deep);
  background: #FFF9F0;
}
.icon-option .ico {
  width: 30px; height: 30px;
  background: var(--paper-warm);
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 15px;
}
.icon-option.selected .ico { background: var(--amber); color: white; }
.icon-option input[type="radio"] { display: none; }

/* Field rows — compact, side-by-side on wider form cards */
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 460px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  transition: border 0.15s;
  width: 100%;
}
.field input:focus { outline: none; border-color: var(--ink); }
.field input.error { border-color: var(--rust); background: #fef2f2; }
.field .optional { text-transform: none; color: var(--slate); font-weight: 400; }
.field .error-msg {
  color: var(--rust);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.field.has-error .error-msg { display: block; }

.btn-primary {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  transition: transform 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-secondary:hover { border-color: var(--ink); background: var(--paper-warm); }

/* Success state replaces the whole form */
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check {
  width: 64px; height: 64px;
  background: var(--green-bg);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
}
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--slate); margin-bottom: 12px; font-size: 15px; }

.form-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--slate);
  flex-wrap: wrap;
}
.form-foot span { display: inline-flex; align-items: center; gap: 5px; }

/* ==========================================================================
   LIVE ACTIVITY POPUP — bottom-left, slide-up animation
   Content (GR_CONFIG.proofs) shows anonymized county-level activity.
   In production: wire to live lead feed — see docs/LAUNCH_CHECKLIST.md.
   ========================================================================== */
.live-proof {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 340px;
  background: white;
  border-radius: 14px;
  padding: 14px 38px 14px 14px;
  overflow: hidden;
  box-shadow:
    0 12px 40px -8px rgba(14, 27, 44, 0.25),
    0 2px 8px rgba(14, 27, 44, 0.08);
  border: 1px solid var(--line);
  z-index: 100;
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.live-proof.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.live-proof .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Fraunces', serif;
  flex-shrink: 0;
  position: relative;
}
.live-proof .avatar::after {
  /* Green live-status dot */
  content: "";
  position: absolute;
  bottom: 0px; right: 0px;
  width: 10px; height: 10px;
  background: #22c55e;
  border: 2px solid white;
  border-radius: 50%;
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.live-proof .body { font-size: 13px; line-height: 1.45; flex: 1; min-width: 0; }
.live-proof .body strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 13.5px;
}
.live-proof .body .meta {
  color: var(--slate);
  font-size: 11.5px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-proof .body .meta::before {
  content: "";
  width: 5px; height: 5px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}
.live-proof .close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-light);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.live-proof .close:hover { color: var(--ink); background: var(--paper-warm); }

/* Roofer van driving across the top of the toast */
.live-proof .drive-strip {
  position: relative;
  height: 22px;
  margin: -4px -14px 8px -14px;
  overflow: hidden;
}
.live-proof .drive-strip .van {
  position: absolute;
  top: 3px;
  white-space: nowrap;
  font-size: 15px;
  animation: drive-across 3.5s linear forwards;
}
.live-proof .drive-strip .van .van-icon {
  display: inline-block;
  transform: scaleX(-1);
}
.live-proof .drive-strip .van .van-trail {
  font-size: 10px;
  margin-left: 2px;
  vertical-align: middle;
  color: var(--amber-deep);
  font-weight: 500;
}
.live-proof .drive-strip .road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
@keyframes drive-across {
  0%   { left: -40px; }
  100% { left: calc(100% + 20px); }
}

/* Gentle bounce on the icon emoji inside the avatar */
.live-proof .avatar .icon-emoji {
  display: inline-block;
  animation: bounce-gentle 2s ease-in-out infinite;
}
@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* Mobile: smaller, full-width minus margins, lower position above sticky CTA */
@media (max-width: 600px) {
  .live-proof {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 12px 36px 12px 12px;
  }
  .live-proof .avatar { width: 36px; height: 36px; font-size: 14px; }
  .live-proof .body strong { font-size: 13px; }
  .live-proof .body .meta { font-size: 11px; }
}

/* ==========================================================================
   GENERIC CARD GRIDS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 760px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: white;
  padding: 32px 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
  counter-increment: step;
}
.step-card::before {
  content: "0" counter(step);
  position: absolute;
  top: -20px; left: 24px;
  background: var(--ink);
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.step-card h3 { font-size: 22px; margin-bottom: 10px; margin-top: 8px; }
.step-card p { color: var(--slate); font-size: 15px; }

.how {
  background: var(--paper-warm);
  position: relative;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,27,44,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,27,44,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.how .container { position: relative; }

.fix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .fix-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .fix-grid { grid-template-columns: repeat(3, 1fr); } }
.fix-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fix-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fix-card .icon {
  width: 48px; height: 48px;
  background: var(--paper-warm);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.fix-card h3 { font-size: 19px; margin-bottom: 8px; }
.fix-card p { color: var(--slate); font-size: 14px; }

.callout-dark {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.callout-dark .ico {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.callout-dark h4 { font-family: 'Fraunces', serif; font-size: 19px; margin-bottom: 4px; font-weight: 600; }
.callout-dark p { font-size: 14px; color: rgba(250, 246, 239, 0.75); }

/* ==========================================================================
   IMAGE GALLERY — for real photos (when you have them)
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(14,27,44,0.85));
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  background: var(--paper-warm);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  gap: 8px;
}
.gallery-placeholder .ph-icon {
  font-size: 28px;
  opacity: 0.4;
}

/* ==========================================================================
   TRUST SECTION — dark variant
   ========================================================================== */
.trust-section { background: var(--ink); color: var(--paper); }
.trust-section .section-eyebrow { color: var(--amber); }
.trust-section .section-title { color: var(--paper); }
.trust-section .section-title em { color: var(--amber); }
.trust-section .section-sub { color: rgba(250, 246, 239, 0.65); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 740px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 26px 22px;
  border-radius: 14px;
}
.trust-block .icon {
  width: 44px; height: 44px;
  background: var(--amber);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 16px;
}
.trust-block h3 { font-family: 'Fraunces', serif; font-size: 19px; margin-bottom: 6px; color: var(--paper); }
.trust-block p { color: rgba(250, 246, 239, 0.65); font-size: 14px; line-height: 1.5; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials .container { max-width: 1100px; }
.t-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 780px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
.t-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--line);
  position: relative;
}
.t-card .stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--amber); }
.t-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 500;
}
.t-card .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  color: var(--amber);
  display: grid; place-items: center;
  font-weight: 700;
}
.t-card .author .name { font-weight: 600; font-size: 14px; }
.t-card .author .loc { font-size: 13px; color: var(--slate); }
.t-card .source-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px;
  color: var(--slate);
  display: flex; align-items: center; gap: 4px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--paper-warm); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper); }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--amber-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA — dark
   ========================================================================== */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,163,61,0.15), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--paper);
  max-width: 720px;
  margin: 0 auto 18px;
}
.final-cta h2 em { color: var(--amber); font-style: italic; font-weight: 500; }
.final-cta p {
  font-size: 19px;
  color: rgba(250, 246, 239, 0.7);
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 17px;
  transition: transform 0.2s;
}
.final-cta-btn:hover { transform: translateY(-2px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: var(--ink);
  color: rgba(250,246,239,0.55);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
footer.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
footer.site-footer .logo { color: var(--paper); font-size: 18px; }
footer.site-footer .logo .logo-mark { background: rgba(255,255,255,0.06); }
footer.site-footer a {
  color: rgba(250,246,239,0.6);
  text-decoration: none;
  margin-left: 18px;
}
footer.site-footer a:hover { color: var(--amber); }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -8px 24px rgba(14,27,44,0.2);
  gap: 10px;
}
.mobile-cta a {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta .call { background: var(--paper); color: var(--ink); }
.mobile-cta .quote { background: var(--amber); color: var(--ink); }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ==========================================================================
   HOMEPAGE: Service picker grid
   ========================================================================== */
.service-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
@media (min-width: 460px) { .service-picker { grid-template-columns: repeat(2, 1fr); } }

.service-tile {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}
.service-tile:hover {
  border-color: var(--amber-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-tile .tile-icon {
  width: 38px; height: 38px;
  background: var(--paper-warm);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 6px;
  transition: background 0.2s;
}
.service-tile:hover .tile-icon { background: var(--amber); }
.service-tile h3 { font-size: 16px; margin-bottom: 2px; }
.service-tile p { color: var(--slate); font-size: 12px; margin-bottom: 6px; flex-grow: 1; line-height: 1.4; }
.service-tile .tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-deep);
  transition: gap 0.2s;
}
.service-tile:hover .tile-arrow { gap: 10px; }
.service-tile.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.service-tile.featured h3 { color: var(--paper); }
.service-tile.featured p { color: rgba(250,246,239,0.7); }
.service-tile.featured .tile-icon { background: var(--amber); }
.service-tile.featured .tile-arrow { color: var(--amber); }
.service-tile .tile-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 100px;
  background: var(--amber);
  color: var(--ink);
}
