/* ============================================================
   Gulf Breeze Transmission — styles.css
   Design system: Clay Guidelines (cream canvas, saturated cards,
   rounded display type, warm-throughout palette)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Recoleta:wght@500&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --canvas:              #fffaf0;
  --surface-soft:        #faf5e8;
  --surface-card:        #f5f0e0;
  --surface-strong:      #ebe6d6;
  --hairline:            #e5e5e5;
  --primary:             #0a0a0a;
  --ink:                 #0a0a0a;
  --body-strong:         #1a1a1a;
  --body:                #3a3a3a;
  --muted:               #6a6a6a;
  --muted-soft:          #9a9a9a;
  --on-primary:          #ffffff;

  /* Brand palette */
  --brand-pink:          #ff4d8b;
  --brand-teal:          #1a3a3a;
  --brand-lavender:      #b8a4ed;
  --brand-peach:         #ffb084;
  --brand-ochre:         #e8b94a;
  --brand-mint:          #a4d4c5;
  --brand-coral:         #ff6b5a;

  /* Semantic */
  --success:             #22c55e;
  --warning:             #f59e0b;
  --error:               #ef4444;

  /* Radius */
  --r-xs:   6px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Spacing */
  --sp-xxs:     4px;
  --sp-xs:      8px;
  --sp-sm:      12px;
  --sp-md:      16px;
  --sp-lg:      24px;
  --sp-xl:      32px;
  --sp-xxl:     48px;
  --sp-section: 12px;

  /* Typography */
  --font-display: 'Recoleta', 'Georgia', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
}

/* ── Typography Helpers ───────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.title-lg { font-size: 24px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.title-md { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.title-sm { font-size: 16px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.body-md  { font-size: 16px; font-weight: 400; line-height: 1.55; color: var(--body); }
.body-sm  { font-size: 14px; font-weight: 400; line-height: 1.55; color: var(--muted); }
.caption  { font-size: 13px; font-weight: 500; line-height: 1.4; }
.caption-upper {
  font-size: 12px; font-weight: 600; line-height: 1.4;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--sp-lg); }
}

.section { padding: var(--sp-section) 0; }
.section--soft { background: var(--surface-soft); }
.section--strong { background: var(--surface-strong); }

/* ── Top Navigation ───────────────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}
.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-lg) var(--sp-xl) var(--sp-xl);
  z-index: 99;
  flex-direction: column;
  gap: var(--sp-md);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--body);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline);
}
.nav-mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links,
  .nav-cta-group .btn-primary { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-primary:hover  { opacity: 0.85; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 3px solid var(--brand-ochre); outline-offset: 2px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--hairline);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-secondary:hover  { background: var(--surface-card); border-color: var(--muted-soft); }
.btn-secondary:active { transform: scale(0.98); }
.btn-secondary:focus-visible { outline: 3px solid var(--brand-ochre); outline-offset: 2px; }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  background: var(--brand-coral);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  height: 52px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-call:hover  { opacity: 0.88; }
.btn-call:active { transform: scale(0.98); }
.btn-call:focus-visible { outline: 3px solid var(--brand-ochre); outline-offset: 2px; }

.btn-on-color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn-on-color:hover  { opacity: 0.88; }
.btn-on-color:active { transform: scale(0.98); }

/* ── Badge Pills ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--surface-card);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
}
.badge--coral { background: #fff3f2; color: var(--brand-coral); border-color: #ffd5d1; }
.badge--mint  { background: #eef8f5; color: #3a9b82; border-color: #c5e8df; }
.badge--ochre { background: #fef9ec; color: #a07a00; border-color: #f5e1a0; }

/* ── Hero Band ────────────────────────────────────────────── */
.hero-band {
  padding: var(--sp-section) 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-xl);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: var(--sp-lg); }
.hero-badge-row { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.hero-subhead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body);
  max-width: 540px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 13px;
  color: var(--muted);
}
.hero-trust-dot {
  width: 5px; height: 5px;
  background: var(--brand-mint);
  border-radius: 50%;
}

/* Hero illustration card */
.hero-image-card {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.hero-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-image-card:hover img { transform: scale(1.03); }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,26,0.5) 0%, transparent 60%);
}
.hero-image-caption {
  position: absolute;
  bottom: var(--sp-lg);
  left: var(--sp-lg);
  right: var(--sp-lg);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

/* Tow offer strip */
.tow-strip {
  background: var(--brand-ochre);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-sm);
  flex-wrap: wrap;
}
.tow-strip-icon { font-size: 22px; }
.tow-strip-text { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.tow-strip-text span { display: block; font-weight: 400; color: var(--body-strong); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-card { max-height: 360px; }
}
@media (max-width: 768px) {
  .hero-band { padding: 12px 0 var(--sp-section); }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}

/* ── Feature Cards ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); }

.feature-card--peach   { background: var(--brand-peach); }
.feature-card--teal    { background: var(--brand-teal); }
.feature-card--lavender{ background: var(--brand-lavender); }
.feature-card--ochre   { background: var(--brand-ochre); }
.feature-card--pink    { background: var(--brand-pink); }
.feature-card--cream   { background: var(--surface-card); border: 1px solid var(--hairline); }

.feature-card--teal .fc-title,
.feature-card--teal .fc-body,
.feature-card--teal .fc-icon,
.feature-card--pink .fc-title,
.feature-card--pink .fc-body,
.feature-card--pink .fc-icon { color: #fff; }

.feature-card--teal .fc-body,
.feature-card--pink .fc-body { opacity: 0.85; }

.fc-icon { font-size: 28px; margin-bottom: var(--sp-xs); }
.fc-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.fc-body  { font-size: 15px; line-height: 1.6; color: var(--body); }

/* ── Lead Form ────────────────────────────────────────────── */
.form-band {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-section) var(--sp-xl);
}
.form-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-intro { display: flex; flex-direction: column; gap: var(--sp-lg); }
.form-intro-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.form-intro-image img { width: 100%; height: 100%; object-fit: cover; }
.form-intro-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,26,0.45) 0%, transparent 55%);
}

