/* ============================================================
   Cascade Veterinary — Design System
   Bold royal-blue editorial · Ballard, Seattle
   ============================================================ */

/* Fonts are loaded via <link> in each page head (faster than @import). */

/* ---------- Tokens ---------- */
:root {
  /* Brand blues */
  --blue-900: #0A1852;
  --blue-800: #12277E;
  --blue-700: #1731B8;
  --blue-600: #1E3AE8;   /* primary */
  --blue-500: #3B5BF0;
  --blue-300: #9DB0FA;
  --blue-100: #DCE3FF;
  --blue-50:  #EEF2FF;

  /* Ink + surfaces */
  --ink:     #0C1436;
  --ink-70:  #3A4266;
  --ink-50:  #6B7392;
  --paper:   #FFFFFF;
  --cream:   #F7F3EA;        /* warm gallery paper — not SaaS gray */
  --line:    #E4E8F5;
  --line-warm: #E9E1D2;

  /* Warm accents (booking energy) */
  --coral:   #FF6A45;
  --coral-d: #E8542F;
  --amber:   #FFB020;
  --mint:    #22C3A6;

  /* Semantic */
  --primary: var(--blue-600);
  --on-primary: #FFFFFF;
  --bg: var(--paper);
  --fg: var(--ink);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius + shadow */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;
  --sh-sm: 0 2px 8px rgba(12, 20, 54, .06);
  --sh-md: 0 12px 32px rgba(12, 20, 54, .10);
  --sh-lg: 0 30px 70px rgba(12, 20, 54, .16);
  --sh-blue: 0 24px 60px rgba(30, 58, 232, .28);

  /* Layout */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --nav-h: 78px;

  --ease: cubic-bezier(.22, 1, .36, .58);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--blue-600); color: #fff; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -.015em; }
.display {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 600;
}
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.3rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--blue-600);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-70); line-height: 1.55; }
/* editorial italic accent inside display headings */
h1 em, h2 em { font-style: italic; font-weight: 500; letter-spacing: -.01em; }

