/* ==========================================================================
   Zâna Măseluță — pirate × tooth-fairy dental clinic
   Self-contained styles (no framework). Theme: deep sea night + treasure gold
   + fairy magic. "Monkey Island" point-and-click vibe on desktop, app-like on
   mobile. No dependencies (GSAP is optional, loaded via CDN for polish).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --sea-900: #081a24;
  --sea-800: #0c2533;
  --sea-700: #123a4e;
  --sea-600: #1b566f;
  --foam:    #bfe9ee;

  --gold:      #f2c14e;
  --gold-soft: #ffd877;
  --gold-deep: #b9871f;

  --magic:      #8a6bff;
  --magic-soft: #c3b2ff;
  --rose:       #ff7ac6;

  --parchment: #f7eccf;
  --ink:       #2b2113;
  --tooth:     #fffaf0;

  --wa: #25d366;
  --wa-ink: #04331a;

  --text:      #eaf6f8;
  --text-dim:  #a9c4cd;
  --line:      rgba(191, 233, 238, .14);

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 18px 50px rgba(0, 0, 0, .45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .35);
  --glow-gold: 0 0 0 2px rgba(242, 193, 78, .55), 0 0 28px rgba(242, 193, 78, .55);
  --glow-magic:0 0 0 2px rgba(138, 107, 255, .55), 0 0 30px rgba(138, 107, 255, .6);

  --maxw: 1180px;
  --ff-display: "Pirata One", "Cinzel", serif;
  --ff-head: "Cinzel", Georgia, serif;
  --ff-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(138, 107, 255, .18), transparent 60%),
    radial-gradient(900px 600px at -10% 10%, rgba(27, 86, 111, .35), transparent 55%),
    linear-gradient(180deg, var(--sea-900), #06141c 60%, #041016);
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 2px;
  border-radius: 6px;
}

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--ff-head);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-soft);
}
.hl { color: var(--gold-soft); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

h1, h2, h3 { font-family: var(--ff-head); line-height: 1.12; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.7rem); }
h3 { font-size: 1.18rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: #2a1d05;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: .95rem 1.55rem; font-size: 1.02rem; }
.btn--primary { --bg: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
.btn--magic { --bg: linear-gradient(180deg, #9b81ff, var(--magic)); --fg: #fff; }
.btn--wa { --bg: var(--wa); --fg: var(--wa-ink); }
.btn--ghost {
  --bg: transparent; --fg: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(191, 233, 238, .08); }
.btn .ico { width: 20px; height: 20px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(6, 18, 25, .82), rgba(6, 18, 25, .45));
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem 0; min-height: 64px;
}
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; filter: drop-shadow(0 4px 10px rgba(138, 107, 255, .5)); }
.brand__name { font-family: var(--ff-display); font-size: 1.5rem; line-height: 1; letter-spacing: .01em; }
.brand__name span { color: var(--gold-soft); }
.brand__tag { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); }

.nav { display: flex; gap: .35rem; }
.nav a {
  padding: .5rem .8rem; border-radius: 999px; color: var(--text-dim);
  font-weight: 700; font-size: .95rem; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text); background: rgba(191, 233, 238, .08); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.lang-switch {
  display: inline-flex; align-items: center; gap: .15rem;
  font-weight: 800; font-size: .82rem; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 999px; padding: .25rem .5rem;
}
.lang-switch a { padding: .1rem .3rem; border-radius: 6px; }
.lang-switch a.is-active { color: var(--sea-900); background: var(--gold-soft); }

.phone-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .85rem; border-radius: 999px;
  background: rgba(242, 193, 78, .12);
  border: 1px solid rgba(242, 193, 78, .45);
  color: var(--gold-soft); font-weight: 800; font-size: .95rem;
}
.phone-pill:hover { background: var(--gold); color: var(--sea-900); }
.phone-pill .ico { width: 16px; height: 16px; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  color: var(--text); border-radius: 12px; padding: .35rem; line-height: 0;
}

/* ---------- Mobile quick-nav chips (under header) ---------- */
.quicknav { display: none; }

