/*
Theme Name: Georgie's by VVDesign
Theme URI: https://vvdesign.co.uk
Author: VVDesign
Author URI: https://vvdesign.co.uk
Description: A futuristic, cinematic WordPress theme built exclusively for Georgie's Canal Cruises. Features a parallax hero, animated mega menu, CruiseFlow booking integration, and full Classic Editor support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://vvdesign.co.uk
Text Domain: georgies-vvdesign
Tags: custom-menu, featured-images, full-width-template, custom-logo, classic-editor

/* ============================================================
   GEORGIE'S CANAL CRUISES, Custom WordPress Theme
   Designed & Built by VVDesign | https://vvdesign.co.uk
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --color-bg:        #0A0E1A;
  --color-bg2:       #111827;
  --color-gold:      #C9A84C;
  --color-gold-lt:   #E8C97A;
  --color-teal:      #00D4FF;
  --color-teal-dk:   #0099BB;
  --color-white:     #FFFFFF;
  --color-off-white: #E8EDF5;
  --color-muted:     #8899AA;
  --color-border:    rgba(201,168,76,0.25);

  --font-heading:    Georgia, 'Times New Roman', serif;
  --font-body:       system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-gold: 0 0 30px rgba(201,168,76,0.3);
  --shadow-teal: 0 0 30px rgba(0,212,255,0.2);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Larger base for accessibility / older visitors */
}

body {
  background-color: var(--color-bg);
  color: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2em; font-size: 1.05rem; }

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-teal); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding { padding: 90px 0; }

#upcoming,
#cruises,
.info-section,
#testimonials {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

/* --- UTILITY CLASSES --- */
.text-gold  { color: var(--color-gold); }
.text-teal  { color: var(--color-teal); }
.text-center { text-align: center; }
.text-white  { color: var(--color-white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #A07830);
  color: var(--color-bg);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-lt), var(--color-gold));
  color: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dk));
  color: var(--color-bg);
  border-color: var(--color-teal);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,212,255,0.45);
}

/* Section title decoration */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
  position: relative;
}
.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-teal);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.6;
}
.section-title h2 {
  margin-bottom: 1rem;
}
.section-title .title-bar {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  margin: 0 auto;
  border-radius: 2px;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#site-header.scrolled {
  background: rgba(10,14,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 0 var(--color-border);
}

/* Announcement bar */
.announcement-bar {
  background: linear-gradient(90deg, #b8860b, #c9a84c 40%, #a07830 100%);
  color: #0A0E1A;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
}
.announcement-bar .ann-msg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.announcement-bar .ann-sep {
  opacity: 0.4;
  font-weight: 300;
}
.announcement-bar a {
  color: #0A0E1A;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.announcement-bar a:hover {
  text-decoration: underline;
}
.announcement-bar .ann-close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #0A0E1A;
  opacity: 0.55;
  font-size: 1rem;
  line-height: 1;
  padding: 0.1rem 0.3rem;
  transition: opacity 0.2s;
}
.announcement-bar .ann-close:hover { opacity: 1; }
.announcement-bar.is-hidden { display: none; }

/* ── Mobile: single line, message only ── */
@media (max-width: 768px) {
  .announcement-bar {
    flex-wrap: nowrap;
    padding: 0.4rem 2.5rem 0.4rem 0.75rem;
    justify-content: center;
    font-size: 0.74rem;
    gap: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Hide phone, email and separators - topbar already shows them */
  .announcement-bar .ann-sep,
  .announcement-bar a {
    display: none;
  }
  /* Message still visible and centred */
  .announcement-bar .ann-msg {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* Keep close button anchored top-right without affecting layout */
  .announcement-bar .ann-close {
    top: 50%;
    right: 0.5rem;
  }
}

/* Top bar */
.header-topbar {
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--color-border);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: max-height var(--transition), opacity var(--transition);
  overflow: hidden;
  max-height: 60px;
}
.header-topbar.hidden { max-height: 0; opacity: 0; }

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar-contact a {
  color: var(--color-off-white);
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
}
.topbar-contact a:hover { color: var(--color-gold); }
.topbar-contact .icon { width: 15px; height: 15px; fill: var(--color-gold); }

.topbar-social { display: flex; gap: 0.75rem; align-items: center; }
.topbar-social a {
  color: var(--color-muted);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.topbar-social a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201,168,76,0.1);
}

/* Main nav bar */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.2;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.site-logo .logo-text .brand { color: var(--color-gold); font-size: 1.3rem; }
.site-logo .logo-text .sub { color: var(--color-teal); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* Primary navigation */
#primary-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

#primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

#primary-nav > ul > li {
  position: relative;
}

#primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 0.3em;
  padding: 0.6rem 0.9rem;
  color: var(--color-off-white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
#primary-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-teal));
  border-radius: 1px;
  transition: transform var(--transition);
}
#primary-nav > ul > li > a:hover,
#primary-nav > ul > li.current-menu-item > a {
  color: var(--color-gold);
}
#primary-nav > ul > li > a:hover::after,
#primary-nav > ul > li.current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-arrow {
  width: 10px; height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition);
}
#primary-nav > ul > li:hover .nav-arrow { transform: rotate(180deg); }

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
  padding: 1.75rem;
  min-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--color-border);
  border-top: none;
}

