/* =========================================================
   Sloan Bail Bonding — Design System
   Palette: Deep navy + warm gold + ivory
   Type: Fraunces (display) + Inter Tight (UI/body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0a1838;
  --navy-800: #102050;
  --navy-700: #1a2d6b;
  --navy-600: #2540a0;
  --brand-blue: #1a1f8c;
  --brand-blue-light: #2a35b8;
  --gold-500: #c9a24a;
  --gold-400: #d9b974;
  --gold-300: #e8d29a;
  --ivory:    #f7f2e8;
  --ivory-2:  #efe7d3;
  --paper:    #fbf8f1;
  --ink:      #14202e;
  --muted:    #5b6b7d;
  --line:     #d8cdb6;
  --danger:   #b03a2e;
  --shadow-sm: 0 2px 6px rgba(10,24,56,0.08);
  --shadow-md: 0 12px 32px rgba(10,24,56,0.12);
  --shadow-lg: 0 24px 60px rgba(10,24,56,0.20);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.1;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; }

p { margin-bottom: 1.05em; color: #2a3a4d; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-500); }

/* Eyebrow / kicker */
.kicker {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-block;
  margin-bottom: 1rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 12px;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--ivory);
  font-size: 0.84rem;
  padding: 0.55rem 0;
  letter-spacing: 0.02em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar a { color: var(--gold-300); font-weight: 600; }
.topbar a:hover { color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(251, 248, 241, 0.92);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 4px;
  border: 1px solid var(--ivory);
  border-radius: 50%;
}
.logo-mark span {
  font-family: 'Fraunces', serif;
  color: var(--ivory);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text strong {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.logo-text small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-top: 4px;
  font-weight: 600;
}

/* ---------- Nav ---------- */
nav.primary ul { list-style: none; display: flex; gap: 0.4rem; align-items: center; }
nav.primary li { position: relative; }
nav.primary a {
  display: block; padding: 0.6rem 1rem;
  font-weight: 500; font-size: 0.95rem;
  color: var(--navy-800);
  border-radius: 4px;
}
nav.primary a:hover, nav.primary a.active { color: var(--gold-500); }
nav.primary a.active { font-weight: 600; }

nav.primary li ul {
  position: absolute; top: 100%; left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  flex-direction: column; gap: 0;
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .2s;
}
nav.primary li:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
nav.primary li ul li { width: 100%; }
nav.primary li ul a { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy-900);
  margin: 5px 0; transition: all .25s;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  nav.primary { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-top: 1px solid var(--line); box-shadow: var(--shadow-md); }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; align-items: stretch; padding: 0.5rem 1rem 1.5rem; gap: 0; }
  nav.primary a { padding: 0.85rem 0; border-bottom: 1px solid rgba(216,205,182,0.5); }
  nav.primary li ul {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 0 1rem;
  }
  nav.primary li ul a { font-size: 0.88rem; padding: 0.55rem 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .25s ease;
}
.btn-primary {
  background: var(--gold-500); color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(201,162,74,0.35);
}
.btn-primary:hover { background: var(--gold-400); color: var(--navy-900); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(201,162,74,0.45); }
.btn-outline {
  background: transparent; color: var(--ivory); border-color: rgba(247,242,232,0.4);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-dark { background: var(--navy-900); color: var(--ivory); }
.btn-dark:hover { background: var(--navy-800); color: var(--gold-400); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(140deg, rgba(11,26,44,0.92) 0%, rgba(18,36,56,0.85) 50%, rgba(26,49,72,0.78) 100%),
    url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--ivory);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero { padding: 2.5rem 0 3rem; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(201,162,74,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }
.hero h1 { color: var(--ivory); margin-bottom: 1rem; line-height: 1.05; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.05rem; color: rgba(247,242,232,0.85);
  max-width: 540px; margin-bottom: 1.75rem;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stat-card {
  background: rgba(11,26,44,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,74,0.3);
  padding: 1.75rem 1.75rem;
  border-radius: 4px;
  position: relative;
}
.hero-stat-card::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 3px; background: var(--gold-500);
}
.stat-row {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(216,205,182,0.18);
}
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-of-type { padding-top: 0.5rem; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(247,242,232,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.since-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,162,74,0.15);
  border: 1px solid rgba(201,162,74,0.35);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.since-badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--gold-400); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201,162,74,0.2);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Page header (interior) ---------- */
.page-header {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.page-header::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    linear-gradient(90deg, var(--navy-900), transparent 10%),
    url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=1200&q=80') center/cover;
  opacity: 0.2;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--ivory); max-width: 780px; }
.page-header .breadcrumbs {
  font-size: 0.85rem;
  color: rgba(247,242,232,0.65);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.page-header .breadcrumbs a { color: var(--gold-400); }

/* ---------- Section heading ---------- */
.section-heading { margin-bottom: 3rem; max-width: 740px; }
.section-heading p {
  font-size: 1.08rem;
  color: var(--muted);
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  position: relative;
  transition: all .3s;
}
.feature-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card .num {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* ---------- Two-column content split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }
.split-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-800);
  overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}
.split-image::after {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid var(--gold-400);
  pointer-events: none;
}

