:root {
  --teal: #4f8a90;
  --teal-deep: #3a6a6f;
  --teal-ink: #234b4f;
  --teal-soft: #8fc0c4;
  --yellow: #fbb03b;
  --yellow-deep: #e89a26;
  --cream: #fff7ea;
  --sky: #eef7f7;
  --ink: #2c3a3b;
  --muted: #5f7274;
  --white: #ffffff;
  --line: rgba(35, 75, 79, 0.12);
  --shadow-sm: 0 6px 16px -8px rgba(35, 75, 79, 0.35);
  --shadow: 0 18px 40px -20px rgba(35, 75, 79, 0.45);
  --radius: 22px;
  --radius-lg: 34px;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Lato", Helvetica, Arial, sans-serif;
  --wrap: 1140px;
  --pad: clamp(1rem, 4vw, 2.25rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--teal-ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--teal-ink);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
}
.topbar-socials a:focus-visible,
.socials a:focus-visible,
.nav-cta:focus-visible,
.btn:focus-visible {
  outline-offset: 3px;
}
.faq-item summary:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 2px;
  border-radius: 8px;
}
a.svc-card:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--teal-ink);
  margin: 0 0 0.5rem;
}

a { color: var(--teal-deep); }

.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }
.wrap.narrow { width: min(100% - (var(--pad) * 2), 780px); }
.center { text-align: center; }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 0.4rem;
}
.kicker.light { color: var(--yellow); }

.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h1,
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.section-sub { margin: 0.4rem auto 0; max-width: 40rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--teal-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 0.9rem 1.7rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-ghost { background: transparent; color: var(--teal-deep); border-color: var(--teal); box-shadow: none; }
.btn-ghost:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); box-shadow: none; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--teal-ink);
  color: var(--white);
}
.topbar-inner {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.topbar-phone:hover { color: var(--yellow); }
.topbar-phone i { color: var(--yellow); font-size: 0.85rem; }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}
.topbar-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.topbar-socials a:hover {
  background: var(--yellow);
  color: var(--teal-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
.header-inner {
  width: min(100% - (var(--pad) * 2), var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: auto;
  height: 96px;
  max-height: 96px;
}
@media (min-width: 900px) {
  .logo img { height: 96px; max-height: 96px; }
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.75rem; height: 2.75rem; border: 0; background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; width: 26px; margin-inline: auto; background: var(--teal-deep); border-radius: 3px; transition: 0.25s; }

.nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 0.2rem;
  padding: 0.6rem var(--pad) 1.1rem;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow);
}
.nav.is-open { display: flex; }
.nav a {
  text-decoration: none; color: var(--teal-ink);
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.6rem 0.25rem;
}
.nav a:hover { color: var(--yellow-deep); }
.nav-cta { color: var(--teal-ink) !important; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex; position: static; flex-direction: row; align-items: center; gap: 1.6rem;
    padding: 0; border: 0; box-shadow: none; background: transparent;
  }
  .nav-cta {
    background: var(--yellow); padding: 0.55rem 1.1rem !important; border-radius: 999px;
    box-shadow: var(--shadow-sm);
  }
  .nav-cta:hover { background: var(--yellow-deep); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f4fafb 0%, var(--white) 42%); }