/* ---------- Paper grain (expensive, not busier) ---------- */
.grain { position: relative; isolation: isolate; }
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .045; mix-blend-mode: multiply;
}
.grain--light::after { mix-blend-mode: overlay; opacity: .07; }
.grain > * { position: relative; z-index: 1; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); width: 100%; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.eq { display: grid; gap: clamp(20px, 3vw, 34px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
/* magnetism: JS feeds --mx/--my; hover lift rides on top */
.btn { --mx: 0px; --my: 0px; --lift: 0px; transform: translate3d(var(--mx), calc(var(--my) + var(--lift)), 0); }
.btn:hover { --lift: -3px; }
.btn:active { --lift: -1px; scale: .985; }

.btn--primary { background: var(--blue-600); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-700); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 18px 44px rgba(255,106,69,.36); }
.btn--coral:hover { background: var(--coral-d); }
.btn--white { background: #fff; color: var(--blue-700); box-shadow: var(--sh-md); }
.btn--white:hover { background: #fff; box-shadow: var(--sh-lg); }
.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.6px rgba(255,255,255,.7); }
.btn--ghost { background: transparent; color: var(--blue-700); box-shadow: inset 0 0 0 1.6px var(--blue-100); }
.btn--ghost:hover { background: var(--blue-50); }

/* text link with animated arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; color: inherit;
  padding-bottom: 4px;
  position: relative;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: currentColor; transform: scaleX(1); transform-origin: right;
  transition: transform .4s var(--ease); opacity: .35;
}
.link-arrow:hover::after { transform: scaleX(.4); transform-origin: left; opacity: 1; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header .wrap {
  display: flex; align-items: center; gap: 24px;
  height: var(--nav-h);
}
.site-header.solid {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--sh-sm);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -.02em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: grid; place-items: center; box-shadow: var(--sh-blue);
  flex: none;
}
.brand .mark svg { width: 22px; height: 22px; color: #fff; }
/* header color modes */
.site-header.on-dark:not(.solid) { color: #fff; }
.site-header.on-dark:not(.solid) .brand { color: #fff; }
.site-header.solid { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.nav a {
  padding: 10px 15px;
  font-weight: 500; font-size: .97rem; color: inherit; opacity: .88;
  transition: opacity .2s;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .38s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { opacity: 1; font-weight: 600; }
.nav a[aria-current="page"]::after { transform: scaleX(1); opacity: .8; }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-cta .btn { min-height: 46px; padding: 0 20px; font-size: .95rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; place-items: center; margin-left: auto; color: inherit; }
.nav-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--blue-900); color: #fff;
  width: 100%; max-width: 100vw; height: 100vh; height: 100dvh;
  padding: calc(var(--nav-h) + 18px) max(22px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
  display: flex; flex-direction: column; gap: 0;
  overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .46s var(--ease), visibility 0s linear .46s;
  visibility: hidden;
}
.mobile-nav::before {
  content: "Cascade Veterinary";
  position: absolute; top: max(22px, env(safe-area-inset-top)); left: max(22px, env(safe-area-inset-left));
  max-width: calc(100% - 92px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; letter-spacing: -.02em;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.mobile-nav > a:not(.btn) {
  min-width: 0; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: clamp(1.55rem, 7vw, 1.9rem); line-height: 1.12;
}
.mobile-nav > a:not(.btn) span { flex: none; font-family: var(--font-sans); font-size: 1.45rem; font-weight: 400; }
.mobile-nav .btn {
  width: 100%; min-width: 0; min-height: 52px; margin-top: 18px; padding-inline: 18px;
  border-bottom: 0; font-family: var(--font-sans); font-size: .98rem; line-height: 1.2; text-align: center;
  white-space: normal;
}
.mobile-nav .btn + .btn { margin-top: 10px; }
.mobile-nav__close { position: absolute; top: max(12px, env(safe-area-inset-top)); right: max(14px, env(safe-area-inset-right)); width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border-radius: 12px; }
.mobile-nav__close svg { width: 28px; height: 28px; }

/* ---------- Hero (full-bleed image) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 45% 42%, #174ac9 0%, #0b3095 42%, #071b61 100%);
  color: #fff;
  min-height: 720px;
  height: 78vh;
  height: 78svh;
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);
}
.hero__shape { position: absolute; z-index: 0; top: 12%; right: -7%; bottom: -18%; width: 58%; border-radius: 54% 0 0 0 / 62% 0 0 0; background: radial-gradient(circle at 42% 35%, #dceaff 0%, #bed6fb 58%, #aac9f6 100%); transform: rotate(1.5deg); }
.hero__dog { position: absolute; z-index: 1; right: clamp(28px, 4vw, 80px); bottom: -12%; width: min(88vw, 1450px); pointer-events: none; }
.hero__dog img { display: block; width: 100%; height: auto; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(7,27,97,.25) 0%, rgba(7,27,97,0) 48%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; align-items: start;
  height: calc(78svh - var(--nav-h));
  min-height: calc(720px - var(--nav-h));
  padding-block: clamp(68px, 7vw, 108px) 86px;
}
.home-page .site-header .wrap,
.home-page .hero__grid { max-width: 1500px; }
.hero__copy { max-width: 640px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }
.hero h1 { color: #fff; margin: 16px 0 18px; font-size: clamp(3.15rem, 5.9vw, 5.1rem); text-shadow: 0 2px 34px rgba(10,24,82,.28); }
.hero p.lead { max-width: 34ch; color: rgba(255,255,255,.92); font-size: clamp(1.08rem, 1.3vw, 1.22rem); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.hero__proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 620px; margin-top: 34px; }
.hero__proof > div { display: flex; align-items: center; gap: 12px; min-width: 0; padding-inline: 24px; border-left: 1px solid rgba(255,255,255,.34); }
.hero__proof > div:first-child { padding-left: 0; border-left: 0; }
.hero__proof > div > span { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.11); }
.hero__proof svg { width: 24px; height: 24px; }
.hero__proof p { color: #fff; font-size: .9rem; line-height: 1.25; }
.hero__proof strong, .hero__proof small { display: block; }
.hero__proof small { margin-top: 3px; color: rgba(255,255,255,.78); font-size: .82rem; }

/* floating trust chips over hero image */
.chip-float {
  position: absolute; z-index: 3;
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 11px;
  font-size: .9rem; font-weight: 600;
}
.chip-float small { display: block; font-weight: 500; color: var(--ink-50); font-size: .78rem; }
.chip-float .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.chip-float .ic svg { width: 20px; height: 20px; }
.hero .chip-a { top: 18%; right: 5.5%; }
.hero .chip-b { bottom: 15%; right: 12%; }

/* decorative blobs / paws (inner page heroes) */
.blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 1; }
.hero__blob1 { width: 46vw; max-width: 620px; aspect-ratio: 1; right: -10%; top: -18%; background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.14), transparent 60%); }
.hero__blob2 { width: 30vw; max-width: 380px; aspect-ratio: 1; left: -8%; bottom: -14%; background: radial-gradient(circle, rgba(59,91,240,.5), transparent 65%); }
.paw-deco { position: absolute; opacity: .10; color: #fff; z-index: 1; pointer-events: none; }

/* wave divider */
.wave-btm { position: relative; line-height: 0; color: var(--paper); }
.wave-btm svg { width: 100%; height: auto; display: block; }
.hero > .wave-btm { position: absolute; z-index: 4; left: 0; right: 0; bottom: -1px; height: 58px; }
.hero > .wave-btm svg { width: 100%; height: 100%; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--paper); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--blue-600); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .lbl { margin-top: 8px; color: var(--ink-70); font-size: .95rem; }
.stat + .stat { border-left: 1px solid var(--line); }

/* logos row */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 56px); opacity: .7; }
.logos span { font-weight: 700; letter-spacing: .04em; color: var(--ink-50); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 9px; }
.logos svg { width: 22px; height: 22px; color: var(--blue-500); }

/* ---------- Section head ---------- */
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 14px 0 0; }
.section-head p { margin-top: 16px; }

/* ---------- Services ---------- */
.cream {
  background: var(--cream);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
}
.cream .card, .cream .quote { border-color: var(--line-warm); box-shadow: 0 2px 10px rgba(76, 60, 24, .05); }
.cream .faq details { border-color: var(--line-warm); }
.cards {
  display: grid; gap: clamp(18px, 2.4vw, 26px);
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.card__ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--blue-50); color: var(--blue-600);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background .3s, color .3s, transform .4s var(--ease-spring);
}
.card:hover .card__ic { background: var(--blue-600); color: #fff; transform: rotate(-6deg) scale(1.05); }
.card__ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-70); font-size: .98rem; }
.card .card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 600; font-size: .95rem; }
.card .card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-spring); }
.card:hover .card__link svg { transform: translateX(4px); }
.card__tag { position: absolute; top: 22px; right: 22px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); background: rgba(255,106,69,.12); padding: 5px 11px; border-radius: 999px; }