/* ---------- Hero / interactive stage ---------- */
.hero { padding: clamp(1.2rem, 1rem + 2vw, 2.6rem) 0 1.4rem; }
.hero__intro { text-align: center; max-width: 56ch; margin: 0 auto 1.2rem; }
.hero__intro h1 {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.4rem);
  margin: .4rem 0 .5rem;
}
.hero__intro h1 .script { font-family: var(--ff-display); color: var(--gold-soft); font-weight: 400; }
.hero__intro p { color: var(--text-dim); font-size: 1.05rem; }

.stage-wrap { position: relative; }
.stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1248 / 832;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 0 120px rgba(0, 0, 0, .35);
  background: #06131b;
  isolation: isolate;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Cg fill='none' stroke='%23ffd877' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M17 4l2.2 6.8H26l-5.5 4 2.1 6.8L17 17.6 11.4 21.6l2.1-6.8L8 10.8h6.8z'/%3E%3C/g%3E%3C/svg%3E") 17 17, auto;
}
.stage__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  filter: saturate(1.05) contrast(1.02);
}
/* gentle vignette + sea light over the video */
.stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(0, 0, 0, .42), transparent 55%),
    radial-gradient(90% 70% at 80% 20%, rgba(138, 107, 255, .12), transparent 60%);
}

/* Hotspots layer */
.hotspots { position: absolute; inset: 0; z-index: 5; }
.hotspot {
  position: absolute;
  display: grid; place-items: center;
  background: transparent;
  border: 0; border-radius: 50%;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.hotspot::before { /* the glow ring shown on hover */
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 216, 119, 0);
  transition: box-shadow .25s ease, background .25s ease;
}
.hotspot:hover::before,
.hotspot:focus-visible::before { box-shadow: var(--glow-gold); background: rgba(255, 216, 119, .08); }
.hotspot[data-glow="magic"]:hover::before,
.hotspot[data-glow="magic"]:focus-visible::before { box-shadow: var(--glow-magic); background: rgba(138, 107, 255, .1); }

/* pulsing discoverability marker */
.hotspot__pip {
  width: 16px; height: 16px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold-soft) 45%, rgba(242, 193, 78, .2) 70%);
  box-shadow: 0 0 14px rgba(255, 216, 119, .85);
  animation: pip 2.4s ease-in-out infinite;
}
.hotspot[data-glow="magic"] .hotspot__pip {
  background: radial-gradient(circle at 35% 30%, #fff, var(--magic-soft) 45%, rgba(138, 107, 255, .2) 70%);
  box-shadow: 0 0 14px rgba(195, 178, 255, .9);
}
.hotspot:hover .hotspot__pip,
.hotspot:focus-visible .hotspot__pip { opacity: 0; }
@keyframes pip {
  0%, 100% { transform: scale(.8); opacity: .55; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Tooltip */
.hotspot__tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translate(-50%, 6px);
  background: var(--parchment); color: var(--ink);
  font-family: var(--ff-head); font-weight: 700; font-size: .86rem;
  padding: .5rem .75rem; border-radius: 10px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  border: 1px solid rgba(0, 0, 0, .12);
}
.hotspot__tip::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: var(--parchment);
}
.hotspot__tip .role { display: block; font-family: var(--ff-body); font-weight: 700; font-size: .72rem; color: #6a5a3a; }
.hotspot:hover .hotspot__tip,
.hotspot:focus-visible .hotspot__tip { opacity: 1; transform: translate(-50%, 0); }

/* primary CTA hotspot (the smile) gets a "ding" star */
.hotspot--cta .hotspot__pip {
  background: radial-gradient(circle at 35% 30%, #fff, #fff 30%, var(--gold-soft) 75%);
  box-shadow: 0 0 18px rgba(255, 255, 255, .95), 0 0 30px rgba(255, 216, 119, .8);
}

/* explore hint */
.stage-hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  z-index: 6; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(6, 18, 25, .6); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--foam);
  padding: .4rem .8rem; border-radius: 999px; font-size: .82rem; font-weight: 700;
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -4px); } }

/* Sound toggle */
.sound-toggle {
  position: absolute; top: 12px; right: 12px; z-index: 7;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(6, 18, 25, .6); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--foam);
}
.sound-toggle:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.sound-toggle .ico { width: 20px; height: 20px; }
.sound-toggle .ico--on { display: none; }
.sound-toggle.is-on .ico--on { display: block; }
.sound-toggle.is-on .ico--off { display: none; }

