/* ========================
   KING TIDE CHARTERS
   ======================== */

:root {
  --navy:    #0a0f1e;
  --navy2:   #0e1628;
  --navy3:   #131f35;
  --navy4:   #1a2a46;
  --gold:    #c9a84c;
  --gold2:   #e8c96a;
  --gold3:   #f5e0a0;
  --white:   #ffffff;
  --text:    #d4dce8;
  --muted:   #7a8fa8;
  --border:  rgba(201,168,76,0.15);
  --radius:  10px;
  --radius-lg: 18px;
  --shadow:  0 8px 40px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg { padding: 16px 34px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.5px;
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-mark {
  font-size: 28px;
  filter: sepia(1) saturate(2) hue-rotate(0deg);
}

.logo-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 20px 28px;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
}

.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #020608;
}

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

.hero-yacht-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* Let the yacht & Miami skyline breathe — minimal overlay in center */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.35) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(2,6,8,0.45)  0%,
      rgba(2,6,8,0.0)   20%,
      rgba(2,6,8,0.0)   50%,
      rgba(2,6,8,0.6)   78%,
      rgba(10,15,30,1)  100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  margin-top: -80px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 28px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.7);
}

.hero-title em {
  font-style: italic;
  color: var(--gold2);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: 0.2px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.badge span { font-size: 14px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}

.intro-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.intro-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 40px;
}

.intro-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.intro-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.intro-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.intro-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- CHARTER TYPES ---- */
/* ---- LUXURY INTRO STATEMENT ---- */
.luxury-intro {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--navy);
}

.luxury-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg,
    rgba(4,10,20,0.92) 0%,
    rgba(4,10,20,0.80) 50%,
    rgba(4,10,20,0.88) 100%
  );
}

.luxury-intro .container {
  position: relative;
  z-index: 1;
}

.luxury-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.luxury-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.luxury-intro-text h2 em {
  color: var(--gold2);
  font-style: italic;
}

.luxury-intro-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 18px;
  opacity: 0.9;
}

.luxury-intro-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}

.lp-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.lp-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.lp-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.lp-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .luxury-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .luxury-intro-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .luxury-intro-pillars {
    grid-template-columns: 1fr;
  }
}

.charter-types { background: var(--navy); }

.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.type-img {
  position: relative;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.type-fishing {
  background: linear-gradient(160deg, #0a2040 0%, #0d3a60 40%, #051520 100%);
}

.type-luxury {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

/* Ocean wave pattern on charter type cards */
.type-fishing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,100,180,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0,50,120,0.4) 0%, transparent 60%);
}

.type-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(201,168,76,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(100,50,150,0.2) 0%, transparent 60%);
}

.type-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.3) 60%, transparent 100%);
}

.type-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}

.type-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.type-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.type-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.type-list {
  list-style: none;
  margin-bottom: 28px;
}

.type-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  letter-spacing: 0.5px;
}

.type-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ---- PRICING BANNER ---- */
.pricing-banner {
  background: var(--navy2);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.pricing-featured {
  background: linear-gradient(160deg, var(--navy4), var(--navy3));
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-hours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0;
}

.pricing-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-includes span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ---- FLEET ---- */
.fleet { background: var(--navy); }

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

.fleet-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow);
}

.fleet-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.placeholder-img {
  background: linear-gradient(135deg, var(--navy3), var(--navy4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  font-style: italic;
}

.fleet-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.fishing-badge {
  background: linear-gradient(135deg, #1e6fb5, #2a8fd4) !important;
  color: white !important;
}

.fleet-body { padding: 24px; }

.fleet-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.fleet-spec-row {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.fleet-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet-pricing {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.fp-item {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
}
.fp-item:last-child { border-right: none; }

.fp-item span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 3px;
}

.fp-item strong {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
}

/* ---- FLEET GALLERY (Pardo 38) ---- */

.fleet-card-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fleet-card-wide .fleet-img {
  height: 100%;
  min-height: 340px;
}

.pardo-gallery {
  position: relative;
  overflow: hidden;
}

.gallery-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,15,30,0.7);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.gallery-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.fleet-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 20px;
}

.fleet-features li {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.3px;
}

/* ---- FLEET SECTION DIVIDER ---- */
.fleet-section-divider {
  grid-column: 1 / -1;
  padding: 40px 0 12px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

/* ---- WHOLESALE PRICING ---- */
.wholesale-pricing {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}

.wp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.wp-row:last-child { border-bottom: none; }
.wp-row span { color: var(--muted); }
.wp-row strong { color: var(--gold); font-size: 15px; }

/* ---- ALLEGRA PRICING TABLE ---- */
.allegra-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.allegra-pricing-col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.allegra-pricing-featured {
  border-color: rgba(201,168,76,0.4);
}

.allegra-pricing-header {
  background: var(--navy3);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px;
}

.allegra-pricing-featured .allegra-pricing-header {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(232,201,106,0.1));
}

.allegra-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.allegra-pricing-row span { color: var(--muted); }
.allegra-pricing-row strong { color: var(--gold); font-size: 15px; }

.allegra-includes {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .fleet-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .fleet-card-wide .fleet-img {
    min-height: 260px;
  }
  .fleet-features {
    grid-template-columns: 1fr;
  }
  .allegra-pricing {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- FISHING DETAIL ---- */
.fishing-detail {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.fishing-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(4,10,20,0.88) 0%,
    rgba(4,10,20,0.60) 50%,
    rgba(4,10,20,0.82) 100%
  );
}

/* ---- FISHING SUNSET CLOSER (inline bg version) ---- */
.fishing-sunset-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.fishing-sunset-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(4,10,20,0.55) 0%,
    rgba(4,10,20,0.25) 35%,
    rgba(4,10,20,0.35) 65%,
    rgba(4,10,20,0.80) 100%
  );
}

.fishing-sunset-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}

