/* ===================== TOKENS ===================== */
:root {
  --bg-0: #FBFBFA;
  --bg-1: #F3F0EA;
  --navy: #0A3641;
  --cyan: #005F73;
  --mint: #0A9396;
  --sand: #E9E4DC;
  --grey: #5C6B6E;
  --white: #FFFFFF;
  --radius-s: 12px;
  --radius-m: 22px;
  --radius-pill: 999px;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-inner.narrow { max-width: 720px; }

.section-head { max-width: 560px; margin-bottom: 44px; }
.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker {
  color: var(--mint);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-head p { color: var(--grey); font-size: 1.02rem; }

/* ===================== SCROLL PROGRESS BAR ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  z-index: 300;
  transition: width 0.1s linear;
}

/* ===================== BUTTONS ===================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--white); }
.btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,95,115,0.28); background: var(--navy); }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.pulse { position: relative; }
.pulse::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 2px solid var(--mint);
  animation: pulseRing 2.2s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  80% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.btn-book {
  background: var(--bg-1);
  color: var(--navy);
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-book:hover { background: var(--cyan); color: var(--white); border-color: var(--cyan); }

/* ===================== HEADER ===================== */
.site-header { position: sticky; top: 0; z-index: 100; padding: 18px 24px 0; transition: padding 0.3s ease; }
.site-header.scrolled { padding-top: 10px; }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 251, 250, 0.75);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(10,54,65,0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .header-inner { background: rgba(255,255,255,0.92); box-shadow: 0 14px 34px rgba(10,54,65,0.12); }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: var(--serif); font-size: 0.78rem; line-height: 1.15; letter-spacing: 0.04em; color: var(--navy); font-weight: 500; }
.logo-text.small { font-size: 1.1rem; letter-spacing: 0.06em; }

.main-nav { position: relative; display: flex; gap: 6px; }
.main-nav a { position: relative; z-index: 1; padding: 9px 16px; font-size: 0.9rem; color: var(--grey); border-radius: var(--radius-pill); transition: color 0.25s ease; }
.main-nav a:hover { color: var(--white); }
.nav-indicator {
  position: absolute; top: 0; left: 0; height: 100%;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), width 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease;
  z-index: 0;
}
.main-nav:hover .nav-indicator { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--grey); }
.lang-btn { background: none; border: none; cursor: pointer; color: var(--grey); font-weight: 600; padding: 4px; position: relative; }
.lang-btn.active { color: var(--cyan); }
.lang-btn.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--cyan); border-radius: 2px;
}
.lang-sep { color: var(--sand); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 210; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(251,251,250,0.99);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 44px;
  opacity: 0; visibility: hidden; transform: scale(0.98);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-nav a {
  font-family: var(--serif); font-size: 2rem; color: var(--navy);
  display: flex; align-items: baseline; gap: 14px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}
.mobile-menu.open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav a span { font-family: var(--sans); font-size: 0.85rem; color: var(--mint); }
.mobile-nav a:hover { color: var(--cyan); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  color: var(--white);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video,
.hero-bg .hero-image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg video { z-index: 1; background: var(--navy); }
.hero-bg .hero-image-fallback { z-index: 0; }
.hero-bg.video-off video { display: none; }
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(6,32,39,0.86) 0%, rgba(6,32,39,0.62) 42%, rgba(6,32,39,0.35) 68%, rgba(6,32,39,0.5) 100%),
    linear-gradient(0deg, rgba(6,32,39,0.55), transparent 40%);
  pointer-events: none;
}

