/* ──────────────────────────────────────────────────────────────────
   Modern Vet — design system
   Palette justification: derived directly from the brand's existing
   signage and uniforms (deep navy + warm peach), used clinically.
   ─────────────────────────────────────────────────────────────────*/

:root {
  /* Navy — anchor */
  --navy: #1F1F4A;
  --navy-deep: #14143A;
  --navy-soft: #2B2B5C;
  --navy-10: rgba(31, 31, 74, 0.08);
  --navy-20: rgba(31, 31, 74, 0.16);

  /* Peach — single accent */
  --peach: #E5B595;
  --peach-dark: #C8916B;
  --peach-soft: #F4DDC9;

  /* Neutrals */
  --paper: #FBF9F5;
  --paper-warm: #F2EDE5;
  --paper-sheen: #FFFFFF;
  --line: #E5DFD2;
  --line-strong: #C8C1B1;

  /* Text */
  --ink: #1A1A28;
  --ink-2: #3A3A4C;
  --muted: #74746B;

  /* Status */
  --emergency: #D8442F;
  --emergency-deep: #A52E1F;
  --success: #2E8B6F;

  /* System */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 58, 0.06), 0 2px 8px rgba(20, 20, 58, 0.04);
  --shadow: 0 4px 16px rgba(20, 20, 58, 0.08), 0 12px 40px rgba(20, 20, 58, 0.06);
  --shadow-lg: 0 12px 32px rgba(20, 20, 58, 0.14), 0 32px 80px rgba(20, 20, 58, 0.12);

  --font-display: "Manrope", -apple-system, "Inter", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body { line-height: 1.55; font-size: 16px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

.muted { color: var(--muted); }
.ta-r { text-align: right; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.on-navy, .eyebrow.on-emergency { color: var(--peach); }
.eyebrow.on-emergency { color: rgba(255,255,255,.85); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1;
  cursor: pointer; transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); box-shadow: 0 8px 20px rgba(20, 20, 58, 0.2); }

.btn-peach { background: var(--peach); color: var(--navy); border-color: var(--peach); }
.btn-peach:hover { background: var(--peach-dark); color: var(--paper); border-color: var(--peach-dark); }

.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: #000; border-color: #000; }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy-20); }
.btn-ghost:hover { background: var(--navy-10); border-color: var(--navy); }

.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--paper); }

.btn-emergency { background: var(--emergency); color: #fff; border-color: var(--emergency); }
.btn-emergency:hover { background: var(--emergency-deep); border-color: var(--emergency-deep); }

.btn-block { display: flex; }

/* ── LINKS ───────────────────────────────────────────────────── */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--navy); border-bottom: 1px solid transparent;
  padding-bottom: 2px; transition: gap .2s, border-color .2s;
}
.link-arrow:hover { gap: 12px; border-bottom-color: var(--navy); }
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow-navy { color: var(--paper); }
.link-arrow-navy:hover { border-bottom-color: var(--peach); }

.back-link { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--muted); margin-bottom: 16px; display: inline-block; }
.back-link:hover { color: var(--navy); }
.back-link.on-navy { color: rgba(255,255,255,.7); }
.back-link.on-navy:hover { color: var(--peach); }

/* ── EMERGENCY STRIP ─────────────────────────────────────────── */
.emergency-strip {
  background: var(--navy-deep);
  color: var(--paper);
  font-size: 13.5px;
  position: sticky; top: 0; z-index: 60;
}
.emergency-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 10px 32px;
  display: flex; align-items: center; gap: 14px;
}
.emergency-label { font-weight: 500; }
.emergency-sep { opacity: .4; }
.emergency-cta-wrap { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.emergency-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--peach); padding: 4px 8px; border-radius: 999px;
}
.emergency-cta:hover { color: var(--paper); background: rgba(255,255,255,.08); }
.emergency-cta svg { width: 16px; height: 16px; }
.emergency-wa { color: var(--paper); }

.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--emergency);
  display: inline-block; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(216, 68, 47, 0.7);
  animation: pulse 2s infinite;
}
.pulse-dot-lg { width: 14px; height: 14px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 68, 47, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(216, 68, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 68, 47, 0); }
}

