:root {
  --maroon-900: #421725;
  --maroon-700: #5C2233;
  --maroon-600: #742C41;
  --maroon-300: #C98A9B;
  --maroon-100: #F4E3E8;
  --navy-950: #101B25;
  --navy-900: #16232E;
  --navy-700: #334755;
  --navy-500: #637580;
  --cream-100: #F8F4EE;
  --cream-200: #F1EAE1;
  --white: #FFFFFF;
  --border: rgba(22, 35, 46, 0.12);
  --shadow-soft: 0 18px 60px rgba(34, 25, 29, 0.10);
  --shadow-card: 0 12px 34px rgba(34, 25, 29, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--navy-900);
  background: var(--cream-100);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--maroon-100); color: var(--maroon-900); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 999;
  background: var(--navy-900);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.section { padding: 104px 0; }
.section-light { background: var(--white); }

.eyebrow {
  margin: 0 0 14px;
  color: var(--maroon-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-light { color: #E8BCC8; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--font-display); }
h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h3 { line-height: 1.28; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--maroon-600);
  border-radius: 999px;
  background: var(--maroon-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--maroon-700); box-shadow: 0 10px 24px rgba(92,34,51,.18); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #C48395; outline-offset: 4px; }
.button-secondary { background: transparent; color: var(--navy-900); border-color: rgba(22,35,46,.3); }
.button-secondary:hover { color: var(--maroon-700); background: var(--white); border-color: var(--maroon-300); }
.button-light { background: var(--cream-100); color: var(--maroon-700); border-color: var(--cream-100); }
.button-light:hover { background: white; }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 13px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(248,244,238,.86);
  backdrop-filter: blur(16px);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  --header-height: 68px;
  background: rgba(255,255,255,.94);
  border-color: var(--border);
  box-shadow: 0 8px 30px rgba(22,35,46,.06);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand-logo { display: block; width: 218px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; color: var(--navy-700); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--maroon-600); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; overflow: hidden; padding-top: 76px; }
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -280px;
  top: 140px;
  border: 1px solid rgba(116,44,65,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(116,44,65,.025), 0 0 0 144px rgba(116,44,65,.018);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(48px, 7vw, 92px); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 720px; margin-bottom: 17px; font-size: clamp(46px, 6.1vw, 76px); line-height: 1.01; letter-spacing: -.04em; }
.hero h1 span { color: var(--maroon-600); }
.hero-slogan { margin-bottom: 20px; color: var(--maroon-700); font-family: var(--font-display); font-size: clamp(27px, 3vw, 39px); font-style: italic; }
.hero-lead { max-width: 650px; margin-bottom: 28px; color: var(--navy-700); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: var(--navy-500); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--maroon-300); }
.hero-visual { position: relative; min-height: 610px; }
.photo-frame { overflow: hidden; background: #ddd; }
.photo-frame-hero { position: relative; height: 610px; border-radius: 200px 200px var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-soft); }
.photo-frame-hero::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.45); border-radius: inherit; pointer-events: none; }
.photo-frame-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.hero-orbit { position: absolute; width: 230px; height: 230px; right: -65px; top: -46px; border: 1px solid rgba(116,44,65,.2); border-radius: 50%; }
.hero-orbit::after { content: ""; position: absolute; inset: 28px; border-radius: 50%; border: 1px dashed rgba(116,44,65,.15); }
.floating-note { position: absolute; left: -44px; bottom: 34px; max-width: 245px; padding: 17px 20px; border: 1px solid rgba(116,44,65,.15); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 18px 45px rgba(34,25,29,.12); backdrop-filter: blur(10px); color: var(--navy-700); font-family: var(--font-display); font-size: 15px; line-height: 1.45; }
.floating-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--maroon-600); }