.hero-blob {
  position: absolute; top: -36%; right: -18%; width: 48vw; height: 48vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(251,176,59,0.22), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(143,192,196,0.22), transparent 60%);
  filter: blur(10px); border-radius: 50%; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto;
  display: grid; gap: 1rem; align-items: start;
  padding: clamp(1.1rem, 3vw, 2rem) 0 clamp(1.5rem, 3.5vw, 2.4rem);
}
.hero-intro { margin: 0; text-align: center; }
.hero-intro .tag { margin-bottom: 0.55rem; }
.hero-intro h1 { margin: 0; }
.hero-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  align-items: stretch;
  width: min(100vw - 0.75rem, 1320px);
  max-width: none;
  margin-inline: calc(50% - 50vw);
  justify-self: center;
  padding-inline: max(0.4rem, env(safe-area-inset-left, 0px)) max(0.4rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
.hero-duo-no-video {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}
.hero-duo-no-video .hero-media-little {
  width: min(100%, calc((min(100vw - 0.75rem, 1320px) - 0.55rem) / 2));
  margin-inline: auto;
}
@media (min-width: 700px) {
  .hero-duo-no-video .hero-media-little {
    width: min(100%, calc((min(100vw - 1.5rem, 1360px) - 0.85rem) / 2));
  }
  .hero-duo {
    gap: 0.85rem;
    width: min(100vw - 1.5rem, 1360px);
    padding-inline: 0.75rem;
  }
}
.hero-media { position: relative; margin: 0; min-width: 0; }
.hero-copy {
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy .hero-lede { margin-top: 0; margin-inline: auto; }
.hero-copy .btn-row { justify-content: center; }

.tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--yellow); color: var(--teal-ink); margin-bottom: 1rem;
}
.tag-pop { background: var(--yellow); color: var(--teal-ink); }
.hero-copy h1,
.hero-intro h1 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); font-weight: 600; }
.hero-copy h1 .hl,
.hero-intro h1 .hl { color: var(--yellow-deep); }
.hero-lede { font-size: 1.08rem; color: var(--muted); max-width: 40rem; margin: 0.6rem 0 1.5rem; }
.hero-note { margin-top: 1.1rem; color: var(--muted); font-weight: 600; font-size: 0.98rem; }
.hero-note a { color: var(--teal-deep); font-weight: 700; }