/* ---------- Services: visit process ---------- */
.service-visit { background: #fff; overflow: hidden; }
.service-visit__wrap { max-width: 1280px; }
.service-visit__head { text-align: center; }
.service-visit__head .eyebrow { justify-content: center; }
.service-visit__head .section-title { margin-top: 14px; text-wrap: balance; }
.service-visit__head .lead { margin: 12px auto 0; color: var(--ink-50); }
.service-visit__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 54px);
  margin-top: clamp(48px, 5vw, 70px);
}
.service-visit__steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  border-top: 3px dashed #bed4fb;
}
.service-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-step__marker { position: relative; display: grid; place-items: center; width: 90px; height: 90px; }
.service-step__number {
  position: absolute;
  z-index: 2;
  top: -8px;
  left: -12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 1rem;
  font-weight: 700;
}
.service-step__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-800);
}
.service-step__icon svg { width: 40px; height: 40px; }
.service-step h3 {
  max-width: 12ch;
  margin-top: 22px;
  font-size: clamp(1.3rem, 1.65vw, 1.62rem);
  line-height: 1.08;
  text-wrap: balance;
}
.service-step p {
  max-width: 27ch;
  margin-top: 12px;
  color: var(--ink-70);
  font-size: .96rem;
  line-height: 1.5;
  text-wrap: balance;
}
.service-step__image {
  width: min(100%, 260px);
  height: 282px;
  margin-top: 26px;
  object-fit: cover;
  object-position: center 64%;
  transition: transform .45s var(--ease);
}
.service-step:hover .service-step__image { transform: translateY(-5px); }
.service-visit__support {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 660px;
  margin: clamp(42px, 5vw, 66px) auto 0;
  padding: 22px 30px;
  border-radius: 18px;
  background: var(--blue-50);
  color: var(--blue-800);
}
.service-visit__support-icon { width: 48px; height: 48px; flex: none; display: grid; place-items: center; color: var(--blue-600); }
.service-visit__support-icon svg { width: 38px; height: 38px; }
.service-visit__support h3 { font-family: var(--font-sans); font-size: 1.03rem; font-weight: 700; line-height: 1.25; }
.service-visit__support p { margin-top: 4px; color: var(--ink-70); font-size: .94rem; line-height: 1.45; }

@media (max-width: 980px) {
  .service-visit__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 54px; }
  .service-visit__steps::before { display: none; }
}
@media (max-width: 620px) {
  .service-visit__steps { grid-template-columns: 1fr; gap: 56px; margin-top: 44px; }
  .service-step h3 { font-size: 1.45rem; }
  .service-step p { font-size: 1rem; }
  .service-step__image { width: clamp(220px, 70vw, 260px); height: 282px; margin-top: 24px; }
  .service-visit__support { align-items: flex-start; margin-top: 54px; padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-step__image { transition: none; }
  .service-step:hover .service-step__image { transform: none; }
}

/* ---------- What we do ---------- */
#services .services-wrap { max-width: 1600px; padding-inline: clamp(20px, 3.5vw, 40px); }
.wwd-head { text-align: center; margin-bottom: clamp(36px, 4vw, 56px); }
.wwd-head .eyebrow { justify-content: center; }
.wwd-head .section-title { margin-top: 16px; text-wrap: balance; }
.wwd-head .lead { margin: 16px auto 0; max-width: 52ch; }

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 32px);
}

/* service card — text left, photo right; ~1.9:1 landscape */
.wwd-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  aspect-ratio: 1.9 / 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.wwd-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue-100); }
.wwd-card__text { padding: clamp(20px, 1.6vw, 24px); display: flex; flex-direction: column; }
.wwd-card__ic {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blue-50); color: var(--blue-600);
  margin-bottom: 14px;
  transition: background .3s, color .3s, transform .4s var(--ease-spring);
}
.wwd-card__ic svg { width: 21px; height: 21px; }
.wwd-card:hover .wwd-card__ic { background: var(--blue-600); color: #fff; transform: rotate(-6deg) scale(1.05); }
.wwd-card h3 { font-size: clamp(1.18rem, 1.25vw, 1.34rem); line-height: 1.1; letter-spacing: -.015em; text-wrap: balance; }
.wwd-card p { margin-top: 8px; font-size: .88rem; line-height: 1.45; color: var(--ink-70); }
.wwd-card__link {
  margin-top: auto; padding-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .86rem; color: var(--blue-600);
}
.wwd-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-spring); }
.wwd-card:hover .wwd-card__link svg { transform: translateX(4px); }
.wwd-card__media { position: relative; overflow: hidden; }
.wwd-card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transition: transform .6s var(--ease);
}
.wwd-card:hover .wwd-card__media img { transform: scale(1.045); }

/* trust strip */
.wwd-trust {
  margin-top: clamp(20px, 2vw, 28px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 40px);
  padding: clamp(26px, 2.6vw, 38px) clamp(24px, 3vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.wwd-trust__item { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 15px; align-items: start; }
.wwd-trust__ic {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-600);
}
.wwd-trust__ic svg { width: 23px; height: 23px; }
.wwd-trust__item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.2; }
.wwd-trust__item p { margin-top: 5px; font-size: .85rem; line-height: 1.45; color: var(--ink-70); }

@media (max-width: 1040px) {
  .wwd-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wwd-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 34px; }
}
@media (max-width: 620px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-card { grid-template-columns: 1fr; aspect-ratio: auto; }
  .wwd-card__media { order: -1; height: 180px; }
  .wwd-trust { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .wwd-card, .wwd-card__ic, .wwd-card__media img, .wwd-card__link svg { transition: none; }
  .wwd-card:hover { transform: none; }
  .wwd-card:hover .wwd-card__media img { transform: none; }
  .wwd-card:hover .wwd-card__ic { transform: none; }
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.media-blob {
  border-radius: 44% 44% 42% 42% / 38% 38% 46% 46%;
  overflow: hidden; aspect-ratio: 5/5.2;
  background: linear-gradient(150deg, var(--blue-500), var(--blue-700));
  box-shadow: var(--sh-lg);
}
.media-blob img { width: 100%; height: 100%; object-fit: cover; }
/* rectangular lifestyle frame */
.frame-rect { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3.1; box-shadow: var(--sh-lg); }
.frame-rect img { width: 100%; height: 100%; object-fit: cover; }
.frame-rect--difference { aspect-ratio: 2 / 3; }
.frame-rect--difference img { object-position: center; }
.frame-rect .frame-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .92rem;
}
.frame-rect .frame-badge .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-600); color: #fff; display: grid; place-items: center; flex: none; }
.frame-rect .frame-badge .ic svg { width: 19px; height: 19px; }
.frame-rect .frame-badge small { display: block; font-weight: 500; color: var(--ink-50); font-size: .78rem; }

