:root {
  --green: #0d7a5a;
  --green-dark: #07543f;
  --green-soft: #e9f8f2;
  --mint: #bfe9d9;
  --ink: #18332b;
  --muted: #62736e;
  --line: #d9e6e1;
  --cream: #f8fbfa;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 20px 50px rgba(10, 74, 55, 0.11);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,230,225,.85);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(13,122,90,.22); }
.brand span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-size: 20px; letter-spacing: -.4px; }
.brand small { color: var(--muted); font-weight: 700; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 800; color: #425d54; }
.main-nav a { transition: color .2s, transform .2s; }
.main-nav a:hover { color: var(--green); transform: translateY(-1px); }
.nav-cta { color: #fff !important; background: var(--green); padding: 12px 19px; border-radius: 14px; box-shadow: 0 10px 24px rgba(13,122,90,.2); }
.menu-toggle { display: none; border: 0; border-radius: 12px; width: 44px; height: 44px; background: var(--green-soft); color: var(--green-dark); font-size: 23px; }

.hero { position: relative; overflow: hidden; padding: 82px 0 70px; background: radial-gradient(circle at 10% 10%, #e8fff6 0, transparent 35%), linear-gradient(145deg, #fbfefd 0%, #f1faf7 100%); }
.hero::after { content: ""; position: absolute; inset: auto -80px -160px auto; width: 420px; height: 420px; background: #d9f2e8; border-radius: 50%; filter: blur(2px); opacity: .65; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 36px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.2px; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 10px; background: currentColor; }
.hero h1 { margin: 18px 0 20px; font-size: clamp(45px, 6.4vw, 78px); line-height: 1.04; letter-spacing: -3px; }
.hero h1 span { color: var(--green); }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 15px; padding: 14px 22px; font-weight: 900; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--green); box-shadow: 0 14px 30px rgba(13,122,90,.23); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { color: var(--ink); background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(20,60,48,.07); }
.btn-dark { color: #fff; background: var(--ink); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: #42665a; font-size: 14px; font-weight: 800; }
.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual img { width: min(100%, 660px); filter: drop-shadow(0 25px 35px rgba(8,74,53,.08)); }
.floating-card { position: absolute; display: flex; flex-direction: column; min-width: 160px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.93); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.floating-card strong { color: var(--green); font-size: 19px; }
.floating-card span { color: var(--muted); font-size: 13px; font-weight: 700; }
.card-top { right: 4%; top: 14%; }
.card-bottom { left: 0; bottom: 8%; }

.quick-strip { position: relative; z-index: 3; margin-top: -28px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.quick-grid > div, .quick-grid > a { min-height: 112px; padding: 22px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.quick-grid > *:last-child { border-right: 0; }
.quick-grid > * > span { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 14px; background: var(--green-soft); }
.quick-grid p { display: flex; flex-direction: column; margin: 0; line-height: 1.25; }
.quick-grid small { color: var(--muted); font-weight: 700; margin-bottom: 7px; }
.quick-grid strong { font-size: 14px; }
.quick-grid a { transition: background .2s; }
.quick-grid a:hover { background: #f6fbf9; }

.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head h2, .about h2, .appointment h2, .contact h2 { margin: 12px 0 14px; font-size: clamp(34px, 4.5vw, 52px); line-height: 1.12; letter-spacing: -1.8px; }
.section-head p, .about-copy > p, .appointment-copy > p, .contact-info > p { color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 30px rgba(20,70,54,.05); transition: transform .22s, box-shadow .22s, border-color .22s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #b9d9cd; }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: var(--green-soft); font-size: 27px; }
.service-card h3 { margin: 20px 0 8px; font-size: 21px; letter-spacing: -.5px; }
.service-card p { color: var(--muted); margin: 0 0 16px; }
.service-card a { color: var(--green); font-weight: 900; font-size: 14px; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 80px; }
.about-visual { position: relative; min-height: 520px; }
.pet-photo { position: absolute; inset: 0 30px 0 0; border-radius: 36px; overflow: hidden; background: radial-gradient(circle at 55% 38%, #fff 0 7%, transparent 8%), linear-gradient(145deg, #c6efdf, #8ccdb6); box-shadow: var(--shadow); }
.pet-photo::before, .pet-photo::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.24); }
.pet-photo::before { left: -80px; bottom: -60px; }
.pet-photo::after { right: -70px; top: -70px; }
.pet-emoji { position: absolute; z-index: 2; left: 12%; bottom: 11%; font-size: clamp(125px, 18vw, 210px); filter: drop-shadow(0 18px 14px rgba(15,70,50,.18)); }
.pet-emoji.cat { left: auto; right: 7%; bottom: 6%; font-size: clamp(105px, 15vw, 170px); }
.experience-badge { position: absolute; z-index: 3; right: 0; bottom: 34px; width: 154px; height: 154px; display: grid; place-content: center; text-align: center; color: #fff; background: var(--green); border: 10px solid var(--cream); border-radius: 50%; box-shadow: var(--shadow); }
.experience-badge strong { font-size: 37px; line-height: 1; }
.experience-badge span { font-size: 13px; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 18px; }
.check-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; }
.check-list li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--green); background: var(--green-soft); font-weight: 900; }
.check-list strong { font-size: 16px; }
.check-list p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
.text-link { color: var(--green); font-weight: 900; }

.appointment { background: linear-gradient(145deg, var(--green-dark), var(--green)); color: #fff; overflow: hidden; }
.appointment-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.eyebrow-light { color: #baf0dc; }
.appointment-copy > p { color: rgba(255,255,255,.8); }
.appointment-note { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; padding: 22px; border-radius: 20px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); }
.appointment-note span { color: rgba(255,255,255,.78); }
.appointment-note a { margin-top: 8px; font-size: 23px; font-weight: 900; }
.form-card { color: var(--ink); background: #fff; border-radius: 30px; padding: 30px; box-shadow: 0 28px 65px rgba(0,0,0,.16); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label, .contact-form label { display: grid; gap: 8px; color: #344f46; font-size: 13px; font-weight: 900; }
.form-grid input, .form-grid select, .form-grid textarea, .contact-form input, .contact-form textarea { width: 100%; border: 1px solid #ccdcd6; border-radius: 13px; padding: 13px 14px; color: var(--ink); background: #fbfdfc; outline: none; transition: border .2s, box-shadow .2s; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(13,122,90,.11); }
.span-2 { grid-column: 1 / -1; }
.form-consent { margin: -2px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.alert { margin-bottom: 18px; padding: 13px 15px; border-radius: 13px; font-weight: 800; font-size: 14px; }
.alert.success { color: var(--success); background: #ecfdf3; border: 1px solid #abefc6; }
.alert.error { color: var(--danger); background: #fef3f2; border: 1px solid #fecdca; }

.split-head { max-width: none; display: grid; grid-template-columns: 1fr .7fr; gap: 40px; align-items: end; text-align: left; }
.split-head p { margin-bottom: 10px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 12px 30px rgba(20,70,54,.05); }
.blog-cover { height: 210px; display: grid; place-items: center; overflow: hidden; }
.blog-cover span { font-size: 98px; filter: drop-shadow(0 16px 14px rgba(10,70,50,.15)); transition: transform .25s; }
.blog-card:hover .blog-cover span { transform: scale(1.08) rotate(-3deg); }
.cover-1 { background: linear-gradient(145deg, #daf3e9, #a6d9c7); }
.cover-2 { background: linear-gradient(145deg, #fff1d9, #f0c990); }
.cover-3 { background: linear-gradient(145deg, #e8ecff, #bac5ef); }
.blog-body { padding: 24px; }
.tag { display: inline-block; color: var(--green); background: var(--green-soft); padding: 5px 9px; border-radius: 999px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .7px; }
.blog-body h3 { margin: 14px 0 9px; font-size: 20px; line-height: 1.3; letter-spacing: -.4px; }
.blog-body p { color: var(--muted); font-size: 14px; }
.blog-body a { color: var(--green); font-weight: 900; font-size: 14px; }

.contact { padding-top: 72px; background: #f7fbf9; }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 65px; align-items: start; }
.contact-list { display: grid; gap: 12px; margin: 28px 0; }
.contact-list > a, .contact-list > div { display: flex; gap: 14px; align-items: center; padding: 14px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.contact-list > * > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--green-soft); }
.contact-list div div { display: flex; flex-direction: column; line-height: 1.2; }
.contact-list small { color: var(--muted); font-weight: 700; margin-bottom: 5px; }
.hours-card { margin-top: 22px; padding: 22px; border-radius: 22px; color: #fff; background: var(--ink); }
.hours-card h3 { margin: 0 0 13px; }
.hours-card p { display: flex; justify-content: space-between; gap: 18px; margin: 8px 0; color: rgba(255,255,255,.76); }
.hours-card strong { color: #fff; }
.contact-form-wrap { padding: 30px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 17px; }

.site-footer { color: rgba(255,255,255,.76); background: #102d25; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr 1.1fr; gap: 44px; }
.footer-grid h3 { margin: 2px 0 17px; color: #fff; font-size: 15px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: rgba(255,255,255,.62); }
.footer-brand p { max-width: 320px; }
.footer-wa { display: inline-flex; margin-top: 4px; color: #fff; background: var(--green); padding: 10px 13px; border-radius: 11px; font-weight: 900; }
.footer-bottom { margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }
.footer-bottom a { color: #fff; font-weight: 800; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #20ba63; box-shadow: 0 14px 30px rgba(20,130,70,.32); font-size: 26px; transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.back-top { position: fixed; right: 29px; bottom: 94px; z-index: 79; width: 44px; height: 44px; border: 0; border-radius: 50%; color: #fff; background: var(--ink); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .2s; box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1024px) {
  .main-nav { gap: 18px; }
  .hero-grid, .about-grid, .appointment-grid, .contact-grid { gap: 42px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid > *:nth-child(2) { border-right: 0; }
  .quick-grid > *:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .section { padding: 76px 0; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero { padding-top: 58px; }
  .hero-grid, .about-grid, .appointment-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 430px; }
  .about-grid { gap: 48px; }
  .about-visual { min-height: 470px; }
  .split-head { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 18px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 43px; letter-spacing: -2px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 350px; margin-top: 10px; }
  .floating-card { min-width: 138px; padding: 11px 13px; }
  .card-top { right: 0; top: 11%; }
  .card-bottom { left: 0; bottom: 2%; }
  .quick-strip { margin-top: -12px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid > * { min-height: 90px !important; border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .quick-grid > *:last-child { border-bottom: 0; }
  .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .section-head h2, .about h2, .appointment h2, .contact h2 { font-size: 34px; }
  .about-visual { min-height: 380px; }
  .experience-badge { width: 128px; height: 128px; border-width: 7px; }
  .form-card, .contact-form-wrap { padding: 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hours-card p { flex-direction: column; gap: 2px; }
  .whatsapp-float { right: 15px; bottom: 15px; }
  .back-top { right: 22px; bottom: 84px; }
}

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