/* ============================================================
   PALOS PHARMACY — "WARM CARE" DESIGN SYSTEM v2
   Family-owned pharmacy, Palos Heights IL.
   Direction: warm apothecary cream + deep trustworthy navy,
   brand red saved for the one thing we want you to press.
   Type: Lora (warm display serif, healthcare-trust pick) +
   Source Sans 3 (body) + Fragment Mono (prescription-label accents).
   ============================================================ */

/* ---------- 1. THEME ZONE (design tokens) ---------- */
:root {
  /* Brand colors — from the Palos Pharmacy sign:
     "Palos" blue, "Pharmacy" red, leaf/caregiver mark. */
  --color-primary: #0F3A66;      /* deep ink-navy: headings, footer, nav text */
  --color-primary-soft: #1E72B8; /* Palos sign blue: links, brand, mid-tone */
  --color-accent: #C8353F;       /* sign red: primary CTAs + one accent word ONLY */
  --color-bg: #FFFAF4;           /* warm cream base — never sterile white */
  --color-surface: #FFFFFF;      /* cards float as true white on the cream */
  --color-ink: #1C2B3A;          /* main text: warm near-navy */
  --color-ink-soft: #5C6B7A;     /* secondary text */
  --color-line: rgba(15, 58, 102, 0.12);

  /* Section tints: pale blue + deeper cream, both warm */
  --tint-sky: #EDF3FA;           /* soft blue section wash */
  --tint-mint: #FAF2E8;          /* warm cream band (class name kept for interior pages) */
  --tint-blush: #FBEFEB;         /* faint red-blush for tiny highlights */
  --blue: #1E72B8;
  --blue-deep: #0F3A66;
  --green: #1F9D66;              /* "open now / free" go-signal green */

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'Fragment Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1180px;
  --section-pad: clamp(64px, 9vw, 116px);
  --radius: 20px;
  --radius-lg: 28px;
  --nav-height: 84px;

  /* Effects */
  --shadow-card: 0 14px 40px rgba(15, 58, 102, 0.10);
  --shadow-soft: 0 6px 18px rgba(15, 58, 102, 0.06);
  --shadow-pop: 0 24px 64px rgba(15, 58, 102, 0.16);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: inherit; }

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

section { padding: var(--section-pad) 0; }

/* Visually hidden but available to screen readers (accessibility) */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link: first thing keyboard users hit, jumps past the nav */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--color-primary); color: #fff;
  padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Navigation — floating cream glass capsule ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0;
  height: auto;
  display: flex; align-items: center;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: rgba(255, 250, 244, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav--solid { background: transparent; box-shadow: none; }
.nav--solid .container {
  background: rgba(255, 253, 250, 0.95);
  box-shadow: var(--shadow-card);
}
.nav-links { display: none; list-style: none; gap: 30px; }
.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-primary); }

.nav-cta {
  display: none;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200, 53, 63, 0.28); }

/* Hamburger (mobile) */
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--color-bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 90;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--color-primary);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* The brand lockup: mark + "Palos" blue / "Pharmacy" red */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 38px; height: auto; flex: none; }
.brand-text {
  /* Nunito 800 matches the rounded lettering on the actual storefront sign */
  font-family: 'Nunito', var(--font-body);
  font-weight: 800;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.brand-text .b1 { color: var(--blue); }
.brand-text .b2 { color: var(--color-accent); }

/* ---------- 4. Hero — copy left, warm photo right ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 44px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background:
    radial-gradient(58% 64% at 82% 12%, var(--tint-sky) 0%, rgba(237,243,250,0) 62%),
    radial-gradient(50% 56% at 6% 92%, var(--tint-blush) 0%, rgba(251,239,235,0) 58%),
    var(--color-bg);
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 56px; }
}

.hero-copy h1 { max-width: 15ch; }
.hero-copy > p {
  max-width: 52ch;
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--color-ink-soft);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Mono eyebrow — the prescription-label detail used across the site */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

/* "Free delivery anywhere in Illinois" pill above the headline */
.delivery-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 9px 18px 9px 13px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--blue-deep);
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.delivery-badge .dot {
  width: 9px; height: 9px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 157, 102, 0.16);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,157,102,0.16); }
  50%      { box-shadow: 0 0 0 7px rgba(31,157,102,0.07); }
}