.hero-step { opacity: 0; transform: translateY(14px); animation: heroIn .68s cubic-bezier(.2,.65,.2,1) forwards; }
.hero-step:nth-child(1) { animation-delay: .05s; }
.hero-step:nth-child(2) { animation-delay: .13s; }
.hero-step:nth-child(3) { animation-delay: .21s; }
.hero-step:nth-child(4) { animation-delay: .29s; }
.hero-step:nth-child(5) { animation-delay: .37s; }
.hero-step:nth-child(6) { animation-delay: .45s; }
.hero-visual.hero-step { transform: translateY(12px) scale(.985); animation-name: heroPhotoIn; animation-delay: .18s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes heroPhotoIn { to { opacity: 1; transform: translateY(0) scale(1); } }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.52); }
.trust-items { display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.trust-items span { padding: 24px 12px; text-align: center; color: var(--navy-500); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.trust-items span + span { border-left: 1px solid var(--border); }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 650px; color: var(--navy-700); font-size: 16px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.condition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.condition-card { min-height: 245px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--cream-100); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.condition-card:hover { transform: translateY(-4px); border-color: rgba(116,44,65,.25); box-shadow: var(--shadow-card); }
.condition-card-accent { background: var(--maroon-700); color: white; border-color: var(--maroon-700); }
.condition-number { display: block; margin-bottom: 36px; color: var(--maroon-600); font-family: var(--font-display); font-size: 18px; font-style: italic; }
.condition-card-accent .condition-number { color: #EAC6D0; }
.condition-card h3 { margin-bottom: 10px; font-size: 19px; }
.condition-card p { margin: 0; color: var(--navy-700); font-size: 13px; line-height: 1.7; }
.condition-card-accent p { color: #F4E8EB; }
.medical-note { margin: 22px 0 0; color: var(--navy-500); font-size: 11px; }

.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { grid-column: span 2; position: relative; min-height: 280px; padding: 30px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 1px 0 rgba(22,35,46,.02); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(116,44,65,.25); }
.service-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -52px; top: -52px; border: 1px solid var(--maroon-100); border-radius: 50%; transition: transform .3s ease; }
.service-card:hover::after { transform: scale(1.2); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 14px; background: var(--maroon-100); color: var(--maroon-600); font-family: var(--font-display); font-style: italic; }
.service-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 21px; }
.service-card p { margin: 0; color: var(--navy-500); font-size: 13px; line-height: 1.7; }

.specialty-section { overflow: hidden; background: var(--cream-200); }
.specialty-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.specialty-copy > p { color: var(--navy-700); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; font-size: 13px; font-weight: 600; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--maroon-600); box-shadow: 0 0 0 4px var(--maroon-100); }
.lab-visual { position: relative; min-height: 610px; }
.lab-visual img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--radius-lg); object-fit: cover; object-position: center; box-shadow: var(--shadow-soft); }
.lab-shape { position: absolute; width: 280px; height: 280px; left: -62px; bottom: -62px; border-radius: 50%; background: var(--maroon-100); }
.lab-caption { position: absolute; left: -30px; bottom: 32px; padding: 15px 18px; border-radius: 14px; background: var(--navy-900); color: var(--cream-100); font-family: var(--font-display); font-size: 15px; box-shadow: var(--shadow-card); }