@media (max-width: 820px) {
  .emergency-strip-inner { font-size: 12.5px; gap: 8px; flex-wrap: wrap; padding: 8px 20px; }
  .emergency-label { flex: 1 1 100%; }
  .emergency-sep { display: none; }
  .emergency-cta-wrap { margin-left: 0; width: 100%; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  transition: box-shadow .2s, background .2s;
}
.emergency-strip + .nav { top: 38px; }
.nav-scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 34px; height: 34px; }
.logo-text { line-height: 1.1; }
.logo-wordmark { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; }
.logo-tag { font-size: 9.5px; font-weight: 600; letter-spacing: 0.15em; margin-top: 2px; white-space: nowrap; }

.nav-links { display: flex; gap: 4px; margin-left: 12px; }
.nav-link {
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--navy-10); color: var(--navy); }
.nav-link.is-active { color: var(--navy); background: var(--navy-10); }

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.branch-picker { position: relative; }
.branch-trigger {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  padding: 9px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  transition: border-color .15s;
}
.branch-trigger:hover { border-color: var(--navy); }
.branch-trigger .chev { width: 14px; height: 14px; }
.branch-trigger svg:first-child { width: 16px; height: 16px; color: var(--peach-dark); }

.branch-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--paper-sheen); border: 1px solid var(--line);
  border-radius: var(--r); padding: 8px; min-width: 280px;
  box-shadow: var(--shadow-lg); z-index: 100;
}
.branch-menu-head { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 8px 10px; }
.branch-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 10px 12px; border: 0; background: transparent;
  border-radius: var(--r-sm); text-align: left;
}
.branch-opt:hover { background: var(--navy-10); }
.branch-opt.is-active { background: var(--peach-soft); }
.branch-opt-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.branch-opt-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.dot-24 { color: var(--emergency); font-weight: 600; }

.nav-burger { display: none; background: transparent; border: 0; padding: 8px; color: var(--ink); }

.nav-mobile { background: var(--paper); border-top: 1px solid var(--line); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-link { padding: 12px 14px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 500; }
.nav-mobile-link:hover { background: var(--navy-10); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
  .branch-picker { display: none; }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 78vh; padding: 0 0 32px; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(31,31,74,.92) 0%, rgba(31,31,74,.78) 38%, rgba(31,31,74,.30) 70%, rgba(31,31,74,0) 100%),
    linear-gradient(180deg, rgba(31,31,74,.4) 0%, rgba(31,31,74,0) 30%, rgba(31,31,74,.3) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 90px 32px 80px; color: var(--paper); }
.hero-copy { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px 8px 8px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--peach);
}
.hero-eyebrow-mark { width: 22px; height: 22px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.025em; font-weight: 800;
  margin: 24px 0 22px;
  text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--peach); }
.hero-sub { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.85); max-width: 580px; text-wrap: pretty; line-height: 1.55; }
.hero-ctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-ctas .btn-primary { background: var(--peach); color: var(--navy); border-color: var(--peach); }
.hero-ctas .btn-primary:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }

.hero-badges { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 56px; max-width: 600px; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--peach); letter-spacing: -0.02em;
}
.hero-badge span { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; }

.hero-strip {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 18px 32px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; gap: 20px; flex-wrap: wrap;
  color: rgba(255,255,255,.78); font-size: 13px; font-weight: 500;
}
.hero-strip b { color: var(--peach); font-weight: 700; }
.dotsep { opacity: .35; }

