@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --radius: 1rem;
  --background: oklch(0.985 0.008 215);
  --foreground: oklch(0.25 0.055 224);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.055 224);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.25 0.055 224);
  --primary: oklch(0.69 0.145 225);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.94 0.035 218);
  --secondary-foreground: oklch(0.29 0.07 224);
  --muted: oklch(0.95 0.014 220);
  --muted-foreground: oklch(0.52 0.035 224);
  --accent: oklch(0.93 0.055 208);
  --accent-foreground: oklch(0.28 0.075 224);
  --destructive: oklch(0.55 0.18 26);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.88 0.025 220);
  --input: oklch(0.88 0.025 220);
  --ring: oklch(0.69 0.145 225);
  --blue: #2da6d7;
  --blue-dark: #123f57;
  --blue-deep: #0c3348;
  --blue-soft: #dff4fb;
  --blue-pale: #f1fafd;
  --milk: #fbfdfd;
  --coral: #b53b3f;
  --ink-muted: #547383;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--milk);
  color: var(--blue-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
a[href], button:not(:disabled) { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { background: #9edff3; color: var(--blue-deep); }
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}
.mobile-nav[hidden] { display: none !important; }
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.site-shell { overflow: clip; }
.section-space { padding-block: clamp(3.8rem, 7vw, 6rem); }
.skip-link {
  position: fixed; top: 0.5rem; left: 0.5rem; z-index: 100;
  transform: translateY(-150%); padding: 0.7rem 1rem; border-radius: 0.5rem;
  background: var(--blue-deep); color: white; transition: transform 180ms var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 253, 253, 0.91);
  border-bottom: 1px solid rgba(45, 166, 215, 0.14);
  backdrop-filter: blur(18px);
}
.header-inner { height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand-link { display: flex; flex: 0 0 230px; width: 230px; height: 72px; align-items: center; overflow: visible; }
.brand-link img { position: static; width: 230px; height: auto; max-width: 100%; transform: none; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); margin-left: auto; }
.desktop-nav a { position: relative; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.02em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right 220ms var(--ease-out); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.open-status { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #337084; }
.open-status > span { width: 8px; height: 8px; border-radius: 50%; background: #2dbf74; box-shadow: 0 0 0 5px rgba(45,191,116,0.12); }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--blue-dark); background: var(--blue-soft); }
.mobile-nav { display: none; }

.whatsapp-button {
  display: inline-flex; width: fit-content; min-height: 52px; align-items: center; justify-content: center; gap: 0.7rem;
  padding: 0.82rem 1.18rem 0.82rem 1.05rem; border: 1px solid var(--blue); border-radius: 999px;
  background: var(--blue); color: white; box-shadow: 0 12px 26px rgba(23, 126, 168, 0.18);
  font-size: 0.86rem; font-weight: 800; line-height: 1; transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}
.whatsapp-button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(23, 126, 168, 0.25); background: #1599cd; }
.whatsapp-button:active { transform: scale(0.97); }
.whatsapp-button:focus-visible { outline: 3px solid rgba(45, 166, 215, 0.35); outline-offset: 3px; }
.whatsapp-button .button-arrow { transition: transform 180ms var(--ease-out); }
.whatsapp-button:hover .button-arrow { transform: translateX(3px); }
.whatsapp-button--inverse { background: white; border-color: white; color: var(--blue-deep); }
.whatsapp-button--inverse:hover { background: #eaf8fc; }
.header-cta { min-height: 46px; padding-block: 0.7rem; }

.hero-section { position: relative; min-height: 610px; display: flex; align-items: center; padding: 2.5rem 0 2.8rem; background: linear-gradient(118deg, #f8fdff 0%, #e8f8fc 49%, #cceefa 100%); }
.hero-section::before { content: ""; position: absolute; inset: 0; opacity: 0.23; background-image: radial-gradient(rgba(15,93,124,0.16) 0.8px, transparent 0.8px); background-size: 17px 17px; mask-image: linear-gradient(to right, black, transparent 52%); }
.hero-orbit { position: absolute; border: 1px solid rgba(45, 166, 215, 0.25); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { width: 36vw; height: 36vw; min-width: 380px; min-height: 380px; right: -10vw; top: -12vw; }
.hero-orbit--two { width: 20vw; height: 20vw; min-width: 240px; min-height: 240px; right: 28vw; bottom: -13vw; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr); align-items: center; gap: clamp(2.5rem, 5vw, 5rem); }
.hero-copy { max-width: 655px; animation: heroIn 700ms var(--ease-out) both; }
.hero-kicker { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #39778d; }
.hero-kicker i { width: 26px; height: 1px; background: var(--blue); }
.hero-copy h1, .section-heading h2, .diagnostic-copy h2, .emergency-inner h2 { margin: 0; font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: -0.052em; line-height: 1.02; }
.hero-copy h1 { max-width: 700px; font-size: clamp(3rem, 5.2vw, 4.9rem); color: var(--blue-deep); }
.title-accent { display: block; color: var(--blue); font-style: normal; font-weight: 700; }
.title-accent--inline { display: inline; }
.hero-lead { max-width: 650px; margin: 1.2rem 0 1.5rem; color: #456a7a; font-size: clamp(.96rem, 1.25vw, 1.08rem); line-height: 1.62; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.contact-note { display: flex; align-items: center; gap: 0.7rem; color: #376477; }
.contact-note > svg { color: var(--blue); }
.contact-note span { display: flex; flex-direction: column; line-height: 1.3; }
.contact-note strong { font-size: 0.8rem; }
.contact-note small { font-size: 0.75rem; color: #628494; }
.hero-proof { display: flex; align-items: center; gap: 1rem; margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid rgba(18, 63, 87, 0.13); }
.proof-avatars { display: flex; }
.proof-avatars span { display: grid; place-items: center; width: 38px; height: 38px; margin-left: -7px; border: 2px solid #effbfe; border-radius: 50%; background: var(--blue-dark); color: white; }
.proof-avatars span:first-child { margin-left: 0; background: var(--blue); }
.proof-avatars span:last-child { background: #62c7e6; }
.hero-proof p { max-width: 360px; margin: 0; font-size: 0.78rem; line-height: 1.5; color: #577b8a; }
.hero-proof strong { color: var(--blue-dark); }
.hero-visual { position: relative; width: min(100%, 460px); margin-left: auto; animation: heroIn 800ms 100ms var(--ease-out) both; }
.hero-photo-frame { position: relative; margin: 0; padding: 0.7rem; background: rgba(255,255,255,0.66); border: 1px solid rgba(255,255,255,0.8); border-radius: 48% 48% 1.8rem 1.8rem; box-shadow: 0 35px 90px rgba(22, 103, 136, 0.22); }
.hero-photo-frame > img { width: 100%; aspect-ratio: 4/4.35; object-fit: cover; border-radius: 47% 47% 1.35rem 1.35rem; }
.hero-photo-frame figcaption { position: absolute; left: -2rem; bottom: 2.4rem; display: flex; align-items: center; gap: 0.75rem; min-width: 245px; padding: 1rem 1.15rem; border-radius: 1rem; background: rgba(255,255,255,0.93); box-shadow: 0 17px 40px rgba(12, 51, 72, 0.16); backdrop-filter: blur(14px); }
.hero-photo-frame figcaption svg { color: var(--blue); }
.hero-photo-frame figcaption span { display: flex; flex-direction: column; line-height: 1.35; }
.hero-photo-frame figcaption strong { font-size: 0.8rem; }
.hero-photo-frame figcaption span { font-size: 0.68rem; color: #638290; }
.hero-hours-card { position: absolute; right: -2.2rem; top: 17%; display: grid; place-items: center; width: 102px; height: 102px; padding: 1rem; border-radius: 50%; background: var(--blue-deep); color: white; text-align: center; box-shadow: 0 18px 45px rgba(12,51,72,0.3); }
.hero-hours-card span { font-family: "Sora", sans-serif; font-size: 1.7rem; font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.hero-hours-card p { margin: -0.8rem 0 0; font-size: 0.63rem; line-height: 1.25; }
.hero-cross { position: absolute; z-index: -1; left: -3.7rem; top: 8%; display: grid; place-items: center; width: 112px; height: 112px; border-radius: 1.3rem; transform: rotate(-8deg); background: rgba(45,166,215,0.16); color: white; }
.hero-cross svg { width: 60px; height: 60px; stroke-width: 1; }

.trust-strip { position: relative; z-index: 2; background: var(--blue-deep); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; gap: 1rem; min-height: 92px; padding: 1rem clamp(1rem, 2.5vw, 2rem); border-left: 1px solid rgba(255,255,255,0.13); }
.trust-grid > div:first-child { border-left: 0; }
.trust-grid strong { font-family: "Manrope", sans-serif; font-size: clamp(1.7rem, 2.5vw, 2.35rem); font-weight: 800; letter-spacing: -.055em; color: #76d2ee; line-height: 1; }
.trust-grid span { font-size: 0.72rem; color: #c7e0e9; line-height: 1.45; }

.section-heading { max-width: 650px; }
.eyebrow, .section-heading .eyebrow { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--coral); font-size: 0.71rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow::before, .section-heading .eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-heading h2 { margin-top: 1rem; font-size: clamp(2.35rem, 4.6vw, 4.2rem); color: var(--blue-deep); }
.section-heading > p { max-width: 590px; margin: 1.5rem 0 0; color: var(--ink-muted); font-size: 1rem; line-height: 1.75; }

.promise-section { background: var(--milk); }
.promise-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(4rem, 8vw, 8.5rem); }
.promise-visual { position: relative; }
.photo-shape { position: relative; overflow: hidden; border-radius: 1.5rem 9rem 1.5rem 1.5rem; box-shadow: 0 30px 80px rgba(19, 89, 117, 0.15); }
.photo-shape::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,44,61,.26), transparent 50%); }
.photo-shape img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.promise-stamp { position: absolute; right: -2.4rem; bottom: 2.2rem; display: flex; align-items: center; gap: .7rem; max-width: 220px; padding: 1rem 1.1rem; border-radius: 1rem; background: var(--blue); color: white; box-shadow: 0 14px 35px rgba(45,166,215,.27); font-size: .72rem; font-weight: 700; line-height: 1.4; }
.promise-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0 2.2rem; }
.promise-points > div { display: flex; gap: .8rem; align-items: flex-start; }
.promise-points > div:first-child { grid-column: 1/-1; }
.promise-points > div > span { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); }
.promise-points p { margin: 0; color: #5a7a88; font-size: .78rem; }
.promise-points strong { display: block; color: var(--blue-dark); font-size: .84rem; }

.services-section { position: relative; background: var(--blue-pale); }
.services-watermark { position: absolute; right: -1vw; top: 2rem; color: rgba(45,166,215,.055); font-family: "Sora", sans-serif; font-size: clamp(7rem, 18vw, 18rem); font-weight: 800; letter-spacing: -.08em; line-height: 1; pointer-events: none; }
.services-intro { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; margin-bottom: 2.7rem; }
.services-grid { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.service-card { position: relative; min-height: 272px; padding: 1.7rem; border: 1px solid rgba(45,166,215,.13); background: rgba(255,255,255,.85); box-shadow: 0 18px 46px rgba(25,104,134,.07); transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 25px 55px rgba(25,104,134,.12); }
.service-card--1, .service-card--6 { grid-column: span 5; border-radius: 1.2rem 4rem 1.2rem 1.2rem; }
.service-card--2, .service-card--3, .service-card--4, .service-card--5 { grid-column: span 3.5; }
.service-card--2, .service-card--4 { grid-column: span 4; border-radius: 1.2rem; }
.service-card--3, .service-card--5 { grid-column: span 3; border-radius: 4rem 1.2rem 1.2rem 1.2rem; }
.service-card--4 { grid-column: span 3; }
.service-card--5 { grid-column: span 4; }
.service-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.4rem; border-radius: 50%; background: var(--blue-soft); color: var(--blue); }
.service-card > span { color: var(--coral); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { max-width: 300px; margin: .65rem 0 .75rem; font-family: "Sora", sans-serif; font-size: 1.25rem; letter-spacing: -.035em; line-height: 1.18; }
.service-card p { margin: 0; color: #65818d; font-size: .78rem; line-height: 1.65; }

.diagnostic-feature { background: white; }
.diagnostic-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.diagnostic-copy h2 { margin-top: 1rem; font-size: clamp(2.7rem, 4.5vw, 4.6rem); color: var(--blue-deep); }
.diagnostic-copy p { color: var(--ink-muted); }
.diagnostic-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; padding: 0; margin: 1.7rem 0 2rem; list-style: none; }
.diagnostic-copy li { display: flex; align-items: center; gap: .5rem; color: #3f6879; font-size: .79rem; font-weight: 700; }
.diagnostic-copy li svg { flex: 0 0 auto; padding: 2px; border-radius: 50%; background: var(--blue); color: white; }
.diagnostic-photo { position: relative; margin: 0; }
.diagnostic-photo::before { content: ""; position: absolute; z-index: 0; left: -1.5rem; top: -1.5rem; width: 65%; height: 75%; border-radius: 1rem; background: var(--blue-soft); }
.diagnostic-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 7rem 1.5rem 1.5rem 1.5rem; box-shadow: 0 28px 70px rgba(15,81,107,.16); }
.diagnostic-photo figcaption { position: absolute; z-index: 2; right: -1rem; bottom: -1rem; display: flex; align-items: center; gap: .6rem; padding: .85rem 1.1rem; border-radius: 999px; background: var(--blue-deep); color: white; font-size: .73rem; font-weight: 700; }

.specialties-section { position: relative; overflow: hidden; background: var(--blue-deep); color: white; }
.specialty-arc { position: absolute; width: 46vw; height: 46vw; min-width: 530px; min-height: 530px; left: -16vw; bottom: -23vw; border: 1px solid rgba(117,211,239,.18); border-radius: 50%; box-shadow: 0 0 0 80px rgba(117,211,239,.025), 0 0 0 160px rgba(117,211,239,.018); }
.specialties-layout { position: relative; display: grid; grid-template-columns: minmax(300px,.8fr) minmax(0,1.2fr); gap: clamp(4rem, 9vw, 9rem); }
.specialties-sidebar { position: sticky; top: 130px; align-self: start; }
.section-heading--light h2 { color: white; }
.section-heading--light .title-accent { color: #76d2ee; }
.section-heading--light > p { color: #b7d2dd; }
.section-heading--light .eyebrow { color: #f18e8e; }
.specialties-count { display: flex; align-items: center; gap: 1.2rem; margin: 2rem 0; }
.specialties-count strong { font-family: "Manrope", sans-serif; font-size: 4.5rem; font-weight: 800; letter-spacing: -.065em; color: #76d2ee; line-height: 1; }
.specialties-count span { color: #bad5df; font-size: .75rem; line-height: 1.45; }
.specialties-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
.specialties-list > div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: .8rem; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.12); }
.specialties-list span { color: #63bad6; font-size: .64rem; font-weight: 800; }
.specialties-list p { margin: 0; font-size: .78rem; font-weight: 600; }
.specialties-list svg { color: rgba(255,255,255,.28); }

.facility-section { background: var(--milk); }
.facility-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.facility-index { color: #76a7ba; font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.facility-panels { display: grid; grid-template-columns: minmax(0,1.18fr) minmax(340px,.82fr); border: 1px solid #dbeef4; border-radius: 1.3rem; overflow: hidden; background: white; box-shadow: 0 24px 70px rgba(27,93,119,.1); }
.facility-main-card { position: relative; min-height: 570px; margin: 0; overflow: hidden; }
.facility-main-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,41,58,.8), transparent 58%); }
.facility-main-card img { width: 100%; height: 100%; object-fit: cover; }
.facility-overlay { position: absolute; z-index: 2; left: 2rem; right: 2rem; bottom: 2rem; color: white; }
.facility-overlay span { font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #8edcf2; }
.facility-overlay h3 { max-width: 480px; margin: .6rem 0 0; font-family: "Sora", sans-serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); letter-spacing: -.045em; line-height: 1.08; }
.facility-details { display: flex; flex-direction: column; }
.facility-details article { flex: 1; display: grid; grid-template-columns: 36px 1fr; gap: .8rem; align-items: center; padding: 1.1rem 1.4rem; border-bottom: 1px solid #dbeef4; transition: background 180ms var(--ease-out); }
.facility-details article:last-child { border-bottom: 0; }
.facility-details article:hover { background: var(--blue-pale); }
.facility-details article > span { color: var(--blue); font-size: .66rem; font-weight: 800; }
.facility-details h3 { margin: 0 0 .25rem; font-family: "Sora", sans-serif; font-size: .9rem; letter-spacing: -.025em; }
.facility-details p { margin: 0; color: #718995; font-size: .7rem; line-height: 1.5; }
.facility-cta-row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: 2rem; padding: 1.25rem 0; border-top: 1px solid #d9edf4; }
.facility-cta-row p { margin: 0; font-family: "Sora", sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: -.025em; }

.grooming-section { background: linear-gradient(135deg, #eaf8fc, #f8fdff 70%); }
.grooming-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.grooming-photo { position: relative; margin: 0; }
.grooming-photo::before { content: ""; position: absolute; right: -1.2rem; bottom: -1.2rem; width: 70%; height: 80%; border: 1px solid rgba(45,166,215,.35); border-radius: 2rem; }
.grooming-photo img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 1.4rem 7rem 1.4rem 1.4rem; box-shadow: 0 25px 70px rgba(23,102,133,.14); }
.grooming-badge { position: absolute; left: -1.2rem; bottom: 2rem; display: flex; align-items: center; gap: .7rem; padding: 1rem 1.15rem; border-radius: 1rem; background: white; color: var(--blue); box-shadow: 0 16px 38px rgba(13,68,90,.15); font-size: .68rem; font-weight: 800; line-height: 1.4; }
.grooming-features { display: grid; gap: .9rem; margin: 2rem 0; }
.grooming-features > div { display: grid; grid-template-columns: 38px 1fr; gap: .7rem; align-items: start; padding-bottom: .9rem; border-bottom: 1px solid #cde8f1; }
.grooming-features span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.grooming-features p { margin: 0; color: #66828e; font-size: .76rem; }
.grooming-features strong { display: block; color: var(--blue-dark); font-size: .84rem; }

.emergency-section { position: relative; padding-block: clamp(3.6rem, 6vw, 5.2rem); overflow: hidden; background: var(--blue); color: white; }
.emergency-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(12,51,72,.18), transparent 60%); }
.emergency-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.emergency-inner .eyebrow { color: #ffe0e0; }
.emergency-inner h2 { max-width: 720px; margin-top: 1rem; color: white; font-size: clamp(3rem, 6vw, 5.6rem); }
.emergency-inner p { margin: 1rem 0 0; color: #dff6fc; }
.emergency-action { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.emergency-action > strong { font-family: "Manrope", sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.04em; }
.emergency-crosses { position: absolute; right: 5%; top: -10%; display: flex; gap: .5rem; opacity: .08; transform: rotate(-10deg); }
.emergency-crosses svg { width: 140px; height: 140px; }

.site-footer { padding: 4rem 0 1.5rem; background: #082a3b; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr .8fr; gap: clamp(2.5rem, 7vw, 7rem); }
.footer-brand img { width: 210px; padding: .6rem; border-radius: .7rem; background: white; }
.footer-brand p { max-width: 390px; margin-top: 1.5rem; color: #a9c8d4; font-size: .82rem; }
.footer-column { display: flex; flex-direction: column; gap: .65rem; }
.footer-column > span { margin-bottom: .5rem; color: #65c7e5; font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a:not(.whatsapp-button) { width: fit-content; color: #c0d9e2; font-size: .78rem; }
.footer-column a:not(.whatsapp-button):hover { color: white; }
.footer-contact strong { font-family: "Manrope", sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.035em; }
.footer-contact p { margin: 0 0 .7rem; color: #a9c8d4; font-size: .75rem; }
.footer-contact .whatsapp-button { min-height: 46px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); color: #789aa8; font-size: .64rem; }
.footer-bottom p { margin: 0; }
.agency-credit { color: #9edff3; font-weight: 700; transition: color 180ms var(--ease-out); }
.agency-credit:hover, .agency-credit:focus-visible { color: white; text-decoration: underline; text-underline-offset: 3px; }

.floating-whatsapp { position: fixed; z-index: 45; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: .65rem; min-height: 54px; padding: .85rem 1.05rem; border: 3px solid white; border-radius: 999px; background: #1eaf65; color: white; box-shadow: 0 16px 35px rgba(11,77,43,.3); font-size: .78rem; font-weight: 800; transition: transform 180ms var(--ease-out); }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp:active { transform: scale(.97); }

@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1080px) {
  .desktop-nav, .open-status { display: none; }
  .header-inner { height: 82px; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { display: grid; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); padding: 1rem; border: 1px solid #dceef4; border-radius: 1rem; background: rgba(255,255,255,.97); box-shadow: 0 24px 50px rgba(12,51,72,.16); backdrop-filter: blur(18px); }
  .mobile-nav > a:not(.whatsapp-button) { display: flex; justify-content: space-between; padding: .8rem .4rem; border-bottom: 1px solid #e1eff4; font-size: .85rem; font-weight: 700; }
  .mobile-nav .whatsapp-button { width: 100%; margin-top: 1rem; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(350px,.78fr); gap: 2.5rem; }
  .hero-photo-frame figcaption { left: -1rem; }
  .hero-hours-card { right: -1rem; width: 98px; height: 98px; }
  .promise-grid { gap: 4rem; }
  .specialties-layout { gap: 4rem; }
}

@media (max-width: 840px) {
  .section-space { padding-block: 4.5rem; }
  .header-cta { display: none; }
  .brand-link { flex-basis: 176px; width: 176px; height: 64px; }
  .brand-link img { width: 176px; height: auto; }
  .hero-section { min-height: 0; padding-top: 3.2rem; }
  .hero-grid, .promise-grid, .diagnostic-grid, .specialties-layout, .grooming-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 11vw, 5.2rem); }
  .hero-visual { width: min(82%, 560px); margin: 2rem auto 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.13); }
  .promise-visual { width: min(85%, 550px); }
  .promise-stamp { right: -1.2rem; }
  .services-intro { align-items: flex-start; flex-direction: column; }
  .service-card--1, .service-card--2, .service-card--3, .service-card--4, .service-card--5, .service-card--6 { grid-column: span 6; border-radius: 1.2rem; }
  .diagnostic-photo { width: min(90%, 680px); margin-left: auto; }
  .specialties-sidebar { position: relative; top: 0; }
  .specialties-list { margin-top: 1rem; }
  .facility-panels { grid-template-columns: 1fr; }
  .facility-main-card { min-height: 470px; }
  .facility-details { display: grid; grid-template-columns: 1fr 1fr; }
  .facility-details article { min-height: 120px; border-right: 1px solid #dbeef4; }
  .facility-details article:nth-child(even) { border-right: 0; }
  .grooming-photo { width: min(90%, 650px); }
  .emergency-inner { align-items: flex-start; flex-direction: column; }
  .emergency-action { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  body { padding-bottom: 70px; }
  .container { padding-inline: 1.1rem; }
  .section-space { padding-block: 3.8rem; }
  .header-inner { height: 72px; }
  .brand-link { flex-basis: 158px; width: 158px; height: 56px; }
  .brand-link img { width: 158px; height: auto; }
  .hero-section { padding: 2.7rem 0 3.8rem; }
  .hero-kicker { flex-wrap: wrap; gap: .45rem .7rem; font-size: .61rem; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .whatsapp-button { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .hero-visual { width: calc(100% - 1rem); }
  .hero-photo-frame { border-radius: 43% 43% 1.4rem 1.4rem; }
  .hero-photo-frame figcaption { left: -.5rem; bottom: 1.2rem; min-width: 215px; padding: .85rem; }
  .hero-hours-card { right: -.8rem; top: 12%; width: 86px; height: 86px; }
  .hero-hours-card span { font-size: 1.6rem; }
  .hero-hours-card p { font-size: .55rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div:nth-child(2) { min-height: 96px; border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .trust-grid > div:first-child { border-top: 0; }
  .section-heading h2, .diagnostic-copy h2 { font-size: clamp(2.6rem, 13vw, 3.7rem); }
  .promise-visual { width: calc(100% - 1rem); }
  .photo-shape { border-radius: 1.2rem 5rem 1.2rem 1.2rem; }
  .promise-stamp { right: -.8rem; bottom: 1rem; }
  .promise-points { grid-template-columns: 1fr; }
  .promise-points > div:first-child { grid-column: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--1, .service-card--2, .service-card--3, .service-card--4, .service-card--5, .service-card--6 { grid-column: auto; min-height: 0; }
  .diagnostic-copy ul { grid-template-columns: 1fr; }
  .diagnostic-photo { width: calc(100% - .7rem); }
  .diagnostic-photo img { border-radius: 4.5rem 1rem 1rem 1rem; }
  .specialties-list { grid-template-columns: 1fr; }
  .specialties-count strong { font-size: 4rem; }
  .facility-heading-row { align-items: flex-start; flex-direction: column; }
  .facility-main-card { min-height: 410px; }
  .facility-overlay { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; }
  .facility-details { grid-template-columns: 1fr; }
  .facility-details article { border-right: 0; }
  .facility-cta-row { align-items: flex-start; flex-direction: column; }
  .facility-cta-row .whatsapp-button { width: 100%; }
  .grooming-photo { width: calc(100% - .7rem); }
  .grooming-photo img { border-radius: 1rem 4.5rem 1rem 1rem; }
  .grooming-badge { left: -.6rem; bottom: 1rem; }
  .emergency-action, .emergency-action .whatsapp-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { left: 0; right: 0; bottom: 0; min-height: 70px; justify-content: center; border: 0; border-radius: 0; box-shadow: 0 -8px 30px rgba(10,70,40,.2); font-size: .9rem; }
}

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