/* Checkmark trust list under the hero paragraph */
.hero-checks { list-style: none; margin: 26px 0 0; display: grid; gap: 12px; }
.hero-checks li {
  position: relative; padding-left: 32px;
  font-weight: 500; color: var(--color-ink); font-size: 1rem;
}
.hero-checks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 999px;
  background: #EAF6F0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F9D66' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* Hero trust line under the checks */
.hero-trust {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px; color: #44566A;
  font-family: var(--font-mono); font-size: 0.84rem; letter-spacing: 0.02em;
}
.hero-trust .stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; font-family: var(--font-body); }
.hero-trust a { color: var(--blue); text-decoration: none; }

/* The hero photo: big rounded card with floating proof chips */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
/* Floating glass chips over the photo corners */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 253, 250, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-card);
  animation: chipFloat 5.5s ease-in-out infinite;
}
.float-chip--tl { top: -18px; left: -14px; }
.float-chip--br { bottom: -18px; right: -14px; animation-delay: -2.7s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.float-chip .big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--blue-deep);
  line-height: 1;
}
.float-chip .small {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  line-height: 1.3;
  max-width: 15ch;
}
.float-chip .stars { color: #F5A623; font-size: 0.85rem; letter-spacing: 1px; line-height: 1; }
@media (max-width: 979px) {
  .float-chip--tl { top: -14px; left: 8px; }
  .float-chip--br { bottom: -14px; right: 8px; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(200, 53, 63, 0.24);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(200, 53, 63, 0.3); }
.btn--ghost {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--ghost:hover { background: rgba(30, 114, 184, 0.07); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--shadow-soft); }
.btn--blue:hover { box-shadow: 0 16px 32px rgba(30, 114, 184, 0.26); }

/* The single red or blue "accent word" we drop into headlines */
.accent { color: var(--color-accent); }
.accent-blue { color: var(--blue); }

/* ---------- 6. Section heads ---------- */
.section--sky  { background: var(--tint-sky); }
.section--mint { background: var(--tint-mint); }
.section-head { max-width: 660px; margin-bottom: 8px; }
.section-head p { color: var(--color-ink-soft); margin-top: 14px; font-size: 1.06rem; }
.section-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- 7. Cards / services ---------- */
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { border-color: rgba(30, 114, 184, 0.25); }
.card h3 { margin-bottom: 10px; color: var(--blue-deep); }
.card p { color: var(--color-ink-soft); font-size: 0.97rem; }

@media (min-width: 700px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
/* 2x2 variant for four-card sets (keeps rows balanced, no orphan card) */
@media (min-width: 1024px) { .card-grid--2 { grid-template-columns: repeat(2, 1fr); } }

/* Tinted icon chip on cards */
.card .icon {
  width: 62px; height: 62px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--tint-sky), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(30, 114, 184, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
  transition: transform var(--transition);
}
.card:hover .icon { transform: rotate(-5deg) scale(1.08); }

/* ---------- 8. Hand-drawn icons (Higgsfield ink art) ----------
   Each icon is a transparent PNG of the ink stroke, painted with
   currentColor through a CSS mask so one file works on any bg. */
.hicon {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--hi) center / contain no-repeat;
          mask: var(--hi) center / contain no-repeat;
}
.stat-ico .hicon          { width: 38px; height: 38px; }
.card .icon .hicon        { width: 40px; height: 40px; }
.contact-list .ico .hicon { width: 32px; height: 32px; }

/* ---------- 9. Stats / trust band ---------- */
.stats-band {
  background: var(--blue-deep); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 56px);
  display: grid;
  gap: 28px 16px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  background-image: radial-gradient(80% 120% at 90% -10%, rgba(30,114,184,0.55) 0%, rgba(30,114,184,0) 60%);
}
@media (min-width: 880px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }

.stat {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  padding: 4px 12px;
}
@media (min-width: 880px) {
  .stat:not(:last-child)::after {
    content: ""; position: absolute; right: -8px; top: 12%; bottom: 12%;
    width: 1px; background: rgba(255, 255, 255, 0.16);
  }
}
.stat-ico {
  width: 60px; height: 60px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff; margin-bottom: 16px;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1; color: #fff;
}
.stat-label {
  margin-top: 6px;
  font-size: 0.9rem; line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  max-width: 22ch;
}

/* ---------- 10. Transfer section: form + steps side by side ---------- */
.transfer-wrap {
  display: grid; gap: 40px; margin-top: 48px;
  grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 960px) { .transfer-wrap { grid-template-columns: 1fr 1.05fr; gap: 56px; } }

/* The numbered step flow */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 26px 26px 24px 92px;
  box-shadow: var(--shadow-soft);
  min-height: 96px;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 24px; top: 26px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.5rem; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 8px 18px rgba(30,114,184,0.3);
}
.step h3 { color: var(--blue-deep); margin-bottom: 6px; font-size: 1.15rem; }
.step p { color: var(--color-ink-soft); font-size: 0.96rem; }