#primary-nav > ul > li:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1.5rem;
  align-items: start;
}

.mega-menu-links { list-style: none; }
.mega-menu-links li + li { margin-top: 0.2rem; }
.mega-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.6rem 0.8rem;
  color: var(--color-off-white);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mega-menu-links a:hover {
  background: rgba(201,168,76,0.08);
  color: var(--color-gold);
  padding-left: 1.1rem;
}
.mega-menu-links a .link-icon {
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition);
}
.mega-menu-links a:hover .link-icon { background: var(--color-teal); }

.mega-menu-feature {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(0,212,255,0.08));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}
.mega-menu-feature img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.mega-menu-feature-body { padding: 0.9rem; }
.mega-menu-feature-body h4 {
  font-size: 0.9rem;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}
.mega-menu-feature-body p { font-size: 0.8rem; color: var(--color-muted); margin: 0; }

/* Simple dropdown (non-mega) */
.simple-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  min-width: 220px;
  padding: 0.75rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
#primary-nav > ul > li:hover .simple-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.simple-dropdown li a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--color-off-white);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.simple-dropdown li a:hover {
  background: rgba(201,168,76,0.08);
  color: var(--color-gold);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}
.header-cta .btn {
  font-size: 0.82rem;
  padding: 0.65em 1.6em;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ============================================================
   HERO, CINEMATIC PARALLAX
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 8s linear;
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient overlays for cinematic depth */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,14,26,0.75) 0%, rgba(10,14,26,0.15) 60%, transparent 100%),
    linear-gradient(to top, rgba(10,14,26,0.9) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,14,26,0.5) 0%, transparent 30%);
}

/* Animated light rays */
.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-rays::before, .hero-rays::after {
  content: '';
  position: absolute;
  top: -20%;
  width: 3px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.08), transparent);
  animation: ray-drift 12s ease-in-out infinite;
}
.hero-rays::before { left: 25%; animation-delay: 0s; }
.hero-rays::after  { left: 70%; animation-delay: 5s; width: 2px; }
@keyframes ray-drift {
  0%, 100% { opacity: 0.4; transform: translateX(0) rotate(-3deg); }
  50%       { opacity: 0.1; transform: translateX(30px) rotate(3deg); }
}

/* Parallax floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  5%   { opacity: 0.7; }
  95%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fade-up 0.9s ease 0.5s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--color-teal);
  vertical-align: middle;
  margin-right: 12px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fade-up 1s ease 0.8s forwards;
}
.hero-title .gold-word { color: var(--color-gold); }
.hero-title .teal-line {
  display: block;
  font-size: 0.52em;
  letter-spacing: 0.2em;
  color: var(--color-teal);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.3em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-off-white);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 1s ease 1.1s forwards;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s ease 1.4s forwards;
}

/* Hero scroll indicator */
.hero-scroll-cue {
  appearance: none;
  background: transparent;
  border: 0;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-arrow 2s ease-in-out infinite;
  cursor: pointer;
}
.hero-scroll-cue svg {
  width: 22px; height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
}
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero slide dots */
.hero-dots {
  position: absolute;
  bottom: 4rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.6);
  transform: scale(1.4);
}