@media (max-width: 720px) {
  .hero-inner { padding: 60px 20px 60px; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-cream { background: var(--paper-warm); }
.section-navy { background: var(--navy); color: var(--paper); }
@media (max-width: 720px) { .section { padding: 60px 0; } }

.section-head { max-width: 740px; margin-bottom: 56px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.on-navy { color: var(--paper); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06; letter-spacing: -0.025em; font-weight: 800;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-title-navy { color: var(--paper); }
.section-sub { font-size: clamp(16px, 1.2vw, 18px); color: var(--ink-2); max-width: 620px; text-wrap: pretty; margin: 0; }
.section-head.on-navy .section-sub { color: rgba(255,255,255,.78); }

/* ── SERVICE GRID ────────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 980px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--paper-sheen); border: 1px solid var(--line);
  padding: 28px 24px 24px; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.service-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--peach-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.service-card-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.service-card-short { font-size: 14px; color: var(--ink-2); flex: 1; margin: 0; line-height: 1.5; }
.service-card-price {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--navy); padding-top: 10px; border-top: 1px solid var(--line);
}
.service-card-price span { font-weight: 500; color: var(--muted); }
.service-card-price-em { color: var(--emergency); }
.service-card-arrow {
  position: absolute; right: 20px; top: 28px; color: var(--muted);
  transition: transform .2s, color .2s;
}
.service-card:hover .service-card-arrow { transform: translateX(4px); color: var(--navy); }
.service-card-arrow svg { width: 18px; height: 18px; }

.service-card.is-emergency { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.service-card.is-emergency .service-card-icon { background: var(--emergency); color: var(--paper); }
.service-card.is-emergency .service-card-name { color: var(--paper); }
.service-card.is-emergency .service-card-short { color: rgba(255,255,255,.8); }
.service-card.is-emergency .service-card-price { border-color: rgba(255,255,255,.15); }
.service-card.is-emergency .service-card-arrow { color: var(--peach); }

.see-all { margin-top: 32px; }

/* ── BRANCH ROW ──────────────────────────────────────────────── */
.branch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .branch-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .branch-row { grid-template-columns: 1fr; } }

.branch-tile { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-sheen); border: 1px solid var(--line); transition: transform .2s, border-color .2s, box-shadow .2s; }
.branch-tile:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.branch-tile-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.branch-tile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.branch-tile:hover .branch-tile-photo img { transform: scale(1.04); }
.badge-24 {
  background: var(--emergency); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.badge-24.on-photo { position: absolute; top: 14px; left: 14px; }

.branch-tile-body { padding: 20px 22px 22px; }
.branch-tile-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }
.branch-tile-hours { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--peach-dark); }
.branch-tile-hours svg { width: 14px; height: 14px; }
.branch-tile-addr { font-size: 13.5px; color: var(--muted); margin-top: 8px; }

/* ── WHY (navy section) ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; align-items: start; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }
.why-head .section-title { margin-top: 0; }
.why-sub { color: rgba(255,255,255,.78); font-size: 17px; margin: 18px 0 28px; max-width: 480px; }

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.14); }
.why-item:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.why-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--peach); }
.why-h { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 6px; letter-spacing: -0.01em; }
.why-p { font-size: 15.5px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.55; }

/* ── VET ROW ─────────────────────────────────────────────────── */
.vet-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.vet-row-tight { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .vet-row, .vet-row-tight { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .vet-row, .vet-row-tight { grid-template-columns: repeat(2, 1fr); } }

.vet-card { display: flex; flex-direction: column; transition: transform .2s; }
.vet-card:hover { transform: translateY(-2px); }
.vet-card-photo {
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r);
  background: var(--peach-soft);
}
.vet-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .4s; }
.vet-card:hover .vet-card-photo img { transform: scale(1.04); }
.vet-card-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 14px 0 2px; letter-spacing: -0.01em; }
.vet-card-role { font-size: 13px; color: var(--peach-dark); font-weight: 600; }
.vet-card-spec { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.vet-card-branch { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; font-weight: 600; }

/* ── PRICING TEASER ──────────────────────────────────────────── */
.pricing-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .pricing-teaser { grid-template-columns: 1fr; gap: 40px; } }
.pricing-teaser-copy .section-title { margin-bottom: 18px; }
.pricing-teaser-sub { color: var(--ink-2); font-size: 17px; margin: 0 0 28px; max-width: 480px; }