/* Legacy 3-across steps grid used on interior pages */
.steps--row { margin-top: 52px; }
@media (min-width: 820px) { .steps--row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 820px) {
  .steps--row .step { padding: 34px 28px 30px; }
  .steps--row .step::before { position: static; margin-bottom: 18px; }
}

/* ---------- 11. The transfer form card ---------- */
.hero-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-pop);
  scroll-margin-top: 110px;
  position: relative;
  overflow: hidden;
}
/* Warm top edge on the form card, like a prescription label stripe */
.hero-form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 55%, var(--color-accent) 55% 100%);
}
.form-title {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  color: var(--blue-deep);
}
.form-sub { margin: 10px 0 24px; color: var(--color-ink-soft); font-size: 0.97rem; }

.rx-form .field { margin-bottom: 16px; }
.rx-form label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--blue-deep); margin-bottom: 6px;
}
.rx-form .opt { font-weight: 400; color: var(--color-ink-soft); }
.rx-form input[type="text"],
.rx-form input[type="tel"],
.rx-form input[type="email"],
.rx-form select,
.rx-form textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem; color: var(--color-ink);
  background: #fff;
  border: 1.5px solid var(--color-line);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rx-form input:focus,
.rx-form select:focus,
.rx-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 114, 184, 0.15);
}
.rx-form .field-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 460px) { .rx-form .field-row { grid-template-columns: 1fr 1fr; gap: 14px; } }

.rx-form .consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.86rem; font-weight: 400; color: var(--color-ink-soft);
  margin: 6px 0 20px; cursor: pointer;
}
.rx-form .consent input { margin-top: 3px; width: 16px; height: 16px; flex: none; accent-color: var(--blue); }

.rx-form .form-submit { width: 100%; text-align: center; border: 0; cursor: pointer; font-size: 1.02rem; }
.rx-form .form-fineprint { margin-top: 14px; font-size: 0.78rem; color: var(--color-ink-soft); line-height: 1.5; }

/* Green "no health details needed" reassurance strip inside the form */
.form-reassure {
  display: flex; gap: 10px; align-items: flex-start;
  background: #EAF6F0; border-radius: 12px;
  padding: 12px 14px; margin-bottom: 18px;
  font-size: 0.85rem; color: #16603F; line-height: 1.5;
}
.form-reassure svg { flex: none; margin-top: 2px; }

/* Honeypot anti-spam field: hidden from real people */
.hidden-field { position: absolute; left: -9999px; }

/* ---------- 12. Feature splits (photo + copy, alternating) ---------- */
.feature-split {
  display: grid; gap: 40px; align-items: center;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 940px) {
  .feature-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .feature-split.flip .feature-media { order: 2; }
}
.feature-media { position: relative; }
.feature-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
/* Small mono caption chip pinned to feature photos */
.media-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(15, 58, 102, 0.82);
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.feature-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 14px;
}
.feature-copy p { color: var(--color-ink-soft); margin-bottom: 14px; }
.feature-copy .hero-checks { margin-top: 18px; }
.feature-copy .btn { margin-top: 26px; }

