/* Vikki's kids — Playful Editorial. Logoped landing.
   Palette v2 (warm coral + deep teal, harmonious, WCAG AA):
   paper #FFF7F0, ink #2B2520, coral #EE6C4D, teal #1F7A6E,
   sky #4E8FB0, sage #6E9C84, honey #F2A65A */

:root {
  --paper: #fff7f0;
  --paper-2: #fcebdd; /* soft peach band */
  --ink: #2b2520;
  --ink-soft: #574c42; /* >=4.5:1 on cream */
  --ink-muted: #6a5e52; /* placeholders/helper ~60% */
  --tangerine: #ee6c4d; /* coral primary */
  --tangerine-d: #c2492c; /* AA white-on & on-cream */
  --tangerine-shadow: #9e3a21; /* button drop shadow */
  --teal: #1f7a6e;
  --teal-d: #125c52; /* AA on cream/white */
  --teal-shadow: #0c463e;
  --sky: #4e8fb0; /* trust accent */
  --sky-d: #386f8c;
  --sage: #6e9c84;
  --sage-d: #4a6f5a;
  --mustard: #f2a65a; /* honey */
  --mustard-d: #9c6512; /* AA text on cream */
  --white: #ffffff;
  --radius: 24px;
  --radius-lg: 32px;
  --radius-sm: 16px;
  --shadow: 0 20px 44px -22px rgba(43, 37, 32, 0.4);
  --shadow-soft: 0 12px 32px -18px rgba(43, 37, 32, 0.28);
  --shadow-hover: 0 30px 60px -26px rgba(43, 37, 32, 0.46);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --maxw: 1180px;
  --sec: clamp(48px, 7vw, 84px); /* unified vertical section rhythm */
  --head-gap: clamp(28px, 4vw, 40px); /* head → content gap */
  --ff-display: 'Baloo 2', system-ui, sans-serif;
  --ff-body: 'Mulish', system-ui, sans-serif;
  /* custom select chevron (uses ink-soft) */
  --chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23574C42' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-padding-top: calc(72px + 12px);
}
body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.66;
  font-size: 17px;
  font-weight: 500;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}
.eager {
}

