/* =========================================
   AMIHAN CHARTERS — GLOBAL STYLESHEET
   Bright Tropical · LGBT Sailing · Bahamas
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  --navy:       #182987;
  --navy-dark:  #0f1a5a;
  --teal:       #2BA5DF;
  --teal-light: #6ec9f0;
  --gold:       #FDBB2C;
  --gold-dark:  #e0a010;
  --white:      #FFFFFF;
  --off-white:  #F4F9FD;
  --text:       #1A1A2E;
  --text-mid:   #3D4A6B;
  --text-light: #7A8AAD;
  --border:     #DDE8F5;

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(24,41,135,0.08);
  --shadow:     0 6px 32px rgba(24,41,135,0.12);
  --shadow-lg:  0 16px 60px rgba(24,41,135,0.18);

  --nav-h: 80px;
  --section-gap: 100px;
  --max-w: 1160px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
  display: block;
}

/* ─── Layout Utilities ─── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-gap) 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

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

.flex     { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16   { gap: 16px; }
.gap-24   { gap: 24px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,187,44,0.4);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 120px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(253,187,44,0.4);
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--off-white); color: var(--teal); }
.nav-mobile .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  margin-top: 8px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy); /* fallback while image loads */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24,41,135,0.62) 0%,
    rgba(24,41,135,0.35) 50%,
    rgba(43,165,223,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 20px;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { opacity: 0.7; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Inner page hero (shorter) */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--navy); /* fallback while image loads */
}
.page-hero .hero-bg::after {
  background: linear-gradient(
    to top,
    rgba(24,41,135,0.75) 0%,
    rgba(24,41,135,0.3) 60%,
    transparent 100%
  );
}
.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  color: var(--gold);
  position: relative;
  z-index: 2;
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p  { font-size: 0.93rem; margin-bottom: 16px; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

/* ─── Section Headings ─── */
.section-head {
  margin-bottom: 56px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p   { max-width: 600px; font-size: 1.05rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ─── Divider ─── */
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }

/* ─── Feature Strips ─── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse .feature-img { order: 2; }
.feature-split.reverse .feature-text { order: 1; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.feature-text h2 { margin-bottom: 16px; }
.feature-text p  { margin-bottom: 24px; }

/* ─── Why Amihan Strip ─── */
.why-strip {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.why-strip h2 { color: var(--white); margin-bottom: 16px; }
.why-strip .divider { background: var(--gold); }
.why-strip p { color: rgba(255,255,255,0.8); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-item { text-align: center; }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-item h4 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.why-item p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* ─── Photo Strip ─── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 340px;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }

/* ─── Package Cards ─── */
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}
.pkg-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.pkg-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}
.pkg-duration {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.pkg-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pkg-card p  { font-size: 0.93rem; margin-bottom: 20px; }
.pkg-includes {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}
.pkg-includes span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 4px 0;
}
.pkg-includes span::before { content: '✓  '; color: var(--teal); font-weight: 700; }
.pkg-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* ─── Event Cards ─── */
.event-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all 0.3s ease;
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.event-card-img { height: 200px; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.event-dates {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-card h3 { font-size: 1.3rem; }
.event-card p  { font-size: 0.92rem; }
.event-card .btn { align-self: flex-start; margin-top: 8px; }

/* ─── Vessel Specs ─── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-item {
  background: var(--white);
  padding: 28px;
  text-align: center;
}
.spec-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.spec-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── Gallery Grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ─── Contact Form ─── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── Testimonials ─── */
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.3;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-top: 24px;
}
.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-location {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ─── Destination Cards ─── */
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,41,135,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.dest-overlay h3 { color: var(--white); margin-bottom: 6px; font-size: 1.35rem; }
.dest-overlay p  { color: rgba(255,255,255,0.82); font-size: 0.88rem; }

/* ─── Banner / CTA Strip ─── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a9e 100%);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Photos/IMG_6626.jpeg') center/cover no-repeat;
  opacity: 0.15;
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2  { color: var(--white); margin-bottom: 16px; }
.cta-banner p   { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btn-group  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--teal);
  padding: 48px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.3); }
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-pride {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pride-bar {
  display: flex;
  gap: 2px;
}
.pride-bar span {
  width: 14px;
  height: 8px;
  border-radius: 2px;
}

/* ─── Accordion ─── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--teal); }
.accordion-icon {
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 0 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
.accordion-item.open .accordion-body { display: block; }

/* ─── Breadcrumb ─── */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-inner .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { height: 85vh; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-split.reverse .feature-img { order: 0; }
  .feature-split.reverse .feature-text { order: 0; }
  .feature-img img { height: 300px; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 280px; }

  .event-card { grid-template-columns: 1fr; }
  .event-card-img { height: 200px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .specs-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats-inner .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.3); }
  .stats-inner .stat-item:nth-child(3) { border-right: none; }
  .stats-inner .stat-item { padding: 20px; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { height: 45vh; padding-bottom: 40px; }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .why-grid { grid-template-columns: 1fr; }
  .photo-strip { height: 200px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ─── Page-specific accent colors ─── */
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-teal      { background: var(--teal); }
.text-navy    { color: var(--navy); }
.text-teal    { color: var(--teal); }
.text-gold    { color: var(--gold); }

/* ─── Active nav link ─── */
.nav-links a.active::after { width: 100%; }