/* Animations */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FEATURE STRIP (below hero)
   ============================================================ */
.feature-strip {
  background: var(--color-bg2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: var(--color-border);
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 2rem;
  border-right: 1px solid var(--color-border);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item .icon-wrap {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(0,212,255,0.1));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-strip-item .icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--color-gold);
  fill: none; stroke-width: 1.5;
}
.feature-strip-item h4 {
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 0.1rem;
}
.feature-strip-item p {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0;
}

/* ============================================================
   BOOKING SECTION (CruiseFlow)
   ============================================================ */
#booking-section {
  background: var(--color-bg);
  padding: 90px 0;
  position: relative;
}
#booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.booking-wrap {
  background: var(--color-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.booking-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold), var(--color-teal));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   CRUISE CARDS
   ============================================================ */
.cruise-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.cruise-card {
  background: var(--color-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.cruise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.cruise-card:hover .card-image img { transform: scale(1.07); }

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--color-gold), #A07830);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 50px;
}

.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.card-body .card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.card-body .card-meta span {
  display: flex; align-items: center; gap: 0.3em;
}
.card-body .card-meta svg { width: 13px; height: 13px; stroke: var(--color-teal); fill: none; stroke-width: 2; }
.card-body p { font-size: 0.9rem; color: var(--color-off-white); margin-bottom: 1.25rem; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
}
.card-price { color: var(--color-gold); font-weight: 700; font-size: 1.05rem; }
.card-price span { font-size: 0.75rem; color: var(--color-muted); font-weight: 400; }
.card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.featured-cruise-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.featured-cruise-modal[hidden] {
  display: none;
}
.featured-cruise-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.8);
  backdrop-filter: blur(8px);
}
.featured-cruise-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(12,18,32,0.98), rgba(10,15,28,0.98));
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0,0,0,0.55);
}
.featured-cruise-modal__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.featured-cruise-modal__content {
  padding: 1.5rem;
}
.featured-cruise-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(9,14,24,0.82);
  color: var(--color-off-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.featured-cruise-modal__badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--color-gold), #A07830);
  color: var(--color-bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: 999px;
}
.featured-cruise-modal__content h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.featured-cruise-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: var(--color-muted);
}
.featured-cruise-modal__meta span,
.featured-cruise-modal__facts div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}
.featured-cruise-modal__section + .featured-cruise-modal__section {
  margin-top: 1.25rem;
}
.featured-cruise-modal__section h4 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.featured-cruise-modal__section p {
  color: var(--color-off-white);
}
.featured-cruise-modal__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}
.featured-cruise-modal__facts strong,
.featured-cruise-modal__facts span {
  display: block;
}
.featured-cruise-modal__facts strong {
  margin-bottom: 0.35rem;
  color: var(--color-gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.featured-cruise-modal__note {
  margin-top: 0.9rem;
  color: var(--color-muted);
}
.featured-cruise-modal__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
body.featured-cruise-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .card-actions,
  .featured-cruise-modal__actions {
    width: 100%;
    justify-content: stretch;
  }
  .card-actions .btn,
  .featured-cruise-modal__actions .btn {
    width: 100%;
    text-align: center;
  }
  .featured-cruise-modal__content {
    padding: 1.2rem;
  }
  .featured-cruise-modal__image img {
    height: 220px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--color-bg);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 30rem;
  color: rgba(201,168,76,0.03);
  line-height: 1;
  top: -5rem;
  left: 2rem;
  pointer-events: none;
  user-select: none;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  background: var(--color-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  flex: 0 0 calc(33.333% - 1rem);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
}
.testimonial-stars svg {
  width: 17px; height: 17px;
  fill: var(--color-gold);
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-off-white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 0;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--color-bg);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--color-white); }
.testimonial-via  { font-size: 0.75rem; color: var(--color-muted); }