/* ---------- Animated background (decorative blobs, low opacity) ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.5;
  will-change: transform;
}
.bg-orbs .orb-1 {
  width: 46vmax;
  height: 46vmax;
  top: -14vmax;
  left: -10vmax;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(238, 108, 77, 0.28),
    transparent 70%
  );
  animation: orbFloatA 26s ease-in-out infinite;
}
.bg-orbs .orb-2 {
  width: 40vmax;
  height: 40vmax;
  top: 30vmax;
  right: -12vmax;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(31, 122, 110, 0.22),
    transparent 70%
  );
  animation: orbFloatB 32s ease-in-out infinite;
}
.bg-orbs .orb-3 {
  width: 34vmax;
  height: 34vmax;
  bottom: -10vmax;
  left: 8vmax;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(242, 166, 90, 0.24),
    transparent 70%
  );
  animation: orbFloatC 30s ease-in-out infinite;
}
.bg-orbs .orb-4 {
  width: 30vmax;
  height: 30vmax;
  top: 62vmax;
  left: 42vmax;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(78, 143, 176, 0.18),
    transparent 70%
  );
  animation: orbFloatA 38s ease-in-out infinite reverse;
}
@keyframes orbFloatA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5vmax, 4vmax) scale(1.08);
  }
}
@keyframes orbFloatB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-6vmax, -3vmax) scale(1.1);
  }
}
@keyframes orbFloatC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4vmax, -5vmax) scale(0.94);
  }
}
.site-header,
main,
.site-footer {
  position: relative;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 2.5px solid transparent;
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s var(--ease-out),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  line-height: 1;
  min-height: 48px;
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  transition: transform 0.2s var(--ease-out);
}
.btn:hover svg:last-child {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--tangerine-d);
  color: #fff;
  box-shadow:
    0 8px 0 -2px var(--tangerine-shadow),
    0 14px 26px -14px var(--tangerine-shadow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 0 -2px var(--tangerine-shadow),
    0 22px 40px -14px rgba(238, 108, 77, 0.75);
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 -2px var(--tangerine-shadow);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow:
    0 8px 0 -2px var(--teal-shadow),
    0 14px 26px -14px var(--teal-shadow);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 0 -2px var(--teal-shadow),
    0 22px 40px -14px rgba(31, 122, 110, 0.7);
}
.btn-teal:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 -2px var(--teal-shadow);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(43, 37, 32, 0.22);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 247, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(43, 37, 32, 0.07);
  transition: box-shadow 0.25s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px -16px rgba(43, 37, 32, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 13px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--ink);
  flex: none;
}
.brand .logo {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 14px -8px rgba(43, 37, 32, 0.5);
}
.brand .brand-name {
  white-space: nowrap;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  padding: 0.4em 0.62em;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 0.18s,
    color 0.18s;
}
.nav-links a:hover {
  background: var(--paper-2);
  color: var(--teal-d);
}
.nav-cta {
  display: none;
  flex: none;
  padding: 0.7em 1.1em;
  font-size: 0.96rem;
}
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(43, 37, 32, 0.4);
  border-radius: 14px;
  background: var(--white);
  padding: 0 11px;
  flex: none;
  box-shadow: var(--shadow-soft);
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--ink);
  border-radius: 3px;
  transition:
    transform 0.3s cubic-bezier(0.7, 0, 0.3, 1),
    opacity 0.2s;
}
.burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: linear-gradient(165deg, #23897b, var(--teal-d));
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  clip-path: circle(0% at calc(100% - 44px) 40px);
  transition: clip-path 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  visibility: hidden;
  overscroll-behavior: contain;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 44px) 40px);
  visibility: visible;
}
.mobile-menu .mm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex: none;
}
.mm-close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.mm-close svg {
  width: 24px;
  height: 24px;
}
.mm-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0;
}
.mm-links li {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s,
    transform 0.4s;
  transition-delay: calc(var(--i) * 50ms + 120ms);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.mm-links li:last-child {
  border-bottom: 0;
}
.mobile-menu.open .mm-links li {
  opacity: 1;
  transform: none;
}
.mm-links a {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 5.2vw, 1.7rem);
  color: #fff;
  display: block;
  padding: 0.4em 0;
}
.mm-foot {
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  gap: 10px;
}
.mm-foot .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(34px, 6vw, 56px);
  padding-bottom: clamp(48px, 7vw, 72px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 6px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-d);
  background: #fff;
  border: 2px solid rgba(31, 122, 110, 0.25);
  padding: 0.45em 1em;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tangerine);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
.hero h1 {
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.2;
  margin: 0.6em 0 0.5em;
  max-width: 24ch;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.hero h1 .mark {
  color: var(--tangerine-d);
  position: relative;
  white-space: nowrap;
  background: linear-gradient(
    180deg,
    transparent 64%,
    rgba(242, 166, 90, 0.42) 64%
  );
}
.hero .lead {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hero-trust .faces {
  display: flex;
}
.hero-trust .faces img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--paper);
  object-fit: cover;
  margin-left: -13px;
  box-shadow: var(--shadow-soft);
}
.hero-trust .faces img:first-child {
  margin-left: 0;
}
.hero-trust b {
  color: var(--ink);
  font-family: var(--ff-display);
}

.hero-media {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}
.hero-photo {
  position: relative;
  border-radius: 36px 36px 36px 90px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: var(--paper-2);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
}
.sticker {
  position: absolute;
  font-family: var(--ff-display);
  font-weight: 800;
  background: var(--mustard);
  color: var(--ink);
  border-radius: 18px;
  padding: 0.7em 1em;
  box-shadow: var(--shadow-soft);
  line-height: 1.05;
  text-align: center;
}
.sticker small {
  display: block;
  font-weight: 600;
  font-size: 0.62em;
  color: var(--ink-soft);
}
.sticker-price {
  top: -18px;
  right: -8px;
  transform: rotate(7deg);
  background: var(--tangerine-d);
  color: #fff;
}
.sticker-price small {
  color: rgba(255, 255, 255, 0.85);
}
.sticker-online {
  bottom: 24px;
  left: -18px;
  transform: rotate(-6deg);
  background: #fff;
  color: var(--teal-d);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 1rem;
}
.sticker-online svg {
  width: 1.3em;
  height: 1.3em;
  color: var(--teal);
}

/* Floating decorative dots (replace removed hero blob) */
.hero-dot {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hero-dot.hd-1 {
  width: 16px;
  height: 16px;
  background: var(--tangerine);
  opacity: 0.5;
  top: 18%;
  left: 5%;
  animation: dotFloat 9s ease-in-out infinite;
}
.hero-dot.hd-2 {
  width: 11px;
  height: 11px;
  background: var(--teal);
  opacity: 0.45;
  top: 62%;
  left: 11%;
  animation: dotFloat 11s ease-in-out infinite 1.5s;
}
.hero-dot.hd-3 {
  width: 13px;
  height: 13px;
  background: var(--mustard);
  opacity: 0.55;
  bottom: 14%;
  right: 8%;
  animation: dotFloat 13s ease-in-out infinite 0.8s;
}
@keyframes dotFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(8px, -14px);
  }
  66% {
    transform: translate(-6px, 10px);
  }
}

