/* ============================================================
   BLUE WATER SCHOOL OF SURFING — GLOBAL STYLES
   ============================================================ */

@font-face {
  font-family: 'Righteous';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/righteous-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/nunito-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --ocean-deep:    #0A3D62;
  --ocean:         #0E6BA8;
  --ocean-light:   #00BFFF;
  --teal:          #0ABFBC;
  --teal-light:    #E0F7FA;
  --coral:         #FF6B35;
  --coral-light:   #FFF0EB;
  --sand:          #F5E6C8;
  --sand-light:    #FDFAF4;
  --white:         #FFFFFF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-600:      #4B5563;
  --gray-800:      #1F2937;
  --gray-900:      #111827;

  --font-display:  'Righteous', cursive;
  --font-body:     'Nunito', sans-serif;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 16px rgba(10,61,98,0.12);
  --shadow-lg:     0 16px 40px rgba(10,61,98,0.16);
  --shadow-coral:  0 8px 24px rgba(255,107,53,0.3);
  --shadow-ocean:  0 8px 24px rgba(14,107,168,0.3);

  --transition:    all 0.25s ease;
  --transition-slow: all 0.4s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--gray-900);
}

.display-xl { font-size: clamp(2.5rem, 7vw, 5.5rem); }
.display-lg { font-size: clamp(2rem, 5vw, 3.5rem); }
.display-md { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.display-sm { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.text-ocean      { color: var(--ocean); }
.text-ocean-deep { color: var(--ocean-deep); }
.text-coral      { color: var(--coral); }
.text-teal       { color: var(--teal); }
.text-sand       { color: var(--sand); }
.text-white      { color: var(--white); }

.font-display { font-family: var(--font-display); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: #e85a28;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

.btn-secondary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: var(--shadow-ocean);
}
.btn-secondary:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-outline-ocean {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline-ocean:hover {
  background: var(--ocean);
  color: white;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── WAVE DIVIDERS ──────────────────────────────────────────── */
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

/* ── SITE HEADER ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-slow);
  background: transparent;
}

#site-header.scrolled {
  background: rgba(10,61,98,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .logo-name {
  font-family: var(--font-display);
  color: white;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-logo-text .logo-tagline {
  color: var(--ocean-light);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--coral) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  padding: 0.5rem 1.25rem !important;
  box-shadow: var(--shadow-coral);
}

.nav-cta:hover {
  background: #e85a28 !important;
  transform: translateY(-1px);
}

/* Mobile nav */
#nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
}

#nav-toggle:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 900px) {
  #nav-toggle { display: flex; }

  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ocean-deep);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  #nav-menu.nav-open {
    max-height: 500px;
    padding: 1rem 0 1.5rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.25rem;
  }

  .nav-links a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin-top: 0.5rem !important;
    text-align: center;
  }
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,61,98,0.75) 0%,
    rgba(10,61,98,0.45) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--ocean-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 .accent {
  color: var(--ocean-light);
  display: block;
}

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  line-height: 1;
}

.hero-stat .stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(6px); }
  60% { transform: translateX(-50%) translateY(3px); }
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; color: var(--gray-900); }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

/* ── PROGRAM CARDS ──────────────────────────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
}

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

.program-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.program-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.program-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-card-body h3 {
  font-size: 1.3rem;
  color: var(--gray-900);
}

.program-card-body p {
  color: var(--gray-600);
  font-size: 0.9rem;
  flex: 1;
}

.program-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.meta-pill svg { width: 12px; height: 12px; }

.program-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.program-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ocean-deep);
}

.program-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  display: block;
  margin-top: -4px;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,191,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.05) 0%, transparent 60%);
}

.testimonial-carousel { position: relative; }

.testimonial-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

#testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card .stars {
  color: #FFC107;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  color: var(--ocean-light);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
}

.testimonial-card cite span {
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.testimonial-btn:hover { background: rgba(255,255,255,0.1); }

#testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--ocean-light);
  width: 24px;
  border-radius: 4px;
}

/* ── TRUST BADGES ───────────────────────────────────────────── */
.trust-strip {
  background: var(--sand-light);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 700;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--ocean);
  flex-shrink: 0;
}

/* ── FEATURE SECTION ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.feature-icon-ocean { background: var(--teal-light); }
.feature-icon-coral { background: var(--coral-light); }
.feature-icon-sand  { background: var(--sand); }

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── FORMS ──────────────────────────────────────────────────── */
.form-section {
  background: var(--sand-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
}

@media (max-width: 600px) { .form-section { padding: 2rem 1.5rem; } }

.form-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--ocean-deep);
}

