/* ============================================
   BLUE WAVE WATER PARK - COMPLETE STYLES
   ============================================ */

/* --- DESIGN TOKENS --- */
:root {
  --ink: #092437;
  --muted: #617b89;
  --blue: #0874db;
  --cyan: #19cbd9;
  --cream: #f4fbff;
  --light-cyan: #e8f7fa;
  --white: #ffffff;
  --deep-navy: #092437;
  --accent-green: #2dd4c0;
  --coral: #ff6b6b;
  --line: #dcecf3;
  --shadow: 0 18px 55px rgba(7, 49, 75, .12);
  --shadow-sm: 0 4px 20px rgba(7, 49, 75, .08);
  --shadow-lg: 0 30px 80px rgba(7, 49, 75, .18);
  --radius: 26px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --bounce: cubic-bezier(.175, .885, .32, 1.275);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.25, .46, .45, .94);
  --font-head: 'Baloo 2', 'Raleway', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- SKIP LINK --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* --- TOP LINE --- */
.topline {
  padding: 10px 20px;
  background: var(--deep-navy);
  color: #bfe8f5;
  text-align: center;
  font-size: 11px;
  letter-spacing: .04em;
}

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(20px, 6vw, 95px);
  height: var(--header-h);
  background: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(220, 236, 243, .6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 4px 30px rgba(7, 49, 75, .08);
  border-color: rgba(220, 236, 243, .3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #073b7b, #18cbd9);
  color: var(--white);
  font-weight: 900;
  font-family: var(--font-head);
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(11, 93, 130, .25);
  transition: transform .3s var(--bounce);
}

.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }

.brand-text strong,
.brand-text small { display: block; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 18px; letter-spacing: .05em; }
.brand-text small { font-size: 9px; letter-spacing: .18em; font-weight: 800; color: var(--blue); margin-top: 3px; }

/* --- NAV --- */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: color .25s;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: width .3s var(--bounce);
}

.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav a:not(.nav-cta):hover { color: var(--blue); }

.nav-cta {
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white) !important;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(9, 36, 55, .3);
}

/* Hamburger */
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 200;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: min(800px, calc(100vh - 10px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #06243b;
  color: var(--white);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.02);
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 36, 59, .88) 0%,
    rgba(8, 50, 80, .7) 40%,
    rgba(9, 36, 55, .5) 100%
  );
  z-index: -2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.hero-waves .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.hero-waves .wave-back {
  fill: rgba(255, 255, 255, .06);
  animation: waveScroll 18s linear infinite;
}

.hero-waves .wave-mid {
  fill: rgba(255, 255, 255, .04);
  animation: waveScroll 14s linear infinite reverse;
}

.hero-waves .wave-front {
  fill: var(--cream);
  animation: waveScroll 10s linear infinite;
}

.hero-content {
  padding: 0 clamp(20px, 6vw, 95px);
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 32px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

/* Hero animate-in */
.hero-content.is-visible .eyebrow,
.hero-content.is-visible h1,
.hero-content.is-visible .hero-copy,
.hero-content.is-visible .hero-actions,
.hero-content.is-visible .hero-note {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s var(--ease-out), transform .8s var(--bounce);
}

.hero-content.is-visible .eyebrow { transition-delay: .1s; }
.hero-content.is-visible h1 { transition-delay: .25s; }
.hero-content.is-visible .hero-copy { transition-delay: .4s; }
.hero-content.is-visible .hero-actions { transition-delay: .55s; }
.hero-content.is-visible .hero-note { transition-delay: .7s; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  animation: bobUpDown 2s ease-in-out infinite;
  transition: color .2s;
}

.scroll-cue:hover { color: var(--white); }

.scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* --- BUTTONS --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--bounce), box-shadow .25s, background .25s, border-color .25s;
  text-align: center;
  min-height: 48px;
}

.button:active { transform: scale(.97); }

.button.primary {
  background: linear-gradient(135deg, var(--blue), #0a5fb8);
  color: var(--white);
}

.button.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(8, 116, 219, .35);
}

.button.primary.glow {
  animation: glowPulse 3s ease-in-out infinite;
}

.button.ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}

.button.outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.button.outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}

.text-link:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* --- SECTIONS --- */
.section {
  padding: var(--section-pad) clamp(20px, 6vw, 95px);
  position: relative;
}

.section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-heading h2 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.section-heading p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-top: 10px;
}

/* --- INTRO / STATS --- */
.intro { background: var(--white); }

.split-heading {
  max-width: 600px;
  margin-bottom: 50px;
}