/* ---------- Sections base ---------- */
section {
  position: relative;
}
.band {
  padding-block: var(--sec);
}
.band-teal {
  background: linear-gradient(160deg, #1b7064, var(--teal-d));
  color: #fff;
}
.band-teal h2,
.band-teal h3 {
  color: #fff;
}
.band-cream {
  background: var(--paper-2);
}
.band-tang {
  background: linear-gradient(155deg, #c2492c 0%, #a23a20 100%);
  color: #fff;
}
.band-tang h2,
.band-tang h3 {
  color: #fff;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--tangerine-d);
  margin-bottom: 0.6em;
}
.band-teal .kicker,
.band-tang .kicker {
  color: #ffe9a8;
}
.kicker .sq {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
  transform: rotate(12deg);
}
.sec-head {
  max-width: none;
}
.sec-head h2 {
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.22;
  max-width: 34ch;
  text-wrap: balance;
}
.sec-head.center h2 {
  max-width: 38ch;
  margin-inline: auto;
}
.sec-head p {
  margin-top: 0.7em;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 52ch;
}
.sec-head.center p {
  margin-inline: auto;
}
.band-teal .sec-head p,
.band-tang .sec-head p {
  color: rgba(255, 255, 255, 0.92);
}
.center {
  text-align: center;
  margin-inline: auto;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.about-grid > * {
  min-width: 0;
}
.hero-grid > * {
  min-width: 0;
}
.about-photo {
  position: relative;
  border-radius: 30px 90px 30px 30px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 5/6;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  margin: 0;
  padding: 12px 18px;
  background: var(--tangerine-d);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 30px -16px rgba(44, 36, 27, 0.6);
}
.about-badge b {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.86rem;
  font-weight: 600;
  max-width: 6em;
  line-height: 1.15;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.stat {
  background: #fff;
  border: 2px solid rgba(43, 37, 32, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat b {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  color: var(--tangerine-d);
  line-height: 1;
}
.stat span {
  font-size: clamp(0.74rem, 2.6vw, 0.86rem);
  color: var(--ink-soft);
}
@media (min-width: 480px) {
  .about-stats {
    gap: 14px;
  }
  .stat {
    padding: 18px 14px;
  }
}
.about-quals {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.about-quals li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
}
.about-quals svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex: none;
  margin-top: 2px;
}

/* ---------- Team ---------- */
.team {
  display: grid;
  gap: 20px;
  margin-top: var(--head-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(44, 36, 27, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45, 156, 142, 0.4);
  box-shadow: 0 30px 56px -26px rgba(45, 156, 142, 0.45);
}
.tm-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 14px 30px -16px rgba(44, 36, 27, 0.45);
}
.tm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.15em;
}
.tm-role {
  color: var(--teal-d);
  font-weight: 700;
  font-size: 0.98rem;
}
.tm-exp {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.65em;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.tm-exp svg {
  width: 18px;
  height: 18px;
  color: var(--tangerine-d);
  flex: none;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(28px, 4vw, 40px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .team-stats {
    gap: 16px;
  }
}

/* ---------- Materials cards ---------- */
.cards {
  display: grid;
  gap: 18px;
  margin-top: var(--head-gap);
  grid-template-columns: 1fr;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(44, 36, 27, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 108, 77, 0.4);
  box-shadow: 0 30px 56px -26px rgba(238, 108, 77, 0.5);
}
.card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card .ico svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.ico-tang {
  background: var(--tangerine);
}
.ico-teal {
  background: var(--teal);
}
.ico-mus {
  background: var(--mustard);
}
.ico-mus svg {
  color: var(--ink);
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4em;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Age groups ---------- */
.ages {
  display: grid;
  gap: 20px;
  margin-top: var(--head-gap);
  grid-template-columns: 1fr;
}
.age {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  box-shadow: var(--shadow);
}
.age img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.age::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(42, 33, 24, 0.05) 0%,
    rgba(42, 33, 24, 0.78) 100%
  );
}
.age-badge {
  align-self: flex-start;
  font-family: var(--ff-display);
  font-weight: 800;
  background: var(--mustard);
  color: var(--ink);
  padding: 0.35em 0.8em;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-bottom: auto;
  transform: rotate(-3deg);
}
.age h3 {
  font-size: 1.5rem;
  color: #fff;
}
.age p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.96rem;
  margin-top: 0.3em;
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-auto-rows: max-content;
  gap: 10px;
  padding: 0;
  margin-top: clamp(16px, 2vw, 22px);
  grid-template-columns: 1fr;
  counter-reset: step;
  align-items: stretch;
}
.step {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: clamp(12px, 1.6vw, 15px);
  position: relative;
  transition:
    transform 0.32s var(--ease-out),
    background 0.32s,
    box-shadow 0.32s var(--ease-out);
}
.step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 44px -22px rgba(242, 166, 90, 0.7);
}
.band-teal .step {
  background: rgba(255, 255, 255, 0.1);
}
.step .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.6vw, 1.8rem);
  color: #ffe3b8;
  line-height: 1;
  margin-bottom: 2px;
}
.step h3 {
  font-size: 1.08rem;
  margin: 0 0 3px;
  line-height: 1.15;
}
.step p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.4;
  margin: 0;
}