.section-navy { position: relative; overflow: hidden; background: var(--navy-900); color: var(--cream-100); }
.section-navy::after { content: ""; position: absolute; width: 560px; height: 560px; right: -180px; top: -190px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.012); }
.pathology-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .8fr; gap: 90px; align-items: end; }
.pathology-heading h2 { margin-bottom: 0; }
.pathology-copy p { color: #CCD4D9; font-size: 15px; line-height: 1.8; }
.pathology-copy p:last-child { margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 76px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; max-height: 670px; border-radius: var(--radius-lg); object-fit: cover; object-position: center 27%; box-shadow: var(--shadow-soft); }
.about-stamp { position: absolute; right: -28px; bottom: 30px; width: 146px; height: 146px; display: grid; place-items: center; align-content: center; gap: 5px; border: 1px solid rgba(92,34,51,.14); border-radius: 50%; background: var(--cream-100); color: var(--navy-900); text-align: center; box-shadow: 0 16px 40px rgba(92,34,51,.18); }
.about-stamp img { width: 72px; height: auto; }
.about-stamp span { color: var(--maroon-700); font-family: var(--font-display); font-size: 10px; font-style: italic; }
.about-lead { color: var(--navy-700); font-size: 17px; line-height: 1.8; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--navy-700); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.credentials div { padding: 17px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--cream-100); }
.credentials span { display: block; margin-bottom: 6px; color: var(--maroon-600); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.credentials strong { font-size: 12px; line-height: 1.4; }

.vet-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.vet-intro h2 { margin-bottom: 0; }
.vet-intro > p { margin-bottom: 6px; color: var(--navy-700); }
.referral-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.referral-flow li { position: relative; padding: 30px 28px 26px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.referral-flow li + li { border-left: 1px solid var(--border); }
.referral-flow span { display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 44px; border-radius: 50%; background: var(--maroon-100); color: var(--maroon-600); font-family: var(--font-display); font-style: italic; }
.referral-flow h3 { margin-bottom: 9px; font-family: var(--font-display); font-size: 19px; }
.referral-flow p { margin: 0; color: var(--navy-500); font-size: 12px; line-height: 1.7; }
.vet-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; padding: 28px 32px; border-radius: var(--radius-md); background: var(--maroon-700); color: white; }
.vet-cta span { display: block; color: #E8C5CE; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.vet-cta strong { display: block; margin-top: 4px; font-family: var(--font-display); font-size: 23px; }

.location-section { background: var(--cream-200); }
.location-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 70px; align-items: center; }
.location-grid > div:first-child > p:not(.eyebrow) { color: var(--navy-700); max-width: 580px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; color: var(--maroon-600); font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.location-card { position: relative; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 40px; border-radius: var(--radius-lg); background: var(--navy-900); color: white; }
.location-kicker { position: absolute; top: 34px; left: 40px; color: #D9B5BF; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.location-card strong { position: relative; z-index: 2; max-width: 440px; font-family: var(--font-display); font-size: 31px; line-height: 1.16; }
.location-card p { position: relative; z-index: 2; max-width: 440px; margin: 14px 0 0; color: #CAD3D8; font-size: 13px; }
.location-rings { position: absolute; width: 330px; height: 330px; top: -120px; right: -90px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,255,255,.025), 0 0 0 88px rgba(255,255,255,.015); }
.location-rings::after { content: ""; position: absolute; width: 10px; height: 10px; left: 56px; bottom: 56px; border-radius: 50%; background: var(--maroon-300); box-shadow: 0 0 0 10px rgba(201,138,155,.15); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading > p:last-child { color: var(--navy-700); }
.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 19px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 3px; top: 21px; color: var(--maroon-600); font-family: var(--font-body); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 46px 24px 0; margin: 0; color: var(--navy-700); font-size: 13px; line-height: 1.8; }

.contact-section { overflow: hidden; background: var(--maroon-700); color: white; }
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 76px; align-items: center; }
.contact-copy h2 { color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 580px; color: #F1DDE3; }
.contact-links { display: grid; gap: 0; max-width: 600px; margin: 32px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-links > * { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-links span { color: #E5BBC6; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.contact-links strong { font-size: 13px; }
.contact-photo { position: relative; height: 560px; }
.contact-photo::before { content: ""; position: absolute; inset: 28px -36px -28px 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 180px 180px 28px 28px; }
.contact-photo img { position: relative; width: 100%; height: 100%; border-radius: 180px 180px 28px 28px; object-fit: cover; object-position: center 28%; }

.site-footer { padding: 52px 0 28px; background: var(--navy-950); color: var(--cream-100); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .75fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: flex-start; }
.footer-logo-card { display: inline-flex; padding: 10px 13px; border-radius: 14px; background: var(--cream-100); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.footer-logo-card img { display: block; width: 220px; height: auto; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #BBC4CA; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-meta { display: grid; gap: 8px; color: #98A5AD; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #7F8D96; font-size: 10px; }
.footer-bottom span:last-child { font-family: var(--font-display); font-style: italic; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.65,.2,1), transform .65s cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.condition-grid .reveal:nth-child(2), .service-grid .reveal:nth-child(2), .referral-flow .reveal:nth-child(2) { transition-delay: 60ms; }
.condition-grid .reveal:nth-child(3), .service-grid .reveal:nth-child(3), .referral-flow .reveal:nth-child(3) { transition-delay: 120ms; }
.condition-grid .reveal:nth-child(4), .service-grid .reveal:nth-child(4), .referral-flow .reveal:nth-child(4) { transition-delay: 180ms; }
.condition-grid .reveal:nth-child(5), .service-grid .reveal:nth-child(5) { transition-delay: 240ms; }
.condition-grid .reveal:nth-child(6) { transition-delay: 300ms; }

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: var(--header-height); display: grid; gap: 2px; padding: 16px 24px 24px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,.98); box-shadow: 0 18px 35px rgba(22,35,46,.08); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav > a:not(.button) { padding: 10px 0; color: var(--navy-700); font-size: 14px; }
  .mobile-nav .button { margin-top: 8px; }
  .hero-grid, .specialty-grid, .about-grid, .pathology-grid, .location-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 620px); min-height: 640px; margin-inline: auto; }
  .photo-frame-hero { height: 640px; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; }
  .specialty-grid, .about-grid { gap: 54px; }
  .lab-visual { min-height: 650px; }
  .pathology-grid { gap: 28px; }
  .about-photo { width: min(100%, 560px); margin-inline: auto; }
  .vet-intro { grid-template-columns: 1fr; gap: 16px; }
  .referral-flow { grid-template-columns: repeat(2, 1fr); }
  .referral-flow li:nth-child(3) { border-left: 0; }
  .faq-heading { position: static; }
  .contact-grid { gap: 50px; }
  .contact-photo { width: min(100%, 600px); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .brand-logo { width: 188px; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-slogan { font-size: 29px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-meta { display: grid; gap: 8px; }
  .hero-visual { min-height: 520px; }
  .photo-frame-hero { height: 520px; border-radius: 120px 120px 24px 24px; }
  .floating-note { left: 14px; right: 14px; bottom: 18px; max-width: none; }
  .hero-orbit { right: -92px; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .trust-items span { border-bottom: 1px solid var(--border); }
  .trust-items span + span { border-left: 0; }
  .trust-items span:nth-child(even) { border-left: 1px solid var(--border); }
  .trust-items span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .condition-grid, .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .condition-card { min-height: auto; }
  .check-list { grid-template-columns: 1fr; }
  .lab-visual { min-height: 520px; }
  .lab-caption { left: 16px; right: 16px; bottom: 16px; text-align: center; }
  .about-stamp { right: -6px; width: 122px; height: 122px; }
  .about-stamp img { width: 60px; }
  .footer-logo-card img { width: 190px; }
  .credentials { grid-template-columns: 1fr; }
  .referral-flow { grid-template-columns: 1fr; }
  .referral-flow li + li { border-left: 0; border-top: 0; }
  .referral-flow li:nth-child(3) { border-left: 0; }
  .referral-flow span { margin-bottom: 20px; }
  .vet-cta { align-items: stretch; flex-direction: column; }
  .location-card { min-height: 330px; padding: 30px; }
  .location-kicker { left: 30px; }
  .location-card strong { font-size: 27px; }
  summary { font-size: 18px; }
  .contact-links > * { grid-template-columns: 1fr; gap: 4px; }
  .contact-photo { height: 500px; }
  .contact-photo::before { display: none; }
  .contact-photo img { border-radius: 110px 110px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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