/* ---------- Info block (alternating) ---------- */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.info-block:last-child { margin-bottom: 0; }
.info-block.reverse > div:first-child { order: 2; }
@media (max-width: 880px) {
  .info-block { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .info-block.reverse > div:first-child { order: initial; }
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 1.5rem 0; }
.checklist li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 1.2rem;
  width: 18px; height: 10px;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

/* Bullet list with subtle markers */
.dot-list { list-style: none; }
.dot-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 1rem;
}
.dot-list li::before {
  content: "";
  position: absolute; left: 0; top: 1rem;
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: var(--navy-900);
  color: var(--ivory);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,162,74,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(201,162,74,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.cta-strip .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  position: relative;
}
.cta-strip h2 { color: var(--ivory); margin-bottom: 0.4rem; max-width: 700px; }
.cta-strip p { color: rgba(247,242,232,0.75); margin: 0; font-size: 1.08rem; }
.cta-strip .btn-primary { flex-shrink: 0; }

/* Inline CTA card */
.inline-cta {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-2) 100%);
  border-left: 4px solid var(--gold-500);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap;
}
.inline-cta h3 { margin-bottom: 0.2rem; }
.inline-cta p { color: var(--muted); margin: 0; }

/* ---------- Areas grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.area-tile {
  background: var(--paper);
  padding: 2rem 1.75rem;
  display: block;
  transition: all .25s;
  position: relative;
}
.area-tile:hover { background: var(--ivory); }
.area-tile h4 {
  margin-bottom: 0.3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.area-tile h4::after {
  content: "→"; color: var(--gold-500);
  transition: transform .25s;
  font-family: 'Inter Tight';
  font-weight: 400;
}
.area-tile:hover h4::after { transform: translateX(4px); }
.area-tile p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Quote / Pull / Notes ---------- */
.callout {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy-700);
  position: relative;
}
.callout::before {
  content: "";
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--gold-400);
  position: absolute; top: -8px; left: 12px;
  line-height: 1;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field {
  display: flex; flex-direction: column;
  margin-bottom: 1.25rem;
}
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}
.field input, .field textarea, .field select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,74,0.15);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  background: var(--paper);
  padding: 2.25rem 1.75rem;
  position: relative;
}
.step .step-num {
  font-family: 'Fraunces', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(247,242,232,0.75);
  padding: 4.5rem 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h5 {
  font-family: 'Fraunces', serif;
  color: var(--gold-400);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: rgba(247,242,232,0.7);
  font-size: 0.93rem;
}
.site-footer a:hover { color: var(--gold-400); }

.footer-brand .logo-mark { background: var(--navy-700); }
.footer-brand .logo-img {
  height: 56px;
  width: auto;
  opacity: 0.95;
}
.footer-brand .logo-text strong { color: var(--ivory); }
.footer-brand p {
  color: rgba(247,242,232,0.65);
  font-size: 0.93rem;
  margin: 1.25rem 0;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-contact a {
  color: var(--gold-400);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: 'Fraunces', serif;
}
.footer-hours { font-size: 0.88rem; color: rgba(247,242,232,0.55); }

.socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(247,242,232,0.2);
  display: grid; place-items: center;
  border-radius: 50%;
  transition: all .25s;
}
.social-link:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: var(--ivory); transition: fill .25s; }
.social-link:hover svg { fill: var(--navy-900); }

/* ---------- Footer payments strip ---------- */
.footer-payments {
  border-top: 1px solid rgba(247,242,232,0.1);
  border-bottom: 1px solid rgba(247,242,232,0.1);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-payments .label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
}
.payment-icons {
  display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap;
}
.payment-strip {
  height: 32px;
  width: auto;
  max-width: 100%;
  display: block;
  border-radius: 3px;
}
.payment-icons .pay {
  height: 28px; width: 44px;
  background: rgba(247,242,232,0.08);
  border: 1px solid rgba(247,242,232,0.15);
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
  transition: all .25s;
}
.payment-icons .pay:hover { background: rgba(201,162,74,0.15); border-color: var(--gold-500); color: var(--gold-300); }
.payment-icons .pay svg { width: 22px; height: 14px; }

/* Trust badges row */
.trust-badges {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.7);
  font-weight: 600;
}
.trust-badge::before {
  content: ""; width: 6px; height: 6px;
  background: var(--gold-400); border-radius: 50%;
}

.footer-bottom {
  border-top: 1px solid rgba(247,242,232,0.1);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247,242,232,0.5);
}
.footer-bottom a { color: rgba(247,242,232,0.6); }

/* ---------- Decorative ---------- */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem 0;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line);
}
.divider span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-500);
  font-size: 1.1rem;
}

/* ---------- Map block ---------- */
.map-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.75rem 2rem;
}
.map-card h4 { margin-bottom: 0.3rem; }
.map-card .addr { color: var(--muted); font-size: 0.95rem; }
.map-card a.locator {
  display: inline-block; margin-top: 0.75rem;
  font-weight: 600; color: var(--gold-500);
  border-bottom: 1px solid var(--gold-300);
}

/* ---------- Phone ribbon for mobile (sticky CTA) ---------- */
.mobile-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.85rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-call:hover { color: var(--navy-900); }
@media (max-width: 600px) {
  .mobile-call { display: block; }
  body { padding-bottom: 56px; }
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.bg-ivory { background: var(--ivory); }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy-900); color: var(--ivory); }
.bg-navy h2, .bg-navy h3 { color: var(--ivory); }
.bg-navy .kicker { color: var(--gold-400); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0; transform: translateY(20px);
    animation: reveal .8s ease forwards;
  }
  .reveal-2 { animation-delay: .15s; }
  .reveal-3 { animation-delay: .3s; }
  .reveal-4 { animation-delay: .45s; }
  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }
}