.form-subtitle {
  color: var(--gray-600);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700, #374151);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label span { color: var(--coral); }

.form-control {
  padding: 0.75rem 1rem;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(14,107,168,0.12);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

select[multiple].form-control {
  background-image: none;
  padding-right: 1rem;
  height: auto;
  min-height: 120px;
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  background: var(--coral);
  color: white;
  font-family: var(--font-body);
  font-weight: 800;
  box-shadow: var(--shadow-coral);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #e85a28;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--teal-light);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10,191,188,0.2);
  gap: 1rem;
}

.form-success h3 { color: var(--ocean-deep); font-size: 1.5rem; }
.form-success p  { color: var(--gray-600); }
.form-success .success-icon { font-size: 3rem; }

.form-error-msg {
  display: none;
  color: #DC2626;
  background: #FEF2F2;
  border: 1px solid #FEE2E2;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.about-img-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.about-img-grid .img-main {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 2/3;
}

.about-img-grid .img-side {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }

.about-content h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

.about-content p { color: var(--gray-600); line-height: 1.8; }

.about-achievements {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.achievement {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.achievement .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--ocean);
  line-height: 1;
}

.achievement .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

/* ── MAP SECTION ────────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item.span-2 { grid-column: span 2; aspect-ratio: 2/1; }

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,61,98,0);
  transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(10,61,98,0.2); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ocean-deep);
  padding: 6rem 0 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,61,98,0.6) 0%,
    rgba(10,61,98,0.8) 100%
  );
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 500px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  font-weight: 600;
}

.breadcrumb a { color: var(--ocean-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CAMPS PAGE SPECIFICS ───────────────────────────────────── */
.camp-weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.week-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}

.week-card.available {
  cursor: pointer;
  border-color: var(--ocean-light);
}

.week-card.available:hover {
  border-color: var(--ocean);
  box-shadow: var(--shadow-sm);
}

.week-card.sold-out { opacity: 0.5; }

.week-card .week-label {
  font-family: var(--font-display);
  color: var(--ocean-deep);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.week-card .week-dates { font-size: 0.8rem; color: var(--gray-600); }

.week-card .week-status {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.week-card.available .week-status {
  background: var(--teal-light);
  color: var(--teal);
}

.week-card.low-stock .week-status {
  background: #FFF7ED;
  color: #C2410C;
}

.week-card.sold-out .week-status {
  background: var(--gray-100);
  color: var(--gray-400);
}

/* ── PRICING CARDS ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1.5px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-slow);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--ocean);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--ocean);
  background: linear-gradient(135deg, rgba(14,107,168,0.03), rgba(0,191,255,0.04));
}

.pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card .price-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-card .price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ocean-deep);
  line-height: 1;
}

.pricing-card .price-unit {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SPONSOR/PARTNER LOGOS ──────────────────────────────────── */
.sponsors-strip {
  padding: 2.5rem 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.sponsors-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.sponsor-logo {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  object-fit: contain;
}

.sponsor-logo:hover { opacity: 0.8; filter: grayscale(0%); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--ocean-deep);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 1.5rem;
  position: relative;
}

#site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--ocean-light), var(--coral));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }


.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

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

.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-display);
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  font-weight: 600;
}

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

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ocean-light);
}

.footer-contact-item a { color: var(--ocean-light); transition: var(--transition); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='29'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 { color: white; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; }
.cta-band-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-balance { text-wrap: balance; }

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}

/* ── PRINT & ACCESSIBILITY ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--ocean-light);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

/* Founder grid */
.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .about-founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Photo frame */
.about-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,61,98,0.2);
}

.about-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--coral);
  color: white;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-photo-badge-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.about-photo-badge-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Stats row under photo */
.about-founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Story body */
.about-story-body {
  margin-bottom: 2rem;
}

.about-story-body p {
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Credentials */
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--teal-light);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.credential-badge svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-credentials { grid-template-columns: 1fr; }
}

/* ── Sandbar Section ───────────────────────────── */
.sandbar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .sandbar-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.sandbar-text p {
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sandbar-facts {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sandbar-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sandbar-fact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.sandbar-fact strong {
  display: block;
  color: var(--ocean-deep);
  font-size: 0.95rem;
  font-weight: 800;
}

.sandbar-fact span {
  display: block;
  color: var(--neutral-500);
  font-size: 0.875rem;
}

.rounded-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10,61,98,0.15);
  width: 100%;
  height: auto;
}

.sandbar-image {
  position: relative;
}

.sandbar-image-caption {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--neutral-500);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.sandbar-image-caption svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--coral);
}

/* ── Values Grid ────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

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

.value-card {
  background: var(--sand-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,61,98,0.1);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin: 0;
}

/* ── Timeline ───────────────────────────────────── */
.timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.4375rem; /* -7px to center on the 2px line */
  top: 0.6rem;
  width: 14px;
  height: 14px;
  background: var(--ocean-light);
  border-radius: 50%;
  border: 3px solid var(--ocean-deep);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ocean-light);
  margin-bottom: 0.25rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.4rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}

/* ── bg-ocean-deep utility ──────────────────────── */
.bg-ocean-deep {
  background-color: var(--ocean-deep);
}

/* ── text-center utility ────────────────────────── */
.text-center { text-align: center; }