.pricing-teaser-list { background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px; }
.pricing-teaser-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-radius: var(--r); font-size: 15px; }
.pricing-teaser-row + .pricing-teaser-row { border-top: 1px solid var(--line); }
.pricing-teaser-name { font-family: var(--font-display); font-weight: 600; }
.pricing-teaser-from { font-family: var(--font-body); font-size: 14px; color: var(--ink-2); }
.pricing-teaser-from b { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 18px; margin-left: 4px; }
.pricing-teaser-more { background: var(--navy-10); color: var(--navy); font-weight: 600; font-family: var(--font-display); }
.pricing-teaser-more svg { width: 18px; height: 18px; }
.pricing-teaser-more:hover { background: var(--navy); color: var(--paper); }

/* ── FEATURE SPLIT (mobile clinic) ───────────────────────────── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .feature-split { grid-template-columns: 1fr; gap: 32px; } }
.feature-split-photo { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; }
.feature-split-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--paper); color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.feature-tag svg { width: 16px; height: 16px; }
.feature-split-copy .section-title { margin-bottom: 18px; }
.feature-split-copy p { color: var(--ink-2); font-size: 16.5px; max-width: 520px; }
.feature-split-actions { margin-top: 28px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--paper); padding: 100px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -200px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--peach) 0%, transparent 60%);
  opacity: 0.08;
}
.cta-band-inner { text-align: center; position: relative; }
.cta-band-mark { width: 56px; height: 56px; margin: 0 auto 20px; display: block; }
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.04;
  margin: 0 0 18px;
}
.cta-band-sub { font-size: 18px; color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 36px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.78); padding: 80px 0 32px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } .footer-brand { grid-column: 1 / -1; } }

.footer-tag { font-size: 14.5px; color: rgba(255,255,255,.7); margin: 16px 0 24px; max-width: 360px; line-height: 1.55; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-call, .footer-wa { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--peach); }
.footer-call:hover, .footer-wa:hover { color: var(--paper); }
.footer-call svg, .footer-wa svg { width: 18px; height: 18px; }
.footer-head { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--peach); }

.footer-bottom {
  max-width: 1280px; margin: 56px auto 0; padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}
.footer-legal { flex: 1; }
.footer-lang { display: flex; gap: 4px; }
.footer-lang button { background: transparent; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.7); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.footer-lang button.is-active, .footer-lang button:hover { background: var(--peach); border-color: var(--peach); color: var(--navy); }

/* ── MOBILE BAR ──────────────────────────────────────────────── */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
    background: var(--navy-deep); box-shadow: 0 -4px 16px rgba(20,20,58,.2);
  }
  .mobile-bar-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 10px 0; background: var(--navy-deep); color: var(--paper);
    border: 0; font-size: 11px; font-weight: 600;
  }
  .mobile-bar-btn svg { width: 20px; height: 20px; }
  .mobile-bar-call { background: var(--emergency); }
  .mobile-bar-book { background: var(--peach); color: var(--navy); }
  body { padding-bottom: 64px; }
  .wa-fab { bottom: 80px !important; }
}

/* ── WHATSAPP FAB ────────────────────────────────────────────── */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform .2s;
}
.wa-fab:hover { transform: scale(1.05); }
.wa-fab svg { width: 26px; height: 26px; }

/* ── PAGE HEAD ───────────────────────────────────────────────── */
.page-head { background: var(--paper-warm); padding: 80px 0 60px; border-bottom: 1px solid var(--line); }
.page-head-emergency { background: var(--navy); color: var(--paper); border-bottom: 0; }
.page-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; margin: 0 0 20px; text-wrap: balance; }
.page-sub { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); max-width: 640px; margin: 0; line-height: 1.55; text-wrap: pretty; }
.page-head-emergency .page-sub { color: rgba(255,255,255,.8); }
.page-body { padding: 80px 0 100px; }

/* ── SERVICE LIST (hub) ──────────────────────────────────────── */
.service-group + .service-group { margin-top: 56px; }
.service-group-head {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 20px; display: inline-flex; align-items: center; gap: 12px;
}
.service-group-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--peach); display: inline-block; }
.service-list { display: flex; flex-direction: column; background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.service-list-item { display: grid; grid-template-columns: 48px 1fr auto 24px; gap: 24px; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); transition: background .15s; }
.service-list-item:last-child { border-bottom: 0; }
.service-list-item:hover { background: var(--paper-warm); }
.service-list-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--peach-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.service-list-item.is-emergency .service-list-icon { background: var(--emergency); color: var(--paper); }
.service-list-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.service-list-short { font-size: 14px; color: var(--muted); margin-top: 2px; }
.service-list-price { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-align: right; }
.service-list-price span { display: block; font-weight: 500; color: var(--muted); font-size: 11.5px; }
.service-list-chev { color: var(--muted); }