.hero-video-frame,
.hero-carousel-frame {
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 4 / 4.85;
}
.hero-video-frame {
  border: 6px solid var(--white);
  background: var(--teal-ink);
}
.hero-carousel-frame {
  border: 6px solid var(--white);
  background: var(--sky);
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 900px) {
  .hero-video-frame,
  .hero-carousel-frame { aspect-ratio: 5 / 5.8; }
}
.carousel-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation-fill-mode: both;
}
.hero-media-little .carousel-slide {
  animation: hero-carousel-fade 24s linear infinite;
}
.hero-media-little .carousel-slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero-media-little .carousel-slide:nth-child(2) { animation-delay: 4s; }
.hero-media-little .carousel-slide:nth-child(3) { animation-delay: 8s; }
.hero-media-little .carousel-slide:nth-child(4) { animation-delay: 12s; }
.hero-media-little .carousel-slide:nth-child(5) { animation-delay: 16s; }
.hero-media-little .carousel-slide:nth-child(6) { animation-delay: 20s; }
@keyframes hero-carousel-fade {
  0% { opacity: 0; }
  3% { opacity: 1; }
  13.5% { opacity: 1; }
  19% { opacity: 0; }
  100% { opacity: 0; }
}
.welcome-carousel .carousel-slide {
  animation: welcome-carousel-fade 12s linear infinite;
}
.welcome-carousel .carousel-slide:nth-child(1) { animation-delay: 0s; opacity: 1; }
.welcome-carousel .carousel-slide:nth-child(2) { animation-delay: 4s; }
.welcome-carousel .carousel-slide:nth-child(3) { animation-delay: 8s; }
@keyframes welcome-carousel-fade {
  0% { opacity: 0; }
  3% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Trust strip (marquee) ---------- */
.trust {
  background: var(--teal-ink);
  color: var(--white);
  overflow: hidden;
}
.trust-marquee {
  overflow: hidden;
  padding: 1.15rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.trust-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  align-items: center;
  animation: trust-scroll 40s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item i { color: var(--yellow); font-size: 1.3rem; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ---------- Two paths ---------- */
.paths {
  display: grid; gap: 1.5rem; padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  margin-inline: auto;
}
@media (min-width: 760px) { .paths { grid-template-columns: 1fr 1fr; } }
.paths-single {
  grid-template-columns: 1fr;
  max-width: min(100%, 42rem);
  margin-inline: auto;
}
.path-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow); text-align: center;
  display: flex; flex-direction: column; align-items: center;
  height: 100%;
}
.path-card.little { background: linear-gradient(160deg, var(--sky), #dff0f0); }
.path-card.big { background: linear-gradient(160deg, var(--cream), #ffe9c4); }
.path-icon {
  width: 74px; height: 74px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: var(--white);
  background: var(--teal); box-shadow: var(--shadow-sm);
}
.path-card.big .path-icon { background: var(--yellow-deep); }
.path-card h2 { font-size: 1.5rem; }
.path-sub { font-family: var(--font-display); font-weight: 600; color: var(--yellow-deep); margin: 0 0 0.7rem; }
.path-card.little .path-sub { color: var(--teal-deep); }
.path-card > p:not(.path-sub) { color: var(--muted); margin: 0; flex: 1 1 auto; }
.path-card .btn { margin-top: 1.3rem; width: 100%; }
.ribbon {
  position: absolute;
  top: 20px;
  right: -52px;
  z-index: 2;
  width: 168px;
  padding: 0.45rem 0;
  transform: rotate(45deg);
  background: var(--yellow);
  color: var(--teal-ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ---------- Welcome ---------- */
.welcome { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.welcome-grid {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .welcome-grid { grid-template-columns: 0.95fr 1.05fr; gap: 2.75rem; }
}
.welcome-photo { position: relative; min-width: 0; }
.welcome-carousel { width: 100%; }
@media (max-width: 879px) {
  .welcome-carousel.hero-carousel-frame {
    aspect-ratio: 4 / 3;
  }
}
.welcome-copy { max-width: 40rem; }
.welcome-copy h2 { font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.welcome-copy > p { color: var(--muted); }
.check-list { list-style: none; margin: 1.2rem 0; padding: 0; display: grid; gap: 0.55rem; }
.check-list li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.check-list i { color: var(--teal); }
.hours-chip {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  flex-wrap: nowrap;
  background: var(--sky);
  color: var(--teal-ink);
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  border-radius: 22px;
  margin: 0;
  max-width: 100%;
  line-height: 1.5;
  text-wrap: pretty;
}
.hours-chip i {
  color: var(--yellow-deep);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.hours-chip-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ---------- Services ---------- */
.services { padding: clamp(2.5rem, 6vw, 4rem) var(--pad); }
.service-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px) { .service-grid-shared { grid-template-columns: repeat(2, 1fr); } }
.svc-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
  text-decoration: none; color: inherit; display: block;
  cursor: pointer;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
a.svc-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.svc-ic {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.5rem; color: var(--teal-deep); background: var(--sky); margin-bottom: 0.9rem;
}
.svc-card h3 { font-size: 1.18rem; }
.svc-card p { color: var(--muted); margin: 0 0 0.6rem; }
.price-line { color: var(--teal-ink); font-weight: 700; margin: 0; }
.price-line strong { color: var(--yellow-deep); font-size: 1.15rem; }
.mini-link { font-weight: 700; }
.svc-highlight { background: var(--cream); border-color: rgba(232,154,38,0.35); }
.svc-highlight .svc-ic { background: var(--yellow); color: var(--teal-ink); }
.svc-cta { background: var(--teal-ink); color: var(--white); text-align: center; }
.svc-cta h3 { color: var(--white); }
.svc-cta p { color: rgba(255,255,255,0.85); }
.svc-cta .svc-ic { margin-inline: auto; background: rgba(255,255,255,0.14); color: var(--yellow); }
.svc-card .ribbon { top: 14px; }

.svc-book-bar {
  margin-top: 1.3rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--teal-ink); color: var(--white);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.svc-book-bar h3 { color: var(--white); margin: 0 0 0.25rem; font-size: 1.25rem; }
.svc-book-bar p { margin: 0; color: rgba(255,255,255,0.85); }
.svc-book-bar p a { color: var(--yellow); font-weight: 700; }
.svc-book-bar .btn { color: var(--teal-ink); }
.svc-book-bar .btn:hover { color: var(--teal-ink); }
.fine a { font-weight: 700; }

.little-only { margin-top: 2.75rem; }
.kicker-teal { color: var(--teal-deep) !important; }
.svc-little {
  display: grid; gap: 1rem; align-items: center;
  background: linear-gradient(160deg, var(--sky), #f7fbfb);
  border-color: rgba(58, 106, 111, 0.28);
  text-align: left;
}
.svc-little .svc-ic { margin-bottom: 0; background: var(--teal-deep); color: var(--white); }
.svc-little-copy h3 { color: var(--teal-ink); }
.svc-little .price-line strong { color: var(--teal-deep); }
@media (min-width: 700px) {
  .svc-little { grid-template-columns: auto 1fr; padding: 1.8rem 2rem; }
}

/* ---------- Pricing ---------- */
.pricing { padding: clamp(2.5rem, 6vw, 4rem) 0; background: var(--sky); }
.price-subhead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal-ink);
  margin: 1.75rem 0 0.85rem;
  text-align: center;
}
.price-subhead:first-of-type { margin-top: 0.25rem; }
.price-subcopy {
  text-align: center;
  color: var(--muted);
  margin: -0.35rem 0 1.1rem;
  font-size: 0.95rem;
}
.daycare-rates { scroll-margin-top: 100px; }

.price-table-wrap { overflow-x: visible; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (min-width: 760px) {
  .price-table-wrap-narrow {
    width: min(100%, 32rem);
    margin-inline: auto;
  }
}
.price-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  table-layout: fixed; overflow: hidden; border-radius: var(--radius);
}
.price-table thead th {
  background: var(--teal-ink); color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 1rem 1.2rem; text-align: center;
}
.price-table thead th:first-child { text-align: left; width: 40%; }
.price-table thead th:nth-child(2),
.price-table thead th:nth-child(3) { width: 30%; }
.price-table thead th small { font-weight: 600; opacity: 0.8; font-size: 0.72rem; display: block; }
.price-table thead th i { margin-right: 0.35rem; }
.price-table thead th.col-little,
.price-table thead th:nth-child(2) { background: var(--teal-deep); }
.price-table thead th.col-little i,
.price-table thead th:nth-child(2) i { color: var(--white); }
.price-table thead th.col-big,
.price-table thead th:nth-child(3) { background: var(--yellow); color: var(--teal-ink); }
.price-table thead th.col-big i,
.price-table thead th:nth-child(3) i { color: var(--teal-ink); }
.price-table thead th.col-big small { color: var(--teal-ink); opacity: 0.75; }
.price-table tbody td { padding: 0.95rem 1.2rem; text-align: center; border-top: 1px solid var(--line); font-weight: 700; color: var(--teal-ink); word-wrap: break-word; }
.price-table tbody td:nth-child(3) { color: var(--yellow-deep); }
.price-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--ink); }
.price-table tbody tr:nth-child(even) { background: #fafdfd; }
.price-table .muted { color: var(--muted); font-weight: 400; font-size: 0.88rem; display: block; }

@media (max-width: 640px) {
  .price-table thead th {
    font-size: 0.78rem;
    padding: 0.7rem 0.4rem;
    line-height: 1.25;
  }
  .price-table thead th i { display: none; }
  .price-table thead th small { font-size: 0.62rem; margin-top: 0.15rem; }
  .price-table thead th:first-child { width: 38%; }
  .price-table thead th:nth-child(2),
  .price-table thead th:nth-child(3) { width: 31%; }
  .price-table tbody td {
    padding: 0.7rem 0.4rem;
    font-size: 0.9rem;
  }
  .price-table tbody td:first-child { font-size: 0.82rem; }
  .price-table .muted { font-size: 0.72rem; }
}

.pricing-extras { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.pricing-extras:has(.extra-card:only-child) { grid-template-columns: 1fr; }
.pricing-extras .extra-card:only-child { width: 100%; text-align: center; }
.extra-card { background: var(--white); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.extra-card-little { border-color: rgba(58, 106, 111, 0.28); background: linear-gradient(160deg, var(--sky), #f7fbfb); }
.extra-card h3 { font-size: 1.12rem; }
.extra-card-little h3 { color: var(--teal-ink); }
.extra-card h3 i { color: var(--yellow-deep); margin-right: 0.4rem; }
.extra-card-little h3 i { color: var(--teal-deep); }
.extra-card p { margin: 0; color: var(--muted); }
.extra-card:only-child p { max-width: 40rem; margin-inline: auto; }
.fine { color: var(--muted); font-size: 0.92rem; }
.fine.center { margin-top: 1.3rem; }

/* ---------- Treats ---------- */
.treats { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.treats-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 820px) { .treats-grid { grid-template-columns: 1.3fr 0.7fr; } }
.treats-copy > p { color: var(--muted); }
.treat-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0 1.4rem; }
.treat-chips span {
  background: var(--sky); color: var(--teal-ink); font-weight: 700; font-size: 0.85rem;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.treats-logo img { margin-inline: auto; filter: drop-shadow(0 12px 22px rgba(35,75,79,0.25)); }

/* ---------- Testimonials ---------- */
.testimonials { padding: clamp(2.5rem, 6vw, 4rem) var(--pad); background: var(--cream); }
.quote-grid { display: grid; gap: 1.4rem; }
@media (min-width: 780px) { .quote-grid { grid-template-columns: 1fr 1fr; } }
.quote {
  margin: 0; background: var(--white); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.stars { color: var(--yellow); margin-bottom: 0.6rem; letter-spacing: 2px; }
.quote blockquote { margin: 0 0 0.8rem; padding: 0; border: 0; color: var(--ink); font-size: 1rem; }
.quote figcaption,
.quote footer {
  font-family: var(--font-display); font-weight: 600; color: var(--teal-deep);
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.doc-links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin: 0 0 1.6rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: 0.7rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item details { margin: 0; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.3rem;
  font-family: var(--font-display); font-weight: 600; color: var(--teal-ink);
  font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\002B"; color: var(--yellow-deep); font-size: 1.5rem; font-weight: 700; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item details[open] summary::after { content: "\2212"; }
.faq-item div { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-item p { margin: 0; }

/* ---------- Contact ---------- */
.contact { padding: clamp(2.5rem, 6vw, 4rem) 0; background: var(--teal-ink); color: var(--white); }
.contact-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-copy h2 { color: var(--white); font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.contact-copy > p { color: rgba(255,255,255,0.85); }
.contact-copy > p a { color: var(--yellow); font-weight: 700; }
.contact-copy > p a:hover { color: var(--yellow-deep); }
.contact-list { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: 0.85rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  line-height: 1.45;
}
.contact-list i {
  color: var(--yellow);
  width: 1.2rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.contact-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-hours {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}
.contact-list a { color: var(--white); text-decoration: none; }
.contact-list a:hover { color: var(--yellow); }
@media (max-width: 480px) {
  .contact-copy .btn-row { flex-direction: column; align-items: stretch; }
  .contact-copy .btn-row .btn { width: 100%; justify-content: center; }
}
.socials { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.12); color: var(--white); font-size: 1.1rem; transition: 0.2s;
}
.socials a:hover { background: var(--yellow); color: var(--teal-ink); }
.contact-map iframe {
  width: 100%; height: 340px; border: 0; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); filter: saturate(1.05);
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: clamp(2.75rem, 7vw, 4.25rem) var(--pad);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(251, 176, 59, 0.22), transparent 55%),
    linear-gradient(180deg, #e8f4f5 0%, var(--sky) 100%);
}
.final-cta-inner { max-width: 36rem; margin-inline: auto; }
.final-cta h2 {
  color: var(--teal-ink);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin: 0 0 0.75rem;
}
.final-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}
.final-cta .btn { box-shadow: var(--shadow-sm); }
.final-cta-serve {
  margin: 1.35rem 0 0 !important;
  font-size: 0.9rem !important;
  color: var(--teal-deep) !important;
  max-width: 28rem;
  margin-inline: auto !important;
}

/* ---------- Footer ---------- */
.site-footer { background: #21484c; color: rgba(255,255,255,0.85); text-align: center; padding: 2.4rem var(--pad); }
.site-footer img { margin: 0 auto 0.9rem; width: min(220px, 65vw); height: auto; }
.site-footer p { margin: 0.3rem 0; font-size: 0.92rem; line-height: 1.45; max-width: 28rem; margin-inline: auto; }
.credit { font-size: 0.85rem !important; padding-inline: 0.5rem; }
.credit a { color: var(--yellow); font-weight: 700; text-decoration: none; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .hero-video { animation: none; }
  .carousel-slide { opacity: 0; }
  .carousel-slide:first-child { opacity: 1; }
}
