/* Hazelpatch Animal Clinic — sample by Lampwright. Warm app-like product UI. */
@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --oat: #f7f1e8;
  --oat-2: #efe6d6;
  --oat-3: #e4d7c1;
  --ink: #1d2a2c;
  --ink-2: #3e4b4d;
  --muted: #667274;
  --teal: #0f7c73;
  --teal-2: #0b5f58;
  --teal-soft: #dcefeb;
  --coral: #ef6f53;
  --coral-2: #d9563a;
  --coral-soft: #fde6df;
  --line: rgba(29, 42, 44, .09);
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow-sm: 0 1px 2px rgba(40, 30, 10, .06), 0 4px 12px rgba(40, 30, 10, .05);
  --shadow: 0 2px 4px rgba(40, 30, 10, .05), 0 18px 40px -12px rgba(60, 40, 10, .18);
  --shadow-lg: 0 30px 70px -20px rgba(40, 30, 10, .30);
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { width: 1em; height: 1em; fill: currentColor; flex: none; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- sample banner (must stay visible) ---------- */
.sample-banner {
  background: var(--ink);
  color: #f3ede3;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  padding: 10px 16px;
}
.sample-banner strong { color: #ffd2c4; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font: inherit; font-weight: 700; font-size: 15px;
  text-decoration: none; white-space: nowrap;
  padding: 11px 18px; border-radius: 999px; border: 0;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { font-size: 16.5px; padding: 15px 24px; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--teal-2); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -8px rgba(239, 111, 83, .7); }
.btn-coral:hover { background: var(--coral-2); transform: translateY(-2px); }
.btn-coral svg { transition: transform .2s ease; }
.btn-coral:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--oat-3); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-white { background: #fff; color: var(--teal-2); }
.btn-white:hover { transform: translateY(-2px); }
.btn-line { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .45); background: transparent; }
.btn-line:hover { background: rgba(255, 255, 255, .1); }