/* ---------- 13. Comparison table: Palos vs the chains ---------- */
.compare-wrap { margin-top: 48px; overflow-x: auto; }
.compare {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.98rem;
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th {
  font-family: var(--font-mono);
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-ink-soft);
  background: var(--tint-mint);
  border-bottom: 1px solid var(--color-line);
}
.compare thead th.us {
  background: var(--blue-deep); color: #fff;
}
.compare tbody th { font-weight: 600; color: var(--color-ink); font-family: var(--font-body); }
.compare td.us {
  background: var(--tint-sky);
  font-weight: 600; color: var(--blue-deep);
}
.compare .yes { color: var(--green); font-weight: 700; margin-right: 8px; }
.compare .no  { color: #C4502F; font-weight: 700; margin-right: 8px; }

/* ---------- 14. Reviews ---------- */
.reviews-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 48px; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute; top: 10px; right: 22px;
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--tint-sky);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review .stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 1.02rem; color: var(--color-ink); position: relative; }
.review .who { margin-top: 16px; font-weight: 600; color: var(--blue-deep); font-size: 0.9rem; font-family: var(--font-mono); }

/* ---------- 15. Service-area pills ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-pills span, .area-pills a {
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: 999px;
  padding: 9px 18px; font-size: 0.92rem; font-weight: 500; color: var(--blue-deep);
  box-shadow: var(--shadow-soft);
}
.area-pills a {
  font-weight: 600; color: var(--blue); text-decoration: none;
  transition: transform var(--transition), border-color var(--transition);
}
.area-pills a:hover { border-color: var(--blue); transform: translateY(-2px); }

/* ---------- 16. FAQ ---------- */
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 4px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(30, 114, 184, 0.3); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--blue-deep);
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* plus/minus indicator */
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--tint-sky); color: var(--blue);
  font-family: var(--font-body); font-weight: 600; font-size: 1.1rem;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] summary::after { content: "\2013"; background: var(--blue); color: #fff; }
.faq-item p { padding: 0 0 22px; color: var(--color-ink-soft); }

/* ---------- 17. Contact ---------- */
.contact-wrap { display: grid; gap: 32px; margin-top: 40px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
.contact-card {
  background: var(--blue-deep); color: #fff; border-radius: var(--radius-lg);
  padding: 40px 34px; box-shadow: var(--shadow-card);
  background-image: radial-gradient(90% 130% at 100% 0%, rgba(30,114,184,0.5) 0%, rgba(30,114,184,0) 60%);
}
.contact-card h3 { color: #fff; }
.contact-card a { color: #fff; }
.contact-list { list-style: none; margin-top: 24px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ico {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
}
.contact-list .lbl { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; display: block; margin-bottom: 3px; }
.contact-list .val { font-weight: 600; font-size: 1.02rem; }

.contact-aside {
  background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-soft);
}
.contact-aside h3 { color: var(--blue-deep); }
.contact-aside p { color: var(--color-ink-soft); margin: 12px 0 24px; }
.contact-aside .hero-actions { margin-top: 0; }
.contact-aside-note { font-size: 0.85rem; margin-top: 22px !important; }

/* ---------- 18. CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .inner {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; border-radius: 32px; padding: clamp(48px,7vw,80px) 24px;
  position: relative; overflow: hidden;
}
.cta-band .inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 85% 10%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 16px auto 32px; position: relative; }
.cta-band .hero-actions { position: relative; }
.cta-band .btn--primary { background: #fff; color: var(--blue-deep); box-shadow: 0 10px 26px rgba(0,0,0,0.2); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- 19. Footer ---------- */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 110px; /* extra bottom room for the mobile dock */
  font-size: 0.92rem;
}
@media (min-width: 900px) { .footer { padding-bottom: 32px; } }
.footer a { color: inherit; }
.footer .brand-text { font-size: 1.3rem; }
.footer .brand-text .b1 { color: #fff; }
.footer .brand-text .b2 { color: #F5A3AB; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 {
  color: #fff; font-family: var(--font-mono); font-weight: 400;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { opacity: 0.85; text-decoration: none; }
.footer-grid a:hover { opacity: 1; }
.footer-legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 0.82rem;
  opacity: 0.8;
}

/* ---------- 20. Sticky mobile action dock: Call / Directions / Transfer ---------- */
.mobile-dock {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 8px;
  background: rgba(15, 58, 102, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(15, 58, 102, 0.35);
}
.mobile-dock a {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: #fff; text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  padding: 12px 6px;
  border-radius: 12px;
}
.mobile-dock a:active { background: rgba(255,255,255,0.12); }
.mobile-dock a.dock-primary { background: var(--color-accent); }
.mobile-dock svg { width: 17px; height: 17px; flex: none; }
@media (min-width: 900px) { .mobile-dock { display: none; } }

/* ---------- 21. Scroll reveal + micro-interactions ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.hover-lift { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.link-draw { position: relative; text-decoration: none; }
.link-draw::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1.5px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.link-draw:hover::after { transform: scaleX(1); }

.stat-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; }
.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-accent);
}
.stat-row span { color: var(--color-ink-soft); font-size: 0.95rem; }

/* Accessibility: respect users who turn off animations */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .delivery-badge .dot, .float-chip { animation: none !important; }
}

/* ============================================================
   22. INTERIOR PAGES (service + location landing pages)
   ============================================================ */

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem; color: var(--color-ink-soft); margin-bottom: 18px;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

.page-hero {
  background:
    radial-gradient(60% 90% at 90% 0%, var(--tint-sky) 0%, rgba(237,243,250,0) 60%),
    var(--color-bg);
  padding-top: calc(var(--nav-height) + 56px);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { font-size: 1.15rem; color: var(--color-ink-soft); max-width: 60ch; margin: 20px 0 28px; }
.page-hero .hero-actions { margin-top: 0; }

.prose { max-width: 70ch; }
.prose h2 { margin: 8px 0 16px; }
.prose h3 { margin: 30px 0 10px; color: var(--blue-deep); }
.prose p { color: var(--color-ink); margin: 0 0 18px; }
.prose ul { margin: 0 0 22px; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--color-ink); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--tint-mint);
  box-shadow: inset 0 0 0 4px var(--blue);
}
.prose strong { color: var(--blue-deep); }

.content-split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 920px) { .content-split { grid-template-columns: 1.7fr 1fr; gap: 64px; } }

.side-cta {
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.side-cta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 55%, var(--color-accent) 55% 100%);
}
@media (min-width: 920px) { .side-cta { position: sticky; top: calc(var(--nav-height) + 24px); } }
.side-cta h3 { color: var(--blue-deep); margin-bottom: 10px; }
.side-cta p { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 20px; }
.side-cta .btn { width: 100%; text-align: center; margin-bottom: 12px; }
.side-cta .side-phone {
  display: block; text-align: center; font-weight: 400;
  font-family: var(--font-mono); font-size: 0.95rem;
  color: var(--blue); text-decoration: none; margin-top: 4px;
}
.side-cta .side-note { font-size: 0.82rem; color: var(--color-ink-soft); margin-top: 18px; text-align: center; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.related-card {
  display: block; background: var(--color-surface); border: 1px solid var(--color-line);
  border-radius: var(--radius); padding: 22px 24px; text-decoration: none;
  box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(30,114,184,0.25); }
.related-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.related-card p { font-size: 0.9rem; color: var(--color-ink-soft); }
.related-card .arrow { color: var(--blue); font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: inline-block; }

.card .link-draw { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--blue); font-size: 0.95rem; }

/* Legacy alias kept so old markup keeps working */
.contact-frame { border: 0; width: 100%; min-height: 680px; background: #fff; border-radius: 24px; box-shadow: var(--shadow-soft); }
.hero-kicker {
  display: inline-block; font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
