/* =========================================================
   Gekam-Dental — "fun new dental clinic"
   Neo-retro playful: outlined poster type, sticker badges,
   tooth mascot, blob buttons, color-block panels.
   Display: Anton (poster) + Bagel Fat One (chunky retro)
   UI/accents: Fredoka (rounded) · Body: Plus Jakarta Sans
   Palette: cream + jade green + coral + sunny yellow
   ========================================================= */

:root {
  --cream:     #F3EDE0;   /* warm page bg */
  --cream-2:   #EBE3D2;
  --paper:     #FBF7EE;   /* card bg (lighter) */
  --white:     #FFFFFF;

  --green:     #15B488;   /* primary bold accent */
  --green-dark:#0E8C6A;
  --green-deep:#0A5C48;
  --mint:      #DDF2E9;   /* soft tint */

  --coral:     #FF6B5C;   /* playful pop */
  --coral-dark:#F2503F;
  --yellow:    #FFC53D;   /* sticker pop */
  --sky:       #8FD7E8;   /* tiny tertiary */

  --ink:       #19352C;   /* deep text (no pure black) */
  --muted:     #5E6F66;
  --muted-2:   #8C9A90;

  --line:      #E2DACA;
  --line-2:    #D6CDB9;

  --r-card: 26px;
  --r-input: 16px;
  --r-pill: 999px;

  --sh-sm: 0 3px 0 rgba(25,53,44,.10);
  --sh-card: 0 14px 30px rgba(25,53,44,.10);
  --sh-pop: 0 18px 44px rgba(25,53,44,.16);
  --sh-hard: 6px 6px 0 rgba(25,53,44,.14);   /* chunky offset shadow */

  --maxw: 1240px;
  --font-poster: "Anton", system-ui, sans-serif;
  --font-fun: "Bagel Fat One", system-ui, sans-serif;
  --font-round: "Fredoka", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.34, 1.56, .64, 1);   /* springy overshoot */
  --ease-soft: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--cream);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3, h4 { line-height: 1.02; font-weight: 700; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--green); }
.accent-coral { color: var(--coral); }

/* ---------- Poster / display type ---------- */
.poster {
  font-family: var(--font-poster); font-weight: 400;
  letter-spacing: .005em; line-height: .92; text-transform: uppercase;
}
/* outlined poster letters: green fill + cream halo + hard shadow */
.outline {
  color: var(--green);
  -webkit-text-stroke: 7px var(--paper);
  paint-order: stroke fill;
  text-shadow: 6px 8px 0 rgba(25,53,44,.12);
}
.outline--coral { color: var(--coral); }
.outline--cream { color: var(--paper); -webkit-text-stroke-color: var(--green-deep); }
.fun { font-family: var(--font-fun); font-weight: 400; letter-spacing: .01em; }

/* ---------- Sticker badge ---------- */
.sticker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-round); font-weight: 700; font-size: .9rem;
  letter-spacing: .02em; text-transform: uppercase; color: var(--ink);
  background: var(--yellow); padding: .5rem 1rem; border-radius: var(--r-pill);
  border: 2.5px solid var(--ink); box-shadow: var(--sh-hard);
  white-space: nowrap;
}
.sticker--coral { background: var(--coral); color: var(--ink); }
.sticker--green { background: var(--green); color: var(--ink); }
.sticker--white { background: var(--paper); }

/* ---------- Buttons (chunky blob) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-round); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .01em; padding: .9rem 1.7rem; border-radius: var(--r-pill);
  border: 2.5px solid var(--ink); cursor: pointer; white-space: nowrap;
  box-shadow: var(--sh-hard);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease-soft), background .2s;
}
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px) rotate(-8deg); }
.btn--primary { background: var(--green); color: var(--ink); }
.btn--primary:hover { transform: translate(-2px,-2px) rotate(-1.5deg); box-shadow: 9px 10px 0 rgba(25,53,44,.16); }
.btn--primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 rgba(25,53,44,.16); }
.btn--coral { background: var(--coral); color: var(--ink); }
.btn--coral:hover { transform: translate(-2px,-2px) rotate(1.5deg); box-shadow: 9px 10px 0 rgba(25,53,44,.16); }
.btn--cream { background: var(--paper); color: var(--ink); }
.btn--cream:hover { transform: translate(-2px,-2px) rotate(-1.5deg); box-shadow: 9px 10px 0 rgba(25,53,44,.22); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn--ghost:hover { background: var(--paper); transform: translate(-2px,-2px); box-shadow: var(--sh-hard); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.14rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .92rem; border-width: 2px; box-shadow: 4px 4px 0 rgba(25,53,44,.14); }

/* keyboard focus (a11y) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.cal__day:focus-visible, .slot:focus-visible, .cal__nav:focus-visible {
  outline: 3px solid var(--ink); outline-offset: 2px;
}

/* ---------- Section heads ---------- */
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; padding: 0 1.2rem; }
.section-head h2 { font-family: var(--font-poster); text-transform: uppercase; font-weight: 400; font-size: clamp(2.6rem, 8vw, 5.6rem); line-height: 1.04; }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.12rem; font-weight: 500; }
.section-head .sticker { margin-bottom: 1.2rem; }
.section-head--light h2 { color: var(--ink); }
.section-head--light p { color: var(--ink); opacity: .82; }

/* =========================================================
   NAV
   ========================================================= */
