/* ============================================================
   CAJUN DIVING — style.css
   Brand palette derived from logo:
   Teal green, gold rope, cream, dark bayou
   Font: Playfair Display (display) + Source Serif 4 (body)
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --teal:        #1e6e5a;
  --teal-dark:   #124840;
  --teal-light:  #2d9a7a;
  --teal-pale:   #e6f4f0;
  --gold:        #c9a050;
  --gold-dark:   #9e7830;
  --gold-light:  #e8c878;
  --bayou:       #0d1f1a;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --text:        #1a2e28;
  --text-light:  #4a6660;
  --border:      #cde0da;
  --shadow:      0 4px 24px rgba(14,42,34,.15);
  --shadow-lg:   0 12px 48px rgba(14,42,34,.22);
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.22; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
p  { color: var(--text-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-dark { background: var(--bayou); color: var(--cream); }
.section-dark p { color: rgba(245,240,232,.7); }
.section-teal { background: var(--teal); color: var(--white); }
.section-teal p { color: rgba(255,255,255,.8); }
.section-cream { background: var(--cream); }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bayou);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head { margin-bottom: 52px; }
.section-head .tag { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.divider {
  width: 52px; height: 3px;
  background: var(--gold);
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Space Mono', monospace;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--bayou);
  box-shadow: 0 4px 16px rgba(201,160,80,.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,160,80,.4);
}
.btn-outline {
  border: 2px solid currentColor;
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,110,90,.3);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,110,90,.35);
}
.btn-sm { padding: 9px 18px; font-size: .75rem; }
.btn-lg { padding: 17px 40px; font-size: .88rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--bayou);
  border-bottom: 1px solid rgba(201,160,80,.2);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-wrap {
  display: flex; align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-main {
  display: flex; align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,240,232,.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201,160,80,.1);
}
.nav-cta {
  background: var(--gold);
  color: var(--bayou) !important;
  padding: 9px 18px;
  border-radius: 8px;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bayou);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a2a20 0%, #1a5040 40%, #0d3028 70%, #081810 100%);
  /* REPLACE: background-image: url('/images/hero-bg.jpg'); */
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,31,26,.85) 50%, rgba(13,31,26,.35) 100%);
}
/* Animated bubbles */
.hero-bubbles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(45,154,122,.15);
  border: 1px solid rgba(45,154,122,.25);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-logo-large {
  width: 200px;
  margin-bottom: 32px;
  filter: drop-shadow(0 4px 24px rgba(201,160,80,.3));
}
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1.12rem;
  color: rgba(245,240,232,.8);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.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(245,240,232,.5);
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll span { font-size: 1.2rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  /* REPLACE each card img with: <img src="/images/card-name.jpg" alt="..."> */
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px 28px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card-body p  { font-size: .92rem; margin-bottom: 16px; }
.card-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 16px;
}
.card-meta-item {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 5px;
}
.card-meta-item::before { content: '•'; color: var(--gold); }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}
.card-price span { font-size: .9rem; font-weight: 400; color: var(--text-light); }

/* ── Grid layouts ───────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

/* ── About strip ────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d3028, #2d6e5a);
  /* REPLACE: background-image: url('/images/about.jpg'); */
  background-size: cover;
}
.about-text .tag { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 32px;
}
.stat-box {
  padding: 20px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
}

/* ── Credentials bar ────────────────────────────────────────── */
.creds-bar {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 52px 0;
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.cred-item {
  text-align: center;
  color: rgba(255,255,255,.9);
}
.cred-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.cred-item h4 {
  font-family: 'Space Mono', monospace;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.cred-item p { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; }

/* ── Carousel ───────────────────────────────────────────────── */
.carousel-section { background: var(--bayou); padding: 0; }
.carousel-wrap { position: relative; overflow: hidden; aspect-ratio: 16/7; }
.carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.77,0,.175,1);
  height: 100%;
}
.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* REPLACE each slide img with real photo */
  background: linear-gradient(135deg, #0d2820 0%, #1a5540 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.carousel-slide-img img { width:100%; height:100%; object-fit:cover; }
.carousel-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,31,26,.85), transparent);
  padding: 60px 52px 40px;
}
.carousel-caption h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 6px; }
.carousel-caption p  { color: rgba(245,240,232,.8); font-size: 1rem; margin: 0; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: white; font-size: 1.3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: var(--bayou); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots {
  display: flex; justify-content: center;
  gap: 8px; padding: 20px 0;
  background: var(--bayou);
}
.carousel-dot {
  width: 28px; height: 4px;
  background: rgba(245,240,232,.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active { background: var(--gold); width: 48px; }
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 12px 0 24px;
  background: var(--bayou);
}
.carousel-pause {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  color: rgba(245,240,232,.6);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 16px;
  border-radius: 99px;
  transition: all var(--transition);
}
.carousel-pause:hover { background: rgba(201,160,80,.2); color: var(--gold); }

/* ── Photo Gallery ──────────────────────────────────────────── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 99px;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-light);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  /* REPLACE: use real photos */
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,26,.55);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
  color: white; font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  max-width: 90vw; max-height: 90vh;
  position: relative;
}
.lightbox-inner img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  color: white; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--bayou); }

