*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #071520; color: #f0f7fa;
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
  --navy: #0b1d2e;
  --navy-light: #122d45;
  --ocean: #1a8bb3;
  --ocean-light: #2cb5d6;
  --ocean-dark: #0f6d8e;
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-bright: #ffe5a0;
  --gold-dark: #b8912e;
  --gold-deep: #8b6914;
  --gold-glow: rgba(212, 168, 83, 0.35);
  --sand: #f5e6c8;
  --sand-light: #faf3e6;
  --sand-dark: #c9b896;
  --seafoam: #4ecdc4;
  --seafoam-dark: #2ba89f;
  --sky: #87ceeb;
  --dark: #071520;
  --dark-card: #0a1f30;
  --dark-border: #163248;
  --gray-900: #0c1f2e;
  --gray-800: #1a3550;
  --gray-700: #2a5070;
  --gray-600: #4a7a9a;
  --gray-400: #8bbad4;
  --gray-300: #b8d8e8;
  --white: #f0f7fa;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--seafoam);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--seafoam); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600;
  line-height: 1.15; color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(105deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldShimmer 6s ease infinite;
  filter: drop-shadow(0 0 8px rgba(212,168,83,0.3));
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-400); max-width: 600px; line-height: 1.8;
  font-weight: 300; letter-spacing: 0.01em;
}

/* ─── GOLD DIVIDER ────────────────────────────────────────────── */
.gold-divider {
  width: 80px; height: 2px; margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-bright), var(--gold-dark), transparent);
  box-shadow: 0 0 12px rgba(212,168,83,0.3);
}

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--seafoam-dark), var(--seafoam), var(--ocean-light));
  z-index: 10000; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(78,205,196,0.5);
}

/* ─── GOLD PARTICLE CANVAS ────────────────────────────────────── */
#particles-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.6;
  mix-blend-mode: screen;
}

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); position: relative;
  font-family: 'Montserrat', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 30%, var(--gold-light) 50%, var(--gold-bright) 55%, var(--gold-light) 60%, var(--gold) 80%, var(--gold-dark));
  background-size: 200% auto;
  color: var(--navy); font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow), inset 0 1px 0 rgba(255,229,160,0.4);
  overflow: hidden;
  animation: goldShimmer 5s ease infinite;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: goldShineSweep 4s ease-in-out infinite;
  pointer-events: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(212,168,83,0.5), 0 0 25px rgba(212,168,83,0.2), inset 0 1px 0 rgba(255,229,160,0.5);
}
.btn-outline {
  border: 2px solid var(--gray-700); color: var(--white);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212,168,83,0.15), 0 0 40px rgba(212,168,83,0.05);
  text-shadow: 0 0 12px rgba(212,168,83,0.3);
}
.btn-white {
  background: white; color: var(--navy); box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.15); }
.btn-ocean {
  background: var(--ocean); color: white; box-shadow: 0 4px 20px rgba(26,111,196,0.3);
}
.btn-ocean:hover { background: var(--ocean-light); transform: translateY(-2px); }

/* ─── GRIDS ────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* Gold shimmer for section titles */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
/* Luxury shine sweep for buttons and accents */
@keyframes goldShineSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* SVG Wave animations - 3 layers at different speeds */
@keyframes waveLayer1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waveLayer2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes waveLayer3 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Counter tick animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Parallax subtle float */
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ─── PARALLAX SECTIONS ───────────────────────────────────────── */
.parallax-section {
  position: relative;
  will-change: transform;
}

