/* ====================================================================
   CodeBlue Emergency Services — v2 stylesheet
   Editorial-modern medical landing page.
   - Geist for display, Inter for body (Google Fonts, display=swap)
   - Mobile-first, fluid type via clamp()
   - Composed in layers: tokens → reset → primitives → sections
==================================================================== */

/* ---- 1. Design tokens -------------------------------------------- */
:root {
  /* Brand palette */
  --blue-950: #061E45;   /* darkest, used for footers + heavy zones */
  --blue-900: #0E3A78;
  --blue-800: #134292;
  --blue-700: #1B4FA0;
  --blue-600: #2E6BC9;
  --blue-500: #3D87E8;
  --blue-100: #DCEBFB;
  --blue-50:  #EEF5FC;

  --red-700:  #B41820;
  --red-600:  #D81E26;   /* primary urgent CTA */
  --red-500:  #E84149;
  --red-50:   #FDECEC;

  --green-wa: #25D366;
  --green-wa-dark: #1FAB55;

  --white:    #FFFFFF;
  --ink-950:  #050B17;
  --ink-900:  #0E1726;
  --ink-700:  #1E293B;
  --ink-600:  #475569;
  --ink-500:  #64748B;
  --ink-400:  #94A3B8;
  --ink-300:  #CBD5E1;
  --ink-200:  #E2E8F0;
  --ink-100:  #EEF1F6;
  --ink-50:   #F6F8FB;

  /* Elevation */
  --shadow-sm:   0 1px 2px rgba(15, 23, 42, .05);
  --shadow-card: 0 6px 24px -8px rgba(15, 23, 42, .12), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg:   0 20px 50px -16px rgba(15, 23, 42, .22), 0 4px 12px rgba(15, 23, 42, .06);
  --shadow-hero: 0 30px 80px -30px rgba(11, 42, 96, .35);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Type */
  --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- 2. Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

/* Display type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 .5em;
  color: var(--blue-950);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 700;
}

/* ---- 3. Container ------------------------------------------------ */
.container {
  width: 100%;
  max-width: min(1180px, 100vw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 780px; }

/* ====================================================================
   TOP BAR
==================================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
}
.brand:hover { text-decoration: none; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 38px; }
.brand__name { display: flex; flex-direction: column; font-size: 16.5px; line-height: 1.05; letter-spacing: -.01em; }
.brand__sub { font-size: 10.5px; font-weight: 500; color: var(--ink-500); letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-body); }
.topnav { display: none; gap: 28px; margin-left: 36px; margin-right: auto; }
.topnav a { color: var(--ink-700); font-weight: 500; font-size: 14.5px; }
.topnav a:hover { color: var(--blue-700); text-decoration: none; }
.topbar__cta { display: flex; gap: 8px; margin-left: auto; }
@media (min-width: 920px) {
  .topnav { display: flex; }
  .topbar__cta { margin-left: 0; }
}

/* ====================================================================
   BUTTONS
==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }
.btn--sm  { padding: 8px 13px; font-size: 13.5px; }
.btn--lg  { padding: 17px 26px; font-size: 16px; box-shadow: var(--shadow-card); }
.btn--call    { background: var(--red-600); color: var(--white); }
.btn--call:hover { background: var(--red-500); }
.btn--wa      { background: var(--green-wa); color: var(--white); }
.btn--wa:hover  { background: var(--green-wa-dark); }
.btn--primary { background: var(--blue-700); color: var(--white); }
.btn--primary:hover { background: var(--blue-900); }
.btn--white   { background: var(--white); color: var(--blue-900); }
.btn--white:hover { background: var(--blue-50); }
.btn--ghost   { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

@media (max-width: 480px) {
  .topbar__cta .btn span { display: none; }
  .topbar__cta .btn { padding: 9px 11px; }
}

/* ====================================================================
   HERO — full-bleed image with overlay text
==================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue-950);
  color: var(--white);
  min-height: 640px;
  isolation: isolate;
  width: 100%;
}
.hero .container { max-width: 100%; }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 30, 69, .92) 0%, rgba(6, 30, 69, .78) 45%, rgba(6, 30, 69, .35) 100%),
    linear-gradient(180deg, rgba(6, 30, 69, .1) 0%, rgba(6, 30, 69, .55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
  max-width: 720px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 4px rgba(232, 65, 73, .25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 65, 73, .5); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 65, 73, 0); }
}
.hero__title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero__sub { hyphens: auto; -webkit-hyphens: auto; }
.section__title { hyphens: auto; -webkit-hyphens: auto; }
@media (max-width: 480px) {
  .hero__title    { font-size: 30px; }
  .hero__sub      { font-size: 15px; }
  .section__title { font-size: 22px; }
}
.hero__title .accent {
  color: var(--red-500);
  position: relative;
  white-space: nowrap;
}
.hero__sub {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* Hero stat strip — replaces the old trust-strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  max-width: 600px;
}
.hero__stat strong {
  font-family: var(--font-display);
  display: block;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hero__stat span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px;
  letter-spacing: .02em;
}
@media (max-width: 640px) {
  .hero__inner { padding: 64px 0 56px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; max-width: 100%; }
  .hero__stat:nth-child(3), .hero__stat:nth-child(4) { padding-top: 0; }
}

/* ====================================================================
   STATS BAND — under hero, big numbers (mobile-only — desktop has them in hero)
   Skipping; hero has stats already.
==================================================================== */

/* ====================================================================
   SECTIONS — common
==================================================================== */
.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--blue-950); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--ink-50); }
.section--blue { background: var(--blue-50); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section--dark .section-eyebrow { color: var(--blue-500); }
.section__title {
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  max-width: 720px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__sub {
  color: var(--ink-600);
  font-size: clamp(15.5px, 1.8vw, 17.5px);
  max-width: 640px;
  margin: 0 0 48px;
}
.section--dark .section__sub { color: rgba(255, 255, 255, .7); }
.section__sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ====================================================================
   SERVICES — 3 cards, bigger, more visual
==================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.service-card--accent {
  background: linear-gradient(180deg, var(--white) 0%, var(--red-50) 100%);
  border-color: var(--red-50);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.service-card--accent .service-card__num { color: var(--red-600); }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 28px;
}
.service-card__icon--blue { background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%); }
.service-card__icon--red  { background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%); }
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card p {
  color: var(--ink-600);
  margin: 0 0 24px;
  font-size: 15px;
  flex-grow: 1;
}
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue-700);
  font-size: 14.5px;
  margin-top: auto;
}
.service-card--accent .link-cta { color: var(--red-600); }
.link-cta:hover { gap: 10px; text-decoration: none; }
.link-cta::after { content: "→"; transition: transform .15s ease; }
.link-cta:hover::after { transform: translateX(3px); }