/* hero CTA row under the stage (desktop quick actions) */
.hero__cta {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-top: 1.1rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(2.4rem, 1.8rem + 3vw, 4.5rem) 0; position: relative; }
.section__head { text-align: center; max-width: 60ch; margin: 0 auto 2rem; }
.section__head p { color: var(--text-dim); margin-top: .5rem; }
.section--alt {
  background: linear-gradient(180deg, rgba(12, 37, 51, .55), rgba(12, 37, 51, 0));
  border-block: 1px solid var(--line);
}

/* card grid */
.grid { display: grid; gap: 1.1rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(18, 58, 78, .55), rgba(8, 26, 36, .7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(242, 193, 78, .4); box-shadow: var(--shadow); }
.card__ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(242, 193, 78, .14); border: 1px solid rgba(242, 193, 78, .35);
  color: var(--gold-soft); margin-bottom: .8rem;
}
.card__ico .ico { width: 26px; height: 26px; }
.card h3 { color: var(--tooth); margin-bottom: .3rem; }
.card p { color: var(--text-dim); font-size: .96rem; }

/* price card */
.price-card { display: flex; flex-direction: column; }
.price-card .price {
  margin-top: auto; padding-top: .9rem; font-family: var(--ff-head);
  font-weight: 700; font-size: 1.15rem; color: var(--gold-soft);
  display: flex; align-items: baseline; gap: .35rem;
}
.price-card .price small { color: var(--text-dim); font-family: var(--ff-body); font-weight: 700; font-size: .8rem; }
.price-note { text-align: center; color: var(--text-dim); font-size: .86rem; margin-top: 1.2rem; }

/* testimonials */
.tale {
  background: linear-gradient(180deg, rgba(247, 236, 207, .96), rgba(238, 222, 184, .96));
  color: var(--ink); border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.1rem; position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .08);
}
.tale__stars { color: #d9a521; letter-spacing: .1em; font-size: 1rem; }
.tale p { margin: .5rem 0 .9rem; font-size: 1rem; }
.tale__who { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.tale__avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sea-700); color: var(--gold-soft); font-family: var(--ff-display); font-size: 1.1rem;
}
.tale__who small { display: block; font-weight: 700; color: #6a5a3a; }

/* about / crew */
.crew { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.crew__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
}
.crew__media img { width: 100%; height: 100%; object-fit: cover; }
.crew ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
.crew li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-dim); }
.crew li .ico { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: .15rem; }

/* ---------- Contact / Dock ---------- */
.dock { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.dock__panel {
  background: linear-gradient(180deg, rgba(18, 58, 78, .5), rgba(8, 26, 36, .65));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem;
}
.contact-actions { display: grid; gap: .7rem; margin: .4rem 0 1.1rem; }
.contact-actions .btn { justify-content: center; }
.contact-line { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; color: var(--text-dim); }
.contact-line .ico { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }
.contact-line strong { color: var(--text); }
.map-frame {
  border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius);
  filter: grayscale(.15) contrast(1.05);
}

/* booking form */
.form { display: grid; gap: .8rem; }
.field { display: grid; gap: .3rem; }
.field label { font-size: .82rem; font-weight: 800; color: var(--text-dim); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .8rem; border-radius: 12px;
  background: rgba(4, 16, 22, .6); border: 1px solid var(--line); color: var(--text);
  font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-soft); outline: none; }