.nav { position: sticky; top: 0; z-index: 100; transition: transform .3s ease; }
.nav__inner {
  max-width: var(--maxw); margin: .8rem auto 0; height: 64px; padding: 0 .9rem 0 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(251,247,238,.85); backdrop-filter: blur(12px) saturate(160%); -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 2.5px solid var(--ink); border-radius: var(--r-pill); box-shadow: var(--sh-hard);
  width: calc(100% - 2rem); position: relative; left: 0;
}
.brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-fun); font-size: 1.5rem; color: var(--green); }
.brand__mark { display: inline-flex; transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-14deg) scale(1.1); }
.brand__name { color: var(--ink); }
.brand__dot { color: var(--coral); }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-family: var(--font-round); font-weight: 600; color: var(--ink); font-size: 1rem; position: relative; transition: color .2s, transform .2s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: -7px; width: 0; height: 4px; background: var(--coral); border-radius: 4px; transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--green-dark); transform: translateY(-1px); }
.nav__links a:hover::after { width: 80%; }
.nav__cta { padding: .55rem 1.2rem; font-size: .95rem; border-width: 2px; box-shadow: 4px 4px 0 rgba(25,53,44,.16); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 3px; background: var(--ink); border-radius: 3px; transition: .25s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; margin: .6rem 1rem 0; padding: 0 1.2rem; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-soft); background: var(--paper); border-radius: var(--r-card); border: 2.5px solid transparent; }
.nav__mobile a { padding: .95rem .2rem; border-bottom: 2px solid var(--line); font-family: var(--font-round); font-weight: 600; }
.nav__mobile a:last-child { border: 0; margin: .7rem 0 1.1rem; text-align: center; }
.nav__mobile.is-open { max-height: 440px; border-color: var(--ink); box-shadow: var(--sh-hard); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: clamp(1.5rem, 3vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; padding: 0 1.2rem; text-align: center; }
.hero__kicker { position: relative; z-index: 5; margin-bottom: 1.5rem; }
.hero__title { font-family: var(--font-poster); text-transform: uppercase; font-weight: 400; line-height: .95; margin: .6rem 0; }
.hero__line { display: block; font-size: clamp(3rem, 17vw, 13rem); }
.hero__line--fun { font-family: var(--font-fun); text-transform: none; font-size: clamp(2.9rem, 15.5vw, 12rem); line-height: .92; color: var(--green); -webkit-text-stroke: 7px var(--paper); paint-order: stroke fill; text-shadow: 6px 8px 0 rgba(25,53,44,.12); }
.hero__title .word { display: inline-block; }

/* tooth mascot — floats beside the headline */
.hero__mascot { display: inline-block; vertical-align: middle; width: clamp(90px, 14vw, 170px); margin: 0 .1em; }
.hero__mascot--float { position: absolute; right: 2%; top: 11%; width: clamp(96px, 12vw, 168px); rotate: 7deg; margin: 0; z-index: 3; }
.tooth { width: 100%; height: auto; overflow: visible; filter: drop-shadow(4px 6px 0 rgba(25,53,44,.12)); }
.tooth__eye-ball { transition: transform .12s linear; }
.tooth__eye { transform-box: fill-box; transform-origin: center; transition: transform .1s ease; }
.tooth.is-blink .tooth__eye { transform: scaleY(.14); }
.tooth__sparkle { transform-box: fill-box; transform-origin: center; animation: twinkle 2.4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.6); opacity: .5; } }

.hero__sub { max-width: 40ch; margin: 1.6rem auto 0; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.26rem); font-weight: 500; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* floating stickers + doodles around hero */
.hero__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__deco .sticker { position: absolute; pointer-events: auto; }
.deco-1 { top: 16%; left: 6%; transform: rotate(-11deg); background: var(--coral); color: var(--ink); }
.deco-2 { top: 24%; right: 6%; transform: rotate(9deg); background: var(--yellow); }
.deco-3 { bottom: 20%; left: 9%; transform: rotate(7deg); background: var(--green); color: var(--ink); }
.deco-4 { bottom: 16%; right: 8%; transform: rotate(-8deg); background: var(--paper); }
.float-anim { animation: floaty 5s ease-in-out infinite; }
.float-anim:nth-child(2) { animation-delay: -1.5s; }
.float-anim:nth-child(3) { animation-delay: -2.6s; }
.float-anim:nth-child(4) { animation-delay: -3.8s; }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -12px; } }