/* ── BIRTHDAY / CORAL BUTTON ───────────────────────────────── */
.btn-coral {
  background: var(--coral);
  color: white;
  border: 2px solid var(--coral);
}
.btn-coral:hover {
  background: #e55a25;
  border-color: #e55a25;
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   30TH ANNIVERSARY BANNER
═══════════════════════════════════════════════════════════════ */
.anniversary-banner {
  background: linear-gradient(90deg, #0A2B45 0%, #0E4D6C 35%, #0E5C85 50%, #0E4D6C 65%, #0A2B45 100%);
  border-top: 3px solid #DAA520;
  border-bottom: 3px solid #DAA520;
  padding: 1.25rem 0;
  position: relative;
  overflow: hidden;
}

.anniversary-banner::before {
  content: '★ 30 ★';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(218,165,32,0.06);
  pointer-events: none;
  line-height: 1;
}

.anniversary-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.anniversary-badge {
  background: #DAA520;
  color: #0A2B45;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.anniversary-text {
  flex: 1;
  min-width: 200px;
}

.anniversary-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #DAA520;
  display: block;
  margin-bottom: 0.2rem;
}

.anniversary-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.anniversary-btn {
  background: #DAA520 !important;
  color: #0A2B45 !important;
  border-color: #DAA520 !important;
  font-weight: 900;
  flex-shrink: 0;
}

.anniversary-btn:hover {
  background: #c4941a !important;
  border-color: #c4941a !important;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .anniversary-banner::before { display: none; }
  .anniversary-content { gap: 0.75rem; }
  .anniversary-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   SANDBAR PROMO SECTION
   Same pattern as .hero / .page-hero — background-image div +
   gradient overlay div + content sits on top via z-index.
═══════════════════════════════════════════════════════════════ */
.sandbar-promo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean-deep);
  padding: 5rem 0;
}

.sandbar-promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.sandbar-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,61,98,0.88) 0%,
    rgba(10,61,98,0.62) 50%,
    rgba(10,61,98,0.18) 100%
  );
}

.sandbar-promo-content {
  max-width: 580px;
}

.sandbar-promo-content h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}

.sandbar-promo-content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.sandbar-promo-credit {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .sandbar-promo {
    min-height: 0;
    padding: 3.5rem 0;
  }
  .sandbar-promo-bg { background-position: center center; }
  .sandbar-promo-overlay {
    background: rgba(10,61,98,0.78);
  }
}

/* ═══════════════════════════════════════════════════════════════
   OUTDOOR ADVENTURE SECTION
═══════════════════════════════════════════════════════════════ */
.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.adventure-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.adventure-item:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.adventure-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.adventure-item h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.adventure-item p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .adventure-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   CAMPS PAGE — COMBO INTRO (both camps above tabs)
═══════════════════════════════════════════════════════════════ */
.camp-combo-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

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

.camp-combo-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.camp-combo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.camp-combo-card .combo-icon { font-size: 2rem; line-height: 1; }

.camp-combo-card h3 {
  font-size: 1.2rem;
  color: var(--ocean-deep);
  margin: 0.25rem 0 0.1rem;
}

.camp-combo-card p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.camp-combo-card .combo-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-top: 0.25rem;
}

.camp-combo-card .combo-btn {
  margin-top: 0.75rem;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   CLINIC CARDS (proper CSS, replaces Tailwind class names)
═══════════════════════════════════════════════════════════════ */
.clinic-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.clinic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.clinic-card--soldout { opacity: 0.55; pointer-events: none; }

.clinic-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.clinic-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
}

.clinic-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.clinic-badge.badge--beginner     { background: var(--teal-light);   color: #0a7a78; }
.clinic-badge.badge--intermediate { background: #DBEAFE;              color: var(--ocean); }
.clinic-badge.badge--advanced     { background: var(--coral-light);   color: var(--coral); }

.clinic-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.clinic-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.clinic-meta-surfing { color: var(--ocean);  font-weight: 700; }
.clinic-meta-fishing { color: #9a6c00;       font-weight: 700; }

.clinic-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.clinic-card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.1rem;
}

.clinic-price-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ocean);
  line-height: 1;
}

.clinic-price-note { font-size: 0.72rem; color: var(--gray-400); }
.clinic-price-sep  { font-size: 0.8rem;  color: var(--gray-400); margin: 0 0.1rem; }

.clinic-status {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.clinic-status--open    { background: var(--teal-light); color: #0a7a78; }
.clinic-status--low     { background: #FFF7ED;            color: #D97706; }
.clinic-status--soldout { background: #FEF2F2;            color: #DC2626; }

/* ═══════════════════════════════════════════════════════════════
   FUTURE CAMPS NOTE (seasonal cycle)
═══════════════════════════════════════════════════════════════ */
.future-camps-note {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}

.future-camps-note h4 {
  color: var(--ocean-deep);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.future-camps-note p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.future-camps-note .season-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.season-pill {
  background: var(--teal-light);
  color: var(--ocean-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   NAMED RESPONSIVE GRIDS
   Use these classes on 2-col layout containers so responsive
   behaviour is reliable without fragile attribute selectors.
═══════════════════════════════════════════════════════════════ */

/* Contact page: contact info (narrow) + form (wide) */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* Homepage/contact: map (left) + info text (right) */
.map-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Generic equal 2-col content panels (camps, clinics intro) */
.content-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout-grid,
  .map-info-grid,
  .content-grid-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Fallback: also catch any remaining inline-style 2-col grids */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1.5fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