/* ─── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(6,11,20,0.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(6,11,20,0.92);
  margin: 8px 16px 0;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.15);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.logo-icon {
  border-radius: 0; background: none; width: auto; height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,168,83,0.5)) drop-shadow(0 0 2px rgba(212,168,83,0.3));
}
.logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldShimmer 6s ease infinite;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; font-size: 0.8rem; font-weight: 500;
  color: var(--gray-400); border-radius: 8px; transition: var(--transition);
  letter-spacing: 0.04em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  margin-left: 16px; padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 40%, var(--gold-bright) 55%, var(--gold-light) 65%, var(--gold)) !important;
  background-size: 200% auto !important;
  color: var(--navy) !important; border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px var(--gold-glow), inset 0 1px 0 rgba(255,229,160,0.35);
  animation: goldShimmer 5s ease infinite;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,83,0.5), 0 0 18px rgba(212,168,83,0.2);
}
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white) !important; font-weight: 600 !important; font-size: 0.9rem !important;
}
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,11,20,0.4) 0%, rgba(6,11,20,0.55) 50%, rgba(6,11,20,0.95) 100%),
    url('/images/yacht-exterior.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}

/* Animated SVG Wave Overlay (replaces old .hero-waves) */
.hero-wave-container {
  position: absolute; bottom: -1px; left: 0; width: 100%;
  overflow: hidden; z-index: 2; line-height: 0;
}
.hero-wave-container svg {
  display: block; width: 100%; height: auto;
  min-width: 600px;
}
.hero-wave-container .wave-layer-1 {
  animation: waveLayer1 8s linear infinite;
}
.hero-wave-container .wave-layer-2 {
  animation: waveLayer2 12s linear infinite;
  opacity: 0.6;
}
.hero-wave-container .wave-layer-3 {
  animation: waveLayer3 16s linear infinite;
  opacity: 0.3;
}

/* Legacy fallback if still used */
.hero-waves {
  position: absolute; bottom: -5px; left: 0; width: 200%; height: 80px;
  background: repeating-linear-gradient(90deg, transparent, transparent 50%, rgba(26,111,196,0.08) 50%, rgba(26,111,196,0.08) 100%);
  animation: waveLayer1 12s linear infinite;
  opacity: 0.5;
}

.hero .container {
  position: relative; z-index: 3; text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(78,205,196,0.1); border: 1px solid rgba(78,205,196,0.3);
  font-size: 0.8rem; font-weight: 600; color: var(--seafoam);
  margin-bottom: 32px; letter-spacing: 0.15em;
  font-family: 'Montserrat', sans-serif;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.08; margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(105deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldShimmer 6s ease infinite;
  filter: drop-shadow(0 0 12px rgba(212,168,83,0.4));
}
.hero p {
  font-size: 1.15rem; color: var(--gray-400);
  max-width: 650px; margin: 0 auto 44px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }

/* Hero Stats with counter animation support */
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  padding-top: 40px; border-top: 1px solid var(--dark-border);
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--white);
}
.hero-stat-value span { color: var(--gold-bright); text-shadow: 0 0 8px rgba(212,168,83,0.3); }
.hero-stat-value.counting {
  animation: countUp 0.4s ease-out;
}
.hero-stat-label { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; margin-top: 4px; letter-spacing: 0.05em; }