/* Tripadvisor badge */
.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-bg2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--color-off-white);
}
.tripadvisor-badge .ta-logo {
  font-size: 1.5rem;
}

/* ============================================================
   WHY CHOOSE US / INFO SECTION
   ============================================================ */
.info-section {
  background: var(--color-bg2);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.info-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.info-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-teal), var(--color-gold));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  animation: border-rotate 6s linear infinite;
}
@keyframes border-rotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.info-image-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
}

.info-content .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--color-teal);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.info-features {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.info-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--color-off-white);
}
.info-features li .check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--color-gold), #A07830);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-features li .check svg {
  width: 11px; height: 11px;
  stroke: var(--color-bg); fill: none; stroke-width: 3;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060A14;
  border-top: 1px solid var(--color-border);
}

/* Grid: brand | explore | info | visit */
.footer-top {
  padding: 64px 0 52px;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1.8fr;
  gap: 2rem 3.5rem;
  align-items: start;
}

/* Brand column */
.footer-brand .site-logo {
  margin-bottom: 1.1rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 260px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.55rem;
}
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* Nav columns */
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li + li {
  margin-top: 0.55rem;
}
.footer-col ul li a {
  color: var(--color-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.footer-col ul li a:hover {
  color: var(--color-gold);
}
.footer-col ul li a::before {
  content: '›';
  color: var(--color-teal);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Visit & Contact column */
.footer-visit address {
  font-style: normal;
}
.footer-address-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.footer-address-row svg {
  width: 14px; height: 14px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}
a.footer-contact-link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}
a.footer-contact-link:hover {
  color: var(--color-gold);
}
.footer-email {
  word-break: break-all;
}

/* Tripadvisor badge */
.ta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(0,170,108,0.08);
  border: 1px solid rgba(0,170,108,0.3);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-top: 1.4rem;
}
.ta-badge-owl {
  flex-shrink: 0;
  line-height: 0;
}
.ta-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ta-badge-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.ta-badge-text span {
  font-size: 0.72rem;
  color: #5fd4a8;
}

/* Footer bottom bar */
.footer-bottom {
  position: relative;
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.footer-credit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin: 0;
}
.footer-bottom a {
  color: var(--color-gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer-bottom a:hover {
  opacity: 0.8;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(to bottom, rgba(10,14,26,1), rgba(10,14,26,0.9));
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0.85), rgba(10,14,26,0.6));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.5rem; }
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  justify-content: center;
  font-size: 0.85rem; color: var(--color-muted);
  margin-top: 1rem;
}
.breadcrumb a { color: var(--color-teal); }
.breadcrumb span { color: var(--color-muted); }