/* scrapbook photo strip under hero */
.scrapbook { display: flex; justify-content: center; gap: clamp(.6rem,2vw,1.4rem); flex-wrap: wrap; max-width: var(--maxw); margin: clamp(1.5rem,4vw,3rem) auto 0; padding: 0 1.5rem; }
.snap { position: relative; width: clamp(150px, 22vw, 250px); aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; border: 4px solid var(--paper); box-shadow: var(--sh-card); transition: transform .3s var(--ease); }
.snap img { width: 100%; height: 100%; object-fit: cover; }
.snap:nth-child(1) { rotate: -5deg; }
.snap:nth-child(2) { rotate: 3deg; margin-top: -10px; z-index: 2; }
.snap:nth-child(3) { rotate: -3deg; }
.snap:nth-child(4) { rotate: 5deg; margin-top: -6px; }
.snap:hover { transform: translateY(-8px) scale(1.03) rotate(0deg); z-index: 5; }
.snap__tag { position: absolute; left: 8px; bottom: 8px; font-family: var(--font-round); font-weight: 700; font-size: .72rem; background: var(--ink); color: #fff; padding: .2rem .55rem; border-radius: var(--r-pill); }

/* next-free-term mini card (kept, restyled) */
.termcard { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.6rem; background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-pill); padding: .5rem .5rem .5rem 1.1rem; box-shadow: var(--sh-hard); }
.termcard__txt { text-align: left; line-height: 1.1; }
.termcard__label { font-size: .72rem; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: .35rem; font-family: var(--font-round); text-transform: uppercase; letter-spacing: .03em; }
.termcard__slot { font-family: var(--font-round); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(21,180,136,.5);} 50% { box-shadow: 0 0 0 6px rgba(21,180,136,0);} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: .95rem 0; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 30s linear infinite; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 1.9rem; padding-right: 1.9rem; font-family: var(--font-fun); font-size: 1.2rem; white-space: nowrap; }
.marquee__group .sep { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SERVICES (BENTO)
   ========================================================= */
.services { background: #E9F6EF; border-top: 3px solid var(--ink); padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; position: relative; }
.bento { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(196px, auto); grid-auto-flow: row dense; gap: 1.2rem; }
.bento__cell {
  position: relative; background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-card);
  padding: 1.7rem; box-shadow: var(--sh-hard); overflow: hidden;
  display: flex; flex-direction: column; gap: .55rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease-soft);
}
.bento__cell:hover { transform: translate(-3px,-3px) rotate(-.6deg); box-shadow: 10px 12px 0 rgba(25,53,44,.16); }
.bento__cell h3 { font-family: var(--font-round); font-weight: 700; font-size: 1.3rem; }
.bento__cell p { color: var(--muted); font-size: .96rem; font-weight: 500; }
.bento__more { margin-top: auto; font-family: var(--font-round); font-weight: 700; color: var(--green-dark); font-size: .95rem; }
.bento__more em { font-style: normal; }
.bento__icon { width: 54px; height: 54px; border-radius: 16px; background: var(--mint); color: var(--green-dark); display: grid; place-items: center; font-size: 1.5rem; border: 2.5px solid var(--ink); transition: transform .3s var(--ease), background .3s; }
.bento__cell:hover .bento__icon { transform: scale(1.1) rotate(-8deg); background: var(--yellow); color: var(--ink); }
.bento__cell--tint { background: #D4EFE2; }
.bento__cell--coral { background: var(--coral); color: var(--ink); }
.bento__cell--coral p { color: var(--ink); opacity: .85; }
.bento__cell--coral .bento__icon { background: var(--paper); color: var(--ink); }
/* color-craft bento fills (ink text on every bright fill = AA safe) */
.bento__cell--butter { background: #FFE9B0; }
.bento__cell--blush { background: #FFD9D2; }
.bento__cell--solid-green { background: var(--green); }
.bento__cell--butter p, .bento__cell--blush p, .bento__cell--solid-green p { color: var(--ink); opacity: .85; }
.bento__cell--butter .bento__icon { background: var(--coral); color: var(--paper); }
.bento__cell--blush .bento__icon { background: var(--yellow); color: var(--ink); }
.bento__cell--solid-green .bento__icon { background: var(--paper); color: var(--ink); }
.bento__cell--span2 { grid-column: span 2; }
.bento__cell--feature { grid-column: span 2; grid-row: span 2; padding: 0; }
.bento__cell--feature .bento__photo { position: relative; flex: 1; min-height: 240px; overflow: hidden; }
.bento__cell--feature .bento__body { padding: 1.7rem; }
.bento__cell--wide { grid-column: span 2; flex-direction: row; align-items: stretch; padding: 0; }
.bento__cell--wide .bento__photo--side { position: relative; width: 44%; min-height: 200px; overflow: hidden; border-right: 2.5px solid var(--ink); }
.bento__cell--wide .bento__body { padding: 1.7rem; display: flex; flex-direction: column; gap: .55rem; justify-content: center; }
.bento__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
.bento__cell:hover .bento__photo img { transform: scale(1.06); }
.photo-tint { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(21,180,136,.18), transparent 60%); mix-blend-mode: multiply; }
.img-failed { background: var(--mint); position: relative; }
.img-failed::before { content: "Foto ordinácie"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--green-dark); font-family: var(--font-round); font-weight: 700; opacity: .7; }

/* =========================================================
   COLOR-BLOCK SHOWCASE
   ========================================================= */
.showcase { position: relative; overflow: hidden; background: var(--green-deep); margin: 0 .8rem; border-radius: 40px; border: 3px solid var(--ink); box-shadow: var(--sh-hard); }
.showcase__bg { position: absolute; inset: -14% 0; z-index: 0; opacity: .26; will-change: transform; }
.showcase__bg img { width: 100%; height: 100%; object-fit: cover; }
.showcase__content { position: relative; z-index: 2; color: #fff; text-align: center; padding: clamp(3.5rem,7vw,6rem) 1.5rem; max-width: 820px; margin: 0 auto; }
.showcase__content h2 { font-family: var(--font-poster); text-transform: uppercase; font-weight: 400; font-size: clamp(2.6rem, 8vw, 5.6rem); line-height: 1.04; }
.showcase__content p { margin: 1.2rem 0 2rem; font-size: 1.16rem; font-weight: 500; color: rgba(255,255,255,.92); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.about { padding-left: .8rem; padding-right: .8rem; }
.about__inner { background: var(--green); border: 3px solid var(--ink); border-radius: 40px; box-shadow: var(--sh-hard); max-width: var(--maxw); margin: 0 auto; padding: clamp(2.4rem, 5vw, 4rem); display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; position: relative; }
.about__visual { position: relative; }
.about__frame { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4/4.5; border: 3px solid var(--ink); box-shadow: var(--sh-hard); rotate: -2deg; }
.about__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about__badge { position: absolute; right: -14px; top: -16px; rotate: 8deg; }
.about__name { position: absolute; left: -14px; bottom: 20px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-pill); padding: .55rem 1.1rem; box-shadow: var(--sh-hard); rotate: -3deg; }
.about__name strong { font-family: var(--font-round); font-weight: 700; display: block; line-height: 1.1; }
.about__name span { font-size: .82rem; color: var(--muted); font-weight: 500; }
.about__copy h2 { font-family: var(--font-poster); text-transform: uppercase; font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.04; margin-bottom: 1.2rem; }
.about__copy p { color: var(--ink); margin-bottom: 1rem; font-size: 1.08rem; font-weight: 500; }
.about__list { list-style: none; margin: 1.5rem 0 1.9rem; display: grid; gap: .8rem; }
.about__list li { position: relative; padding-left: 2.3rem; font-weight: 600; }
.about__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 1.7rem; height: 1.7rem; background: var(--yellow); color: var(--ink); border: 2.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: .85rem; font-weight: 800; }

/* =========================================================
   GALLERY (COVERFLOW)
   ========================================================= */
.gallery { background: #FDF1D6; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); padding: clamp(4rem, 8vw, 6.5rem) 0; overflow: hidden; position: relative; }
.gallery__track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2rem clamp(1.5rem, 28vw, 30vw); perspective: 1500px; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-grabbing { cursor: grabbing; }
.gallery__item { flex: 0 0 clamp(270px, 44vw, 480px); aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; scroll-snap-align: center; border: 3px solid var(--ink); box-shadow: var(--sh-hard); transform-style: preserve-3d; will-change: transform; background: var(--paper); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .55s var(--ease-soft), filter .4s ease; }
.gallery__item:hover img { transform: scale(1.09); filter: saturate(1.08); }
.gallery__item:hover { box-shadow: 11px 13px 0 rgba(25,53,44,.22); }
.gallery__hint { text-align: center; color: var(--muted); font-family: var(--font-round); font-weight: 700; font-size: .95rem; margin-top: .6rem; }

/* =========================================================
   BOOKING (THE STAR)
   ========================================================= */
.booking { background: var(--coral); padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; margin: 0 .8rem; border-radius: 40px; border: 3px solid var(--ink); box-shadow: var(--sh-hard); position: relative; overflow: hidden; }
.booking__card { max-width: 1000px; margin: 0 auto; background: var(--paper); border-radius: var(--r-card); border: 3px solid var(--ink); box-shadow: var(--sh-hard); overflow: hidden; position: relative; z-index: 1; }
.booking__card--cta { max-width: 680px; }
.booking__cta { padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.5rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.05rem; }
.booking__cta-title { font-family: var(--font-round); font-weight: 700; font-size: clamp(1.5rem, 4.5vw, 2.1rem); line-height: 1.08; color: var(--ink); margin: 0; }
.booking__cta-sub { font-family: var(--font-body); color: var(--muted); font-size: 1.04rem; line-height: 1.55; max-width: 42ch; margin: 0; }
.booking__cta .btn { margin-top: .5rem; }
.booking__cta-alt { font-family: var(--font-round); font-weight: 700; color: var(--ink); margin: .3rem 0 0; }
.booking__cta-alt a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.booking__cta-deal { font-family: var(--font-body); font-size: .92rem; color: var(--muted-2); margin: 0; }
.booking__cta-deal a { color: var(--coral-dark); font-weight: 700; text-decoration: none; }
.booking__cta-deal a:hover { text-decoration: underline; }
.steps { display: flex; gap: .5rem; padding: 1.2rem 1.6rem; border-bottom: 2.5px solid var(--ink); background: var(--cream); }
.step { display: flex; align-items: center; gap: .55rem; font-family: var(--font-round); font-weight: 700; font-size: .95rem; color: var(--muted-2); padding: .35rem .85rem; border-radius: var(--r-pill); transition: .3s; }
.step span { width: 26px; height: 26px; border-radius: 50%; background: var(--line-2); color: #fff; display: grid; place-items: center; font-size: .82rem; border: 2px solid var(--ink); transition: .3s; }
.step.is-active { color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); }
.step.is-active span, .step.is-done span { background: var(--green); }
.booking__grid { display: grid; grid-template-columns: 1fr 1fr; }
.panel { padding: 1.9rem; }
.panel--cal { border-right: 2.5px solid var(--ink); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__month { font-family: var(--font-round); font-weight: 700; font-size: 1.2rem; text-transform: capitalize; }
.cal__nav { width: 40px; height: 40px; border-radius: 50%; border: 2.5px solid var(--ink); background: var(--paper); color: var(--ink); font-size: 1.2rem; cursor: pointer; transition: .2s var(--ease); line-height: 1; box-shadow: 3px 3px 0 rgba(25,53,44,.14); }
.cal__nav:hover { background: var(--yellow); transform: translate(-1px,-1px); }
.cal__nav:disabled { opacity: .35; cursor: not-allowed; box-shadow: none; }
.cal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; margin-bottom: .5rem; }
.cal__weekdays span { text-align: center; font-size: .74rem; font-weight: 700; color: var(--muted-2); font-family: var(--font-round); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.cal__day { aspect-ratio: 1; border: 2px solid transparent; background: transparent; border-radius: 12px; font-family: var(--font-round); font-weight: 600; font-size: .98rem; color: var(--ink); cursor: pointer; transition: .15s var(--ease); position: relative; }
.cal__day.is-empty { visibility: hidden; }
.cal__day.is-disabled { color: var(--muted-2); opacity: .4; cursor: not-allowed; }
.cal__day.is-open:hover { background: var(--mint); transform: scale(1.08); border-color: var(--ink); }
.cal__day.is-open::after { content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.cal__day.is-today { border-color: var(--green); }
.cal__day.is-selected { background: var(--green); color: #fff; border-color: var(--ink); }
.cal__day.is-selected::after { background: #fff; }
.cal__hint { margin-top: 1.1rem; font-size: .86rem; color: var(--muted); font-weight: 500; }
.panel__title { font-family: var(--font-round); font-weight: 700; font-size: 1.3rem; margin-bottom: .4rem; }
.panel__sub { color: var(--muted); font-size: .96rem; margin-bottom: 1.3rem; font-weight: 500; }
.slots__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.slot { padding: .9rem; border-radius: var(--r-input); border: 2.5px solid var(--ink); background: var(--paper); font-family: var(--font-round); font-weight: 700; font-size: 1.02rem; color: var(--ink); cursor: pointer; transition: .18s var(--ease); box-shadow: 3px 3px 0 rgba(25,53,44,.12); }
.slot:hover { background: var(--yellow); transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(25,53,44,.16); }
.slot.is-selected { background: var(--green); color: #fff; }
.slot.is-taken { color: var(--muted-2); background: var(--cream-2); cursor: not-allowed; text-decoration: line-through; box-shadow: none; border-color: var(--line-2); }
.slot small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; text-decoration: none; }
.bform .field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.field span { font-size: .86rem; font-weight: 700; color: var(--ink); font-family: var(--font-round); }
.field em { color: var(--muted-2); font-style: normal; font-weight: 500; }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: .98rem; color: var(--ink); padding: .8rem .9rem; border: 2.5px solid var(--line-2); border-radius: var(--r-input); background: var(--paper); transition: .18s; width: 100%; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 3px 3px 0 rgba(21,180,136,.25); }
.bform__actions { display: flex; gap: .7rem; margin-top: 1.2rem; }
.bform__actions .btn { flex: 1; }

/* GDPR consent checkbox */
.consent { display: flex; align-items: flex-start; gap: .6rem; margin: .2rem 0; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-top: .12rem; accent-color: var(--green); cursor: pointer; }
.consent span { font-size: .84rem; line-height: 1.35; color: var(--muted); font-family: var(--font-body); }

/* Inline form error + slot messages */
.bform__error { margin-top: .9rem; padding: .7rem .9rem; border: 2.5px solid var(--coral); border-radius: var(--r-input); background: rgba(255,107,92,.1); color: var(--ink); font-size: .9rem; font-weight: 600; }
.slots__msg { grid-column: 1 / -1; color: var(--muted); font-size: .94rem; line-height: 1.45; padding: .4rem 0; }
.success { text-align: center; padding: 1rem .5rem; }
.success__check { width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%; background: var(--yellow); color: var(--ink); border: 3px solid var(--ink); display: grid; place-items: center; font-size: 2.1rem; font-weight: 800; box-shadow: var(--sh-hard); animation: pop .5s var(--ease); }
@keyframes pop { 0% { transform: scale(.3) rotate(-20deg); opacity: 0; } 70% { transform: scale(1.15) rotate(6deg); } 100% { transform: scale(1); opacity: 1; } }
.success h3 { font-family: var(--font-round); font-weight: 700; font-size: 1.5rem; }
.success__sub { color: var(--muted); margin: .5rem 0 1.3rem; font-weight: 500; }
.success__details { text-align: left; background: var(--cream); border: 2.5px solid var(--ink); border-radius: var(--r-card); padding: 1.2rem 1.3rem; display: grid; gap: .55rem; margin-bottom: 1.3rem; }
.success__details .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .96rem; }
.success__details .row span:first-child { color: var(--muted); font-weight: 500; }
.success__details .row span:last-child { font-weight: 700; text-align: right; font-family: var(--font-round); }
.success__actions { display: flex; gap: .7rem; }
.success__actions .btn { flex: 1; }
.success__note { font-size: .82rem; color: var(--muted-2); margin-top: 1.1rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: #E4F4F2; padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; position: relative; }
.reviews__grid { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-card); padding: 1.9rem; box-shadow: var(--sh-hard); transition: transform .25s var(--ease), box-shadow .25s var(--ease-soft); }
.review:nth-child(2) { rotate: -1.5deg; background: #EFF8F4; }
.review:nth-child(3) { rotate: 1.5deg; background: #FCF4E0; }
.review:hover { transform: translate(-3px,-3px) rotate(0deg); box-shadow: 10px 12px 0 rgba(25,53,44,.16); }
.stars { color: var(--yellow); letter-spacing: .08em; -webkit-text-stroke: 1px var(--ink); }
.review .stars { margin-bottom: .9rem; font-size: 1.15rem; }
.review blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.5; font-weight: 500; }
.review figcaption { margin-top: 1.1rem; font-family: var(--font-round); font-weight: 700; }
.review figcaption span { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted-2); font-size: .88rem; }

/* =========================================================
   VISIT / CONTACT
   ========================================================= */
.visit { background: #F8EBDD; padding: clamp(4rem, 8vw, 6.5rem) 0; position: relative; }
.visit__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.visit__info h2 { font-family: var(--font-poster); text-transform: uppercase; font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.04; margin-bottom: .6rem; }
.visit__sub { color: var(--muted); font-weight: 500; margin-bottom: 1.6rem; }
.visit__list { list-style: none; display: grid; gap: 1rem; margin-bottom: 1.9rem; }
.visit__list li { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; align-items: start; background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-input); padding: .9rem 1.1rem .9rem 1.3rem; box-shadow: inset 7px 0 0 var(--bar, var(--green)), 4px 4px 0 rgba(25,53,44,.1); transition: transform .22s var(--ease), box-shadow .22s var(--ease-soft); }
.visit__list li:hover { transform: translate(-3px,-3px) rotate(-.5deg); box-shadow: inset 7px 0 0 var(--bar, var(--green)), 7px 8px 0 rgba(25,53,44,.16); }
.visit__list li:nth-child(1) { --bar: var(--green); }
.visit__list li:nth-child(2) { --bar: var(--coral); }
.visit__list li:nth-child(3) { --bar: var(--yellow); }
.visit__list li:nth-child(4) { --bar: var(--green); }
.visit__list li:nth-child(5) { --bar: var(--coral); }
@keyframes boxRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.visit__info.is-in .visit__list li { animation: boxRise .6s var(--ease-soft) both; }
.visit__info.is-in .visit__list li:nth-child(1) { animation-delay: .10s; }
.visit__info.is-in .visit__list li:nth-child(2) { animation-delay: .18s; }
.visit__info.is-in .visit__list li:nth-child(3) { animation-delay: .26s; }
.visit__info.is-in .visit__list li:nth-child(4) { animation-delay: .34s; }
.visit__info.is-in .visit__list li:nth-child(5) { animation-delay: .42s; }
.visit__k { font-family: var(--font-round); font-weight: 700; font-size: .92rem; color: var(--green-dark); }
.visit__v { color: var(--ink); font-weight: 500; }
.visit__v a:hover { color: var(--green-dark); }
.visit__map { border-radius: var(--r-card); overflow: hidden; border: 3px solid var(--ink); box-shadow: var(--sh-hard); height: 440px; rotate: 1.5deg; }
.visit__map iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #d8e6df; margin-top: clamp(2rem,4vw,3rem); border-radius: 40px 40px 0 0; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 3.6rem 1.5rem 2.6rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer__brand .brand__name, .footer__brand .brand__big { color: #fff; font-family: var(--font-fun); font-size: 1.7rem; }
.footer__brand .brand__big .brand__dot { color: var(--coral); }
.footer__brand p { margin-top: .8rem; max-width: 30ch; color: #9fb8b0; font-weight: 500; }
.footer__col h4 { color: var(--yellow); font-family: var(--font-round); font-size: 1.05rem; margin-bottom: 1rem; }
.footer__col a { display: block; color: #b6cabf; padding: .3rem 0; font-weight: 500; transition: color .2s, transform .2s var(--ease); }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__bar { border-top: 2px solid rgba(255,255,255,.12); padding: 1.4rem 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; max-width: var(--maxw); margin: 0 auto; font-size: .85rem; color: #88a39a; font-weight: 500; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 0; transition: opacity .7s var(--ease-soft), transform .7s var(--ease); will-change: transform, opacity; }
.reveal { transform: translateY(34px); }
.reveal-l { transform: translateX(-44px) rotate(-2deg); }
.reveal-r { transform: translateX(44px) rotate(2deg); }
.reveal-scale { transform: scale(.92); }
.reveal.is-in, .reveal-l.is-in, .reveal-r.is-in, .reveal-scale.is-in { opacity: 1; transform: none; }

/* =========================================================
   HERO ENTRANCE (plays once on load, no JS needed)
   ========================================================= */
@keyframes heroPop {
  0% { opacity: 0; transform: translateY(72px) scale(.9); }
  60% { opacity: 1; transform: translateY(-9px) scale(1.015); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroFade { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes mascotPop {
  0% { opacity: 0; transform: scale(.3) rotate(-22deg); }
  65% { opacity: 1; transform: scale(1.14) rotate(9deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes decoIn { from { opacity: 0; } to { opacity: 1; } }

.hero__kicker { animation: heroFade .7s var(--ease-soft) .05s both; }
.hero__title .hero__line { animation: heroPop .85s var(--ease-soft) both; }
.hero__title .hero__line:nth-child(1) { animation-delay: .12s; }
.hero__title .hero__line:nth-child(2) { animation-delay: .26s; }
.hero__title .hero__line:nth-child(3) { animation-delay: .40s; }
.hero__sub { animation: heroFade .7s var(--ease-soft) .56s both; }
.hero__actions { animation: heroFade .7s var(--ease-soft) .68s both; }
.termcard { animation: heroFade .7s var(--ease-soft) .80s both; }
.tooth { animation: mascotPop 1s var(--ease-soft) .5s both; }
.hero__deco { animation: decoIn .8s ease 1s both; }

/* =========================================================
   SPOTLIGHT GLOW (cursor-follow on cards)
   ========================================================= */
[data-spotlight] { isolation: isolate; }
.review[data-spotlight], .visit__list li[data-spotlight] { position: relative; }
[data-spotlight]::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(21,180,136,.32), transparent 64%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.bento__cell--coral[data-spotlight]::before { background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.28), transparent 62%); }
[data-spotlight]:hover::before { opacity: 1; }
@media (prefers-reduced-motion: reduce) { [data-spotlight]::before { display: none; } }

/* =========================================================
   BOOKING WIDGET POP-INS (calendar days + time slots)
   ========================================================= */
@keyframes dayPop { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: none; } }
.cal__day:not(.is-empty) { animation: dayPop .4s var(--ease-soft) backwards; animation-delay: calc(var(--i, 0) * 10ms); }
@keyframes slotPop { from { opacity: 0; transform: translateY(14px) scale(.92); } to { opacity: 1; transform: none; } }
.slot { animation: slotPop .38s var(--ease) backwards; }
.slot:nth-child(1) { animation-delay: .02s; }
.slot:nth-child(2) { animation-delay: .10s; }
.slot:nth-child(3) { animation-delay: .18s; }
.slot:nth-child(4) { animation-delay: .26s; }

/* =========================================================
   SECTION DECO — soft drifting blobs + dot texture (behind content)
   ========================================================= */
.services, .reviews, .visit { isolation: isolate; overflow: hidden; }
.services::before, .reviews::before, .visit::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 540px; height: 540px; border-radius: 60% 40% 55% 45%;
  top: -130px; right: -110px; opacity: .6; will-change: transform;
  animation: blobDrift 22s ease-in-out infinite;
}
.services::before { background: radial-gradient(circle, rgba(21,180,136,.16), transparent 70%); }
.reviews::before  { background: radial-gradient(circle, rgba(143,215,232,.34), transparent 70%); top: auto; bottom: -150px; right: auto; left: -120px; animation-duration: 26s; animation-direction: reverse; }
.visit::before    { background: radial-gradient(circle, rgba(255,107,92,.16), transparent 70%); left: -120px; right: auto; animation-duration: 24s; }
.services::after, .reviews::after, .visit::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  width: 340px; height: 300px; bottom: 0; left: 0;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.6px);
  background-size: 22px 22px; opacity: .12;
}
.services::after { color: #0E8C6A; }
.reviews::after  { color: #0E8C6A; }
.visit::after    { color: #F2503F; }
@keyframes blobDrift { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(26px, 20px) scale(1.07); } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { max-width: 420px; margin: 0 auto; }
  .about__copy { order: 2; }
  .visit__inner { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--feature, .bento__cell--wide, .bento__cell--span2 { grid-column: span 2; grid-row: auto; }
  .reviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .booking__grid { grid-template-columns: 1fr; }
  .panel--cal { border-right: 0; border-bottom: 2.5px solid var(--ink); }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--feature, .bento__cell--wide, .bento__cell--span2 { grid-column: auto; }
  .bento__cell--wide { flex-direction: column; }
  .bento__cell--wide .bento__photo--side { width: 100%; min-height: 200px; border-right: 0; border-bottom: 2.5px solid var(--ink); }
  .footer__inner { grid-template-columns: 1fr; }
  .visit__list li { grid-template-columns: 1fr; gap: .2rem; }
  .steps { flex-wrap: wrap; }
  .gallery__track { padding: 2rem 12vw; }
  .about__visual { max-width: 100%; }
  .about__frame { rotate: -1deg; }
  .about__name { left: 4px; }
  .about__badge { right: 4px; }
  .hero__deco { display: none; }
  .hero__mascot--float { width: 66px; right: 8px; top: 4px; rotate: 12deg; }
  .showcase, .booking { margin: 0 .4rem; border-radius: 28px; }
}

@media (max-width: 550px) {
  .outline { -webkit-text-stroke-width: 3px; }
  .hero__line--fun { -webkit-text-stroke-width: 3px; }
  .hero__mascot--float { display: none; }
}

@media (max-width: 430px) {
  /* Stacked layout: drop the capsule shape (it balloons into an oval when tall)
     for a clean rounded rectangle, with a tidy full-width button. */
  .termcard { flex-direction: column; align-items: stretch; gap: .6rem; border-radius: 18px; padding: .85rem .9rem; }
  .termcard__txt { text-align: center; }
  .termcard .btn { width: 100%; }
  .showcase, .booking { margin: 0; border-radius: 22px; }
}

/* =========================================================
   MOBILE OPTIMIZATION  (phones only — desktop is untouched)
   NOTE: animations are deliberately NOT touched here — phones use the exact
   same smooth desktop timings (0.7s reveals, the slide-up slot pop, the slow
   drifting blobs and parallax). Only LAYOUT/spacing is adjusted below.
   ========================================================= */
@media (max-width: 760px) {
  /* Tighter vertical rhythm; padding-block keeps each section's own side padding
     (so the full-bleed gallery and edge-to-edge sections stay intact). */
  .services, .gallery, .reviews, .about, .visit, .booking { padding-block: clamp(2.4rem, 7vw, 4.2rem); }
  .section-head { margin-bottom: 2rem; }

  /* Booking widget: lighter panel padding so the calendar + form aren't so tall. */
  .panel { padding: 1.25rem 1.05rem; }
  /* When a step is tapped we scroll its panel into view — clear the fixed nav. */
  .panel--right { scroll-margin-top: 84px; }
}

@media (max-width: 550px) {
  /* Calendar scales down so the whole month fits comfortably. */
  .panel { padding: 1.05rem .85rem; }
  .cal__month { font-size: clamp(1rem, 4.6vw, 1.2rem); }
  .cal__nav { width: 36px; height: 36px; font-size: 1rem; box-shadow: 2px 2px 0 rgba(25,53,44,.14); }
  .cal__day { font-size: .9rem; }
  .cal__weekdays span { font-size: .66rem; }
  .cal__hint { font-size: .82rem; margin-top: .9rem; }

  /* Step indicator more compact. */
  .steps { padding: 1rem 1.1rem; }
  .step { font-size: .82rem; padding: .28rem .7rem; }
  .step span { width: 22px; height: 22px; font-size: .72rem; }

  /* Slots + form: bigger tap targets, tighter grid. */
  .slots__grid { gap: .55rem; }
  .slot { padding: .82rem; font-size: .96rem; }
  .panel__title { font-size: clamp(1.12rem, 4.6vw, 1.3rem); }
  .field input, .field select, .field textarea { padding: .85rem .9rem; min-height: 46px; }
  .bform__actions { gap: .6rem; }
  .bform__actions .btn { min-height: 50px; }

  /* Hero subtitle reads better in a narrow column. */
  .hero__sub { font-size: clamp(1rem, 4vw, 1.2rem); max-width: 33ch; line-height: 1.5; margin-top: 1.2rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .float-anim, .live-dot, .marquee__track, .tooth__sparkle { animation: none !important; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* =========================================================
   CHAT ASSISTANT  (floating bubble + panel — neo-retro)
   ========================================================= */
.chat-fab {
  position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px); z-index: 95;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.1rem; background: var(--green); color: var(--ink);
  font-family: var(--font-round); font-weight: 700; font-size: .95rem;
  border: 2.5px solid var(--ink); border-radius: var(--r-pill); cursor: pointer;
  box-shadow: var(--sh-hard);
  transition: transform .28s var(--ease), box-shadow .28s ease, opacity .25s ease;
}
.chat-fab:hover { transform: translate(-2px, -2px) rotate(-1.5deg); box-shadow: 9px 10px 0 rgba(25,53,44,.2); }
.chat-fab:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.chat-fab__icon { display: grid; place-items: center; width: 22px; height: 22px; }
.chat-fab__icon svg { width: 22px; height: 22px; }
.chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(.9); }

.chat-panel {
  position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px); z-index: 96;
  width: min(380px, calc(100vw - 28px)); height: min(540px, calc(100dvh - 96px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 3px solid var(--ink); border-radius: 24px; box-shadow: var(--sh-hard);
  transform: translateY(18px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .38s var(--ease), opacity .3s ease;
}
.chat-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-head {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between;
  padding: .95rem 1.1rem; background: var(--green-deep); color: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.chat-head__title { font-family: var(--font-round); font-weight: 700; font-size: 1.06rem; line-height: 1.1; }
.chat-head__title small { display: block; font-family: var(--font-body); font-size: .66rem; letter-spacing: .04em; text-transform: uppercase; opacity: .82; margin-top: 3px; font-weight: 600; }
.chat-close { background: none; border: none; color: var(--paper); cursor: pointer; font-size: 1.15rem; line-height: 1; padding: 4px 7px; border-radius: 8px; }
.chat-close:hover { opacity: .7; }
.chat-log { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .65rem; background: var(--cream); }
.chat-msg { max-width: 86%; padding: .65rem .9rem; border-radius: 16px; font-size: .94rem; line-height: 1.5; white-space: pre-wrap; font-family: var(--font-body); }
.chat-msg--bot { align-self: flex-start; background: var(--paper); border: 2px solid var(--ink); color: var(--ink); border-bottom-left-radius: 5px; }
.chat-msg--user { align-self: flex-end; background: var(--green); color: var(--ink); border: 2px solid var(--ink); border-bottom-right-radius: 5px; font-weight: 500; }
.chat-msg--typing { color: var(--muted); letter-spacing: .14em; }
.chat-form { flex: 0 0 auto; display: flex; gap: .5rem; padding: .7rem; border-top: 3px solid var(--ink); background: var(--paper); }
.chat-form input { flex: 1; font-family: var(--font-body); font-size: .94rem; color: var(--ink); background: var(--paper); border: 2.5px solid var(--line-2); border-radius: var(--r-pill); padding: .65rem 1rem; outline: none; transition: border-color .18s; }
.chat-form input:focus { border-color: var(--green); box-shadow: 3px 3px 0 rgba(21,180,136,.22); }
.chat-send { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; background: var(--coral); color: var(--ink); border: 2.5px solid var(--ink); border-radius: 50%; font-size: 1.2rem; font-weight: 800; cursor: pointer; transition: transform .22s var(--ease), background .2s; }
.chat-send:hover { transform: scale(1.08) rotate(3deg); background: var(--coral-dark); }
.chat-send:disabled { opacity: .5; cursor: default; transform: none; }
@media (max-width: 560px) {
  .chat-fab__label { display: none; }
  .chat-fab { padding: .8rem; }
  .chat-panel { right: 8px; bottom: 8px; width: calc(100vw - 16px); height: calc(100dvh - 80px); }
}

/* =========================================================
   PRICING (Cenník)
   ========================================================= */
.pricing { background: var(--cream-2); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; position: relative; }
.price-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.price-card { background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r-card); box-shadow: var(--sh-hard); padding: 1.6rem 1.5rem; }
.price-card h3 { font-family: var(--font-round); font-weight: 700; font-size: 1.3rem; color: var(--green-dark); margin-bottom: 1.1rem; padding-bottom: .7rem; border-bottom: 2.5px dashed var(--line-2); }
.price-list { display: flex; flex-direction: column; gap: .85rem; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.price-list__name { font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.3; }
.price-list__name em { display: block; font-style: normal; font-weight: 500; font-size: .76rem; color: var(--muted); margin-top: 2px; }
.price-list__val { flex: 0 0 auto; font-family: var(--font-round); font-weight: 700; font-size: 1.02rem; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); border-radius: var(--r-pill); padding: .12rem .6rem; white-space: nowrap; }
.pricing__note { text-align: center; max-width: 620px; margin: 2.2rem auto 0; color: var(--muted); font-weight: 500; font-size: .98rem; }
@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; max-width: 540px; }
}