/* ─── VESSEL ──────────────────────────────────────────────────── */
.vessel { background: var(--dark); }
.vessel .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vessel-visual { position: relative; }
.vessel-image {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--ocean-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.vessel-image img, .exp-card-image img, .about-image img, .team-photo img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.vessel-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(201,168,76,0.08));
}
.vessel-float {
  position: absolute; bottom: -24px; right: -24px;
  background: rgba(12,21,36,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 20px 28px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.vessel-float-value {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 6px rgba(212,168,83,0.4));
}
.vessel-float-label { font-size: 0.8rem; color: var(--gray-400); }
.vessel-specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
.vessel-spec {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  transition: var(--transition);
}
.vessel-spec:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}
.vessel-spec-value { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.vessel-spec-value span { color: var(--gold-bright); font-size: 0.8rem; text-shadow: 0 0 6px rgba(212,168,83,0.3); }
.vessel-spec-label { font-size: 0.7rem; color: var(--gray-600); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ─── EXPERIENCES ─────────────────────────────────────────────── */
.experiences { background: var(--gray-900); }
.experiences-header { text-align: center; margin-bottom: 64px; }
.experiences-header .section-subtitle { margin: 0 auto; }
.exp-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
  position: relative;
}
.exp-card:hover {
  transform: translateY(-8px); border-color: var(--gray-700);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(201,168,76,0.05);
}
.exp-card-image {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--ocean-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.exp-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark-card) 0%, transparent 50%);
}
.exp-card-number {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--seafoam); padding: 6px 12px; border-radius: 50px;
  background: rgba(6,11,20,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(78,205,196,0.25);
  font-family: 'Montserrat', sans-serif;
}
.exp-card-body { padding: 28px; }
.exp-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px;
}
.exp-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; }
.exp-link {
  font-size: 0.8rem; font-weight: 600; color: var(--seafoam);
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.exp-link:hover { color: var(--gold); }
.exp-link:hover { gap: 10px; }

/* ─── PRICING ─────────────────────────────────────────────────── */
.pricing { background: var(--dark); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-subtitle { margin: 0 auto; }

/* Glassmorphism pricing cards */
.price-card {
  background: rgba(12,21,36,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 40px rgba(201,168,76,0.1), 0 20px 50px rgba(0,0,0,0.4);
}
.price-card.featured {
  border-color: var(--seafoam);
  background: linear-gradient(180deg, rgba(78,205,196,0.06), rgba(10,31,48,0.8));
}
.price-card.featured::before {
  content: 'BEST VALUE'; position: absolute; top: 16px; right: -32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold));
  color: var(--navy); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 6px 40px; transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(212,168,83,0.4);
}
.price-card-title { font-size: 0.75rem; font-weight: 700; color: var(--seafoam); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; }
.price-card-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.price-card-amount span { font-size: 1rem; color: var(--gray-600); font-family: 'Montserrat', sans-serif; font-weight: 400; }
.price-card-detail { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 28px; line-height: 1.5; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-300);
}
.price-feature .check { color: var(--gold-bright); font-size: 0.8rem; flex-shrink: 0; text-shadow: 0 0 6px rgba(212,168,83,0.4); }
.price-note {
  text-align: center; margin-top: 40px; font-size: 0.85rem; color: var(--gray-600); line-height: 1.6;
}

/* ─── PRICING PAGE CARDS (pricing.html) ──────────────────────── */
.pricing-card {
  background: rgba(12,21,36,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 40px rgba(201,168,76,0.1), 0 20px 50px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: var(--seafoam);
  background: linear-gradient(180deg, rgba(78,205,196,0.06), rgba(10,31,48,0.8));
}
.pricing-card.featured::before {
  content: 'BEST VALUE'; position: absolute; top: 16px; right: -32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright), var(--gold));
  color: var(--navy); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 6px 40px; transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(212,168,83,0.4);
}

/* Pricing card image container */
.pricing-card-image {
  width: calc(100% + 64px); height: 200px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: -40px -32px 32px;
  position: relative;
}
.pricing-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover .pricing-card-image img {
  transform: scale(1.08);
}
.pricing-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,21,36,0.6) 0%, transparent 60%);
}

.pricing-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(78,205,196,0.1); border: 1px solid rgba(78,205,196,0.25);
  font-size: 0.7rem; font-weight: 700; color: var(--seafoam); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.pricing-header { margin-bottom: 28px; }
.pricing-header h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.pricing-amount span { font-size: 1rem; color: var(--gray-600); font-family: 'Montserrat', sans-serif; font-weight: 400; }
.pricing-note { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; }
.pricing-features {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-300);
}
.pricing-features li::before {
  content: '\2713'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ─── TEAM CARD (direct img layout for team.html) ───────────── */
.team-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
}
.team-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  padding: 24px 24px 0; text-align: center; margin: 0;
}
.team-card .team-role {
  text-align: center; padding: 6px 24px 0; margin-bottom: 8px;
}
.team-bio {
  font-size: 0.85rem; color: var(--gray-400); line-height: 1.6;
  padding: 0 24px; margin: 0 0 20px; text-align: center;
}
.team-card > .team-socials { padding: 0 24px 24px; display: flex; justify-content: center; gap: 10px; }
.team-card > .team-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gray-800); border: 1px solid var(--dark-border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.team-card > .team-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── BOOKING GRID (contact.html) ────────────────────────────── */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start;
}
.booking-info-card h3 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 4px;
}