.fishing-sunset-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 24px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.6);
}

.fishing-sunset-title em {
  color: var(--gold2);
  font-style: italic;
}

.fishing-sunset-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ---- FISHING SUNSET CLOSER ---- */
.fishing-sunset-closer {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fsc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fsc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.fsc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(4,10,20,0.5) 0%,
    rgba(4,10,20,0.3) 30%,
    rgba(4,10,20,0.5) 70%,
    rgba(10,15,30,0.85) 100%
  );
}

.fsc-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.fsc-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.fsc-content h2 em {
  color: var(--gold2);
  font-style: italic;
}

.fsc-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.fsc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.fsc-title em {
  color: var(--gold2);
  font-style: italic;
}

.fsc-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.fishing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.fishing-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.fishing-text h2 em {
  color: var(--gold2);
  font-style: italic;
}

.fishing-body {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.fishing-tagline {
  font-size: 15px;
  color: var(--gold3);
  font-style: italic;
  line-height: 1.7;
  margin: 24px 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.fishing-ctas { margin-top: 32px; }

.fishing-details {
  background: rgba(4,10,20,0.70);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.fishing-block {
  margin-bottom: 28px;
}

.fishing-block h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.fishing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fishing-tags span {
  background: rgba(10,15,30,0.75);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.fishing-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fo-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(10,15,30,0.80);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.fo-icon { font-size: 22px; margin-top: 2px; }

.fo-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.fo-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .fishing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- LOCATIONS ---- */
.locations {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.location-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}

.location-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.location-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.location-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.location-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-tags span {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- WHY US ---- */
.why-us {
  background: var(--navy);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-eyebrow { text-align: left; }

.why-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.why-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

.why-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}

.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-item span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(201,168,76,0.3);
}

.feature-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--navy2); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gold);
  opacity: 0.7;
}

/* ---- BOOKING ---- */
.booking {
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-text .section-eyebrow { text-align: left; }

.booking-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-text > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.booking-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-item {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--navy2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted); }
.booking-form select option { background: var(--navy2); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

/* ---- ABOUT ---- */
.about {
  background: var(--navy2);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-eyebrow { text-align: left; }

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-quote {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-quote cite {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.footer-policy {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: inherit;
}

.policy-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #C9A84C;
  margin-bottom: 12px;
  font-weight: 500;
}

.policy-text {
  font-size: 11px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 8px;
}

/* ---- SUBSCRIBE SECTION ---- */
.subscribe-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.subscribe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: #f1f5f9;
  margin-bottom: 16px;
}
.subscribe-desc {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
}
.subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-input {
    min-width: 100%;
  }
  .subscribe-btn {
    width: 100%;
  }
}
.subscribe-input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  color: #f1f5f9;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
.subscribe-input:focus {
  border-color: #C9A84C;
}
.subscribe-input::placeholder {
  color: #64748b;
}
.subscribe-btn {
  padding: 14px 32px;
  white-space: nowrap;
}
.subscribe-confirm {
  color: #C9A84C;
  font-size: 15px;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner .btn { display: none; }
  .hamburger { display: block; }

  .hero-title { font-size: 52px; }
  .section-header h2 { font-size: 38px; }

  .intro-grid { flex-direction: column; gap: 24px; }
  .intro-divider { width: 60px; height: 1px; }
  .intro-item { padding: 0 20px; }

  .type-grid { grid-template-columns: 1fr; }
  .type-img { height: 480px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .fleet-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section-header h2 { font-size: 32px; }
}

/* ---- AVAILABILITY CALENDAR MODAL ---- */
.cal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(2,6,14,0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cal-modal-overlay.open {
  display: flex;
}

.cal-modal-box {
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: calIn 0.3s ease;
}

@keyframes calIn {
  from { opacity:0; transform: translateY(24px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.cal-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}

.cal-modal-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cal-modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
}

.cal-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.cal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cal-modal-body {
  padding: 28px 32px;
}

/* Custom calendar grid */
.cal-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--muted);
  align-items: center;
}

.cal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.cal-dot.available { background: #22c55e; }
.cal-dot.booked    { background: #ef4444; }

.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cal-month-nav h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cal-nav-btn:hover {
  background: rgba(201,168,76,0.12);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.cal-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
  border: 1px solid transparent;
}

.cal-day:hover:not(.booked):not(.past):not(.empty) {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}

.cal-day.today {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
  font-weight: 600;
}

.cal-day.booked {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day.past {
  color: var(--navy4);
  cursor: default;
}

.cal-day.empty { cursor: default; }

.cal-day.selected {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.cal-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cal-cta p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
}