/* ============================================================
   CLASSIC EDITOR / POST CONTENT STYLES
   ============================================================ */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-off-white);
  max-width: 800px;
  margin: 0 auto;
}
.entry-content h2, .entry-content h3 { margin: 2.5rem 0 1rem; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.entry-content li { margin-bottom: 0.4rem; }
.entry-content a { color: var(--color-teal); border-bottom: 1px solid rgba(0,212,255,0.3); }
.entry-content a:hover { color: var(--color-gold); border-bottom-color: rgba(201,168,76,0.4); }
.entry-content blockquote {
  border-left: 3px solid var(--color-gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: rgba(201,168,76,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-off-white);
}
.entry-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border: 1px solid var(--color-border);
}
.entry-content table {
  width: 100%; border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.entry-content th {
  background: rgba(201,168,76,0.1);
  color: var(--color-gold);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.entry-content td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--color-off-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1200px: Tighten booking padding ── */
@media (max-width: 1200px) {
  .booking-wrap { padding: 2rem; }
}

/* ── 1100px: Footer 2-col, feature strip 2-col ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-item:nth-child(2) { border-right: none; }
}

/* ── 1024px: Tablet ── */
@media (max-width: 1024px) {
  .section-padding { padding: 70px 0; }
  .info-grid { gap: 3rem; }
  .info-image-wrap img { height: 380px; }
}

/* ── 900px: Mobile nav activates ── */
@media (max-width: 900px) {
  #primary-nav,
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-topbar { display: none; }
  .site-logo img { height: 48px; }
  .header-main { padding: 0.75rem 0; }
  .info-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 80%; }
}

/* ── 768px: Mobile ── */
@media (max-width: 768px) {
  html { font-size: 17px; }
  .container { padding: 0 1.25rem; }
  .section-padding { padding: 56px 0; }

  .site-logo img { height: 44px; }
  .site-logo .logo-text .brand { font-size: 1.15rem; }
  .header-main { padding: 0.65rem 0; }

  .hero-content { text-align: center; padding: 0 1rem; }
  .hero-eyebrow::before { display: none; }
  .hero-actions { justify-content: center; }
  .hero-dots { display: none; }

  .feature-strip { padding: 1.25rem 0; }
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
  .feature-strip-item:nth-child(2) { border-right: none; }

  .booking-wrap { padding: 1.5rem; border-radius: var(--radius-md); }

  .cruise-cards-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .info-section { padding: 56px 0; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .info-image-wrap img { height: 280px; }

  .testimonials-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card { flex: 0 0 85%; scroll-snap-align: start; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 48px 0 36px;
  }
  .footer-brand {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }
  .footer-brand .site-logo { justify-content: center; }
  .footer-tagline { max-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-address-row { align-items: flex-start; }
  .ta-badge { width: 100%; justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .footer-credit { position: static; transform: none; }

  .page-hero { padding: 110px 0 60px; }

  #back-to-top { bottom: 1rem; right: 1rem; width: 38px; height: 38px; }
}

/* ── 480px: Small mobile ── */
@media (max-width: 480px) {
  html { font-size: 16px; }
  .container { padding: 0 1rem; }
  .section-padding { padding: 48px 0; }

  .site-logo img { height: 38px; }
  .site-logo .logo-text .brand { font-size: 1rem; }
  .site-logo .logo-text .sub { font-size: 0.6rem; }

  .btn { padding: 0.75em 1.5em; font-size: 0.9rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .feature-strip-item:last-child { border-bottom: none; }

  .booking-wrap { padding: 1.25rem; }

  .card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .card-actions { width: 100%; }
  .card-actions .btn { flex: 1; justify-content: center; }

  .section-title { margin-bottom: 2rem; }
  .section-title .eyebrow::before,
  .section-title .eyebrow::after { width: 20px; margin: 0 6px; }

  .footer-top { padding: 36px 0 28px; gap: 1.5rem; }
  .page-hero { padding: 90px 0 48px; }
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */

/* Use visibility+opacity so CSS transition works — display:none blocks it */
#mobile-nav {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Header row: site name + close button */
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
  min-height: 64px;
}
.mobile-nav-logo {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-off-white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus {
  background: rgba(201,168,76,0.12);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Scrollable body */
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 1.5rem 2rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-list { list-style: none; margin: 0; padding: 0; }
.mobile-nav-list > li { border-bottom: 1px solid var(--color-border); }

.mobile-nav-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  color: var(--color-off-white);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color var(--transition);
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a:focus { color: var(--color-gold); }

.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.mobile-sub-toggle:hover { color: var(--color-gold); border-color: var(--color-gold); }
.mobile-sub-toggle svg { transition: transform var(--transition); }
.mobile-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-sub {
  list-style: none;
  padding: 0.25rem 0 0.75rem 1rem;
  display: none;
  border-left: 2px solid var(--color-border);
  margin-bottom: 0.5rem;
}
.mobile-sub.open { display: block; }
.mobile-sub li a {
  display: block;
  padding: 0.5rem 0.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.mobile-sub li a:hover { color: var(--color-gold); }

.mobile-nav-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   ACCESSIBILITY, Focus styles
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .hero-slide {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-rays, .hero-particles { display: none !important; }
  #mobile-nav { transition: none; }
}

/* ============================================================
   GLOWING DIVIDER
   ============================================================ */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-teal), transparent);
  opacity: 0.4;
  margin: 0;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-gold), #A07830);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
#back-to-top svg {
  width: 18px; height: 18px;
  stroke: #060A14;
  fill: none;
  stroke-width: 2.5;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}