@media (max-width: 600px) {
  .service-list-item { grid-template-columns: 40px 1fr; }
  .service-list-price, .service-list-chev { display: none; }
}

/* ── SERVICE DETAIL ──────────────────────────────────────────── */
.service-detail-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 880px) { .service-detail-head { grid-template-columns: 1fr; } }
.service-detail-head-copy .page-title { margin-bottom: 18px; }
.service-detail-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.service-detail-price { font-family: var(--font-display); font-size: 15px; color: var(--ink-2); }
.service-detail-price b { color: var(--navy); font-size: 19px; font-weight: 800; }
.service-detail-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; }
.service-detail-photo img { width: 100%; height: 100%; object-fit: cover; }

.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 720px) { .service-detail-grid { grid-template-columns: 1fr; gap: 32px; } }
.service-detail-h { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 18px; letter-spacing: -0.01em; }

.check-list, .num-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink-2); }
.check-list li svg { width: 20px; height: 20px; color: var(--peach-dark); flex-shrink: 0; margin-top: 2px; }
.check-list-dots li { gap: 14px; }
.check-list-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--peach); margin-top: 9px; flex-shrink: 0; }
.check-list-emergency li svg { color: var(--emergency); }

.num-list { counter-reset: numlist; }
.num-list li {
  counter-increment: numlist;
  position: relative; padding-left: 56px; font-size: 15.5px; color: var(--ink-2);
}
.num-list li::before {
  content: counter(numlist);
  position: absolute; left: 0; top: -4px;
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--peach); line-height: 1;
}
.num-list li b { color: var(--ink); }

.service-detail-cta {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 24px; align-items: center;
}
@media (max-width: 720px) { .service-detail-cta { grid-template-columns: 1fr; } }
.service-detail-cta-mark { width: 56px; height: 56px; }
.service-detail-cta-h { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 4px; }
.service-detail-cta-p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ── BRANCHES INDEX ──────────────────────────────────────────── */
.branches-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 880px) { .branches-grid { grid-template-columns: 1fr; } }
.branch-detail-card { display: grid; grid-template-columns: 280px 1fr; background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; }
.branch-detail-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.branch-detail-card.is-24 { border-color: var(--peach); }
@media (max-width: 720px) { .branch-detail-card { grid-template-columns: 1fr; } }

.branch-detail-photo img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.branch-detail-body { padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.branch-detail-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--peach-dark); }
.branch-detail-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 0; letter-spacing: -0.02em; }
.branch-detail-blurb { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.branch-detail-meta { display: flex; flex-direction: column; gap: 8px; margin: 4px 0; font-size: 13.5px; color: var(--muted); }
.branch-detail-meta > div { display: flex; align-items: flex-start; gap: 10px; }
.branch-detail-meta svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--peach-dark); }
.branch-detail-meta dd { margin: 0; }

/* ── BRANCH DETAIL ───────────────────────────────────────────── */
.branch-hero { position: relative; min-height: 360px; color: var(--paper); overflow: hidden; }
.branch-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.branch-hero-fade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,31,74,.5) 0%, rgba(31,31,74,.85) 100%); }
.branch-hero-inner { position: relative; z-index: 1; padding: 60px 32px 40px; }
.branch-hero-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--peach); margin-bottom: 8px; }
.branch-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 800; letter-spacing: -0.025em; margin: 0; }
.branch-hero-24 { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 15px; background: rgba(255,255,255,.1); padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); }

.branch-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
@media (max-width: 880px) { .branch-detail-grid { grid-template-columns: 1fr; } }
.branch-h { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 18px; }
.branch-p { color: var(--ink-2); font-size: 16.5px; max-width: 620px; }