.hero-blobs { position: absolute; inset: 0; z-index: 3; pointer-events: none; mix-blend-mode: screen; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: blobFloat 16s ease-in-out infinite;
}
.blob-a {
  width: 420px; height: 420px;
  top: -140px; left: -120px;
  background: radial-gradient(circle at 30% 30%, var(--mint), transparent 70%);
  animation-delay: 0s;
}
.blob-b {
  width: 360px; height: 360px;
  bottom: -160px; right: -80px;
  background: radial-gradient(circle at 60% 40%, var(--cyan), transparent 70%);
  animation-delay: -8s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 24px) scale(0.95); }
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
}
.hero-content { max-width: 640px; opacity: 0; animation: heroReveal 0.9s ease forwards 0.15s; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-kicker { color: #9FE0DC; font-weight: 600; font-size: 0.95rem; margin-bottom: 18px; }

.hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1.08; color: var(--white); text-shadow: 0 2px 24px rgba(0,0,0,0.25); }
.hero-title em { font-style: italic; color: #7FE3DA; }
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: wordRise 0.7s cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes wordRise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub { max-width: 480px; margin-top: 22px; color: rgba(255,255,255,0.82); font-size: 1.06rem; }
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn-on-dark.btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-on-dark.btn-ghost:hover { background: var(--white); color: var(--navy); }
.trust-badges { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  padding: 8px 14px; font-size: 0.82rem; color: var(--navy); font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
}
.badge:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.badge svg { color: var(--mint); }
.count-target { font-variant-numeric: tabular-nums; }

.hero-slot-card {
  align-self: flex-end;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  animation: floatCard 4s ease-in-out infinite, heroReveal 0.9s ease forwards 0.35s;
  opacity: 0;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-slot-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(10,147,150,0.18); flex-shrink: 0; animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(10,147,150,0.18); } 50% { box-shadow: 0 0 0 8px rgba(10,147,150,0.08); } }
.hero-slot-card strong { display: block; font-size: 0.85rem; color: var(--navy); }
.hero-slot-card p { font-size: 0.8rem; color: var(--grey); }

/* ===================== ABOUT ===================== */
.about { padding: 100px 0; background: var(--bg-1); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius-m); width: 100%; height: 460px; object-fit: cover; }
.about-content h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 6px 0 18px; color: var(--navy); }
.about-lead { color: var(--grey); font-size: 1.02rem; margin-bottom: 30px; max-width: 520px; }
.about-points { display: flex; flex-direction: column; gap: 22px; }
.about-points li { display: flex; gap: 16px; align-items: flex-start; }
.point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(10,54,65,0.08);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s ease, color 0.3s ease;
}
.about-points li:hover .point-icon { transform: rotate(-8deg) scale(1.08); background: var(--cyan); color: var(--white); }
.about-points strong { display: block; color: var(--navy); margin-bottom: 4px; }
.about-points p { color: var(--grey); font-size: 0.92rem; max-width: 440px; }

/* ===================== SERVICES ===================== */
.services { padding: 100px 0; background: var(--bg-0); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-m);
  padding: 28px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(10,54,65,0.1); border-color: var(--cyan); }
.service-card.featured { border-color: var(--mint); background: linear-gradient(160deg, #F0FAF9, var(--white) 60%); }
.service-tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--mint); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.service-icon { color: var(--cyan); margin-bottom: 16px; transition: transform 0.35s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .service-icon { transform: scale(1.12) rotate(-6deg); }
.service-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; color: var(--navy); }
.service-card p { color: var(--grey); font-size: 0.9rem; margin-bottom: 22px; min-height: 42px; }
.service-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.service-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--navy); }
.service-price span { display: block; font-family: var(--sans); font-size: 0.68rem; color: var(--grey); font-weight: 400; }

/* ===================== ADVANTAGES ===================== */
.advantages { padding: 100px 0; background: var(--bg-1); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.adv-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-m);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(10,54,65,0.08); }
.adv-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-1);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.3s ease, color 0.3s ease;
}
.adv-card:hover .adv-icon { transform: rotate(10deg) scale(1.1); background: var(--cyan); color: var(--white); }
.adv-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; color: var(--navy); }
.adv-card p { color: var(--grey); font-size: 0.9rem; }