/* ====================================================================
   PROOF — photo cards (large, side-by-side on desktop)
==================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.proof-card {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--blue-950);
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
}
.proof-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.proof-card:hover img { transform: scale(1.04); }
.proof-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 28px 24px;
  color: var(--white);
  background: linear-gradient(to top, rgba(6, 30, 69, .95) 0%, rgba(6, 30, 69, .8) 50%, rgba(6, 30, 69, 0) 100%);
}
.proof-card figcaption strong {
  font-family: var(--font-display);
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.proof-card figcaption span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ====================================================================
   ROUTES — visual chip grid, NOT a table
==================================================================== */
.routes-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .routes { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1000px) {
  .routes { grid-template-columns: repeat(3, 1fr); }
}
.route {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
  text-decoration: none;
  color: inherit;
}
.route:hover {
  text-decoration: none;
  border-color: var(--blue-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.route__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.route__pair {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--blue-950);
  letter-spacing: -.01em;
}
.route__time {
  color: var(--ink-500);
  font-size: 13.5px;
  font-weight: 500;
}
.route__arrow {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: var(--r-pill);
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
.route:hover .route__arrow { transform: translateX(3px); background: var(--green-wa-dark); }
.route--other {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}
.route--other .route__pair { color: var(--white); }
.route--other .route__time { color: rgba(255, 255, 255, .75); }
.route--other:hover {
  background: var(--blue-900);
  border-color: var(--blue-900);
}

/* ====================================================================
   EQUIPMENT — proper card grid with proof image alongside
==================================================================== */
.equipment-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .equipment-wrap { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 900px) {
  .equipment-grid { gap: 14px; }
}
.equipment {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-700);
  transition: border-color .15s ease, transform .12s ease;
}
.equipment:hover { border-color: var(--blue-100); transform: translateY(-1px); }
.equipment__icon {
  width: 32px; height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: 8px;
  font-size: 16px;
  color: var(--blue-700);
}

/* ====================================================================
   HOW IT WORKS — connected steps
==================================================================== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.step {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--ink-100);
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px -2px rgba(27, 79, 160, .4);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--ink-600); font-size: 15px; margin: 0; }

/* ====================================================================
   EVENT CTA — dark gradient band
==================================================================== */
.event-cta {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-950) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.event-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 30, 38, .25), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.event-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.event-cta__title {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}
.event-cta__sub {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  margin-bottom: 32px;
}

/* ====================================================================
   FORM
==================================================================== */
.form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
@media (max-width: 600px) { .form { padding: 24px; } }
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__field { display: block; margin-bottom: 16px; }
.form__field > span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 7px;
}
.form__field em { color: var(--red-600); font-style: normal; }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(46, 118, 214, .15);
}
.form__field textarea { resize: vertical; }
.honeypot { position: absolute; left: -10000px; height: 0; overflow: hidden; }
.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.form__note { color: var(--ink-600); font-size: 13.5px; }
.form__result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  display: none;
}
.form__result--ok  { display: block; background: #E8F8EE; color: #1A6A35; border: 1px solid #B7E3C5; }
.form__result--err { display: block; background: var(--red-50); color: var(--red-600); border: 1px solid rgba(216, 30, 38, .25); }

/* ====================================================================
   FAQ
==================================================================== */
.faq {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 0 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.faq[open] { box-shadow: var(--shadow-card); border-color: var(--blue-100); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-950);
  font-size: 16px;
  padding: 18px 0;
  position: relative;
  padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 14px; height: 14px;
  border-right: 2px solid var(--blue-700);
  border-bottom: 2px solid var(--blue-700);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq p { padding: 0 0 18px; color: var(--ink-600); font-size: 14.5px; line-height: 1.6; }

/* ====================================================================
   FOOTER
==================================================================== */
.footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, .85);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
@media (min-width: 800px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.brand--footer { color: var(--white); }
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: rgba(255, 255, 255, .65); }
.footer h4 {
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 14px;
  font-weight: 600;
}
.footer p { font-size: 14.5px; color: rgba(255, 255, 255, .8); margin: 0 0 6px; line-height: 1.55; }
.footer a { color: var(--white); }
.footer a:hover { color: var(--white); opacity: .75; text-decoration: underline; }
.footer__desc { color: rgba(255, 255, 255, .7); margin-top: 14px; max-width: 320px; font-size: 14px; }
.footer__bottom {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
.footer__bottom p { margin: 0; color: inherit; }

/* ====================================================================
   MOBILE STICKY BOTTOM BAR
==================================================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .12);
  border-top: 1px solid var(--ink-100);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.mobile-cta__btn--call { background: var(--red-600); }
.mobile-cta__btn--wa   { background: var(--green-wa); }
.mobile-cta__btn:hover { text-decoration: none; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 60px; }
}