.form-card {
  background: var(--canvas);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  border: 1px solid var(--hairline);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: var(--sp-xs); }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-strong);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 10px 14px;
  height: 44px;
  font-size: 15px;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
}
.form-group textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-soft); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a6a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-submit-row { grid-column: 1 / -1; margin-top: var(--sp-sm); }
.form-submit-row .btn-primary { width: 100%; height: 50px; font-size: 15px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
}
.form-success-icon { font-size: 48px; }

.form-error-msg {
  display: none;
  color: var(--error);
  font-size: 13px;
  margin-top: var(--sp-xs);
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .form-band-inner { grid-template-columns: 1fr; gap: var(--sp-xxl); }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-band { padding: 12px var(--sp-lg); }
}

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  display: flex;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-sm);
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}
.trust-icon {
  width: 56px; height: 56px;
  background: var(--surface-card);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--hairline);
}
.trust-label { font-size: 15px; font-weight: 600; color: var(--ink); }
.trust-desc  { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── Services Page ────────────────────────────────────────── */
.services-hero {
  background: var(--surface-soft);
  padding: var(--sp-section) 0 0;
}
.services-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: end;
}
.services-hero-image {
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.services-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  padding: var(--sp-section) 0;
  border-bottom: 1px solid var(--hairline);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }

.service-block-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.service-block-image img { width: 100%; height: 100%; object-fit: cover; }
.service-block-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,58,0.25) 0%, transparent 70%);
}

.service-block-content { display: flex; flex-direction: column; gap: var(--sp-lg); }
.service-block-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-coral);
}
.service-list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
}
.service-list-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-mint);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .services-hero-inner { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block--reverse { direction: ltr; }
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 12px var(--sp-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xl);
  margin: 0;
}
.cta-band-text { max-width: 560px; }
.cta-band-text p { font-size: 18px; color: var(--muted); margin-top: var(--sp-md); line-height: 1.6; }
.cta-band-actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; justify-content: center; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-hero {
  padding: var(--sp-section) 0 12px;
  text-align: center;
}
.contact-hero p { font-size: 18px; color: var(--muted); margin-top: var(--sp-md); max-width: 500px; margin-left: auto; margin-right: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}
.contact-info-card {
  background: var(--surface-card);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.info-block { display: flex; flex-direction: column; gap: var(--sp-sm); }
.info-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-coral);
}
.info-block-title { font-size: 17px; font-weight: 600; color: var(--ink); }
.info-block p { font-size: 15px; color: var(--body); line-height: 1.6; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 15px; color: var(--body); vertical-align: top; }
.hours-table td:first-child { font-weight: 600; color: var(--ink); width: 50%; }
.hours-table tr { border-bottom: 1px solid var(--hairline); }
.hours-table tr:last-child { border-bottom: none; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 var(--sp-xxl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--sp-md); }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.footer-brand-desc { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 280px; }
.footer-col-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-md); }
.footer-links { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-links a { font-size: 14px; color: var(--body); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  margin-top: var(--sp-xxl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p { font-size: 13px; color: var(--muted-soft); line-height: 1.5; }
.footer-disclaimer { font-size: 12px; color: var(--muted-soft); max-width: 600px; }

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header { display: flex; flex-direction: column; gap: var(--sp-md); margin-bottom: var(--sp-xxl); }
.section-header--center { align-items: center; text-align: center; }
.section-header p { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.65; }
.section-header--center p { margin: 0 auto; }

/* ── Divider ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--hairline); margin: 0; }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }

/* ── Call Tracking Number ─────────────────────────────────── */
.call-tracking-number { color: inherit; }
/* Call buttons keep their white label (don't inherit surrounding grey) */
.btn-primary.call-tracking-number { color: var(--on-primary); }
.btn-call.call-tracking-number { color: #fff; }

/* ── Form Spinner ─────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ── Fade-in on load ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up--d1 { animation-delay: 0.08s; }
.fade-up--d2 { animation-delay: 0.16s; }
.fade-up--d3 { animation-delay: 0.24s; }
.fade-up--d4 { animation-delay: 0.32s; }
