/* Sabine Lake Charters — Premium Gulf Coast Charter Site */

:root {
  --navy: #0c1929;
  --navy-light: #152d4a;
  --teal: #0ea5c9;
  --teal-dark: #0891b2;
  --accent: #0ea5e9;
  --accent-light: #7dd3fc;
  --accent-dark: #0284c7;
  --cream: #f4f6f8;
  --cream-dark: #e2e8f0;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --shadow: 0 4px 24px rgba(12, 25, 41, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 25, 41, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.text-accent {
  color: var(--accent-light);
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: #0284c7;
  color: var(--white);
  border-color: #0284c7;
  box-shadow: 0 2px 12px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0369a1;
  border-color: #0369a1;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: #0284c7;
  border: 2px solid #0284c7;
}

.btn-secondary:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 25, 41, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 48px;
  width: auto;
}

.site-header.scrolled .logo img,
.site-header .logo img { height: 44px; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-desktop a:hover { color: var(--accent-light); }

.header-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}

@media (min-width: 900px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 37, 64, 0.7) 0%,
    rgba(10, 37, 64, 0.4) 40%,
    rgba(10, 37, 64, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 25, 41, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0f9ff;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .stars { color: #38bdf8; letter-spacing: 2px; }

.hero h1 {
  font-size: clamp(1.875rem, 4.5vw, 2.875rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-label--light {
  color: #7dd3fc;
}


.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-species {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
}

.hero-species span::after {
  content: '•';
  margin-left: 1rem;
  opacity: 0.5;
}

.hero-species span:last-child::after { display: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  margin-top: -1px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  text-align: center;
}

/* Custom feature icons */
.feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--teal-dark);
  transition: var(--transition);
}

.feature-icon > svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.feature-icon > svg use {
  stroke: var(--teal-dark);
}

.trust-item .feature-icon {
  margin-inline: auto;
}

.why-card .feature-icon {
  margin: 0 0 1rem;
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.why-card .feature-icon > svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
}

.why-card:hover .feature-icon,
.trust-item:hover .feature-icon {
  background: #e0f2fe;
  border-color: #7dd3fc;
  transform: none;
  box-shadow: none;
}

.why-card:hover .feature-icon > svg use,
.trust-item:hover .feature-icon > svg use {
  stroke: #0284c7;
}

.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even):not(.boat-section):not(.species-section):not(.cta-section) {
  background: var(--white);
}

/* Trip cards */
.trips-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .trips-grid { grid-template-columns: 1fr 1fr; }
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trip-card.featured {
  border: 2px solid #0ea5e9;
}

@media (min-width: 768px) {
  .trip-card.featured { grid-column: 1 / -1; flex-direction: row; }
  .trip-card.featured .trip-image { width: 45%; min-height: 320px; }
  .trip-card.featured .trip-body { flex: 1; }
}

.trip-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.trip-card.featured .trip-image { height: auto; }

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trip-card:hover .trip-image img { transform: scale(1.05); }

.trip-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #0284c7;
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.trip-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-body h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.trip-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.trip-features {
  margin-bottom: 1.5rem;
}

.trip-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.trip-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.trip-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.trip-duration {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trip-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.trip-price small {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

.trip-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Species — dark background */
.species-section {
  background: linear-gradient(145deg, #0c1929 0%, #0f2847 50%, #0e4d6e 100%);
  color: #f1f5f9;
  padding: 5rem 0;
}

.species-section .section-label {
  color: #7dd3fc;
}

.species-section .section-title {
  color: #ffffff;
}

.species-section .section-subtitle {
  color: rgba(241, 245, 249, 0.88);
}

.species-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0 1rem;
  margin: 0 -4vw;
  padding-inline: 4vw;
  scrollbar-width: none;
}

.species-slider::-webkit-scrollbar { display: none; }

.species-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.species-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.species-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.species-card .info {
  padding: 1.25rem;
}

.species-card h3 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.species-card p {
  font-size: 0.875rem;
  color: rgba(241, 245, 249, 0.8);
  line-height: 1.55;
}

/* Where we fish */
.locations-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover img { transform: scale(1.08); }

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10, 37, 64, 0.9));
}

.location-card .content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: var(--white);
}

.location-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Boat section — dark background (must beat section:nth-child even) */
.boat-section {
  background: linear-gradient(145deg, #0c1929 0%, #0f2847 45%, #0e4d6e 100%);
  color: #f1f5f9;
}

.boat-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

@media (min-width: 900px) {
  .boat-layout { grid-template-columns: 1fr 1fr; }
}

.boat-section .section-title {
  color: #ffffff;
}

.boat-section .section-subtitle {
  color: rgba(241, 245, 249, 0.88);
}

.boat-section .section-label,
.boat-section .section-label--light {
  color: #7dd3fc;
}

.boat-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.boat-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.boat-spec {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.boat-spec strong {
  display: block;
  font-size: 1.125rem;
  color: #bae6fd;
  margin-bottom: 0.25rem;
}

.boat-spec span {
  font-size: 0.8125rem;
  color: rgba(241, 245, 249, 0.75);
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.amenity-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f1f5f9;
}

.boat-section .amenity-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

/* Included */
.included-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.included-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Captains */
.captains-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 600px) {
  .captains-grid { grid-template-columns: repeat(2, 1fr); }
}

.captain-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}

.captain-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #0ea5e9;
}

.captain-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.captain-card .role {
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #0ea5e9;
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.review-card cite {
  font-style: normal;
  font-size: 0.875rem;
}

.review-card cite strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
}

.review-card cite span {
  color: var(--text-muted);
}

.review-trip {
  font-size: 0.75rem;
  color: var(--teal);
  margin-top: 0.5rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 220px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    grid-auto-rows: unset;
  }
  .gallery-item:first-child {
    grid-column: 1;
    grid-row: span 2;
    min-height: unset;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

/* How it works */
.steps-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--teal);
  transition: var(--transition);
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9375rem;
  opacity: 0.85;
}

.cta-contact a:hover { color: var(--accent-light); }

/* Footer */
.site-footer {
  background: #061a2c;
  color: rgba(248, 246, 241, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links ul li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--teal);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Booking placeholder notice */
.booking-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: normal;
}