.branch-facts { display: grid; grid-template-columns: 120px 1fr; gap: 16px 24px; margin: 32px 0 0; }
.branch-facts > div { display: contents; }
.branch-facts dt { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.branch-facts dd { margin: 0; font-size: 15.5px; color: var(--ink); }
.branch-facts a { color: var(--navy); border-bottom: 1px solid var(--navy-20); }
.branch-facts a:hover { border-bottom-color: var(--navy); }

.branch-side { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.branch-side-card { background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.branch-side-h { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0; }
.branch-side-p { font-size: 14px; color: var(--muted); margin: 0 0 8px; }
.branch-side-card .btn { width: 100%; }
.branch-map { aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-warm); border: 1px solid var(--line); }
.branch-map-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 13px; padding: 20px; text-align: center; background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(31,31,74,.04) 12px, rgba(31,31,74,.04) 24px); }
.branch-map-placeholder svg { width: 32px; height: 32px; color: var(--peach-dark); }

.branch-side-note { display: flex; gap: 12px; padding: 16px 20px; background: var(--paper-warm); border-radius: var(--r); font-size: 13.5px; color: var(--ink-2); }
.branch-side-note svg { color: var(--emergency); width: 20px; height: 20px; flex-shrink: 0; }
.branch-side-note a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--navy-20); }

/* ── VETS ────────────────────────────────────────────────────── */
.vet-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.vet-filter { background: transparent; border: 1px solid var(--line); color: var(--ink-2); padding: 8px 16px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.vet-filter:hover { border-color: var(--navy); }
.vet-filter.is-active { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.vet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .vet-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .vet-grid { grid-template-columns: repeat(2, 1fr); } }
.vet-card-lg .vet-card-photo { aspect-ratio: 3 / 4; }

.vet-detail { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; margin-top: 16px; }
@media (max-width: 880px) { .vet-detail { grid-template-columns: 1fr; } }
.vet-detail-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-xl); overflow: hidden; background: var(--peach-soft); }
.vet-detail-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; position: relative; z-index: 1; }
.vet-detail-bg { position: absolute; right: -30px; bottom: -30px; width: 60%; height: 60%; opacity: 0.35; z-index: 0; }

.vet-detail-creds { font-family: var(--font-body); font-size: 15px; color: var(--ink-2); margin: 4px 0 24px; }
.creds-verified { display: inline-flex; align-items: center; gap: 6px; background: rgba(46, 139, 111, 0.12); color: var(--success); padding: 3px 10px; border-radius: 999px; font-weight: 600; font-size: 12px; margin-right: 10px; }
.creds-verified svg { width: 14px; height: 14px; }
.creds-pending { font-style: italic; color: var(--muted); }

.vet-detail-bio { font-size: 17px; color: var(--ink-2); max-width: 580px; margin: 0 0 32px; }
.vet-detail-meta { display: grid; grid-template-columns: 140px 1fr; gap: 14px 24px; margin: 0 0 36px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vet-detail-meta > div { display: contents; }
.vet-detail-meta dt { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.vet-detail-meta dd { margin: 0; font-size: 15.5px; }

/* ── PRICES ──────────────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.price-table th { text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 18px 24px; background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.price-table td { padding: 22px 24px; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2); vertical-align: top; }
.price-table tr:last-child td { border-bottom: 0; }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
.price-group { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--peach-dark); font-weight: 600; margin-top: 4px; }
.price-inc { max-width: 480px; }
.price-from { white-space: nowrap; }
.price-aed { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--navy); letter-spacing: -0.02em; }
.price-vat { font-size: 11.5px; color: var(--muted); font-weight: 500; margin-top: 2px; }

@media (max-width: 720px) {
  .price-table .price-inc { display: none; }
  .price-table th:nth-child(2) { display: none; }
}

.price-disclaimer { font-size: 13px; color: var(--muted); font-style: italic; margin: 16px 0 0; }
.price-cta { margin-top: 60px; text-align: center; }
.price-cta-h { font-family: var(--font-display); font-weight: 800; font-size: 36px; letter-spacing: -0.02em; margin: 0 0 24px; }

/* ── EMERGENCY PAGE ──────────────────────────────────────────── */
.emergency-hero { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); color: var(--paper); padding: 80px 0 80px; position: relative; overflow: hidden; }
.emergency-hero::after { content: ""; position: absolute; left: -100px; top: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--emergency) 0%, transparent 60%); opacity: 0.18; }
.emergency-hero-inner { position: relative; }
.emergency-hero-pulse { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--peach); padding: 8px 16px; background: rgba(255,255,255,.1); border-radius: 999px; border: 1px solid rgba(255,255,255,.18); margin-bottom: 24px; letter-spacing: 0.04em; }
.emergency-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.04; margin: 0 0 18px; max-width: 760px; }
.emergency-sub { font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,.85); max-width: 580px; margin: 0 0 32px; }
.emergency-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.emergency-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; }
@media (max-width: 880px) { .emergency-grid { grid-template-columns: 1fr; gap: 40px; } }
.emergency-h { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0 0 24px; }
.emergency-block { background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; }