/* ─── REVIEWS ─────────────────────────────────────────────────── */
.reviews { background: var(--gray-900); }
.reviews-header { text-align: center; margin-bottom: 16px; }
.reviews-header .section-subtitle { margin: 0 auto; }
.reviews-rating {
  text-align: center; margin-bottom: 48px; font-size: 0.95rem; color: var(--gray-400);
}
.reviews-rating .stars { color: var(--gold-bright); font-size: 1.2rem; letter-spacing: 4px; text-shadow: 0 0 10px rgba(212,168,83,0.5), 0 0 20px rgba(212,168,83,0.2); }
.review-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--gray-700);
  box-shadow: 0 0 30px rgba(201,168,76,0.05);
}
.review-stars { color: var(--gold-bright); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; text-shadow: 0 0 8px rgba(212,168,83,0.4); }
.review-card blockquote {
  font-size: 0.95rem; color: var(--gray-300); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--seafoam));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-source { font-size: 0.75rem; color: var(--gray-600); }

/* ─── GALLERY ─────────────────────────────────────────────────── */
.gallery { background: var(--dark); }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2;
  position: relative; cursor: pointer; transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,11,20,0.4) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
/* Gallery zoom icon on hover */
.gallery-item::before {
  content: '\2922'; position: absolute; z-index: 2;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  font-size: 1.6rem; color: var(--gold);
  background: rgba(6,11,20,0.7); backdrop-filter: blur(8px);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease; pointer-events: none;
}
.gallery-item:hover::before { transform: translate(-50%, -50%) scale(1); }

/* ─── GALLERY LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: scaleIn 0.3s ease;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); z-index: 10;
}
.lightbox-close:hover {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); z-index: 10;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--gray-400);
  background: rgba(6,11,20,0.7); backdrop-filter: blur(8px);
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.15);
}

/* ─── TEAM ────────────────────────────────────────────────────── */
.team { background: var(--dark); }
.team-header { text-align: center; margin-bottom: 64px; }
.team-header .section-subtitle { margin: 0 auto; }
.team-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px); border-color: var(--gray-700);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.team-photo {
  width: 100%; aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light), var(--ocean-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.team-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark-card) 0%, transparent 40%);
}
.team-info { padding: 24px; text-align: center; }
.team-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.75rem; color: var(--seafoam); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; font-family: 'Montserrat', sans-serif; }
.team-info p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-social {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gray-800); border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.team-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ─── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(11,29,46,1), rgba(15,109,142,0.4), rgba(11,29,46,1));
  background-size: 200% 200%; animation: gradientShift 10s ease infinite;
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(78,205,196,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 20px;
}
.cta-banner h2 em {
  font-style: italic;
  background: linear-gradient(105deg, var(--gold), var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 10px rgba(212,168,83,0.4));
}
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BOOKING ─────────────────────────────────────────────────── */
.booking {
  background: var(--gray-900);
  position: relative; overflow: hidden;
  padding: 72px 0 80px;
}
/* Premium yacht background overlay on booking section */
.booking::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: url('/images/charter-img_0877.jpg') center/cover;
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
}
.booking::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(78,205,196,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.booking .container {
  position: relative; z-index: 1;
}
.booking-card {
  background: linear-gradient(145deg, rgba(12,21,36,0.9), rgba(10,31,48,0.85));
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(78,205,196,0.03);
  position: relative;
}
.booking-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--seafoam), var(--gold), var(--seafoam), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.booking-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.booking-card-subtitle {
  font-size: 0.85rem; color: var(--gray-600); margin-bottom: 24px; font-weight: 300;
  letter-spacing: 0.02em;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-400);
  margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  background: rgba(11,29,46,0.8); border: 1px solid var(--dark-border);
  color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.9rem;
  transition: var(--transition); outline: none; font-weight: 300;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--seafoam);
  box-shadow: 0 0 0 3px rgba(78,205,196,0.08), 0 0 24px rgba(78,205,196,0.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-700); font-weight: 300; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-info-card {
  background: linear-gradient(135deg, rgba(10,31,48,0.6), rgba(12,21,36,0.4));
  border: 1px solid var(--dark-border);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 12px; transition: var(--transition);
}
.booking-info-card:hover {
  border-color: rgba(78,205,196,0.25);
  box-shadow: 0 0 24px rgba(78,205,196,0.06);
  transform: translateX(4px);
}
.booking-info-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(201,168,76,0.08));
  border: 1px solid rgba(78,205,196,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.booking-info-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.booking-info-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.booking-info-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; font-weight: 300; }