/* ── Trip / Class cards ─────────────────────────────────────── */
.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trip-img {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  /* REPLACE: background-image: url('/images/trip-name.jpg'); */
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 20px;
  min-height: 200px;
}
.trip-img img { width:100%; height:100%; object-fit:cover; }
.difficulty {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}
.diff-beginner   { background: #d4edda; color: #1a5c34; }
.diff-intermediate { background: #fff3cd; color: #7d5a00; }
.diff-advanced   { background: #f8d7da; color: #721c24; }
.trip-body { padding: 28px 32px; }
.trip-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.trip-body p  { font-size: .92rem; margin-bottom: 16px; }
.trip-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.trip-detail-item { text-align: center; }
.trip-detail-label {
  font-family: 'Space Mono', monospace;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.trip-detail-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal);
}
.trip-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.seats-badge {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  color: var(--text-light);
}
.seats-badge strong { color: var(--teal); }

/* ── Rental grid ────────────────────────────────────────────── */
.rental-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.rental-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rental-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.rental-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.rental-card p  { font-size: .88rem; margin-bottom: 14px; flex: 1; }
.rental-price   { margin-bottom: 16px; }
.rental-price .price-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal);
  display: block;
}
.rental-price .price-week {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  color: var(--text-light);
}
.avail-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Space Mono', monospace;
  font-size: .68rem;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.avail-yes { background: #d4edda; color: #1a5c34; }
.avail-limited { background: #fff3cd; color: #7d5a00; }
.avail-no  { background: #f8d7da; color: #721c24; }
.avail-badge::before { content: '●'; font-size: .55rem; }

/* ── Policy box ─────────────────────────────────────────────── */
.policy-box {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border-left: 4px solid var(--teal);
}
.policy-box h3 { color: var(--teal-dark); margin-bottom: 20px; }
.policy-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text-light);
}
.policy-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: .85rem;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(14,42,34,.07);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: var(--teal);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 24px; }
.faq-answer p { font-size: .95rem; line-height: 1.75; }

/* ── Chat/Login page ────────────────────────────────────────── */
.chat-hero {
  background: linear-gradient(135deg, var(--bayou) 0%, #1a3a30 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--cream);
}
.chat-hero h1 { color: var(--cream); margin-bottom: 14px; }
.chat-hero p  { color: rgba(245,240,232,.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.chat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 72px 0;
}
.chat-info { padding-right: 20px; }
.chat-info h2 { margin-bottom: 16px; }
.chat-info p  { margin-bottom: 20px; }
.chat-use-list { margin: 24px 0; }
.chat-use-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--text-light);
}
.chat-use-list li::before { content: '🤿'; font-size: 1rem; }
.launch-box {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.launch-box h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.launch-box p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.btn-launch {
  background: var(--gold);
  color: var(--bayou);
  font-size: 1rem;
  padding: 18px 48px;
  border-radius: var(--radius);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(201,160,80,.4);
  transition: all var(--transition);
  text-decoration: none;
}
.btn-launch:hover {
  background: var(--white);
  color: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,160,80,.45);
}
.login-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.login-form h3 { margin-bottom: 6px; }
.login-form .sub { font-size: .88rem; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--teal); }
.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.form-link {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  color: var(--text-light);
  margin-top: 4px;
}
.form-link a { color: var(--teal); }
.divider-or {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 20px 0;
}
.divider-or::before, .divider-or::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}
.security-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  font-size: .8rem;
  color: var(--teal-dark);
  display: flex; align-items: flex-start; gap: 8px;
}

/* ── Contact section ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a3028, #2d6e5a);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  font-family: 'Space Mono', monospace;
  text-align: center;
  padding: 20px;
  /* REPLACE: add Google Maps embed here */
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bayou);
  color: rgba(245,240,232,.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,.1);
}
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,.7);
  font-size: .9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--bayou); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(245,240,232,.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
}
.footer-bottom p {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: rgba(245,240,232,.4);
  margin: 0;
}
.footer-bottom a { color: var(--gold); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bayou) 0%, #1a3a30 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(30,110,90,.25) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p  { color: rgba(245,240,232,.7); font-size: 1.05rem; max-width: 540px; }
.breadcrumb {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  color: rgba(245,240,232,.45);
  margin-bottom: 16px;
  letter-spacing: .05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trip-card { grid-template-columns: 220px 1fr; }
}
@media (max-width: 860px) {
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .chat-layout { grid-template-columns: 1fr; }
  .trip-card { grid-template-columns: 1fr; }
  .trip-img { min-height: 180px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 680px) {
  :root { --nav-h: 62px; }
  .nav-main { display: none; flex-direction: column; align-items: stretch; padding: 16px; }
  .nav-main.open {
    display: flex;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bayou);
    border-bottom: 1px solid rgba(201,160,80,.2);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    z-index: 899;
  }
  .nav-link { padding: 12px 16px; font-size: .78rem; }
  .nav-cta  { text-align: center; margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: 14px 28px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-wrap { aspect-ratio: 4/3; }
  .login-form { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trip-details { grid-template-columns: repeat(2,1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .chat-layout { padding: 44px 0; }
}
