:root {
  --green: #76bd1d;
  --green-dark: #4d9715;
  --orange: #ff7417;
  --orange-dark: #ef5f00;
  --ink: #4a5365;
  --muted: #7a8496;
  --cream: #fff9ea;
  --soft: #fffdf7;
  --shadow: 0 18px 45px rgba(73, 84, 98, 0.14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(37, 51, 73, 0.08);
}
.navbar { width: min(1180px, calc(100% - 48px)); margin: auto; min-height: 92px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(140deg, var(--orange), var(--green)); color: #fff; font-size: 29px; box-shadow: inset 0 0 0 7px rgba(255,255,255,.45); }
.brand strong { display: block; color: var(--orange); font-size: clamp(1.5rem, 2vw, 2rem); line-height: 1; }
.brand strong span, h1 span, h2 span { color: var(--green); }
.brand small { display: block; color: var(--orange); font-size: .78rem; font-weight: 700; }
.main-menu { display: flex; list-style: none; gap: 32px; margin: 0 0 0 auto; padding: 0; font-size: .9rem; font-weight: 800; }
.main-menu a { padding: 12px 0; position: relative; }
.main-menu a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 3px; border-radius: 4px; background: var(--orange); transition: width .25s; }
.main-menu a:hover::after, .main-menu a.active::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--orange); font-size: 2rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 25px; border-radius: 999px; font-weight: 900; font-size: .86rem; box-shadow: 0 12px 24px rgba(255, 116, 23, .2); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: var(--green); color: white; box-shadow: 0 12px 24px rgba(118, 189, 29, .22); }
.btn-light { background: white; color: var(--green); border-color: #dcedc9; box-shadow: 0 12px 24px rgba(76, 151, 21, .12); }

.hero { position: relative; min-height: 780px; overflow: hidden; display: grid; align-items: center; background: linear-gradient(90deg, rgba(255,249,234,.98), rgba(255,255,255,.48)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover; }
.parallax-sky { position: absolute; inset: 0; background: radial-gradient(circle at 20% 60%, rgba(255,116,23,.2), transparent 22%), radial-gradient(circle at 85% 30%, rgba(118,189,29,.18), transparent 28%); will-change: transform; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; padding: 85px 0 130px; }
.eyebrow { margin: 0 0 12px; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; font-weight: 950; font-size: .82rem; }
.eyebrow.light { color: #ffe9d7; }
h1, h2 { margin: 0; color: var(--ink); line-height: .98; letter-spacing: -.055em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); max-width: 720px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.hero-copy > p:not(.eyebrow) { max-width: 480px; font-size: 1.3rem; line-height: 1.7; font-weight: 650; color: #536071; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.hero-card { min-height: 500px; position: relative; border-radius: 45% 55% 38% 62% / 62% 44% 56% 38%; background: linear-gradient(150deg, rgba(255,255,255,.45), rgba(255,255,255,.05)); display: grid; place-items: center; }
.photo-glow { position: absolute; width: 78%; aspect-ratio: 1.18; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.86), rgba(255,255,255,.26) 45%, transparent 72%); filter: blur(4px); }
.pet-portrait { position: absolute; filter: drop-shadow(0 24px 20px rgba(30,50,15,.26)); }
.big-dog { font-size: clamp(12rem, 24vw, 24rem); right: 4%; bottom: 0; animation: floatPet 3s ease-in-out infinite; }
.big-cat { font-size: clamp(7rem, 13vw, 13rem); left: 10%; bottom: 38px; transform: scaleX(-1); animation: floatPet 2.5s ease-in-out infinite reverse; }
@keyframes floatPet { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }

.playful-pets { position: fixed; inset: 0; z-index: 120; pointer-events: none; overflow: hidden; }
.free-pet { --pet-x: 20vw; --pet-y: 50vh; --pet-direction: 1; --pet-squash: 1; position: fixed; left: 0; top: 0; width: 82px; height: 82px; border: 0; padding: 0; background: transparent; cursor: pointer; pointer-events: auto; opacity: 0; transform: translate(var(--pet-x), var(--pet-y)) translate(-50%, -100%) scaleX(var(--pet-direction)) scaleY(var(--pet-squash)); transform-origin: center bottom; filter: drop-shadow(0 16px 14px rgba(48, 70, 24, .22)); z-index: 121; transition: opacity .25s ease; }
.free-pet.is-visible { opacity: 1; }
.free-pet-dog { width: 92px; height: 92px; }
.pet-body { position: absolute; inset: 0; display: grid; place-items: center; font-size: 4.15rem; transition: opacity .18s ease, scale .18s ease; }
.free-pet-dog .pet-body { font-size: 4.65rem; }
.pet-front { opacity: 0; scale: .82; }
.pet-heart { position: absolute; left: 50%; top: -25px; translate: -50% 8px; color: var(--orange); font-size: 1.9rem; text-shadow: 0 4px 0 white, 0 10px 18px rgba(255, 116, 23, .3); opacity: 0; scale: .55; }
.free-pet::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 58px; height: 12px; border-radius: 50%; background: rgba(77, 151, 21, .16); translate: -50% 0; transition: scale .2s ease, opacity .2s ease; z-index: -1; }
.free-pet.is-jumping::after { scale: .55; opacity: .25; }
.free-pet.is-landed::after { scale: 1.28 .78; opacity: .42; }
.free-pet.is-loved { animation: happyBounce .45s ease-in-out infinite alternate; filter: drop-shadow(0 18px 18px rgba(255, 116, 23, .26)); }
.free-pet.is-loved .pet-side { opacity: 0; scale: .82; }
.free-pet.is-loved .pet-front { opacity: 1; scale: 1.04; }
.free-pet.is-loved .pet-heart { animation: heartPop 2s ease forwards; }
@keyframes heartPop { 0% { opacity: 0; scale: .4; translate: -50% 12px; } 18% { opacity: 1; scale: 1.22; translate: -50% -2px; } 70% { opacity: 1; scale: 1; translate: -50% -12px; } 100% { opacity: 0; scale: .8; translate: -50% -26px; } }
@keyframes happyBounce { from { margin-top: 0; } to { margin-top: -10px; } }
.pet-platform { position: relative; outline: 2px dashed rgba(118, 189, 29, .34); outline-offset: 6px; border-radius: 14px; transition: outline-color .18s ease, box-shadow .18s ease; }
.pet-platform-current { outline-color: rgba(255, 116, 23, .62); box-shadow: 0 0 0 8px rgba(255, 116, 23, .08); }
.wave { position: absolute; left: -5%; right: -5%; bottom: -1px; height: 170px; clip-path: polygon(0 22%, 18% 48%, 42% 58%, 70% 42%, 100% 10%, 100% 100%, 0 100%); }
.wave-orange { background: linear-gradient(90deg, var(--orange), #ff9c1a); z-index: 3; opacity: .96; width: 58%; }
.wave-green { background: linear-gradient(90deg, var(--green), #93cf26); z-index: 2; left: 36%; }
.scroll-down { position: absolute; z-index: 6; bottom: 30px; left: 50%; transform: translateX(-50%); width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--orange); font-size: 2.3rem; box-shadow: var(--shadow); }

.section { padding: 80px 0; background: var(--soft); }
.section-heading { text-align: center; margin-bottom: 48px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.service-card { text-align: center; padding: 20px 12px; border-radius: 22px; transition: .25s ease; }
.service-card:hover { background: white; box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card span { color: var(--green); font-size: 3.1rem; }
.service-card h3 { margin: 18px 0 10px; font-size: 1rem; }
.service-card p, .branch-card p, footer p { color: var(--muted); line-height: 1.55; font-size: .92rem; }
.center { text-align: center; margin-top: 42px; }

.split-section { background: linear-gradient(90deg, #fff 50%, #fffdf8); padding: 50px 0; }
.split-grid, .stats-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.image-panel { min-height: 520px; position: relative; overflow: hidden; border-radius: 0 38px 38px 0; background: linear-gradient(160deg, rgba(255,116,23,.22), rgba(118,189,29,.16)), url("https://images.unsplash.com/photo-1564608341950-67d3bb7af4d4?auto=format&fit=crop&w=1100&q=80") center/cover; box-shadow: var(--shadow); }
.panel-pet { position: absolute; bottom: 32px; font-size: 11rem; filter: drop-shadow(0 18px 15px rgba(0,0,0,.18)); }
.panel-pet.dog { left: 13%; } .panel-pet.cat { right: 17%; font-size: 8rem; }
.doodle { position: absolute; color: var(--orange); font-size: 6rem; font-weight: 900; } .heart { left: 55px; top: 60px; } .rays { right: 75px; top: 90px; color: var(--green); }
.years-badge { position: absolute; left: 80px; bottom: 60px; width: 170px; height: 145px; border-radius: 14px; border: 5px solid white; background: var(--green); color: white; display: grid; place-items: center; text-align: center; box-shadow: var(--shadow); }
.years-badge strong { font-size: 2.3rem; }
.years-badge span { max-width: 110px; font-size: .95rem; font-weight: 800; }
.feature-copy h2 { max-width: 560px; margin-bottom: 34px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; }
.feature-list li { display: flex; gap: 20px; align-items: flex-start; }
.feature-list li > span { width: 58px; height: 58px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 1.45rem; }
.feature-list li:nth-child(2) > span { background: var(--green); }
.feature-list h3 { margin: 0 0 8px; } .feature-list p { margin: 0; color: var(--muted); line-height: 1.6; }

.promo { min-height: 170px; margin-block: 58px; padding: 28px 72px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 30px; align-items: center; color: white; border-radius: 14px; background: linear-gradient(100deg, #ff930f, var(--orange)); box-shadow: var(--shadow); overflow: hidden; }
.promo h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); } .promo p { margin: 8px 0 0; }
.promo-pet, .promo-cat { font-size: 6.5rem; filter: drop-shadow(0 12px 12px rgba(0,0,0,.18)); } .promo-cat { transform: scaleX(-1); }
.stats-section { padding: 34px 0 70px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.stats-grid article { background: #fffaf0; border-radius: 12px; min-height: 132px; display: grid; place-items: center; padding: 16px; text-align: center; box-shadow: 0 12px 30px rgba(73,84,98,.07); }
.stats-grid span { color: var(--orange); font-size: 2.6rem; } .stats-grid strong { color: var(--ink); font-size: 1.75rem; } .stats-grid small { color: var(--muted); font-weight: 800; }
.vet-photo { min-height: 360px; border-radius: 54% 46% 42% 58% / 45% 45% 55% 55%; background: linear-gradient(135deg, #ecf8df, #fff4df); display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: var(--shadow); }
.vet-photo span:first-child { font-size: 10rem; } .vet-photo span:last-child { font-size: 8rem; }

.branches { position: relative; padding: 78px 0; background: #fff7e6; overflow: hidden; }
.branches::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(35deg, transparent 48%, #d6cfc0 49%, #d6cfc0 51%, transparent 52%), linear-gradient(-35deg, transparent 48%, #d6cfc0 49%, #d6cfc0 51%, transparent 52%); background-size: 130px 130px; }
.branch-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.branch-card { background: white; border-radius: 14px; padding: 14px 14px 24px; text-align: center; box-shadow: var(--shadow); }
.branch-card div { height: 116px; border-radius: 10px; margin-bottom: 18px; background: linear-gradient(160deg, rgba(255,255,255,.25), rgba(0,0,0,.06)), linear-gradient(to bottom, #87c96b 0 38%, #f7f1df 38% 60%, #a77852 60% 100%); position: relative; }
.branch-card div::after { content: "CanyFeliz"; position: absolute; top: 20px; left: 50%; translate: -50% 0; color: var(--orange); font-weight: 950; background: #fff8d9; padding: 6px 14px; border-radius: 6px; }
.branch-card h3 { margin: 0; } .branch-card a { color: var(--orange); font-weight: 900; font-size: .9rem; }

.testimonials { padding: 82px 0 110px; background: white; }
.testimonial-row { display: grid; grid-template-columns: 56px repeat(3, 1fr) 56px; gap: 24px; align-items: center; }
.testimonial-row button { width: 54px; height: 54px; border: 0; border-radius: 50%; background: var(--orange); color: white; font-size: 1.5rem; box-shadow: var(--shadow); }
.testimonial-row article { padding: 26px; border-radius: 12px; background: white; box-shadow: var(--shadow); min-height: 168px; }
.testimonial-row article span { float: left; margin-right: 15px; font-size: 2.5rem; background: #fff1e7; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; }
.testimonial-row h3 { margin: 8px 0 4px; } .testimonial-row p { color: var(--orange); letter-spacing: .12em; margin: 0 0 18px; } blockquote { clear: both; margin: 0; color: #687184; line-height: 1.55; }

.site-footer { position: relative; padding-top: 72px; background: #fff8e8; overflow: hidden; }
.footer-wave { position: absolute; top: 0; width: 34%; height: 120px; }
.footer-wave.green { left: -8%; background: var(--green); clip-path: polygon(0 0, 100% 48%, 0 78%); }
.footer-wave.orange { right: -8%; background: var(--orange); clip-path: polygon(100% 0, 0 48%, 100% 78%); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr .75fr .8fr 1.25fr; gap: 48px; padding: 42px 0 50px; }
.footer-grid h3 { color: var(--green); } .footer-grid a { display: block; color: #697485; margin: 13px 0; font-weight: 650; font-size: .94rem; }
.socials { display: flex; gap: 16px; margin-top: 24px; } .socials a { width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink); background: white; border-radius: 50%; margin: 0; }
.newsletter { display: flex; margin-top: 14px; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 12px 26px rgba(73,84,98,.1); }
.newsletter input { border: 0; flex: 1; min-width: 0; padding: 16px; } .newsletter button { border: 0; width: 54px; background: var(--green); color: white; font-weight: 900; }
.footer-bottom { border-top: 1px solid #eee1c8; min-height: 70px; display: flex; align-items: center; justify-content: space-between; color: #7b8593; }
.footer-bottom span { display: flex; gap: 38px; }

@media (max-width: 980px) {
  .navbar { min-height: 78px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-menu { position: absolute; top: 78px; left: 24px; right: 24px; flex-direction: column; gap: 0; padding: 18px; background: white; border-radius: 20px; box-shadow: var(--shadow); transform: translateY(-18px); opacity: 0; pointer-events: none; transition: .2s; }
  .main-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-cta { display: none; }
  .hero-content, .split-grid, .stats-section, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; } .hero-content { padding-top: 60px; }
  .hero-card { min-height: 360px; }
  .service-grid, .branch-grid { grid-template-columns: repeat(2, 1fr); }
  .promo { grid-template-columns: 1fr; text-align: center; padding: 38px; }
  .promo-pet, .promo-cat { display: none; }
  .testimonial-row { grid-template-columns: 1fr; } .testimonial-row button { display: none; }
}
@media (max-width: 620px) {
  .free-pet { width: 62px; height: 62px; }
  .free-pet-dog { width: 70px; height: 70px; }
  .pet-body { font-size: 3.05rem; }
  .free-pet-dog .pet-body { font-size: 3.35rem; }
  .container, .navbar { width: min(100% - 28px, 1180px); }
  h1 { font-size: 3rem; }
  .hero-actions, .footer-bottom, .footer-bottom span { align-items: stretch; flex-direction: column; }
  .service-grid, .branch-grid, .stats-grid { grid-template-columns: 1fr; }
  .image-panel { border-radius: 26px; min-height: 410px; }
  .panel-pet { font-size: 7rem; } .panel-pet.cat { font-size: 5.8rem; }
  .years-badge { left: 24px; bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .big-dog, .big-cat, .free-pet.is-loved { animation: none; }
  .pet-platform { outline-style: solid; }
}