.emergency-where-card { display: grid; grid-template-columns: 240px 1fr; gap: 32px; background: var(--paper-warm); border-radius: var(--r-lg); padding: 24px; align-items: center; border: 1px solid var(--line); }
@media (max-width: 720px) { .emergency-where-card { grid-template-columns: 1fr; } }
.emergency-where-card img { border-radius: var(--r); aspect-ratio: 4 / 3; object-fit: cover; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: center; }
@media (max-width: 880px) { .about-feature { grid-template-columns: 1fr; gap: 40px; } }
.about-feature-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5 / 4; }
.about-feature-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 80px; }
@media (max-width: 720px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat-n { font-family: var(--font-display); font-weight: 800; font-size: 56px; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.about-stat-l { font-size: 14px; color: var(--muted); font-weight: 500; margin-top: 8px; }

.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 80px; }
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-values .section-title { margin-bottom: 40px; }
.about-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
@media (max-width: 720px) { .about-values-grid { grid-template-columns: 1fr; } }
.about-value { padding: 28px; background: var(--paper-warm); border-radius: var(--r-lg); border: 1px solid var(--line); }
.about-value-mark { width: 32px; height: 32px; margin-bottom: 16px; }
.about-value h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 8px; }
.about-value p { color: var(--ink-2); margin: 0; font-size: 15px; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--paper-sheen); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px 32px; text-align: left; transition: transform .2s, border-color .2s, box-shadow .2s; cursor: pointer; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--navy); box-shadow: var(--shadow); }
.contact-card svg { width: 32px; height: 32px; color: var(--peach-dark); margin-bottom: 20px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 8px; }
.contact-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.contact-card-btn { display: block; width: 100%; font-family: inherit; }

/* ── BOOK MODAL ──────────────────────────────────────────────── */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20, 20, 58, 0.7); backdrop-filter: blur(6px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: var(--paper); border-radius: var(--r-xl); max-width: 1080px; width: 100%; max-height: 92vh; box-shadow: var(--shadow-lg); position: relative; animation: pop .25s cubic-bezier(.2,.9,.3,1); }
@keyframes pop { from { transform: translateY(20px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; right: 16px; top: 16px; background: rgba(255,255,255,.9); border: 0; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); z-index: 2; }
.modal-close:hover { background: var(--paper); }

.book-modal { display: grid; grid-template-columns: 320px 1fr; grid-template-rows: 1fr auto; max-height: 92vh; overflow: hidden; }
@media (max-width: 820px) { .book-modal { grid-template-columns: 1fr; } .book-side { display: none; } }

.book-side { background: var(--navy); color: var(--paper); padding: 36px 32px; grid-row: 1 / 3; display: flex; flex-direction: column; }
.book-side-head { display: flex; gap: 16px; align-items: flex-start; }
.book-side-mark { width: 40px; height: 40px; flex-shrink: 0; }
.book-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; line-height: 1.1; margin: 4px 0 10px; }
.book-side-sub { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; }

