:root {
  --sun: #FF8A1F;
  --sun-hot: #FF6A00;
  --sun-soft: #FFC56B;
  --teal: #143844;
  --teal-deep: #0B242E;
  --sand: #FBF4EA;
  --cream: #FFFDF8;
  --ink: #12232C;
  --muted: #5B6B72;
  --line: rgba(20, 56, 68, 0.12);
  --radius: 28px;
  --shadow: 0 24px 60px rgba(11, 36, 46, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: Manrope, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--sun), var(--sun-hot));
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--teal-deep);
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-sun {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
  animation: pulse 1.8s ease-in-out infinite;
}
.preloader img { width: 150px; position: relative; z-index: 1; filter: drop-shadow(0 10px 30px rgba(0,0,0,.35)); }
@keyframes pulse { 50% { transform: scale(1.18); opacity: .7; } }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  color: #fff;
  transition: .35s ease;
}
.nav.scrolled {
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(11, 36, 46, 0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  width: 54px; height: 54px;
  object-fit: contain;
  border-radius: 50%;
  overflow: hidden;
  padding: 3px;
  background: rgba(255,253,248,.92);
  box-shadow: 0 8px 24px rgba(11,36,46,.18);
}
.nav-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}
.nav-brand small {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .72;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 22px; font-weight: 600; }
.nav-links a { text-decoration: none; opacity: .86; }
.nav-links a:hover { color: var(--sun-hot); }
.nav-phone {
  text-decoration: none;
  font-weight: 800;
  color: var(--sun);
}
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: linear-gradient(#fff,#fff) center 16px/18px 2px no-repeat,
              linear-gradient(#fff,#fff) center 21px/18px 2px no-repeat,
              linear-gradient(#fff,#fff) center 26px/18px 2px no-repeat;
  background-color: transparent;
}
.nav.scrolled .nav-burger {
  background: linear-gradient(var(--ink),var(--ink)) center 16px/18px 2px no-repeat,
              linear-gradient(var(--ink),var(--ink)) center 21px/18px 2px no-repeat,
              linear-gradient(var(--ink),var(--ink)) center 26px/18px 2px no-repeat;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.hero-slides, .hero-slides .slide, .hero-veil, .hero-rays { position: absolute; inset: 0; }
.hero-slides .slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(var(--photo-bright, 1.1)) saturate(1.18);
  transition: opacity 1.2s ease;
  animation: ken 18s ease-in-out infinite;
}
.hero-slides .slide.active { opacity: 1; }
@keyframes ken { 50% { transform: scale(1.18); } }
.hero-veil {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(11,36,46,.18), rgba(11,36,46,.52) 70%),
    linear-gradient(180deg, rgba(11,36,46,.35) 0%, rgba(11,36,46,.15) 40%, rgba(11,36,46,.62) 100%);
}
.hero-rays {
  background: conic-gradient(from 180deg at 50% 38%, transparent 0 38%, rgba(255,138,31,.16) 42%, transparent 48% 100%);
  animation: spin 28s linear infinite;
  mix-blend-mode: screen;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-inner { position: relative; z-index: 2; padding: 140px 24px 80px; max-width: 860px; }
.logo-seal {
  width: 176px; height: 176px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  clip-path: circle(50%);
  display: grid;
  place-items: center;
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(0,0,0,.28), 0 0 0 3px rgba(255,138,31,.85);
  animation: float 5s ease-in-out infinite;
}
.logo-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@keyframes float { 50% { transform: translateY(-10px); } }
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 18px;
  background: rgba(255,138,31,.18);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 600;
  line-height: .95;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--sun);
  text-shadow: 0 0 30px rgba(255,138,31,.45);
}
.hero-lead {
  margin: 22px auto 34px;
  max-width: 620px;
  font-size: 1.15rem;
  color: rgba(255,253,248,.92);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px; height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,253,248,.16);
  color: #fff;
  font-size: 1.8rem;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.hero-arrow.left { left: 24px; }
.hero-arrow.right { right: 24px; }
.hero-arrow:hover { background: var(--sun); }
.hero-dots {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.hero-dots span.active { background: var(--sun); transform: scale(1.3); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(255,106,0,.38);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 22px 44px rgba(255,106,0,.5); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,248,.7);
  box-shadow: none;
}
.btn-ghost:hover { background: #fff; color: var(--sun-hot); }

.ticker {
  background: var(--teal-deep);
  color: var(--sun-soft);
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid rgba(255,138,31,.25);
}
.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--sun-hot);
  margin-bottom: 8px;
}
.eyebrow.light, .section-sub.light { color: rgba(255,197,107,.9); }
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.section-title.light { color: var(--cream); }
.section-title em { color: var(--sun-hot); font-style: italic; }
.section-sub {
  margin: 12px 0 48px;
  color: var(--muted);
  max-width: 560px;
  font-size: 1.08rem;
}