.field textarea { min-height: 92px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form__note { font-size: .8rem; color: var(--text-dim); }

/* ---------- Booking band ---------- */
.book-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(138, 107, 255, .25), transparent 60%),
    linear-gradient(180deg, rgba(242, 193, 78, .1), rgba(242, 193, 78, .03));
  border: 1px solid rgba(242, 193, 78, .3);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  text-align: center;
}
.book-band h2 { color: var(--tooth); }
.book-band p { color: var(--text-dim); max-width: 54ch; margin: .6rem auto 1.2rem; }
.book-band .btn-row { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2.4rem 0 6.5rem; color: var(--text-dim); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.6rem; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer h4 { font-family: var(--ff-head); color: var(--text); margin-bottom: .6rem; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .4rem; }
.site-footer__bottom {
  margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .86rem;
}
.social { display: flex; gap: .5rem; margin-top: .9rem; }
.social a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(191, 233, 238, .07); border: 1px solid var(--line); color: var(--text);
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.social a:hover { transform: translateY(-2px); background: var(--gold-soft); color: var(--sea-900); border-color: var(--gold-soft); }
.social .ico { width: 20px; height: 20px; }

/* ---------- Mobile intro overlay ---------- */
.intro {
  position: fixed; inset: 0; z-index: 200;
  display: none; place-items: center; background: #041016;
}
.intro.is-active { display: grid; }
.intro video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.intro::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 100%, rgba(0, 0, 0, .55), transparent 55%);
}
.intro__title {
  position: relative; z-index: 2; text-align: center; padding: 1.4rem;
  align-self: start; margin-top: 8vh; text-shadow: 0 4px 18px rgba(0, 0, 0, .7);
}
.intro__title .script { font-family: var(--ff-display); color: var(--gold-soft); font-size: clamp(2.4rem, 12vw, 3.6rem); }
.intro__title p { color: var(--foam); margin-top: .3rem; }
.intro__skip {
  position: absolute; right: 16px; bottom: 18px; z-index: 3;
}
.intro__sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* magic-smoke transition */
.smoke-out { animation: smokeOut .6s ease forwards; }
@keyframes smokeOut {
  to { opacity: 0; filter: blur(14px); transform: scale(1.06); }
}

/* ---------- Mobile sticky bottom CTA (Call / Book / WhatsApp) ---------- */
.mobile-cta { display: none; }

/* ---------- Decorative sparkle particles on stage ---------- */
.sparkle {
  position: absolute; z-index: 4; width: 10px; height: 10px; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, #fff, rgba(195, 178, 255, .5) 50%, transparent 70%);
  border-radius: 50%; opacity: 0;
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 940px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .crew { grid-template-columns: 1fr; }
  .dock { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header-actions .lang-switch { order: 2; }
  .nav-toggle { display: inline-grid; place-items: center; }

  /* Keep the phone visible on mobile too (requirement: Call/Text always visible) */
  .phone-pill { padding: .45rem .6rem; font-size: .88rem; }
  .phone-pill .label-num { display: none; } /* show icon + short label on small screens */

  /* mobile quick-nav chips */
  .quicknav {
    display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none;
    padding: .6rem 1.2rem; position: sticky; top: 64px; z-index: 50;
    background: linear-gradient(180deg, rgba(6, 18, 25, .9), rgba(6, 18, 25, .5));
    border-bottom: 1px solid var(--line); -webkit-overflow-scrolling: touch;
  }
  .quicknav::-webkit-scrollbar { display: none; }
  .quicknav a {
    flex: none; display: inline-flex; align-items: center; gap: .4rem;
    padding: .4rem .8rem; border-radius: 999px; font-weight: 800; font-size: .85rem;
    background: rgba(191, 233, 238, .07); border: 1px solid var(--line); color: var(--text);
  }
  .quicknav a .ico { width: 16px; height: 16px; color: var(--gold-soft); }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 7rem; }

  .stage-hint { display: none; }
  .hero__cta { display: none; }

  /* The interactive hover map is desktop-only; on mobile the cards drive nav */
  .hotspots, .sound-toggle { display: none; }

  /* Sticky bottom bar: Call / Book / WhatsApp — always visible */
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    display: grid; grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0; padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(6, 18, 25, .85), rgba(4, 12, 18, .98));
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .mobile-cta a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .15rem; padding: .5rem .3rem; border-radius: 14px; margin: 0 .25rem;
    font-weight: 800; font-size: .78rem; color: var(--text); line-height: 1;
  }
  .mobile-cta a .ico { width: 22px; height: 22px; }
  .mobile-cta .call { background: rgba(242, 193, 78, .16); color: var(--gold-soft); border: 1px solid rgba(242, 193, 78, .4); }
  .mobile-cta .wa { background: rgba(37, 211, 102, .16); color: #7df0a6; border: 1px solid rgba(37, 211, 102, .4); }
  .mobile-cta .book {
    background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #2a1d05;
    transform: translateY(-10px); box-shadow: 0 10px 26px rgba(242, 193, 78, .45);
    border: 2px solid rgba(255, 255, 255, .5);
  }
  .mobile-cta .book .ico { width: 26px; height: 26px; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .brand__name { font-size: 1.25rem; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .stage__video { /* let it still loop; reduced motion mainly affects UI */ }
}

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