/* ---------- Tariffs ---------- */
.tariffs {
  display: grid;
  gap: 22px;
  margin-top: var(--head-gap);
  grid-template-columns: 1fr;
  align-items: stretch;
}
.tariff {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 3px solid rgba(42, 33, 24, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tariff.popular {
  border-color: var(--tangerine);
  box-shadow: var(--shadow);
  transform: none;
}
.tariff .pop-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--tangerine-d);
  color: #fff;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4em 1em;
  border-radius: 999px;
  white-space: nowrap;
}
.tariff h3 {
  font-size: 1.5rem;
}
.tariff .price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
  margin: 0.2em 0 0.1em;
}
.tariff .price span {
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.tariff .price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.tariff ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 11px;
  flex: 1;
}
.tariff li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  font-size: 0.97rem;
}
.tariff li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex: none;
  margin-top: 3px;
}

/* ---------- Reviews ---------- */
.reviews {
  display: grid;
  gap: 18px;
  margin-top: var(--head-gap);
  grid-template-columns: 1fr;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(44, 36, 27, 0.06);
  position: relative;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.review:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 122, 110, 0.35);
  box-shadow: 0 30px 56px -26px rgba(31, 122, 110, 0.45);
}
.review .who .av.av-teal {
  background: var(--teal);
}
.review .who .av.av-sky {
  background: var(--sky-d);
}
.review .who .av.av-sage {
  background: var(--sage-d);
}
.review .who .av.av-tang {
  background: var(--tangerine-d);
}
.review .who .av.av-mus {
  background: var(--mustard-d);
}
.review .quote {
  color: var(--tangerine-d);
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
}
.review p {
  color: var(--ink);
  font-size: 1rem;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.review .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex: none;
}
.review .who b {
  font-family: var(--ff-display);
  display: block;
  font-size: 1rem;
}
.review .who span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.stars {
  display: flex;
  gap: 2px;
  margin-top: 14px;
}
.stars svg {
  width: 18px;
  height: 18px;
  color: var(--mustard);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: var(--head-gap) auto 0;
}
.faq-item {
  background: #fff;
  border: 2px solid rgba(42, 33, 24, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-q .sign {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--tangerine-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 0.3s,
    background 0.2s,
    color 0.2s;
}
.faq-item.open .faq-q .sign {
  transform: rotate(45deg);
  background: var(--tangerine);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a .inner {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
}
.final .wrap {
  max-width: 760px;
}
.final h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.2;
}
.final p {
  margin: 0.7em auto 0;
  color: rgba(255, 255, 255, 0.94);
  max-width: 46ch;
}
.final-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn-tg {
  background: #fff;
  color: var(--teal-d);
}
.btn-tg:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ig {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ig:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #e6ddcf;
  padding-block: 48px 30px;
}
.foot-top {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.foot-brand .brand {
  color: #fff;
  margin-bottom: 12px;
}
.foot-brand p {
  color: #b9ae9c;
  font-size: 0.95rem;
  max-width: 34ch;
}
.foot-col h3 {
  font-family: var(--ff-display);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}
.foot-col a {
  color: #cfc4b2;
  font-size: 0.95rem;
}
.foot-col a:hover {
  color: var(--mustard);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #b9ae9c;
}
.foot-bottom a {
  color: var(--mustard);
  font-weight: 700;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.open {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 33, 24, 0.62);
  backdrop-filter: blur(3px);
  animation: fade 0.25s ease;
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  max-height: 92vh;
  overflow-y: auto;
  border: 4px solid #fff;
  animation: pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes fade {
  from {
    opacity: 0;
  }
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 2px solid rgba(42, 33, 24, 0.2);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg {
  width: 22px;
  height: 22px;
}
.modal-card h2 {
  font-size: 1.6rem;
}
.modal-card .sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.3em;
  margin-bottom: 18px;
}
.field {
  margin-bottom: 14px;
}
.field label,
.field .label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input {
  width: 100%;
  padding: 0.78em 0.9em;
  border: 2px solid rgba(43, 37, 32, 0.18);
  border-radius: 14px;
  background: #fff;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.field input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 122, 110, 0.14);
}
.field input::placeholder {
  color: var(--ink-muted);
}
.field .err {
  display: block;
  color: var(--tangerine-d);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 5px;
  min-height: 1em;
}
.field.invalid input,
.field.invalid .cs-trigger {
  border-color: var(--tangerine-d);
}

/* ---------- Custom select (combobox) ---------- */
.cselect {
  position: relative;
}
.cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0.78em 0.9em;
  border: 2px solid rgba(43, 37, 32, 0.18);
  border-radius: 14px;
  background: #fff;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  text-align: left;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.cs-trigger:focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 122, 110, 0.14);
}
.cselect.open .cs-trigger {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 122, 110, 0.14);
}
.cs-trigger .cs-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cs-trigger.is-placeholder .cs-value {
  color: var(--ink-muted);
}
.cs-chev {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--ink-soft);
  transition: transform 0.25s var(--ease-out);
}
.cselect.open .cs-chev {
  transform: rotate(180deg);
}
.cs-list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #fff;
  border: 2px solid rgba(31, 122, 110, 0.22);
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: csPop 0.18s var(--ease-out);
}
@keyframes csPop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.cs-opt {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 0.62em 0.7em;
  border-radius: 11px;
  cursor: pointer;
  line-height: 1.3;
  transition:
    background 0.15s,
    color 0.15s;
}
.cs-opt:hover,
.cs-opt.cs-active {
  background: var(--paper-2);
  color: var(--teal-d);
}
.cs-opt[aria-selected='true'] {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}
.cs-opt[aria-selected='true']:hover,
.cs-opt[aria-selected='true'].cs-active {
  background: var(--teal-d);
  color: #fff;
}
.tariff-pick {
  display: grid;
  gap: 8px;
}
.tariff-pick label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(42, 33, 24, 0.16);
  border-radius: 14px;
  padding: 0.7em 0.9em;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  margin: 0;
  transition:
    border 0.18s,
    background 0.18s;
}
.tariff-pick label:has(input:checked) {
  border-color: var(--tangerine);
  background: #fff4ee;
}
.tariff-pick input {
  width: auto;
  accent-color: var(--tangerine);
}
.tariff-pick .tp-price {
  margin-left: auto;
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--tangerine-d);
}
.modal .btn[aria-busy='true'] {
  opacity: 0.7;
  pointer-events: none;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn[aria-busy='true'] .spinner {
  display: inline-block;
}
.btn[aria-busy='true'] .btn-label {
  opacity: 0.85;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal-success {
  text-align: center;
  padding: 14px 4px;
}
.modal-success .check {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal-success .check svg {
  width: 40px;
  height: 40px;
}
.modal-success h2 {
  margin-bottom: 0.4em;
}
.modal-success p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.modal-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Decorative SVG dots ---------- */
.dots {
  position: absolute;
  color: var(--mustard);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Legal pages ---------- */
.legal {
  padding-block: 60px;
}
.legal .wrap {
  max-width: 780px;
}
.legal h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin-bottom: 0.5em;
}
.legal h2 {
  font-size: 1.4rem;
  margin: 1.4em 0 0.4em;
  color: var(--teal-d);
}
.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 0.7em;
}
.legal ul {
  padding-left: 1.2em;
}
.legal a {
  color: var(--tangerine-d);
  font-weight: 700;
  text-decoration: underline;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--teal-d);
  margin-bottom: 24px;
}
.back-link svg {
  width: 18px;
  height: 18px;
}

/* 404 */
.nf {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.nf .big {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(80px, 20vw, 180px);
  color: var(--tangerine-d);
  line-height: 0.9;
}
.nf p {
  color: var(--ink-soft);
  margin: 0.5em 0 24px;
  font-size: 1.1rem;
}

/* ---------- Trust strip (badges of credibility) ---------- */
.trust-strip {
  grid-column: 1/-1;
  margin-top: clamp(20px, 3vw, 30px);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.trust-card {
  background: #fff;
  border: 2px solid rgba(44, 36, 27, 0.07);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.trust-card .tc-ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 122, 107, 0.12);
  color: var(--teal-d);
}
.trust-card .tc-ico svg {
  width: 24px;
  height: 24px;
}
.trust-card.tc-sky .tc-ico {
  background: rgba(92, 143, 176, 0.16);
  color: var(--sky-d);
}
.trust-card.tc-tang .tc-ico {
  background: rgba(242, 107, 58, 0.14);
  color: var(--tangerine-d);
}
.trust-card b {
  font-family: var(--ff-display);
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}
.trust-card span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* care message ribbon */
.care-note {
  margin-top: 30px;
  background: rgba(92, 143, 176, 0.12);
  border: 2px solid rgba(92, 143, 176, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
}
.care-note svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--sky-d);
  margin-top: 2px;
}
.care-note p {
  color: var(--ink-soft);
  font-size: 1rem;
}
.care-note b {
  color: var(--ink);
  font-family: var(--ff-display);
}

/* ---------- Price list ---------- */
.pricelist {
  margin-top: var(--head-gap);
  background: #fff;
  border: 2px solid rgba(44, 36, 27, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.pricelist .pl-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(44, 36, 27, 0.08);
}
.pricelist .pl-row:last-child {
  border-bottom: 0;
}
.pricelist .pl-row:nth-child(odd) {
  background: rgba(251, 238, 223, 0.5);
}
.pl-row .pl-ico {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 12px;
  background: rgba(19, 122, 107, 0.1);
  color: var(--teal-d);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-row .pl-ico svg {
  width: 22px;
  height: 22px;
}
.pl-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.pl-row .pl-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}
.pl-row .pl-meta {
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 500;
  font-family: var(--ff-body);
}
.pl-row .pl-price {
  margin-left: auto;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--tangerine-d);
  white-space: nowrap;
}
.price-disclaimer {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
}
.price-disclaimer svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--sky-d);
  margin-top: 2px;
}