.split-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.split-heading h2 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.split-heading p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform .3s var(--bounce), box-shadow .3s;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.stat-prefix {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.stat-item span:last-child {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* --- WAVE DIVIDER --- */
.wave-divider {
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
}

.wave-divider.flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -1px; }

/* --- EXPERIENCES --- */
.experiences { background: var(--cream); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.experience-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--bounce), box-shadow .4s;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s;
}

.experience-card:hover .card-image-wrap img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.illustration-wrap {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--light-cyan), var(--cream));
}

.train-art {
  font-size: 72px;
  transition: transform .5s var(--bounce);
}

.experience-card:hover .train-art {
  transform: rotate(-8deg) scale(1.15);
}

.card-body {
  padding: 28px;
}

.card-number {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--cyan);
  margin-bottom: 10px;
}

.card-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, gap .2s;
}

.card-link:hover { color: var(--cyan); gap: 8px; }

.content-placeholder {
  padding: 14px 18px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Feature card spans full width */
.feature-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.feature-card .card-image-wrap { aspect-ratio: auto; min-height: 300px; }

/* --- VIDEO STORY --- */
.video-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.video-panel { position: relative; }

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-frame video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.video-reflection {
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 90%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(9, 36, 55, .08), transparent);
  filter: blur(10px);
  border-radius: 0 0 var(--radius) var(--radius);
  pointer-events: none;
}

.video-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--muted);
}

.video-label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.story-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.story-copy h2 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.story-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- GALLERY --- */
.gallery { background: var(--cream); }

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease-out), filter .4s;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(9, 36, 55, .8), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  pointer-events: none;
}

.gallery-item:hover figcaption { transform: translateY(0); }

.gallery-item.placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  background: var(--light-cyan);
  border: 2px dashed var(--cyan);
  animation: dashMove 4s linear infinite;
}

.gallery-item.placeholder div {
  text-align: center;
  color: var(--muted);
}

.gallery-item.placeholder span {
  display: block;
  font-size: 32px;
  margin-bottom: 6px;
  color: var(--cyan);
}

.gallery-item.placeholder strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.gallery-item.placeholder small { font-size: 12px; }

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Video play overlay */
.gallery-item .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 116, 219, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform .3s var(--bounce), background .3s;
  z-index: 2;
}

.gallery-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--blue);
}

.gallery-item .video-play-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  margin-left: 3px;
}

/* --- FOOD --- */
.food {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.food-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.food-image img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform .6s var(--ease-out);
}

.food-image:hover img { transform: scale(1.04); }

.food-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 32px;
  animation: floatBounce 4s ease-in-out infinite;
}

.fi-1 { top: 15%; right: 10%; animation-delay: 0s; }
.fi-2 { bottom: 20%; left: 8%; animation-delay: 1.3s; }
.fi-3 { top: 50%; right: 20%; animation-delay: 2.6s; }

.food-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.food-copy h2 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.food-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- VISITOR GUIDE CTA --- */
.visitor-guide { background: var(--cream); }

.guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(36px, 4vw, 60px);
  background: linear-gradient(135deg, var(--deep-navy), #0d3a5c);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.guide-card h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 10px;
}

.guide-card h2 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.guide-card p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  max-width: 500px;
}

.guide-card .button { flex-shrink: 0; }

/* --- LOCATION --- */
.location { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.address-card {
  padding: 36px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}

.address-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.address-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.address-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.address-card small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* --- FOOTER --- */
.footer {
  position: relative;
  background: var(--deep-navy);
  color: rgba(255, 255, 255, .7);
  text-align: center;
  padding-top: 80px;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg { width: 100%; height: 100%; }

.footer-inner {
  padding: 0 20px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.footer-brand strong {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--white);
}

.footer-brand small {
  font-size: 8px;
  color: var(--cyan);
}

.footer p {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .5);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  position: relative;
  transition: color .2s;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s;
}

.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { width: 100%; }

.footer small {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

/* --- SCROLL REVEAL --- */
[data-animate] {
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform .8s var(--bounce);
}

[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="scale-in"] { transform: scale(.92); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
[data-animate="stagger"] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--bounce);
}

[data-animate="stagger"].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-animate="stagger"].is-visible > *:nth-child(2) { transition-delay: .15s; }
[data-animate="stagger"].is-visible > *:nth-child(3) { transition-delay: .25s; }
[data-animate="stagger"].is-visible > *:nth-child(4) { transition-delay: .35s; }
[data-animate="stagger"].is-visible > *:nth-child(5) { transition-delay: .45s; }
[data-animate="stagger"].is-visible > *:nth-child(6) { transition-delay: .55s; }

