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

:root {
  --cream: #F5F0E8;
  --cream-alt: #EDEAE2;
  --dark: #1C1917;
  --dark-deep: #0a0a0a;
  --gold: #A16207;
  --gold-light: #CA8A04;
  --text: #1C1917;
  --text-muted: #6b6561;
  --white: #ffffff;
  --easing: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── FLOATING NAV ────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1180px;
}
.nav-island {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 60px;
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(196,164,90,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s var(--easing);
}
nav a:hover, nav a.active { color: var(--gold-light); }
.nav-cta {
  position: absolute;
  right: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white) !important;
  padding: 10px 18px 10px 22px;
  border-radius: 50px;
  transition: background 0.3s var(--easing), transform 0.2s var(--easing) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: scale(1.03) !important; }
.nav-cta .cta-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform 0.3s var(--easing);
}
.nav-cta:hover .cta-arrow { transform: translate(2px,-1px); }

/* ── INNER PAGE HERO BANNER ─────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  padding-bottom: 64px;
}
.page-hero-img {
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/92f5b6_c7c50d10922e46e98a904b0fac3763b1~mv2.avif/v1/fill/w_1920,h_600,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/92f5b6_c7c50d10922e46e98a904b0fac3763b1~mv2.avif') center/cover no-repeat;
  opacity: 0.22;
}
.page-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; font-weight: 500;
}
.page-hero-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); display:block; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── SECTION SHARED ─────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.section-label::before { content:''; width:24px; height:1px; background:var(--gold); display:block; }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  line-height: 1.1; color: var(--dark);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 15px; line-height: 1.75; color: var(--text-muted);
  max-width: 540px; font-weight: 300;
}
.section-sub.light { color: rgba(255,255,255,0.58); }
.divider { width: 40px; height: 1px; background: var(--gold); margin: 28px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 15px 20px 15px 28px;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  border-radius: 50px;
  transition: background 0.3s var(--easing), transform 0.2s var(--easing);
}
.btn-primary:hover { background: var(--gold-light); transform: scale(1.03); }
.btn-primary .btn-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.3s var(--easing);
}
.btn-primary:hover .btn-arrow { transform: translate(2px,-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold-light);
  padding: 14px 20px 14px 26px;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(139,115,53,0.5);
  transition: background 0.3s var(--easing), color 0.3s var(--easing), transform 0.2s var(--easing);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: scale(1.03); }
.btn-outline .btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(196,164,90,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--easing);
}
.btn-outline:hover .btn-arrow { transform: translate(2px,-1px); }

/* ── FLEET CARDS (shared) ───────────────────────────────────────── */
.fleet-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  outline: 1px solid rgba(139,115,53,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.fleet-card-img {
  overflow: hidden;
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
}
.fleet-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.7s var(--easing);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.06); }
.fleet-card-body { padding: 28px 32px 32px; }
.fleet-card-class {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 500;
}
.fleet-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--dark);
  margin-bottom: 16px;
}
.fleet-card-specs { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.spec {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em;
}
.spec svg { color: var(--gold); flex-shrink: 0; }
.fleet-book {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s var(--easing), gap 0.3s var(--easing);
}
.fleet-book:hover { color: var(--gold); gap: 14px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--dark-deep);
  padding: 72px 80px 40px;
  border-top: 1px solid rgba(196,164,90,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand img {
  width: 280px; height: auto;
  margin-bottom: 20px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.footer-brand p {
  font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.35);
  font-weight: 300; width: 280px; text-align: center;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px; font-weight: 500;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.42);
  text-decoration: none; margin-bottom: 12px; font-weight: 300;
  transition: color 0.3s var(--easing);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.social-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(196,164,90,0.22);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.42); text-decoration: none;
  line-height: 0;
  transition: border-color 0.3s var(--easing), color 0.3s var(--easing), transform 0.3s var(--easing);
}
.social-icon svg {
  display: block;
  width: 9px; height: 9px;
}
a[aria-label="Instagram"] svg { width: 8px; height: 8px; }
a[aria-label="Facebook"] svg  { width: 9px; height: 9px; }
a[aria-label="WhatsApp"] svg  { width: 10px; height: 10px; }
.social-icon:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }

/* ── STICKY BOOK ─────────────────────────────────────────────────── */
.sticky-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px 14px 24px;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(139,115,53,0.38);
  transition: background 0.3s var(--easing), transform 0.3s var(--easing);
}
.sticky-book:hover { background: var(--gold-light); transform: translateY(-3px); }
.sticky-book .btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.1s; }
.reveal-delay-2.visible { transition-delay: 0.2s; }
.reveal-delay-3.visible { transition-delay: 0.32s; }
.reveal-delay-4.visible { transition-delay: 0.44s; }
.reveal:not(.visible) { transition-delay: 0s !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  header { width: calc(100% - 24px); top: 12px; }
  .nav-island { padding: 0 8px; }
  nav { gap: 0; }
  nav a:not(.nav-cta) { display: none; }
  .page-hero { height: 280px; padding-bottom: 40px; }
  .page-hero-content { padding: 0 24px; }
  footer { padding: 56px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── ACCESSIBILITY & PERFORMANCE (UI/UX Pro Max) ─────────────────── */

/* Respect reduced-motion preference */
@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;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Keyboard focus states — visible ring for accessibility */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Minimum touch target sizes for mobile (44×44px) */
@media (max-width: 900px) {
  .btn-primary,
  .btn-outline,
  .nav-cta,
  .sticky-book,
  .fleet-book {
    min-height: 44px;
  }
}

/* Section label letter-spacing: Montserrat needs slightly tighter spacing */
.section-label,
.page-hero-eyebrow {
  letter-spacing: 0.2em;
}

/* Body text weight refinement for Montserrat */
.section-sub,
.section-sub.light {
  font-weight: 300;
  letter-spacing: 0.01em;
}