/* ---------- Booking form section ---------- */
#book .sec-head {
  max-width: none;
}
#book .sec-head h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.24;
  max-width: 30ch;
  text-wrap: balance;
}
#book .sec-head p {
  max-width: 58ch;
}
.book-wrap {
  margin-top: var(--head-gap);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  align-items: start;
}
.book-aside {
  background: #fff;
  border: 2px solid rgba(44, 36, 27, 0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.book-aside .ba-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-soft);
}
.book-aside .ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-aside h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4em;
}
.book-aside ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: grid;
  gap: 11px;
}
.book-aside li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.book-aside li svg {
  width: 21px;
  height: 21px;
  color: var(--teal-d);
  flex: none;
  margin-top: 3px;
}
.book-form {
  background: #fff;
  border: 3px solid rgba(238, 108, 77, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 30px) clamp(18px, 4vw, 28px);
  box-shadow: var(--shadow);
}
.book-form .bf-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.book-form .field {
  margin-bottom: 0;
}
.book-form .span-2 {
  grid-column: 1/-1;
}
.book-form textarea {
  width: 100%;
  padding: 0.78em 0.9em;
  border: 2px solid rgba(43, 37, 32, 0.18);
  border-radius: 14px;
  background: #fff;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  resize: vertical;
  min-height: 84px;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.book-form textarea::placeholder {
  color: var(--ink-muted);
}
.book-form button[type='submit'] {
  margin-top: 18px;
}
.book-form .book-success {
  text-align: center;
  padding: 20px 6px;
}
.book-form .book-success .check {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.book-form .book-success .check svg {
  width: 40px;
  height: 40px;
}
.book-form .book-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}
.book-form .book-success p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.book-form .book-disclaimer {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: center;
}

/* ---------- Contacts / Map ---------- */
.contacts-grid {
  margin-top: var(--head-gap);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 16px;
}
.contact-row {
  background: #fff;
  border: 2px solid rgba(44, 36, 27, 0.07);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
}
a.contact-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-row .cr-ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 122, 107, 0.12);
  color: var(--teal-d);
}
.contact-row.cr-tg .cr-ico {
  background: rgba(92, 143, 176, 0.16);
  color: var(--sky-d);
}
.contact-row.cr-ig .cr-ico {
  background: rgba(242, 107, 58, 0.14);
  color: var(--tangerine-d);
}
.contact-row .cr-ico svg {
  width: 24px;
  height: 24px;
}
.contact-row .cr-label {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contact-row .cr-val {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  margin-top: 2px;
  line-height: 1.3;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--paper-2);
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Counter (stats) ---------- */
.stat b {
  font-variant-numeric: tabular-nums;
}

/* ---------- Reveal stagger ---------- */
[data-reveal] {
  will-change: opacity, transform;
}
.reveal-in {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Interactive micro-animations ---------- */
/* Buttons: subtle shine sweep + scale on hover */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 70%
  );
  transform: translateX(-130%);
  transition: transform 0.55s var(--ease-out);
}
.btn:hover::before {
  transform: translateX(130%);
}
.btn-ghost::before {
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(43, 37, 32, 0.08) 50%,
    transparent 70%
  );
}
.btn:active {
  transform: translateY(1px) scale(0.985);
}