.booking-info-card a { color: var(--seafoam); font-weight: 500; transition: var(--transition); }
.booking-info-card a:hover { color: var(--gold); }

/* Full-width centered booking card (contact page) */
.booking-card-full {
  max-width: 800px; margin: 0 auto;
}
.booking-card-full h3 { text-align: center; }
.booking-card-full .booking-card-subtitle { text-align: center; }

/* Horizontal info row below form */
.booking-info-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
.booking-info-row .booking-info-card { margin-bottom: 0; }

/* ─── ABOUT ───────────────────────────────────────────────────── */
.about { background: var(--gray-900); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-image {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-light), var(--ocean-dark));
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
  position: relative; overflow: hidden;
}
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.1));
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.about-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 0.875rem; color: var(--gray-400); }

/* ─── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  background: var(--gray-900); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(78,205,196,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(26,139,179,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(201,168,76,0.03) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-subtitle { margin: 0 auto; }
.breadcrumb {
  font-size: 0.85rem; color: var(--gray-600);
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-400); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq { background: var(--dark); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-700); }
.faq-question {
  width: 100%; padding: 24px 28px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; background: none; border: none;
  color: var(--white); font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 28px 24px; font-size: 0.95rem; color: var(--gray-400); line-height: 1.8;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; margin: 20px 0 24px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gray-800); border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.85rem; font-weight: 700;
}
.footer-social:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)); border-color: var(--gold); color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px var(--gold-glow), 0 0 12px rgba(212,168,83,0.2);
}
.footer h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--seafoam); margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 0.9rem; color: var(--gray-400); transition: var(--transition); }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--dark-border);
  font-size: 0.85rem; color: var(--gray-600);
}

/* ─── SCROLL TOP ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 20px var(--gold-glow), inset 0 1px 0 rgba(255,229,160,0.4);
  opacity: 0; visibility: hidden; transition: var(--transition); cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,168,83,0.6), 0 0 15px rgba(212,168,83,0.3);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vessel .container, .about .container, .booking .container, .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .navbar.scrolled { margin: 8px 12px 0; border-radius: 14px; }
  .booking::before { width: 100%; height: 30%; top: auto; bottom: 0;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .navbar { padding: 10px 0; }
  .navbar.scrolled { padding: 8px 0; margin: 4px 8px 0; border-radius: 12px; }
  .logo { font-size: 0.95rem; gap: 6px; }
  .logo-icon { height: 36px !important; width: auto !important; max-width: 140px !important; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,11,20,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; z-index: 999; padding: 80px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px 24px; width: 100%; text-align: center; border-radius: 12px; }
  .nav-cta { margin-left: 0 !important; margin-top: 12px; width: 100%; text-align: center; display: flex !important; justify-content: center; }
  .nav-phone { justify-content: center; margin-top: 8px; }
  .mobile-toggle { display: flex; z-index: 1001; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .hero { min-height: auto; padding: 88px 0 40px; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(6,11,20,0.3) 0%, rgba(6,11,20,0.6) 40%, rgba(6,11,20,0.95) 65%, var(--dark) 100%),
      url('/images/yacht-exterior.jpg') center 60px / 100% auto no-repeat;
    background-color: var(--dark);
  }
  .hero h1 { font-size: 2rem; margin-bottom: 16px; }
  .hero p { font-size: 1rem; margin-bottom: 28px; line-height: 1.65; max-width: 100%; }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; gap: 12px; margin-bottom: 40px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 0.95rem; }
  .hero-stats { gap: 12px; flex-wrap: wrap; padding-top: 28px; justify-content: center; }
  .hero-stat-value { font-size: 1.7rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-wave-container { display: none; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 14px; }
  .section-subtitle { font-size: 0.95rem; }
  .section-label { font-size: 0.7rem; margin-bottom: 12px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .vessel-specs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vessel-spec { padding: 12px; }
  .vessel-spec-value { font-size: 1.2rem; }
  .vessel-float { position: relative; bottom: auto; right: auto; margin-top: -20px; }
  .vessel-image { font-size: 3rem; aspect-ratio: 16/9 !important; }
  .exp-card-image { aspect-ratio: 16/10; }
  .exp-card-body { padding: 20px; }
  .exp-card h3 { font-size: 1.1rem; }
  .exp-card p { font-size: 0.85rem; }
  .price-card, .pricing-card { padding: 28px 20px; }
  .price-card-amount, .pricing-amount { font-size: 2.2rem; }
  .price-card-title { font-size: 0.75rem; }
  .pricing-card-image {
    width: calc(100% + 40px); margin: -28px -20px 24px;
    height: 160px;
  }
  .booking-grid { gap: 40px; }
  .review-card { padding: 24px; }
  .review-card blockquote { font-size: 0.9rem; }
  .team-photo { font-size: 3rem; aspect-ratio: 4/3; }
  .team-info { padding: 20px; }
  .team-info h3 { font-size: 1.05rem; }
  .team-info p { font-size: 0.8rem; }
  .team-social { width: 40px; height: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { aspect-ratio: 4/3; border-radius: 8px; }
  .gallery-item::before { display: none; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-banner p { font-size: 0.95rem; margin-bottom: 28px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; padding: 16px 24px; }
  .booking .container { gap: 40px; }
  .booking-card { padding: 24px; }
  .booking-card h3 { font-size: 1.15rem; margin-bottom: 20px; }
  .booking::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-input, .form-textarea, .form-select { padding: 16px; font-size: 16px; border-radius: 12px; }
  .form-label { font-size: 0.8rem; }
  .booking-info-card { padding: 16px; }
  .booking-info-icon { width: 42px; height: 42px; border-radius: 10px; font-size: 1.1rem; }
  .booking-info-row { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
  .booking-card-full { max-width: 100%; }
  .about-image { font-size: 3rem; aspect-ratio: 16/9; }
  .page-hero { padding: 112px 0 48px; }
  .page-hero .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .breadcrumb { font-size: 0.8rem; margin-bottom: 14px; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { font-size: 0.85rem; margin: 14px 0 18px; }
  .footer h4 { margin-bottom: 12px; }
  .footer ul a { font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; font-size: 0.8rem; }
  .footer-bottom div { gap: 16px !important; }
  .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-prev { left: 12px; width: 44px; height: 44px; }
  .lightbox-next { right: 12px; width: 44px; height: 44px; }
  .lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; }
  .lightbox img { max-width: 95vw; max-height: 80vh; border-radius: 8px; }
  .gold-divider { width: 60px; margin-bottom: 24px; }
  .scroll-progress { height: 2px; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-stat-value { font-size: 1.4rem; }
  .section-title { font-size: 1.4rem; }
  .logo { font-size: 0.85rem; }
  .logo-icon { height: 30px !important; max-width: 120px !important; }
  .btn { padding: 14px 20px; font-size: 0.85rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/9; }
  .vessel-image { aspect-ratio: 16/10 !important; }
  .team-photo { aspect-ratio: 16/10; }
  .navbar.scrolled { margin: 4px; border-radius: 10px; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ACCESSIBILITY: Reduced Motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-wave-container .wave-layer-1,
  .hero-wave-container .wave-layer-2,
  .hero-wave-container .wave-layer-3 { animation: none; }
  .hero-waves { animation: none; }
  .section-title em { animation: none; }
  .hero h1 em { animation: none; }
  .cta-banner { animation: none; background-size: 100% 100%; }
  .scroll-progress { transition: none; }
  .price-card:hover, .pricing-card:hover,
  .exp-card:hover, .team-card:hover,
  .review-card:hover { transform: none; }
}