/* ---------- header ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-row { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.02em; line-height: 1; display: flex; flex-direction: column; gap: 3px; }
.brand-name small { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--teal); }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-2); padding: 8px 14px; border-radius: 999px; transition: background-color .2s; }
.nav a:hover { background: var(--oat); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(15, 124, 115, .08), transparent 60%),
    linear-gradient(180deg, var(--oat) 0%, var(--white) 100%);
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--oat-3);
  font-weight: 700; font-size: 14px; color: var(--ink-2);
  padding: 7px 14px 7px 11px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft); }
.hero h1 { position: relative; z-index: 0; font-size: clamp(42px, 5.3vw, 68px); text-wrap: balance; margin: 22px 0 22px; letter-spacing: -.035em; line-height: 1.02; }
.hero h1 em { font-style: normal; color: var(--teal); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .2em; z-index: -1;
  background: var(--coral-soft); border-radius: 6px;
}
.lead { font-size: 19.5px; line-height: 1.55; color: var(--ink-2); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; color: var(--ink-2); font-size: 15px; }
.hero-facts li { display: flex; align-items: center; gap: 8px; }
.hero-facts svg { width: 18px; height: 18px; color: var(--teal); }

.hero-art { position: relative; aspect-ratio: 1 / 1.08; max-width: 560px; width: 100%; justify-self: center; }
.blob, .blob-back {
  position: absolute; inset: 4% 6% 2% 6%;
  border-radius: 58% 42% 52% 48% / 50% 56% 44% 50%;
}
.blob-back { background: var(--coral-soft); transform: rotate(-8deg) scale(1.04); inset: 6% 2% 0 10%; }
.blob {
  overflow: hidden; background: #3f7fb3;
  box-shadow: var(--shadow-lg);
  animation: morph 16s ease-in-out infinite alternate;
}
.blob img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
@keyframes morph {
  0%   { border-radius: 58% 42% 52% 48% / 50% 56% 44% 50%; }
  50%  { border-radius: 46% 54% 42% 58% / 58% 44% 56% 42%; }
  100% { border-radius: 54% 46% 60% 40% / 44% 52% 48% 56%; }
}

.float {
  position: absolute; background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 14px 16px;
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float-slot { left: -4%; bottom: 14%; width: 208px; }
.f-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.f-big { font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin: 2px 0 10px; }
.f-pills { display: flex; gap: 6px; }
.f-pills span { font-size: 13px; font-weight: 700; padding: 5px 9px; border-radius: 9px; background: var(--teal-soft); color: var(--teal-2); }
.f-pills span:first-child { background: var(--teal); color: #fff; }
.f-pills .muted { background: var(--oat); color: var(--muted); }
.float-remind { right: -2%; top: 12%; display: flex; align-items: center; gap: 12px; animation-delay: -3s; }
.f-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--teal); color: #fff; display: grid; place-items: center; flex: none; }
.f-ico svg { width: 20px; height: 20px; }
.f-ico.coral-bg { background: var(--coral); }
.f-title { font-weight: 800; font-size: 15px; line-height: 1.25; }
.f-sub { font-size: 13.5px; color: var(--muted); line-height: 1.35; }
.float-paw { right: 8%; bottom: 2%; width: 62px; height: 62px; padding: 0; border-radius: 50%; display: grid; place-items: center; background: var(--coral); color: #fff; animation-delay: -1.5s; }
.float-paw svg { width: 30px; height: 30px; }

.species { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 56px; }
.species li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--oat-2);
  padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--ink-2);
}
.species svg { width: 16px; height: 16px; color: var(--coral); }

/* ---------- section heads ---------- */
section { scroll-margin-top: 80px; }
.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head-row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.sec-head-row .sec-lead { max-width: 380px; }
.eyebrow { font-size: 13.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.eyebrow.light { color: #bff0e8; }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
.sec-lead { font-size: 18px; color: var(--muted); margin-top: 16px; }

/* ---------- features / mock UI ---------- */
.features { padding: 104px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  background: var(--oat); border-radius: var(--r-xl); padding: 22px 22px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feat h3 { font-size: 22px; margin: 26px 8px 10px; }
.feat > p { color: var(--ink-2); font-size: 16px; margin: 0 8px; }
.mock {
  background: var(--white); border-radius: 22px; padding: 18px;
  box-shadow: var(--shadow-sm); min-height: 268px;
  font-size: 14px;
}
.m-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.m-title { font-weight: 800; font-size: 16px; }
.m-month { font-size: 13px; font-weight: 700; color: var(--muted); }
.days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-bottom: 14px; }
.days span {
  display: flex; flex-direction: column; align-items: center; padding: 7px 0 8px;
  border-radius: 12px; background: var(--oat); font-weight: 800; font-size: 17px; line-height: 1.1;
}
.days small { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.days .on { background: var(--teal); color: #fff; }
.days .on small { color: #bff0e8; }
.days .off { opacity: .45; }
.slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.slots span {
  text-align: center; font-weight: 700; padding: 8px 0; border-radius: 10px;
  border: 1.5px solid var(--oat-2); color: var(--ink-2);
}
.slots .pick { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-2); }
.slots .gone { color: #b9b2a6; text-decoration: line-through; border-style: dashed; }
.m-cta {
  margin-top: 14px; background: var(--coral); color: #fff; font-weight: 800;
  border-radius: 12px; padding: 11px; display: flex; justify-content: center; align-items: center; gap: 8px;
}
.m-cta svg { width: 16px; height: 16px; }

.pet-row { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pet-row img { width: 48px; height: 48px; border-radius: 16px; object-fit: cover; }
.pet-name { font-weight: 800; font-size: 17px; line-height: 1.2; }
.pet-meta { color: var(--muted); font-size: 13px; }
.tag { margin-left: auto; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.tag-teal { background: var(--teal-soft); color: var(--teal-2); }
.tag-coral { background: var(--coral-soft); color: var(--coral-2); }
.due li { display: flex; align-items: center; gap: 10px; padding: 12px 2px; border-bottom: 1px solid var(--line); }
.d-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.d-dot.coral { background: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
.d-dot.teal { background: var(--teal); }
.d-dot.oat { background: var(--oat-3); }
.d-what { font-weight: 700; }
.d-when { margin-left: auto; color: var(--muted); font-weight: 600; font-size: 13px; white-space: nowrap; }
.coral-t { color: var(--coral-2); }
.toggle-row { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; font-weight: 700; }
.toggle { width: 44px; height: 26px; border-radius: 999px; background: var(--teal); position: relative; }
.toggle i { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .2); }

.checks li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-weight: 700; color: var(--ink-2); }
.checks em { margin-left: auto; font-style: normal; color: var(--muted); font-weight: 600; font-size: 13px; }
.c-box { width: 24px; height: 24px; border-radius: 8px; border: 2px solid var(--oat-3); display: grid; place-items: center; flex: none; }
.c-box svg { width: 15px; height: 15px; color: #fff; }
.checks .done .c-box { background: var(--teal); border-color: var(--teal); }
.checks .done { color: var(--muted); }
.checks .now { color: var(--ink); }
.checks .now .c-box { border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }
.progress { height: 8px; border-radius: 999px; background: var(--oat); margin-top: 14px; overflow: hidden; }
.progress i { display: block; height: 100%; width: 60%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), #26a596); }

/* ---------- bento services ---------- */
.services { padding: 104px 0; background: var(--oat); }
.bento {
  display: grid; gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "exam exam vacc dental"
    "exam exam young young"
    "spay small young young";
}
.b {
  background: var(--white); border-radius: var(--r-lg); padding: 26px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.b:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.b h3 { font-size: 23px; }
.b p { color: var(--ink-2); font-size: 15.5px; }
.b .price { margin-top: auto; padding-top: 10px; font-size: 15px; color: var(--muted); font-weight: 600; }
.price b { font-size: 26px; color: var(--ink); letter-spacing: -.02em; font-weight: 800; }
.b-kicker { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--coral-2); }
.b-kicker.light { color: #ffd9cd; }

.b-exam { grid-area: exam; flex-direction: row; gap: 0; padding: 0; background: var(--teal); color: #fff; min-height: 420px; }
.b-exam .b-copy { padding: 34px; display: flex; flex-direction: column; gap: 12px; flex: 1.1; }
.b-exam h3 { font-size: 34px; }
.b-exam p { color: #d7efeb; font-size: 16.5px; }
.b-exam .b-kicker { color: #ffd2c4; }
.b-exam .price { color: #bfe3dd; }
.b-exam .price b { color: #fff; font-size: 40px; }
.b-exam img { flex: 1; width: 45%; object-fit: cover; border-radius: 0 var(--r-lg) var(--r-lg) 0; min-width: 0; }

.b-vacc { grid-area: vacc; }
.b-ico { width: 46px; height: 46px; border-radius: 14px; background: var(--coral-soft); color: var(--coral-2); display: grid; place-items: center; margin-bottom: 6px; }
.b-ico svg { width: 24px; height: 24px; }
.b-dental { grid-area: dental; background: var(--teal-soft); }
.teeth { display: flex; gap: 5px; position: absolute; right: 22px; top: 26px; }
.teeth i { width: 11px; height: 18px; background: #fff; border-radius: 3px 3px 7px 7px; box-shadow: 0 1px 2px rgba(0, 0, 0, .08); }
.teeth i:nth-child(odd) { height: 14px; }
.b-dental h3 { padding-right: 90px; }

.b-young { grid-area: young; padding: 0; min-height: 300px; }
.b-young img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.b-young:hover img { transform: scale(1.04); }
.b-over {
  position: relative; margin-top: auto; padding: 90px 30px 28px;
  background: linear-gradient(180deg, transparent, rgba(12, 22, 18, .78));
  color: #fff; display: flex; flex-direction: column; gap: 6px;
}
.b-over h3 { font-size: 30px; color: #fff; }
.price.light { color: #e3ece8; }
.price.light b { color: #fff; }
.b-spay { grid-area: spay; background: var(--coral-soft); }
.b-spay .price b { font-size: 22px; }
.b-spay .price span { display: block; }
.b-small { grid-area: small; justify-content: center; }
.mini-list li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--oat-3); font-weight: 600; font-size: 15px; }
.mini-list li:last-child { border-bottom: 0; }
.mini-list b { font-weight: 800; }

/* ---------- visit ---------- */
.visit { padding: 112px 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.visit-photo { position: relative; }
.visit-photo img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 42% 58% 36% 64% / 44% 40% 60% 56%; box-shadow: var(--shadow-lg); }
.visit-tag {
  position: absolute; left: 6%; bottom: 8%;
  background: #fff; border-radius: 999px; padding: 10px 18px 10px 12px;
  display: flex; align-items: center; gap: 10px; font-weight: 800; box-shadow: var(--shadow);
}
.visit-tag svg { width: 30px; height: 30px; color: var(--coral); background: var(--coral-soft); border-radius: 50%; padding: 6px; }
.visit-copy h2 { margin-bottom: 34px; }
.steps { position: relative; display: grid; gap: 8px; }
.steps::before { content: ""; position: absolute; left: 21px; top: 24px; bottom: 24px; width: 2px; background: repeating-linear-gradient(180deg, var(--oat-3) 0 6px, transparent 6px 12px); }
.steps li { display: flex; gap: 20px; padding: 14px 0; position: relative; }
.s-num {
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  background: var(--white); border: 2px solid var(--teal); color: var(--teal);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
}
.steps li:first-child .s-num { background: var(--teal); color: #fff; }
.steps h3 { font-size: 20px; margin: 8px 0 6px; }
.steps p { color: var(--ink-2); font-size: 16px; }

/* ---------- panels ---------- */
.panels { padding: 104px 0; background: linear-gradient(180deg, var(--white), var(--oat) 60%); }
.panel-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
}
.pn { margin: 0; position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--oat-2); }
.pn img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pn:hover img { transform: scale(1.04); }
.pn-tall { grid-row: span 2; }
.pn figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255, 255, 255, .92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 8px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600;
}
.note-title { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 22px; color: #fff; }
.pn-note { grid-column: span 2; background: var(--ink); color: #fff; padding: 34px 36px; display: flex; flex-direction: column; justify-content: center; }
.note-kicker { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #ffb8a6; margin-bottom: 16px; }
.note-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.note-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; font-size: 17px; line-height: 1.35; }
.note-list svg { width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--teal); color: #fff; margin-top: 1px; }

/* ---------- faq ---------- */
.faq { padding: 104px 0; background: var(--oat); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details { background: var(--white); border-radius: var(--r); padding: 4px 24px; box-shadow: var(--shadow-sm); }
summary {
  list-style: none; cursor: pointer; font-weight: 800; font-size: 18px;
  padding: 18px 36px 18px 0; position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-2);
  display: grid; place-items: center; font-size: 20px; line-height: 1; transition: transform .25s ease;
}
details[open] summary::after { content: "–"; background: var(--teal); color: #fff; }
details p { color: var(--ink-2); padding-bottom: 20px; }

/* ---------- find us ---------- */
.find { padding: 104px 0 56px; }
.find-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.card { background: var(--white); border: 1px solid var(--oat-2); border-radius: var(--r-xl); padding: 32px; box-shadow: var(--shadow-sm); }
.card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.card-head svg { width: 26px; height: 26px; color: var(--teal); }
.card-head h2 { font-size: 30px; }
.hours-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--ink-2); font-weight: 600; }
.hours-list b { font-weight: 800; font-variant-numeric: tabular-nums; }
.hours-list .closed b { color: var(--coral-2); }
.hours-note { margin-top: 18px; display: flex; align-items: center; gap: 10px; background: var(--teal-soft); color: var(--teal-2); font-weight: 700; font-size: 15px; padding: 12px 16px; border-radius: 14px; }
.hours-note svg { width: 18px; height: 18px; }
.map { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.map-art { width: 100%; height: auto; display: block; font-family: "Figtree", sans-serif; }
.map-info { padding: 24px 30px 28px; }
.map-name { font-weight: 800; font-size: 20px; }
.muted-t { color: var(--muted); margin-top: 6px; font-size: 15.5px; }

/* ---------- CTA ---------- */
.cta { padding: 48px 0 104px; }
.cta-card {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255, 255, 255, .12), transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff; border-radius: 40px; padding: 64px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  overflow: hidden; position: relative;
}
.cta-card h2 { color: #fff; }
.cta-copy > p:not(.eyebrow) { color: #cfeae5; font-size: 18px; margin-top: 16px; max-width: 30em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta-phone {
  justify-self: center; width: 270px; height: 360px; margin-bottom: -128px;
  background: #16221f; border-radius: 44px 44px 0 0; padding: 12px 12px 0;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}
.ph-screen { background: linear-gradient(180deg, #f6efe4, #e7dcc9); height: 100%; border-radius: 34px 34px 0 0; padding: 26px 14px; }
.ph-time { text-align: center; font-weight: 800; font-size: 46px; color: var(--ink); letter-spacing: -.03em; margin-bottom: 18px; }
.ph-note { display: flex; gap: 10px; align-items: flex-start; background: rgba(255, 255, 255, .88); border-radius: 18px; padding: 12px; color: var(--ink); box-shadow: var(--shadow-sm); }
.ph-note .f-ico { width: 34px; height: 34px; border-radius: 10px; }
.ph-note .f-ico svg { width: 18px; height: 18px; }
.ph-note-2 { margin-top: 10px; }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: #d8d2c7; padding: 56px 0 28px; }
.foot .brand-name { color: #fff; }
.foot .brand-name small { color: #8fd6cb; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.foot-addr { margin-top: 16px; font-size: 15px; }
.foot-addr a { color: #fff; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 600; }
.foot-nav a { text-decoration: none; color: #d8d2c7; }
.foot-nav a:hover { color: #fff; }
.foot-nav .old-link { color: #ffb8a6; text-decoration: underline; text-underline-offset: 3px; }
.foot-note { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; color: #a8a297; }

/* ---------- scroll reveal (progressive) ---------- */
@supports (animation-timeline: view()) {
  .reveal {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
  @keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav { display: none; }
  .top-call { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 520px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat:last-child { grid-column: span 2; }
  .feat:last-child .mock { max-width: 420px; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "exam exam" "vacc dental" "young young" "spay small";
  }
  .visit-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit-photo { max-width: 520px; }
  .find-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 48px 40px 0; }
  .cta-phone { margin-bottom: 0; height: 300px; }
  .sec-head-row { flex-direction: column; align-items: flex-start; gap: 0; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .top-row { height: 64px; gap: 12px; }
  .brand-name { font-size: 17px; }
  .brand-mark { width: 36px; height: 36px; }
  .top-call span { display: none; }
  .top-call { padding: 11px; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 42px; }
  .lead { font-size: 17.5px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .float-slot { left: 0; bottom: 8%; width: 178px; padding: 12px 13px; }
  .f-big { font-size: 20px; }
  .f-pills span { font-size: 12px; padding: 4px 7px; }
  .float-remind { right: 0; top: 4%; padding: 10px 12px; gap: 9px; }
  .float-remind .f-ico { width: 34px; height: 34px; }
  .float-paw { width: 50px; height: 50px; right: 6%; }
  .species { margin-top: 40px; gap: 8px; }
  .species li { padding: 7px 13px; font-size: 14px; }
  .features, .services, .panels, .faq, .visit { padding: 72px 0; }
  .sec-head { margin-bottom: 32px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat:last-child { grid-column: auto; }
  .feat { padding: 14px 14px 26px; border-radius: 28px; }
  .mock { padding: 15px; }
  .bento { grid-template-columns: 1fr; grid-template-areas: "exam" "vacc" "dental" "young" "spay" "small"; gap: 14px; }
  .b-exam { flex-direction: column-reverse; min-height: 0; }
  .b-exam img { flex: none; width: 100%; height: 240px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .b-exam .b-copy { padding: 26px; flex: none; }
  .b-exam .price { margin-top: 6px; }
  .b-exam h3 { font-size: 30px; }
  .b-young { min-height: 320px; }
  .visit-grid { gap: 40px; }
  .panel-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 170px auto; gap: 12px; }
  .pn-tall { grid-row: auto; grid-column: span 2; }
  .note-title { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 22px; color: #fff; }
.pn-note { grid-column: span 2; padding: 26px 22px; }
  .pn figcaption { font-size: 13px; left: 10px; bottom: 10px; padding: 6px 11px; }
  .note-list { grid-template-columns: 1fr; }
  details { padding: 2px 18px; }
  summary { font-size: 16.5px; }
  .find { padding: 72px 0 40px; }
  .card { padding: 24px; border-radius: 28px; }
  .cta { padding: 32px 0 72px; }
  .cta-card { padding: 36px 22px 0; border-radius: 30px; }
  .cta-actions .btn { width: 100%; }
  .cta-phone { width: 250px; height: 330px; }
  .note-title { font-size: 23px; }
  .ph-time { font-size: 38px; margin-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