/* ---------- About: hero and story ---------- */
.about-hero { position: relative; isolation: isolate; overflow: hidden; min-height: 560px; margin-top: calc(var(--nav-h) * -1); padding-top: calc(var(--nav-h) + 42px); color: #fff; background: radial-gradient(circle at 70% 46%, #1748d6 0%, #0f319d 32%, #081d67 76%); }
.about-hero__inner { max-width: 1280px; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr); align-items: center; gap: clamp(24px, 3vw, 48px); }
.about-hero__copy { position: relative; z-index: 2; max-width: 720px; padding-bottom: 76px; }
.about-hero .eyebrow { color: #fff; }
.about-hero .eyebrow::before { background: var(--blue-300); }
.about-hero h1 { margin-top: 20px; color: #fff; font-size: clamp(3rem, 4.5vw, 4.35rem); line-height: .97; letter-spacing: -.035em; text-wrap: balance; }
.about-hero h1 em { font-weight: 400; }
.about-hero__copy > .lead { max-width: 55ch; margin-top: 20px; color: rgba(255,255,255,.9); }
.about-hero__actions { display: flex; align-items: center; gap: 38px; margin-top: 28px; }
.about-hero__team-link { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.6); font-weight: 700; }
.about-hero__team-link span { font-size: 1.25rem; transition: transform .3s var(--ease-spring); }
.about-hero__team-link:hover span { transform: translateX(5px); }
.about-hero__proof { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 18px; margin-top: 28px; color: rgba(255,255,255,.84); font-size: .86rem; }
.about-hero__proof i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.8); }
.about-hero__visual { position: relative; align-self: stretch; min-height: 470px; }
.about-hero__visual img { position: absolute; width: min(50vw, 650px); height: auto; right: -5%; top: -30px; }
.about-hero__wave { position: absolute; z-index: 3; left: 0; right: 0; bottom: -1px; height: 96px; pointer-events: none; }
.about-hero__wave svg { display: block; width: 100%; height: 100%; }

.about-story { padding-top: clamp(68px, 8vw, 112px); padding-bottom: clamp(72px, 8vw, 118px); background: linear-gradient(180deg, #fff 0%, #fff 76%, rgba(238,242,255,.34) 100%); }
.about-story__grid { max-width: 1360px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(42px, 5vw, 72px); align-items: center; }
.about-story__media { min-height: 500px; aspect-ratio: 1.28 / 1; border-radius: 28px; box-shadow: 0 28px 72px rgba(10,24,82,.14); }
.about-story__media img { transition: transform .7s var(--ease); }
.about-story__media:hover img { transform: scale(1.025); }
.about-story__media .frame-badge { left: 28px; bottom: 28px; padding: 15px 19px; border-radius: 16px; }
.about-story__media .frame-badge .ic { width: 42px; height: 42px; border-radius: 12px; }
.about-story__body { padding-block: 18px; }
.about-story__body .section-title { margin-top: 16px; font-size: clamp(2.4rem, 3.7vw, 3.8rem); line-height: 1.02; }
.about-story__body > p { font-size: .98rem; line-height: 1.55; }
.about-story__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 28px; }
.about-story__facts > div { display: flex; align-items: flex-start; gap: 13px; padding-inline: 18px; border-left: 1px solid var(--line); }
.about-story__facts > div:first-child { padding-left: 0; border-left: 0; }
.about-story__facts > div > span { width: 35px; height: 35px; flex: none; display: grid; place-items: center; color: var(--blue-600); }
.about-story__facts svg { width: 27px; height: 27px; }
.about-story__facts strong { display: block; color: var(--blue-900); font-size: .82rem; line-height: 1.25; }
.about-story__facts small { display: block; margin-top: 5px; color: var(--ink-50); font-size: .72rem; line-height: 1.4; }
.about-story__link { display: inline-flex; align-items: center; gap: 16px; margin-top: 26px; color: var(--blue-600); font-weight: 700; font-size: .9rem; }
.about-story__link span { font-size: 1.1rem; transition: transform .3s var(--ease-spring); }
.about-story__link:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .about-hero { min-height: 700px; }
  .about-hero__inner { grid-template-columns: minmax(0, 1fr) 330px; gap: 16px; }
  .about-hero__visual img { width: 460px; right: -22%; top: -80px; }
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__grid .split__media { max-width: 620px; margin-inline: auto; }
}
@media (max-width: 680px) {
  .about-hero { min-height: 900px; padding-top: calc(var(--nav-h) + 34px); }
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__copy { padding-bottom: 0; }
  .about-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .about-hero__actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .about-hero__proof i { display: none; }
  .about-hero__proof { align-items: flex-start; flex-direction: column; }
  .about-hero__visual { min-height: 330px; }
  .about-hero__visual img { width: min(108vw, 500px); left: 50%; right: auto; top: -50px; transform: translateX(-50%); }
  .about-hero__wave { height: 74px; }
  .about-story__media { min-height: 360px; border-radius: 22px; }
  .about-story__media .frame-badge { left: 18px; bottom: 18px; }
  .about-story__facts { grid-template-columns: 1fr; gap: 20px; }
  .about-story__facts > div { padding: 0; border: 0; }
}