/* Tariff cards: hover-lift */
.tariff {
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    border-color 0.25s;
}
.tariff:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
@media (min-width: 768px) {
  .tariff.popular:hover {
    transform: scale(1.03) translateY(-6px);
  }
}
.tariff.popular:hover {
  border-color: var(--tangerine-d);
}

/* Age cards: hover-lift + image zoom */
.age {
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.age img {
  transition: transform 0.6s var(--ease-out);
}
.age:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.age:hover img {
  transform: scale(1.06);
}

/* Trust cards + price rows: gentle lift */
.trust-card {
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.pl-row {
  transition:
    background 0.25s,
    transform 0.25s var(--ease-out);
}
.pl-row:hover {
  transform: translateX(4px);
}
.pl-row:hover .pl-ico {
  background: rgba(19, 122, 107, 0.2);
}

/* Card icon pop on hover */
.card {
  position: relative;
}
.card .ico {
  transition: transform 0.35s var(--ease-spring);
}
.card:hover .ico {
  transform: scale(1.08) rotate(-4deg);
}

/* Nav links: animated underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0.62em;
  right: 0.62em;
  bottom: 0.18em;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hero photo: gentle floating breath + lift on hover */
.hero-media {
  animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-photo {
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
.hero-photo img {
  transition: transform 0.6s var(--ease-out);
}
.hero-media:hover .hero-photo {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}
.hero-media:hover .hero-photo img {
  transform: scale(1.05);
}

/* Hero highlight: animated reveal of the underline */
.hero h1 .mark {
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.7s var(--ease-out) 0.4s;
}
.hero h1 .mark.lit {
  background-size: 100% 100%;
}

/* Stickers: tiny idle wobble */
.sticker-price {
  animation: wobbleA 6s ease-in-out infinite;
}
.sticker-online {
  animation: wobbleB 7s ease-in-out infinite;
}
@keyframes wobbleA {
  0%,
  100% {
    transform: rotate(7deg);
  }
  50% {
    transform: rotate(4deg) translateY(-3px);
  }
}
@keyframes wobbleB {
  0%,
  100% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(-3deg) translateY(-3px);
  }
}

/* FAQ row hover */
.faq-q {
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(251, 238, 223, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    animation: none !important;
  }
  .sticker-price,
  .sticker-online {
    animation: none !important;
  }
  .btn::before {
    display: none;
  }
  .hero h1 .mark {
    background-size: 100% 100% !important;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .reviews {
    grid-template-columns: 1fr 1fr;
  }
  .ages {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .book-form .bf-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Tablet content layouts — nav still burger (≤1024) */
@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .ages {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .tariffs {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
  .foot-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .book-wrap {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr 1.1fr;
  }
  .tariff.popular {
    transform: scale(1.03);
  }
}
/* Desktop nav appears only ≥1025px; burger up to 1024 */
@media (min-width: 1025px) {
  .burger,
  .mobile-menu {
    display: none;
  }
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .bg-orbs {
    display: none !important;
  }
}

/* ---- steps: thematic sound-pulse animation ---- */
@media (prefers-reduced-motion: no-preference) {
  .step {
    overflow: hidden;
  }
  .step .num {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .step .num::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.4em;
    height: 2.4em;
    margin: -1.2em 0 0 -1.2em;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(255, 227, 184, 0.45),
      transparent 68%
    );
    opacity: 0;
    transform: scale(0.5);
    z-index: -1;
  }
  .step:hover .num {
    transform: translateY(-2px) scale(1.14);
  }
  .step:hover .num::before {
    animation: soundPulse 1.4s ease-out infinite;
  }
  @keyframes soundPulse {
    0% {
      opacity: 0.7;
      transform: scale(0.5);
    }
    70% {
      opacity: 0;
      transform: scale(1.8);
    }
    100% {
      opacity: 0;
      transform: scale(1.8);
    }
  }
}