.advantages { padding: 110px 0 80px; background: var(--cream); }
.advantages[hidden], .tours[hidden], .section-sub[hidden] { display: none !important; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 22px;
  align-items: stretch;
}
.adv-card {
  padding: 28px 24px 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  transform: translateY(24px);
  opacity: 0;
}
.adv-card.in { transform: none; opacity: 1; transition: .7s ease; }
.adv-card::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
  opacity: .22;
}
.adv-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--sun-hot);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.adv-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.adv-card p { color: var(--muted); line-height: 1.55; flex: 1; }
.adv-photo {
  height: 140px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  margin: -8px -4px 16px;
  filter: brightness(var(--photo-bright, 1.1)) saturate(1.12);
}

.tours { padding: 40px 0 100px; background: var(--sand); }
.tours-list { display: grid; gap: 28px; }
.tour-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.tour-card:nth-child(even) { grid-template-columns: 1fr 420px; }
.tour-card:nth-child(even) .tour-media { order: 2; }
.tour-media {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  filter: brightness(var(--photo-bright, 1.1)) saturate(1.12);
}
.tour-media .price, .tour-media .duration {
  position: absolute;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
}
.tour-media .price {
  top: 18px;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
}
.tour-media .duration {
  bottom: 18px;
  background: rgba(11,36,46,.72);
  backdrop-filter: blur(8px);
  font-weight: 600;
}
.tour-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.tour-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--teal);
}
.tour-rating { color: var(--sun); margin: 8px 0 12px; font-weight: 700; }
.tour-rating span { color: var(--muted); font-weight: 500; margin-left: 6px; }
.tour-body p { color: var(--muted); margin-bottom: 16px; }
.features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; list-style: none; }
.features li {
  background: var(--sand);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 18px;
  padding: 70px 0;
  align-items: stretch;
}
.stat {
  text-align: center;
  padding: 10px;
}
.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  color: var(--sun-hot);
  line-height: 1;
}
.stat span { color: var(--muted); font-weight: 600; }

.widget-block { padding: 80px 0; }
.widget-block.alt { background: var(--cream); }
.reviews-tape {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.review {
  min-width: min(340px, 82vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.rev-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.review .stars { color: var(--sun); margin-bottom: 10px; }
.review p { line-height: 1.55; margin-bottom: 16px; }
.review small { color: var(--muted); font-weight: 700; }

.phototape {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 18px;
}
.phototape img {
  height: 240px;
  width: 320px;
  object-fit: cover;
  border-radius: 24px;
  filter: brightness(var(--photo-bright, 1.1)) saturate(1.15);
  flex: none;
}

.map-frame {
  height: 420px;
  border: 0;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: #d9e7ea;
}
.social-row { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.chip:hover { color: var(--sun-hot); }

.video-block { padding: 72px 0; }
.video-stage { max-width: 920px; margin: 0 auto; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(11,36,46,.45), rgba(11,36,46,.2)),
    var(--teal-deep);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.video-frame iframe, .video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.video-play {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: inherit;
  font-weight: 800;
  letter-spacing: .04em;
}
.video-play i {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
  box-shadow: 0 18px 40px rgba(255,106,0,.45);
}
.video-play i::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.video-play:hover i { transform: scale(1.06); }
.video-stage.playing .video-play { display: none; }

.booking {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--teal-deep), var(--teal) 55%, #1c4d3f);
  overflow: hidden;
}
.booking-glow {
  position: absolute;
  width: 480px; height: 480px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(255,138,31,.55), transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}
.book-form, .success {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  padding: 36px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  display: grid;
  gap: 14px;
}
.book-form label { display: grid; gap: 6px; font-weight: 700; font-size: .92rem; }
.book-form input, .book-form select, .book-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 1rem;
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: 2px solid var(--sun);
  border-color: transparent;
}
.success { display: none; text-align: center; padding: 50px 30px; }
.success.show { display: block; }
.success-sun {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun), var(--sun-hot));
}

.footer {
  background: var(--teal-deep);
  color: rgba(255,253,248,.82);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-qr {
  text-align: center;
  justify-self: end;
}
.footer-qr img {
  width: 132px;
  height: 132px;
  margin: 0 auto 8px;
  border-radius: 16px;
  background: var(--cream);
  padding: 8px;
}
.footer-qr p { font-size: .82rem; margin-bottom: 6px; }
.footer-qr a { font-size: .85rem; font-weight: 700; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  overflow: hidden;
  padding: 6px;
}
.footer a { color: var(--sun); }
.copy { grid-column: 1 / -1; opacity: .7; font-size: .9rem; }

.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  background: linear-gradient(135deg, var(--sun), var(--sun-hot));
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(255,106,0,.4);
}

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; transition: .8s ease; }