/* ---------- About: what we stand for ---------- */
.standfor { overflow: hidden; background: #fff; }
.standfor__wrap { max-width: 1460px; }
.standfor__intro { display: grid; grid-template-columns: minmax(360px, .8fr) minmax(0, 1.2fr); align-items: center; min-height: 500px; }
.standfor__copy { position: relative; z-index: 2; max-width: 520px; padding: 18px 0 72px; }
.standfor__copy .section-title { margin-top: 24px; font-size: clamp(3rem, 5vw, 5rem); line-height: .95; letter-spacing: -.035em; }
.standfor__copy .lead { max-width: 49ch; margin-top: 24px; color: var(--ink-70); }
.standfor__link { margin-top: 30px; gap: 18px; }
.standfor__link span { font-size: 1.15rem; transition: transform .3s var(--ease-spring); }
.standfor__link:hover span { transform: translateX(4px); }
.standfor__visual { align-self: stretch; min-height: 500px; margin-right: calc(var(--pad) * -1); }
.standfor__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.standfor__values { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(14px, 1.4vw, 22px); margin-top: -54px; }
.standfor-card { min-height: 356px; padding: 38px 25px 30px; text-align: center; border: 1px solid rgba(228,232,245,.75); border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: 0 18px 48px rgba(10,24,82,.07); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.standfor-card:hover { transform: translateY(-7px); box-shadow: 0 24px 58px rgba(10,24,82,.12); }
.standfor-card__icon { width: 90px; height: 90px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); }
.standfor-card__icon svg { width: 43px; height: 43px; }
.standfor-card h3 { min-height: 2.15em; font-size: clamp(1.35rem, 1.65vw, 1.7rem); line-height: 1.05; text-wrap: balance; }
.standfor-card p { margin-top: 18px; color: var(--ink-70); font-size: .93rem; line-height: 1.55; text-wrap: balance; }
.standfor-card::after { content: ""; display: block; width: 38px; height: 2px; margin: 26px auto 0; background: var(--blue-600); }

@media (max-width: 1120px) {
  .standfor__values { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: -30px; }
  .standfor-card { min-height: 330px; }
}
@media (max-width: 820px) {
  .standfor__intro { grid-template-columns: 1fr; }
  .standfor__copy { max-width: 620px; padding-bottom: 30px; }
  .standfor__visual { min-height: 390px; margin-inline: calc(var(--pad) * -1); }
  .standfor__values { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -20px; }
}
@media (max-width: 560px) {
  .standfor__copy .section-title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .standfor__visual { min-height: 300px; }
  .standfor__values { grid-template-columns: 1fr; margin-top: 24px; }
  .standfor-card { min-height: 0; padding: 32px 26px; }
}

/* ---------- Pet health guide cards ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.guide-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.guide-card__img { position: absolute; inset: 0; z-index: 0; }
.guide-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.guide-card__grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.5), rgba(0,0,0,.05) 46%, transparent 72%); }
.guide-card__body { position: relative; z-index: 2; color: #fff; }
.guide-card .tag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.guide-card h3 { color: #fff; margin: 8px 0 12px; font-size: 1.4rem; }
.guide-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: #fff; }
.guide-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-spring); }
.guide-card:hover .guide-card__link svg { transform: translateX(4px); }
@media (max-width: 860px) { .guide-grid { grid-template-columns: 1fr; } .guide-card { min-height: 300px; } }
.value-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.value-list li { display: flex; gap: 15px; align-items: flex-start; }
.value-list .tick { width: 30px; height: 30px; border-radius: 9px; background: var(--blue-600); color: #fff; display: grid; place-items: center; flex: none; margin-top: 2px; }
.value-list .tick svg { width: 17px; height: 17px; }
.value-list strong { display: block; font-size: 1.05rem; }
.value-list span { color: var(--ink-70); font-size: .97rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
/* featured layout: one photographic quote + two supporting */
.quotes-feature { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(18px, 2.4vw, 26px); align-items: stretch; }
.quote-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--sh-md);
}
.quote-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.quote-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,14,40,.72), rgba(9,14,40,.06) 52%, transparent 74%); }
.quote-photo figcaption, .quote-photo blockquote { position: relative; z-index: 2; }
.quote-photo blockquote { padding: 0 30px; }
.quote-photo blockquote p { color: #fff; font-family: var(--font-display); font-size: clamp(1.2rem, 1.8vw, 1.55rem); line-height: 1.35; letter-spacing: -.01em; }
.quote-photo figcaption { display: flex; align-items: center; gap: 12px; padding: 18px 30px 28px; color: #fff; }
.quote-photo figcaption b { display: block; font-size: .95rem; }
.quote-photo figcaption small { color: rgba(255,255,255,.75); }
.quotes-side { display: grid; gap: clamp(18px, 2.4vw, 26px); align-content: stretch; }
/* typographic monogram medallions — no stock avatars */
.avatar--mono {
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .02em;
  background: var(--blue-100); color: var(--blue-700);
}
.avatar--mono.t2 { background: #FFE4DA; color: #B23B1B; }
.avatar--mono.t3 { background: #DCF5EE; color: #0E7A65; }
@media (max-width: 860px) {
  .quotes-feature { grid-template-columns: 1fr; }
  .quote-photo { min-height: 420px; }
}
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.quote .stars { display: flex; gap: 3px; color: var(--amber); }
.quote .stars svg { width: 18px; height: 18px; }
.quote p { font-size: 1.05rem; color: var(--ink); line-height: 1.5; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__who img, .avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--blue-100); flex: none; }
.quote__who b { display: block; font-size: .95rem; }
.quote__who small { color: var(--ink-50); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(130% 160% at 88% -20%, rgba(59,91,240,.55), transparent 55%),
    linear-gradient(140deg, var(--blue-900) 0%, var(--blue-800) 58%, var(--blue-700) 100%);
  color: #fff; border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 76px);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255,255,255,.16);
}
.cta-band::before {
  content: ""; position: absolute; inset: 10px; border-radius: calc(var(--r-xl) - 10px);
  border: 1px solid rgba(255,255,255,.12); pointer-events: none; z-index: 1;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); margin-top: 14px; }
.cta-band .hero__cta { margin-top: 30px; }
.cta-band .paw-deco { opacity: .1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.72); padding-block: clamp(56px, 7vw, 86px) 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 52px); }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; opacity: .8; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; }
.footer-contact svg { width: 19px; height: 19px; color: var(--blue-300); flex: none; margin-top: 3px; }
.footer-bottom { margin-top: clamp(40px, 5vw, 60px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--blue-600); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(150deg, var(--blue-700), var(--blue-600)); color: #fff; margin-top: calc(var(--nav-h) * -1); padding-top: calc(var(--nav-h) + clamp(40px,6vw,70px)); padding-bottom: clamp(60px, 8vw, 110px); position: relative; overflow: hidden; }
/* image variant (services) */
.page-hero--img .ph-media { position: absolute; inset: 0; z-index: 0; }
.page-hero--img .ph-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.page-hero--img .ph-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(96deg, var(--blue-700) 6%, rgba(23,49,184,.94) 30%, rgba(27,52,200,.5) 52%, rgba(30,58,232,.05) 74%); }
.page-hero--img .wrap { position: relative; z-index: 2; }
@media (max-width: 700px) {
  .page-hero--img { min-height: 540px; }
  .page-hero--img .ph-media img {
    object-position: 66% center;
    filter: none;
  }
  .page-hero--img .ph-scrim { display: none; }
  .page-hero--img h1,
  .page-hero--img p { text-shadow: 0 2px 3px rgba(5,12,35,.58), 0 8px 24px rgba(5,12,35,.3); }
}
.page-hero h1 { color: #fff; margin: 16px 0 0; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.88); margin-top: 18px; }
.page-hero .eyebrow { color: #fff; } .page-hero .eyebrow::before { background: #fff; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .9rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); transition: transform .3s var(--ease), box-shadow .3s; }
.svc-row:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
.svc-row .card__ic { margin: 0; }
.svc-row__body h3 { font-size: 1.3rem; margin-bottom: 6px; }
.svc-row__body p { color: var(--ink-70); font-size: .97rem; }
.svc-row__price { text-align: right; }
.svc-row__price b { font-family: var(--font-display); font-size: 1.5rem; color: var(--blue-600); display: block; }
.svc-row__price small { color: var(--ink-50); font-size: .82rem; }
.svc-list { display: grid; gap: 16px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq details[open] { box-shadow: var(--sh-md); border-color: var(--blue-100); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 26px; font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 30px; height: 30px; flex: none; position: relative; border-radius: 8px; background: var(--blue-50); transition: background .3s, transform .3s; }
.faq details[open] summary .plus { background: var(--blue-600); transform: rotate(45deg); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--blue-600); border-radius: 2px; transition: background .3s; }
.faq summary .plus::before { top: 50%; left: 8px; right: 8px; height: 2px; transform: translateY(-50%); }
.faq summary .plus::after { left: 50%; top: 8px; bottom: 8px; width: 2px; transform: translateX(-50%); }
.faq details[open] summary .plus::before, .faq details[open] summary .plus::after { background: #fff; }
.faq .faq__a { padding: 0 26px 26px; color: var(--ink-70); line-height: 1.6; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.8vw, 32px); }
.member { text-align: left; }
.member__photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/4.6; background: linear-gradient(160deg, var(--blue-300), var(--blue-600)); box-shadow: var(--sh-sm); margin-bottom: 16px; position: relative; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.member:hover .member__photo img { transform: scale(1.06); }
.member h3 { font-size: 1.2rem; }
.member .role { color: var(--blue-600); font-weight: 600; font-size: .92rem; }
.member .bio { color: var(--ink-70); font-size: .92rem; margin-top: 6px; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
.form-card { background: #fff; border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); box-shadow: var(--sh-md); border: 1px solid var(--line); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 14px 16px; border-radius: 12px;
  border: 1.6px solid var(--line); background: var(--cream);
  transition: border-color .2s, background .2s, box-shadow .2s;
  min-height: 52px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(59,91,240,.14); }
.field .hint { font-size: .82rem; color: var(--ink-50); margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); background: rgba(255,106,69,.05); }
.field .err { color: var(--coral-d); font-size: .82rem; margin-top: 6px; display: none; font-weight: 500; }
.field.invalid .err { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 74px; height: 74px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; margin: 0 auto 20px; color: #fff; }
.form-success .check svg { width: 38px; height: 38px; }

.info-card { background: var(--blue-900); color: rgba(255,255,255,.82); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 40px); }
.info-card h3 { color: #fff; }
.info-item { display: flex; gap: 15px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.info-item:last-child { border-bottom: none; }
.info-item .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex: none; color: var(--blue-300); }
.info-item .ic svg { width: 21px; height: 21px; }
.info-item b { color: #fff; display: block; margin-bottom: 3px; }
.info-item a:hover { color: #fff; text-decoration: underline; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); margin-top: 26px; border: 1px solid var(--line); aspect-ratio: 16/7; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }

/* hours table */
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .96rem; }
.hours-row:last-child { border: none; }
.hours-row.today { color: #fff; font-weight: 600; }
.hours-row .open { color: var(--mint); }

/* ---------- Contact page ---------- */
.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  margin-top: calc(var(--nav-h) * -1);
  padding-top: calc(var(--nav-h) + 30px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 36%, rgba(59,91,240,.42), transparent 25%),
    linear-gradient(135deg, #07174f 0%, #092a86 56%, #123fd1 100%);
}
.contact-hero__glow { position: absolute; inset: 28% -8% auto auto; width: 54%; height: 60%; border-radius: 50%; background: rgba(53,91,240,.25); filter: blur(1px); }
.contact-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); column-gap: clamp(34px, 6vw, 88px); align-items: center; }
.contact-hero .breadcrumb { grid-column: 1 / -1; margin-bottom: 24px; }
.contact-hero__copy { align-self: start; max-width: 650px; padding-top: 8px; }
.contact-hero .eyebrow { color: #fff; }
.contact-hero .eyebrow::before { background: #fff; }
.contact-hero h1 { margin-top: 14px; color: #fff; font-size: clamp(3rem, 5.4vw, 5rem); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.contact-hero h1 em { font-weight: 400; }
.contact-hero__copy > .lead { max-width: 54ch; margin-top: 20px; color: rgba(255,255,255,.9); }
.contact-hero__proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; max-width: 540px; margin-top: 34px; }
.contact-hero__proof > div { display: flex; align-items: flex-start; gap: 14px; }
.contact-hero__proof-icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; color: #fff; }
.contact-hero__proof-icon svg { width: 31px; height: 31px; }
.contact-hero__proof p { margin: 0; color: #fff; line-height: 1.3; }
.contact-hero__proof strong { display: block; font-family: var(--font-display); font-size: 1.03rem; }
.contact-hero__proof small { display: block; max-width: 21ch; margin-top: 5px; color: rgba(255,255,255,.74); font-size: .78rem; line-height: 1.4; }
.contact-hero__visual { align-self: end; width: min(43vw, 550px); height: 530px; overflow: visible; transform: translateY(14px); }
.contact-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 29%; filter: saturate(.88) contrast(1.03); }
.contact-hero__wave { position: absolute; z-index: 3; left: 0; right: 0; bottom: -1px; height: 112px; pointer-events: none; }
.contact-hero__wave svg { display: block; width: 100%; height: 100%; }

.contact-main { padding-top: clamp(38px, 5vw, 72px); background: #fff; }
.contact-main .contact-grid { max-width: 1120px; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .82fr); gap: 26px; }
.contact-main .contact-grid > *, .contact-main .contact-grid > * > * { min-width: 0; }
.contact-form-card { padding: clamp(28px, 3vw, 42px); border-radius: 18px; box-shadow: 0 18px 50px rgba(10,24,82,.09); }
.contact-form-card h2 { font-size: clamp(1.65rem, 2.2vw, 2rem); }
.contact-form-card__intro { margin: 6px 0 24px; color: var(--ink-70); font-size: .9rem; }
.contact-form-card__intro span { color: var(--coral); }
.contact-main .field { margin-bottom: 16px; }
.contact-main .field label { margin-bottom: 6px; font-size: .86rem; }
.contact-main .field input, .contact-main .field select { min-height: 46px; padding: 11px 14px; border-radius: 7px; background: #fff; }
.contact-main .field textarea { min-height: 100px; padding: 12px 14px; border-radius: 7px; background: #fff; }
.contact-form-card__submit { width: 100%; justify-content: center; margin-top: 4px; border-radius: 8px; }
.contact-form-card__note { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; padding: 13px 18px; border-radius: 10px; background: var(--blue-50); color: var(--ink-70); font-size: .82rem; line-height: 1.45; }
.contact-form-card__note > span { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--blue-600); }
.contact-form-card__note svg { width: 19px; height: 19px; }
.contact-form-card__note a { color: var(--blue-600); font-weight: 700; }

.contact-info-card { padding: clamp(28px, 3vw, 38px); border-radius: 18px; background: linear-gradient(155deg, #07194f, #0a2b89 72%, #102f85); box-shadow: 0 18px 48px rgba(10,24,82,.16); }
.contact-info-card h3 { font-size: clamp(1.45rem, 2vw, 1.75rem); }
.contact-info-card .info-item { padding: 15px 0; }
.contact-info-card .info-item > div { min-width: 0; }
.contact-info-card .info-item a { overflow-wrap: anywhere; }
.contact-info-card .info-item .ic { width: 40px; height: 40px; border-radius: 50%; color: #fff; }
.contact-info-card .info-item .ic svg { width: 19px; height: 19px; }
.contact-info-card .hours-row { gap: 14px; padding: 7px 0; font-size: .9rem; }
.contact-info-card .hours-row > span:first-child { min-width: 0; }
.contact-info-card .hours-row > span:last-child { flex: none; text-align: right; }

.contact-location { margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 16px 42px rgba(10,24,82,.09); }
.contact-location > img { width: 100%; height: 170px; object-fit: cover; object-position: center 58%; }
.contact-location__bottom { display: grid; grid-template-columns: 1fr 1fr; min-height: 164px; }
.contact-location .map-embed { aspect-ratio: auto; min-height: 164px; margin: 0; border: 0; border-radius: 0; box-shadow: none; }
.contact-parking { display: flex; align-items: flex-start; gap: 13px; padding: 26px 20px; background: var(--blue-50); }
.contact-parking > span { width: 38px; height: 38px; flex: none; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--blue-600); }
.contact-parking svg { width: 20px; height: 20px; }
.contact-parking strong { font-size: .92rem; color: var(--blue-900); }
.contact-parking p { margin-top: 11px; color: var(--ink-70); font-size: .82rem; line-height: 1.55; }

.contact-care { max-width: 1120px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-top: 34px; padding-block: 20px; border: 1px solid var(--line); border-radius: 18px; }
.contact-care__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); }
.contact-care__icon svg { width: 26px; height: 26px; }
.contact-care strong { display: block; color: var(--blue-900); }
.contact-care p { margin-top: 2px; color: var(--ink-70); font-size: .88rem; }
.contact-care a { color: var(--blue-600); font-size: .9rem; font-weight: 700; }
.contact-care a span { margin-left: 10px; }

@media (max-width: 900px) {
  .contact-hero { min-height: 680px; }
  .contact-hero__inner { grid-template-columns: minmax(0, 1fr) 310px; gap: 18px; }
  .contact-hero__visual { width: 320px; height: 430px; transform: translateY(10px); }
  .contact-main .contact-grid { grid-template-columns: minmax(0, 1fr); width: 100%; max-width: 680px; margin-inline: auto; }
  .contact-main .contact-grid > div,
  .contact-form-card,
  .contact-info-card,
  .contact-location { width: 100%; max-width: 100%; margin-inline: auto; }
  .contact-care { max-width: 680px; }
}
@media (max-width: 680px) {
  .contact-hero { min-height: 830px; padding-top: calc(var(--nav-h) + 24px); }
  .contact-hero__inner { grid-template-columns: 1fr; }
  .contact-hero .breadcrumb { margin-bottom: 8px; }
  .contact-hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .contact-hero__proof { gap: 16px; }
  .contact-hero__visual { justify-self: center; width: min(84vw, 360px); height: 330px; transform: translateY(8px); }
  .contact-hero__wave { height: 82px; }
  .contact-main .grid-2 { grid-template-columns: 1fr; }
  .contact-location__bottom { grid-template-columns: 1fr; }
  .contact-location .map-embed { min-height: 190px; }
  .contact-care { grid-template-columns: auto 1fr; }
  .contact-care a { grid-column: 2; }
}
@media (max-width: 430px) {
  .contact-hero { min-height: 870px; }
  .contact-hero__proof { grid-template-columns: 1fr; }
  .contact-hero__visual { height: 300px; }
  .contact-care { padding-inline: 18px; }
  .contact-info-card { padding: 24px 20px; }
  .contact-info-card .info-item { gap: 12px; }
  .contact-info-card .info-item .ic { width: 36px; height: 36px; }
  .contact-info-card .hours-row { gap: 10px; font-size: .84rem; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="left"] { transform: translateX(-36px); }
[data-reveal][data-reveal="right"] { transform: translateX(36px); }
[data-reveal][data-reveal="scale"] { transform: scale(.94); }
[data-reveal][data-reveal="left"].in,
[data-reveal][data-reveal="right"].in,
[data-reveal][data-reveal="scale"].in { transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }

/* image mask reveal — a curtain draw, not a fade */
[data-reveal="mask"] {
  opacity: 1; transform: none;
  clip-path: inset(4% 96% 4% 0 round var(--r-lg));
  transition: clip-path 1.1s var(--ease);
}
[data-reveal="mask"] img { transform: scale(1.12); transition: transform 1.4s var(--ease); }
[data-reveal="mask"].in { clip-path: inset(0 0 0 0 round var(--r-lg)); }
[data-reveal="mask"].in img { transform: scale(1); }

/* hero headline: word-by-word masked rise (spans added by JS) */
.split-words .w { display: inline-block; overflow: clip; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.split-words .w > span { display: inline-block; transform: translateY(112%); transition: transform .9s var(--ease); }
.split-words.in .w > span { transform: translateY(0); }

/* count-up prevents CLS + underline draws in after the count */
.stat .num[data-count] { min-width: 2ch; display: inline-block; }
.stat .num { position: relative; padding-bottom: 10px; }
.stat .num::after {
  content: ""; position: absolute; left: 20%; right: 20%; bottom: 0; height: 2px;
  background: var(--blue-100); border-radius: 2px;
  transform: scaleX(0); transition: transform .8s var(--ease) 1.3s;
}
[data-reveal].in .stat .num::after { transform: scaleX(1); }

/* floating animation */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(11px); } }
.float-a { animation: floaty 6s ease-in-out infinite; }
.float-b { animation: floaty2 7s ease-in-out infinite; }
.float-c { animation: floaty 8s ease-in-out infinite .5s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-reveal="mask"] { clip-path: none !important; }
  [data-reveal="mask"] img { transform: none !important; transition: none !important; }
  .split-words .w > span { transform: none !important; transition: none !important; }
  .stat .num::after { transform: scaleX(1) !important; transition: none !important; }
  .float-a, .float-b, .float-c { animation: none !important; }
  .btn, .card, .svc-row, .member__photo img, .nav a::after { transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .chip-c { display: none; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .hero { min-height: 0; height: 78svh; max-height: 78svh; }
  .hero__shape { top: 43%; right: -42%; bottom: -18%; width: 132%; border-radius: 52% 0 0 0 / 48% 0 0 0; }
  .hero__dog { right: -20%; bottom: -4%; width: min(112vw, 540px); }
  .hero__scrim { background: linear-gradient(180deg, var(--blue-700) 6%, rgba(23,49,184,.72) 30%, rgba(30,58,232,.12) 58%, rgba(10,24,82,.35)); }
  .hero__grid { align-items: start; height: calc(78svh - var(--nav-h)); min-height: 0; padding-top: clamp(20px,5vw,36px); }
  .hero__copy { max-width: 100%; }
  .hero .chip-a, .hero .chip-b { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { max-width: 460px; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat:nth-child(3) { border-left: none; }
  .stat + .stat { border-left: none; }
  .stat { border-top: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__proof { display: none; }
  .cards, .quotes, .team, .grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 52px 1fr; }
  .svc-row__price { grid-column: 2; text-align: left; margin-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__cta .btn, .cta-band .btn { width: 100%; }
  .chip-float { padding: 9px 12px; font-size: .82rem; }
  .chip-float .ic { width: 32px; height: 32px; }
  .mobile-nav { padding-top: 82px; }
}