/* ===================== FAQ ===================== */
.faq { padding: 100px 0; background: var(--bg-0); }
.accordion-item { border-bottom: 1px solid var(--sand); }
.accordion-trigger {
  width: 100%; background: none; border: none; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px; font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  cursor: pointer; text-align: left;
}
.accordion-icon { color: var(--cyan); font-size: 1.3rem; transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-panel p { color: var(--grey); padding: 0 4px 22px; max-width: 600px; }

/* ===================== REVIEWS ===================== */
.reviews { padding: 100px 0; background: var(--bg-1); overflow: hidden; }
.google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  padding: 8px 16px; margin-top: 14px; font-size: 0.88rem;
}
.google-badge span { color: var(--grey); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marqueeScroll 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 auto; width: 340px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-m);
  padding: 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.stars { color: #E9A400; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: var(--navy); font-size: 0.95rem; margin-bottom: 16px; }
.review-author { color: var(--grey); font-size: 0.85rem; }

/* ===================== BOOKING FORM ===================== */
.booking { padding: 100px 0; background: var(--navy); color: var(--white); }
.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.booking-info .section-kicker { color: var(--mint); }
.booking-info h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3vw, 2.3rem); margin: 6px 0 16px; }
.booking-info p { color: #B8C7CA; max-width: 400px; margin-bottom: 26px; }
.booking-points { display: flex; flex-direction: column; gap: 14px; }
.booking-points li { display: flex; align-items: center; gap: 10px; color: #DCE6E8; font-size: 0.92rem; }
.booking-points li::before { content: "✓"; color: var(--mint); font-weight: 700; }

.booking-form {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 36px;
  color: var(--navy);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.two-col { flex-direction: row; gap: 18px; }
.form-row.two-col > div { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  border: 1px solid var(--sand);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  background: var(--bg-0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,95,115,0.12);
}
.form-row.invalid input, .form-row.invalid select { border-color: #C4453D; box-shadow: 0 0 0 3px rgba(196,69,61,0.1); }
.form-error { color: #C4453D; font-size: 0.78rem; min-height: 1em; }
.form-success {
  display: none; text-align: center; color: var(--mint); font-weight: 600; font-size: 0.9rem;
  background: #EAF8F7; border-radius: var(--radius-s); padding: 12px; margin-top: 4px;
}
.form-success.visible { display: block; animation: successPop 0.4s cubic-bezier(.2,.8,.2,1); }
@keyframes successPop { from { opacity: 0; transform: translateY(-6px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--bg-1); }
.footer-top { max-width: var(--max-w); margin: 0 auto; padding: 90px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.footer-info h2 { font-family: var(--serif); font-weight: 500; font-size: 2rem; margin-bottom: 26px; color: var(--navy); }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--grey); }
.contact-list svg { color: var(--cyan); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.footer-map { height: 320px; border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--sand); }
.footer-bottom {
  border-top: 1px solid var(--sand);
  padding: 24px; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { color: var(--grey); font-size: 0.8rem; }
.privacy-link { color: var(--grey); font-size: 0.85rem; text-decoration: underline; }
.privacy-link:hover { color: var(--cyan); }

/* ===================== FLOATING BUTTONS ===================== */
.fab {
  position: fixed; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(10,54,65,0.22);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.06); }
.fab-call { left: 24px; bottom: 24px; width: 54px; height: 54px; background: var(--white); border: 1px solid var(--cyan); color: var(--cyan); }
.fab-book {
  right: 24px; bottom: 24px; width: 82px; height: 82px;
  background: var(--cyan); color: var(--white);
  font-size: 0.76rem; font-weight: 700; text-align: center; line-height: 1.25;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================== LANGUAGE SWITCH FADE ===================== */
.i18n-fade { animation: i18nFade 0.35s ease; }
@keyframes i18nFade { from { opacity: 0.35; } to { opacity: 1; } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 560px; padding: 120px 0 70px; }
  .hero-slot-card { align-self: flex-start; margin-top: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { height: 320px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-map { height: 260px; }
  .lang-switch { display: none; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .form-row.two-col { flex-direction: column; }
  .hero-media-card { left: 12px; }
  .fab-book { width: 68px; height: 68px; font-size: 0.66rem; }
  .blob { display: none; }
}