/* =========================================================
   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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 200;
  padding: 0.65rem 1.2rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: 2px;
}
.skip-link:focus {
  left: 1rem;
  outline: 3px solid var(--ivory);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.menu-toggle:focus-visible,
.mobile-call:focus-visible {
  outline: 3px solid rgba(201,162,74,0.85);
  outline-offset: 2px;
}

/* ---------- 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: 5.5rem 0; }
@media (max-width: 768px) { section { padding: 4rem 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('../images/courtroom.webp') 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-cta-line {
  font-size: 1.1rem;
  font-weight: 600;
  margin: -0.25rem 0 1rem;
  color: var(--gold-400);
  letter-spacing: 0.02em;
}
.hero-cta-line a {
  color: var(--ivory);
  text-decoration: none;
}
.hero-cta-line a:hover {
  text-decoration: underline;
  color: var(--gold-400);
}
.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-lede--long {
  max-width: min(42rem, 100%);
}
.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('../images/courtroom.webp') center/cover;
  opacity: 0.2;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--ivory); max-width: min(56rem, 100%); }
.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); }
.page-header-cta {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1rem 0 0;
  max-width: 52rem;
  color: rgba(247,242,232,0.92);
  line-height: 1.45;
}
.page-header-cta a {
  color: var(--gold-400);
  text-decoration: none;
}
.page-header-cta a:hover {
  text-decoration: underline;
  color: var(--ivory);
}

.facility-title {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--navy-900);
  font-family: 'Inter Tight', system-ui, sans-serif;
}

.premium-table {
  width: 100%;
  max-width: 420px;
  border-collapse: collapse;
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
}
.premium-table caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.premium-table th,
.premium-table td {
  border: 1px solid rgba(16, 32, 46, 0.12);
  padding: 0.65rem 1rem;
  text-align: left;
}
.premium-table th {
  background: var(--ivory-2);
  font-weight: 600;
}
.bg-ivory .premium-table th {
  background: rgba(16, 32, 46, 0.06);
}

/* ---------- 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;
}

/* Brief copy + image: avoid portrait box towering over a short text column */
.info-block .split-image.split-image--compact {
  aspect-ratio: 2 / 1;
  max-height: min(260px, 42vw);
}
@media (max-width: 880px) {
  .info-block .split-image.split-image--compact {
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

/* ---------- Info block (alternating) ---------- */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}
.info-block:last-child { margin-bottom: 0; }
.info-block.reverse > div:first-child { order: 2; }

/* Tall copy + photo: image column matches text height (no short portrait box) */
.info-block--stretch-media {
  align-items: stretch;
}
.info-block--stretch-media .split-image {
  aspect-ratio: auto;
  align-self: stretch;
  display: grid;
  grid-template: 1fr / 1fr;
  min-height: 18rem;
}
.info-block--stretch-media .split-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 880px) {
  .info-block { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
  .info-block.reverse > div:first-child { order: initial; }
  .info-block--stretch-media .split-image {
    min-height: 14rem;
    max-height: 22rem;
    aspect-ratio: 16 / 10;
  }
  .info-block--stretch-media .split-image img {
    height: 100%;
  }
}

/* ---------- 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--split .container {
  align-items: flex-end;
}
.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .cta-strip-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.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;
}
.area-tile--static {
  cursor: default;
}
.area-tile--static:hover {
  background: var(--paper);
}
.area-tile--static h4::after {
  content: none;
}
.area-tile-links,
.area-tile-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}
.area-tile-links a,
.area-tile-note a {
  font-weight: 600;
  color: var(--navy-800);
}
.area-tile-links a:hover,
.area-tile-note a:hover {
  color: var(--gold-500);
}

.hero-actions-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.service-area-local-block {
  margin: 2.25rem 0;
  max-width: 900px;
}
.service-area-local-block h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  color: var(--navy-900);
}
.service-area-local-block.bg-inline {
  background: linear-gradient(135deg, rgba(247,242,232,0.65) 0%, var(--ivory-2) 100%);
  border: 1px solid rgba(16, 32, 46, 0.08);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}
.section-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 720px;
}

.table-scroll {
  overflow-x: auto;
  margin: 1.25rem 0 0;
  -webkit-overflow-scrolling: touch;
}
.service-area-facility-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.service-area-facility-table th,
.service-area-facility-table td {
  border: 1px solid rgba(16, 32, 46, 0.12);
  padding: 0.65rem 0.9rem;
  text-align: left;
  vertical-align: top;
}
.service-area-facility-table th {
  background: var(--ivory-2);
  font-weight: 600;
}
.bg-ivory .service-area-facility-table th {
  background: rgba(16, 32, 46, 0.06);
}

/* ---------- 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; }
.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  font-size: 0.92rem;
  color: var(--navy-700);
  margin-bottom: 0.75rem;
  min-height: 1.25em;
}

.hero-cta-call {
  font-size: 1.08rem;
  padding: 1.15rem 2.4rem;
  box-shadow: 0 6px 22px rgba(201,162,74,0.45);
}
.hero-phone-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 0.35rem;
}

.quick-answer-box {
  background: linear-gradient(135deg, rgba(247,242,232,0.95) 0%, var(--ivory-2) 100%);
  border-left: 4px solid var(--gold-500);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.quick-answer-box .kicker { margin-bottom: 0.65rem; }
.quick-answer-box h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.6rem;
}
.quick-answer-box p { margin-bottom: 0; color: var(--muted); font-size: 1.02rem; }
.quick-answer-box--inline { margin-top: 1.5rem; }

.process-flowchart {
  margin: 2rem 0;
  max-width: 100%;
}
.process-flowchart svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.service-grid-section { margin-bottom: 3rem; }
.service-grid-section:last-of-type { margin-bottom: 0; }
.service-grid-section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--navy-900);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem 1.25rem;
}
.service-grid-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.service-grid-item:hover {
  border-color: rgba(201,162,74,0.45);
  box-shadow: var(--shadow-sm);
}
.service-grid-icon-img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--gold-500);
}
.service-grid-title {
  display: block;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}
.service-grid-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.service-grid-footnote {
  margin-top: 1.75rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.trust-author {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 880px) {
  .trust-author { grid-template-columns: 1fr; text-align: center; }
  .trust-author-body .kicker::before { display: none; }
}
.trust-author-photo {
  margin: 0;
  aspect-ratio: 1;
  max-width: 220px;
  width: 100%;
  margin-inline: auto;
  border: 2px solid rgba(201, 162, 74, 0.45);
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(10, 24, 56, 0.18),
    inset 0 0 0 1px rgba(247, 242, 232, 0.08);
  background: var(--navy-900);
}
@media (min-width: 881px) {
  .trust-author-photo {
    margin-inline: 0;
  }
}
.trust-author-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trust-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy-700);
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-500);
}

.areas-grid--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: transparent;
  border: none;
}
@media (max-width: 960px) {
  .areas-grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .areas-grid--cards { grid-template-columns: 1fr; }
}
.area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.area-card:hover {
  border-color: rgba(201,162,74,0.5);
  box-shadow: var(--shadow-sm);
}
.area-card-icon { margin-bottom: 0.25rem; }
.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}
.area-card h3 a { color: var(--navy-900); }
.area-card h3 a:hover { color: var(--gold-500); }
.area-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.area-card-cta {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-500);
  margin-top: 0.35rem;
}
.area-card-cta:hover { color: var(--navy-700); }

.call-checklist {
  background: var(--paper);
  border: 1px dashed var(--gold-400);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}
.call-checklist-title {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
}
.call-checklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.call-checklist-items li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
}
.call-checklist-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.testimonials-section .section-heading { margin-bottom: 2rem; }

.g-reviews-wrap {
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
  overflow: visible;
  max-width: 100%;
  margin: 0 auto;
}

.g-reviews-slider {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.5rem 0.35rem 0.65rem;
}

.g-reviews-btn {
  flex-shrink: 0;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid #dadce0;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  color: #1a73e8;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.g-reviews-btn:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #c9a24a;
  color: #0a1838;
}
.g-reviews-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.g-reviews-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 0.35rem 2px 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}
@media (prefers-reduced-motion: reduce) {
  .g-reviews-viewport { scroll-behavior: auto; }
}
.g-reviews-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.g-reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 2px 4px 6px;
  min-height: 100%;
}

.g-review-card {
  --reviews-row: min(1140px, calc(100vw - 3rem));
  flex: 0 0 min(320px, calc(var(--reviews-row) - 5.5rem));
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  padding: 1.1rem 1.15rem 1.25rem;
  margin: 0;
  background: #fff;
  border: 1px solid #eceff1;
  border-radius: 6px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .g-review-card {
    flex: 0 0 calc((var(--reviews-row) - 5.5rem - 1rem) / 2);
  }
}
@media (min-width: 900px) {
  .g-review-card {
    flex: 0 0 calc((var(--reviews-row) - 5.5rem - 2rem) / 3);
  }
}
@media (min-width: 1200px) {
  .g-review-card {
    flex: 0 0 calc((var(--reviews-row) - 5.5rem - 3rem) / 4);
  }
}
.g-review-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}
.g-review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--avatar, #1a73e8);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  font-family: 'Inter Tight', system-ui, sans-serif;
}
.g-review-head-text { min-width: 0; flex: 1; }
.g-review-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.15rem;
}
.g-review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #202124;
  font-family: 'Inter Tight', system-ui, sans-serif;
}
.g-review-date {
  font-size: 0.78rem;
  color: #5f6368;
}
.g-review-stars {
  display: flex;
  gap: 1px;
  line-height: 1;
}
.g-review-stars .g-star {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0;
}
.g-review-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #3c4043;
  font-family: 'Inter Tight', system-ui, sans-serif;
}

.testimonials-google-link {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}
.testimonials-google-link a {
  font-weight: 600;
  color: #1a73e8;
  font-size: 0.95rem;
}
.testimonials-google-link a:hover {
  text-decoration: underline;
  color: #174ea6;
}

.footer-nap {
  border-bottom: 1px solid rgba(247,242,232,0.12);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-nap-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 880px) {
  .footer-nap-inner { grid-template-columns: 1fr; }
}
.footer-nap h2 {
  font-family: 'Fraunces', serif;
  color: var(--ivory);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.footer-nap .nap-line {
  margin-bottom: 0.45rem;
  font-size: 0.96rem;
}
.footer-nap .nap-line strong { color: var(--gold-400); font-weight: 600; }
.footer-nap iframe {
  width: 100%;
  min-height: 220px;
  border: 1px solid rgba(247,242,232,0.15);
  border-radius: 4px;
}
.footer-nap-review {
  margin-top: 1rem;
}
.footer-nap-review a {
  font-weight: 600;
  color: var(--gold-400);
}

/* ---------- 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: 1rem 0.85rem;
  min-height: 52px;
  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); }
  }
}
