:root {
  --green:   #2f9e6f;
  --green-d: #237a55;
  --cream:   #fff9f0;
  --peach:   #ffe9d6;
  --ink:     #2b2a28;
  --muted:   #6f6a64;
  --white:   #ffffff;
  --shadow:  0 10px 30px rgba(47, 158, 111, 0.12);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.07);
  --radius:  18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-text { font-family: 'Baloo 2', system-ui, sans-serif; line-height: 1.15; }

img { max-width: 100%; height: auto; display: block; }

.container { width: min(1100px, 92%); margin: 0 auto; }

a { color: var(--green-d); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  padding: 0.7em 1.4em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 16px rgba(47,158,111,.28);
}
.btn:hover { background: var(--green-d); transform: translateY(-2px); text-decoration: none; box-shadow: 0 10px 22px rgba(47,158,111,.35); }
.btn-large { font-size: 1.12rem; padding: 0.85em 1.8em; }
.btn-small { padding: 0.5em 1.1em; font-size: 0.95rem; }
.btn-ghost { background: transparent; color: var(--green-d); box-shadow: none; border: 2px solid var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,249,240,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; }
.logo { display: flex; align-items: center; gap: .4rem; font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-mark { font-size: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { color: var(--ink); font-weight: 600; }
.nav-links a:hover { color: var(--green-d); }

.hero { position: relative; background: linear-gradient(160deg, var(--peach), var(--cream)); padding: 3.5rem 0 5rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.eyebrow { display: inline-block; background: #fff; color: var(--green-d); font-weight: 700; padding: .35em .9em; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .9rem; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
.lead { font-size: 1.18rem; color: var(--muted); margin: 1rem 0 1.6rem; max-width: 36ch; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-note { margin-top: 1.2rem; font-weight: 700; color: var(--green-d); }

.hero-photo { display: flex; justify-content: center; }
.hero-img { width: 100%; max-width: 360px; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 38%; border-radius: 26px; box-shadow: var(--shadow); }
.about-img { width: 100%; max-width: 300px; aspect-ratio: 1; object-fit: cover; object-position: 50% 40%; border-radius: 50%; box-shadow: var(--shadow); }

.wave { position: absolute; bottom: -1px; left: 0; right: 0; height: 40px; background: var(--cream); -webkit-mask: radial-gradient(28px at 50% 0, transparent 99%, #000) repeat-x; mask: radial-gradient(28px at 50% 0, transparent 99%, #000) repeat-x; mask-size: 56px 40px; }

.trust-strip { background: var(--green); color: #fff; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem; padding: 1rem 0; text-align: center; }
.trust-item { font-weight: 700; font-family: 'Baloo 2', sans-serif; }
.trust-item span { font-size: 1.2rem; }

.section { padding: 4.5rem 0; }
.section-tint { background: var(--peach); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; text-align: center; }
.section-title.left { text-align: left; }
.section-sub { text-align: center; color: var(--muted); margin-top: .4rem; margin-bottom: 2.2rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { position: relative; background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow); text-align: center; transition: transform .15s ease; }
.card:hover { transform: translateY(-4px); }
.card-featured { border: 3px solid var(--green); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: .8rem; padding: .25em 1em; border-radius: 999px; white-space: nowrap; }
.card-icon { font-size: 2.6rem; }
.card h3 { font-size: 1.4rem; margin: .5rem 0; }
.price { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--green-d); margin-bottom: 1rem; }
.price span { font-size: .95rem; color: var(--muted); font-weight: 600; }
.card ul { list-style: none; text-align: left; display: inline-block; }
.card li { padding: .25rem 0 .25rem 1.6rem; position: relative; color: var(--muted); }
.card li::before { content: "🐾"; position: absolute; left: 0; }
.services-foot { text-align: center; margin-top: 2rem; font-weight: 600; }

.about-grid, .area-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: center; }
.about-photo { display: flex; justify-content: center; }
.about-text p { margin-bottom: 1rem; color: var(--muted); font-size: 1.08rem; }
.about-signoff { font-weight: 700; color: var(--ink) !important; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-item { background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.why-emoji { font-size: 2rem; display: block; margin-bottom: .5rem; }
.why-item h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.why-item p { color: var(--muted); }

.area-map { display: flex; flex-direction: column; align-items: center; }
#map { position: relative; width: 100%; height: 360px; border-radius: var(--radius); box-shadow: var(--shadow); border: 3px solid #fff; z-index: 0; background: var(--peach); }

.map-fallback {
  position: absolute; inset: 0; z-index: 1000; display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: .8rem; text-align: center; padding: 1.4rem; background: var(--peach);
  border-radius: calc(var(--radius) - 3px);
}
.map-fallback.show { display: flex; }
.map-fallback-emoji { font-size: 2.6rem; }
.map-fallback p { color: var(--muted); font-weight: 600; margin: 0; }

.map-caption { margin-top: .9rem; font-weight: 700; color: var(--green-d); font-family: 'Baloo 2', sans-serif; text-align: center; }
.leaflet-container { font-family: 'Nunito', sans-serif; }
.area-text p { color: var(--muted); margin: 1rem 0; font-size: 1.08rem; }

.section-contact { background: linear-gradient(160deg, var(--peach), var(--cream)); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-intro p { color: var(--muted); margin: 1rem 0; font-size: 1.08rem; }
.contact-points { list-style: none; margin: 1rem 0; }
.contact-points li { padding: .3rem 0; font-weight: 600; }
.privacy-note { font-size: .95rem; background: #fff; padding: .8rem 1rem; border-radius: 12px; box-shadow: var(--shadow-sm); }

.booking-embed { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: .6rem; }
.cal-tabs { display: flex; gap: .5rem; margin-bottom: .6rem; flex-wrap: wrap; }
.cal-tab {
  flex: 1 1 auto; background: var(--cream); border: 2px solid #ece4d8; color: var(--ink);
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 1rem;
  padding: .6rem 1rem; border-radius: 999px; cursor: pointer; transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.cal-tab:hover { border-color: var(--green); }
.cal-tab.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.cal-pane[hidden] { display: none; }
.cal-inline { position: relative; width: 100%; min-height: 580px; overflow: hidden; border-radius: calc(var(--radius) - 6px); }
.cal-loading { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); padding: 3rem 1rem; font-weight: 600; }
.booking-fallback { text-align: center; color: var(--muted); font-size: .9rem; margin: .5rem 0 .2rem; }

.site-footer { background: var(--ink); color: #fff; padding: 2.5rem 0; text-align: center; }
.footer-logo { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.4rem; }
.footer-tag { color: #cfcac3; margin: .3rem 0 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: #fff; font-weight: 600; }
.footer-copy { color: #aaa49c; font-size: .9rem; }

@media (max-width: 860px) {
  .hero-grid, .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-photo, .about-photo { order: -1; }
  .cards, .why-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .about-grid .about-photo { order: 0; }
}

@media (max-width: 520px) {
  .trust-grid { gap: .6rem; }
  .trust-item { font-size: .9rem; flex: 1 1 45%; }
}