[data-animate="stagger"].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- KEYFRAMES --- */
@keyframes waveScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.4); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 116, 219, 0); }
  50% { box-shadow: 0 0 20px 4px rgba(8, 116, 219, .25); }
}

@keyframes bobUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes dashMove {
  0% { border-color: var(--cyan); }
  50% { border-color: var(--blue); }
  100% { border-color: var(--cyan); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(5deg); }
  66% { transform: translateY(4px) rotate(-3deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { grid-template-columns: 1fr; }
  .feature-card .card-image-wrap { min-height: 220px; }
  .video-story { grid-template-columns: 1fr; gap: 40px; }
  .food { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .guide-card { flex-direction: column; text-align: center; }
  .guide-card p { max-width: none; }
}

@media (max-width: 767px) {
  :root { --header-h: 68px; }

  .menu-toggle { display: flex; align-items: center; justify-content: center; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform .4s var(--ease-out);
    z-index: 150;
  }

  .nav.open { transform: translateX(0); }

  .nav a {
    font-size: 20px;
    font-weight: 700;
  }

  .nav-cta {
    margin-top: 10px;
    font-size: 16px;
    padding: 14px 32px;
  }

  .hero {
    min-height: min(700px, calc(100vh - 10px));
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-actions .button { width: 100%; }

  .scroll-cue { display: none; }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-item { padding: 20px 12px; }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-masonry {
    columns: 2;
    column-gap: 10px;
  }

  .gallery-item { margin-bottom: 10px; }

  .food { grid-template-columns: 1fr; gap: 30px; }

  .guide-card {
    padding: 28px 20px;
  }

  .address-actions {
    flex-direction: column;
  }

  .address-actions .button { width: 100%; }
}

@media (max-width: 480px) {
  .quick-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

  .gallery-masonry {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-item { margin-bottom: 8px; }

  .card-body { padding: 20px; }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  [data-animate="stagger"] > * {
    opacity: 1;
    transform: none;
  }

  .hero-waves .wave { animation: none; }
  .scroll-cue { animation: none; }
}

/* --- FOCUS VISIBLE --- */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- PRINT --- */
@media print {
  .topline, .site-header, .hero-particles, .hero-waves, .scroll-cue,
  .wave-divider, .footer-wave, .menu-toggle { display: none; }

  .hero { min-height: auto; background: #fff; color: #000; }
  .hero-video, .hero-overlay { display: none; }
  .hero-content { padding: 20px; }
  .hero-content h1 { color: #000; font-size: 28px; }

  body { font-size: 12pt; color: #000; background: #fff; }
  .section { padding: 20px; }
  .button { border: 1px solid #000; background: #fff; color: #000; }
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(9, 36, 55, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
  padding: 20px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: scale(.92);
  transition: transform .4s var(--bounce);
}

.lightbox-overlay.active .lightbox-content img,
.lightbox-overlay.active .lightbox-content video {
  transform: scale(1);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  transition: transform .2s var(--bounce), background .2s;
  z-index: 2;
}

.lightbox-close:hover {
  transform: scale(1.1);
  background: var(--cyan);
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s var(--bounce);
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, .3);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-nav:active { transform: translateY(-50%) scale(.9); }

/* --- GALLERY PAGE --- */
.gallery-hero {
  background: linear-gradient(135deg, var(--deep-navy), #0d3a5c);
  color: var(--white);
  text-align: center;
  padding: clamp(60px, 10vw, 140px) 20px clamp(40px, 6vw, 80px);
}

.gallery-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
}

.gallery-hero h1 em {
  background: linear-gradient(135deg, var(--cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.gallery-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all .25s var(--bounce);
  min-height: 44px;
}

.filter-btn:hover {
  border-color: var(--cyan);
  color: var(--blue);
}

.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.gallery-full {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 6vw, 95px);
  background: var(--cream);
}

.gallery-full .gallery-masonry {
  columns: 4;
}

@media (max-width: 1023px) {
  .gallery-full .gallery-masonry { columns: 3; }
}

@media (max-width: 767px) {
  .gallery-full .gallery-masonry { columns: 2; column-gap: 10px; }
  .gallery-full .gallery-item { margin-bottom: 10px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
  .lightbox-close { top: -12px; right: -8px; width: 38px; height: 38px; font-size: 18px; }
}

@media (max-width: 480px) {
  .gallery-full .gallery-masonry { columns: 2; column-gap: 8px; }
}