@media (max-width: 900px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .grain { opacity: 0.025; }
  a, button, .btn, .chip { touch-action: manipulation; }
  .nav {
    z-index: 85;
    gap: 10px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) max(14px, env(safe-area-inset-right, 0px)) 10px max(14px, env(safe-area-inset-left, 0px));
  }
  .nav.open {
    background: rgba(255,253,248,.98);
    color: var(--ink);
    box-shadow: 0 10px 40px rgba(11, 36, 46, 0.08);
  }
  .nav.open .nav-burger {
    background: linear-gradient(var(--ink),var(--ink)) center 16px/18px 2px no-repeat,
                linear-gradient(var(--ink),var(--ink)) center 21px/18px 2px no-repeat,
                linear-gradient(var(--ink),var(--ink)) center 26px/18px 2px no-repeat;
  }
  .nav-brand img { width: 44px; height: 44px; }
  .nav-brand strong { font-size: 1.2rem; }
  .nav-brand small { font-size: .58rem; letter-spacing: .1em; }
  .nav-phone { font-size: .82rem; white-space: nowrap; }
  .nav-links { display: none; }
  .nav-burger {
    display: block;
    flex: none;
    background-color: rgba(11, 36, 46, 0.42);
    border-radius: 12px;
  }
  .nav.scrolled .nav-burger,
  .nav.open .nav-burger { background-color: transparent; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,253,248,.98);
    color: var(--ink);
    padding: 8px 16px 18px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 32px rgba(11,36,46,.12);
  }
  .nav.open .nav-links a {
    padding: 12px 8px;
    border-radius: 12px;
    font-size: 1.05rem;
  }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-inner { padding: 108px 16px 72px; }
  .hero-rays { display: none; }
  .hero-slides .slide { animation: none; transform: scale(1.06); }
  .logo-seal { width: 120px; height: 120px; margin-bottom: 14px; animation: none; }
  .hero-badge { font-size: .68rem; letter-spacing: .18em; padding: 6px 14px; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(2.05rem, 9.5vw, 3rem); line-height: 1.08; }
  .hero-lead { font-size: 1rem; margin: 14px auto 22px; line-height: 1.45; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 22px; }
  .hero-dots span { width: 11px; height: 11px; }
  section[id], #widgets { scroll-margin-top: 76px; }
  .ticker { padding: 12px 0; }
  .ticker-track { letter-spacing: .1em; font-size: .72rem; gap: 28px; }
  .advantages { padding: 64px 0 48px; }
  .tours { padding: 24px 0 56px; }
  .section-title { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .section-sub { margin: 10px 0 28px; font-size: 1rem; }
  .adv-grid, .stats { gap: 12px; }
  .adv-card { padding: 20px 16px 22px; border-radius: 22px; }
  .adv-card h3 { font-size: 1.35rem; }
  .adv-card p { font-size: .92rem; }
  .stats { padding: 40px 0; gap: 8px; }
  .stat b { font-size: 2.2rem; }
  .stat span { font-size: .82rem; }
  .tour-card, .tour-card:nth-child(even) { grid-template-columns: 1fr; border-radius: 24px; min-height: 0; }
  .tour-card:nth-child(even) .tour-media { order: 0; }
  .tour-media { min-height: 200px; }
  .tour-body { padding: 22px 18px 26px; }
  .tour-body h3 { font-size: 1.55rem; }
  .tour-body .btn { width: 100%; }
  .features li { font-size: .85rem; }
  .widget-block { padding: 48px 0; }
  .reviews-tape, .phototape {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .reviews-tape::-webkit-scrollbar, .phototape::-webkit-scrollbar { display: none; }
  .review { min-width: min(300px, 86vw); padding: 18px 16px; }
  .phototape img { height: 180px; width: 240px; border-radius: 18px; }
  .map-frame { height: 280px; border-radius: 20px; }
  .video-frame { border-radius: 20px; }
  .video-play i { width: 64px; height: 64px; }
  .social-row { gap: 8px; }
  .chip { padding: 12px 16px; }
  .booking { padding: 56px 0 72px; }
  .booking-glow { width: 260px; height: 260px; right: -80px; top: -60px; }
  .book-form, .success { padding: 22px 16px; border-radius: 22px; margin: 0; }
  .book-form input, .book-form select, .book-form textarea { font-size: 16px; }
  .book-form .btn { width: 100%; }
  .footer { padding: 36px 0 calc(88px + env(safe-area-inset-bottom, 0px)); }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 22px; }
  .footer-brand { flex-direction: column; }
  .footer-qr { justify-self: center; text-align: center; }
  .footer-qr img { margin: 0 auto 8px; }
  .copy { font-size: .82rem; }
  .float-wa {
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    padding: 12px 16px;
    font-size: .92rem;
  }
  .btn:hover { transform: none; }
}

@media (max-width: 560px) {
  .nav-phone { display: none; }
  .nav-brand small { display: none; }
  .adv-grid { grid-template-columns: 1fr; }
  .logo-seal { width: 104px; height: 104px; }
  .hero h1 { font-size: clamp(1.9rem, 11vw, 2.5rem); }
  .social-row { flex-direction: unset; }
  .chip { width: auto; }
  .preloader img { width: 110px; }
  .preloader-sun { width: 160px; height: 160px; }
}

@media (hover: none) {
  .btn:hover { transform: none; box-shadow: 0 16px 36px rgba(255,106,0,.38); }
}