.book-steps { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.book-steps li { display: flex; align-items: center; gap: 14px; padding: 12px 0; color: rgba(255,255,255,.5); transition: color .2s; }
.book-steps li.is-active { color: var(--peach); }
.book-steps li.is-done { color: rgba(255,255,255,.85); }
.book-step-num { width: 26px; height: 26px; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.book-steps li.is-done .book-step-num { background: var(--peach); color: var(--navy); border-color: var(--peach); }
.book-steps li.is-active .book-step-num { background: var(--peach); color: var(--navy); border-color: var(--peach); }
.book-step-label { font-family: var(--font-display); font-weight: 600; font-size: 14px; }

.book-side-foot { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.book-side-emerg { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--peach); font-size: 15px; }
.book-side-emerg svg { width: 18px; height: 18px; }

.book-main { padding: 40px 40px 24px; overflow-y: auto; }
@media (max-width: 720px) { .book-main { padding: 60px 24px 24px; } }
.book-step { display: flex; flex-direction: column; gap: 12px; }
.book-h { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 16px; }

.book-branches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 600px) { .book-branches { grid-template-columns: repeat(2, 1fr); } }
.book-branch { background: var(--paper-sheen); border: 1.5px solid var(--line); border-radius: var(--r); padding: 14px 16px; text-align: left; transition: border-color .15s, background .15s; }
.book-branch:hover { border-color: var(--navy); }
.book-branch.is-active { border-color: var(--navy); background: var(--peach-soft); }
.book-branch-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.book-branch-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.book-branch-meta { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); margin-top: 4px; }
.book-branch-meta svg { width: 13px; height: 13px; }

.book-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 600px) { .book-services { grid-template-columns: repeat(2, 1fr); } }
.book-service { background: var(--paper-sheen); border: 1.5px solid var(--line); border-radius: var(--r); padding: 14px; text-align: left; display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink); transition: border-color .15s, background .15s; }
.book-service svg { width: 20px; height: 20px; color: var(--peach-dark); }
.book-service:hover { border-color: var(--navy); }
.book-service.is-active { border-color: var(--navy); background: var(--peach-soft); }

.field-row { margin-bottom: 16px; }
.field-radio { display: flex; gap: 8px; flex-wrap: wrap; }
.pet-pill { background: transparent; border: 1.5px solid var(--line); padding: 10px 20px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink-2); }
.pet-pill.is-active { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.field { display: flex; flex-direction: column; gap: 6px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field-lab { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink-2); }
.field-opt { color: var(--muted); font-weight: 500; }
.field input, .field textarea { background: var(--paper-sheen); border: 1.5px solid var(--line); border-radius: var(--r); padding: 12px 16px; font-size: 15px; color: var(--ink); outline: none; transition: border-color .15s; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--navy); }

.book-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px; }
@media (max-width: 600px) { .book-days { grid-template-columns: repeat(4, 1fr); } }
.book-day { background: var(--paper-sheen); border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 10px 4px; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.book-day:hover { border-color: var(--navy); }
.book-day.is-active { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.book-day-dow { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: .7; }
.book-day-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1; }
.book-day-mon { font-size: 10px; opacity: .7; }

.book-times { display: flex; gap: 6px; flex-wrap: wrap; }
.book-time { background: var(--paper-sheen); border: 1.5px solid var(--line); padding: 8px 14px; border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--ink-2); }
.book-time.is-active { background: var(--navy); color: var(--paper); border-color: var(--navy); }

.book-confirm .book-summary { background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; display: grid; grid-template-columns: 100px 1fr; gap: 12px 24px; margin-bottom: 24px; }
.book-summary > div { display: contents; }
.book-summary dt { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.book-summary dd { margin: 0; font-size: 15px; font-family: var(--font-display); font-weight: 600; }
.book-confirm-note { font-size: 14px; color: var(--ink-2); }
.book-confirm-note a { color: var(--navy); border-bottom: 1px solid var(--navy-20); font-weight: 600; }
.book-success-spot { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--peach-soft); border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 14px; }

.book-foot { padding: 20px 40px; background: var(--paper-warm); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 720px) { .book-foot { padding: 16px 24px; } }
.book-foot-step { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.book-foot-actions { display: flex; gap: 12px; }
