/* ============================================================
   FRESH COAST CAMPERS — style.css
   Forest green · Sand beige · Off-white · Wood tones
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:  #1e3a2f;
  --green-mid:   #2d5a3d;
  --green-light: #4a7c5e;
  --green-pale:  #e8f0eb;
  --sand:        #c8a96e;
  --sand-light:  #e8d9bb;
  --sand-pale:   #f7f1e6;
  --wood:        #8b5e3c;
  --wood-light:  #c4956a;
  --cream:       #faf8f3;
  --white:       #ffffff;
  --text-dark:   #1a2319;
  --text-mid:    #3d5245;
  --text-light:  #6b8070;
  --border:      #ddd6c5;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(30,58,47,.08);
  --shadow-md:   0 6px 24px rgba(30,58,47,.14);
  --shadow-lg:   0 16px 48px rgba(30,58,47,.18);
  --transition:  .28s cubic-bezier(.4,0,.2,1);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

/* ---------- 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);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 52px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,58,47,.3);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,47,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sand {
  background: var(--sand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,169,110,.35);
}
.btn-sand:hover {
  background: var(--wood-light);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background: rgba(30,58,47,.97);
}

.nav.scrolled {
  background: rgba(30,58,47,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--green-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sand);
  font-size: 1.2rem;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  line-height: 1.1;
}
.nav.scrolled .nav-logo-text { color: var(--white); }
.nav-logo-sub {
  font-size: .65rem;
  font-weight: 400;
  color: var(--sand-light);
  letter-spacing: .06em;
  transition: var(--transition);
}
.nav.scrolled .nav-logo-sub { color: var(--sand-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: var(--transition);
}
.nav.scrolled .nav-links a { color: rgba(255,255,255,.88); }
.nav-links a:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.nav.scrolled .nav-links a:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.nav-book {
  background: var(--sand) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(200,169,110,.4);
}
.nav-book:hover { background: var(--wood-light) !important; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.nav-mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav-mobile-toggle span { background: var(--white); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(160deg, rgba(30,58,47,.82) 0%, rgba(30,58,47,.55) 50%, rgba(30,58,47,.45) 100%),
    url('pictures/hero image.png') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--sand-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title span { color: var(--sand); }

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

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

.btn-hero-primary {
  background: var(--sand);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(200,169,110,.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-primary:hover { background: var(--wood-light); transform: translateY(-3px); }

.btn-hero-secondary {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  letter-spacing: .05em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 2px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

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

/* ---------- HOW IT WORKS ---------- */
.how-bg { background: var(--cream); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(to right, var(--sand), var(--green-light), var(--sand));
  opacity: .4;
}

.how-step {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.how-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.how-step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  background: var(--sand);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(200,169,110,.4);
}

.how-step-icon {
  width: 72px; height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.how-step:hover .how-step-icon {
  background: var(--green-dark);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.how-step p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---------- FEATURED CAMPER ---------- */
.camper-bg { background: var(--sand-pale); }

.camper-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.camper-images {
  position: relative;
}
.camper-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.camper-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.camper-img-main:hover img { transform: scale(1.04); }

.camper-img-thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.camper-img-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-sm);
}
.camper-img-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.camper-img-thumb:hover img { transform: scale(1.06); }

.camper-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--green-dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: .06em;
}

.camper-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.camper-info-sub {
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

.camper-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.camper-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.camper-spec:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}
.camper-spec-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.camper-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.camper-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.camper-price-night { color: var(--text-light); font-size: .9rem; }

.camper-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- CAMPGROUNDS ---------- */
.camps-bg { background: var(--cream); }

.camps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.camp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.camp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.camp-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.camp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.camp-card:hover .camp-card-img img { transform: scale(1.06); }

.camp-card-dist {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(30,58,47,.85);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.camp-card-body { padding: 20px; }
.camp-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.camp-card-body p {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}
.camp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ---------- GALLERY ---------- */
.gallery-bg { background: var(--green-dark); }
.gallery-bg .section-title { color: var(--white); }
.gallery-bg .section-subtitle { color: rgba(255,255,255,.65); }
.gallery-bg .section-label { color: var(--sand); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item-lg { grid-column: span 2; grid-row: span 2; }
.gallery-item-md { grid-column: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,47,.55);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

/* ---------- REVIEWS ---------- */
.reviews-bg { background: var(--sand-pale); }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: .1em;
}

.review-text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
}
.review-location {
  font-size: .78rem;
  color: var(--text-light);
}

/* ---------- BOOKING SECTION ---------- */
.booking-cta-bg {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}
.booking-cta-bg::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.booking-cta-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,169,110,.08);
}

.booking-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.booking-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.booking-cta-sub { color: rgba(255,255,255,.75); line-height: 1.65; }

.booking-cta-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
}
.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.widget-field {
  margin-bottom: 14px;
}
.widget-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.widget-field input,
.widget-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  -webkit-appearance: none;
}
.widget-field input:focus,
.widget-field select:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74,124,94,.15);
}
.widget-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.widget-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.widget-price-label { font-size: .88rem; color: var(--text-light); }
.widget-price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

/* ---------- FULL BOOKING PAGE ---------- */
.booking-page { padding: 120px 0 80px; }
.booking-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.booking-form-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.cal-header { font-size: .75rem; font-weight: 700; text-align: center; color: var(--text-light); padding: 6px 0; text-transform: uppercase; letter-spacing: .08em; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.cal-day:hover { background: var(--green-pale); }
.cal-day.booked { background: #fee2e2; color: #ef4444; cursor: not-allowed; pointer-events: none; }
.cal-day.past { opacity: .3; cursor: not-allowed; pointer-events: none; text-decoration: line-through; }
.cal-day.selected-start, .cal-day.selected-end { background: var(--green-dark); color: var(--white); font-weight: 700; }
.cal-day.in-range { background: #c8dece; color: var(--green-dark); }
.cal-day.today { border-color: var(--sand); font-weight: 700; }
.cal-day.other-month { opacity: .3; pointer-events: none; }

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.cal-nav button:hover { background: var(--green-dark); color: var(--white); }
.cal-month-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-dark);
}

.addons-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.addon-item:hover, .addon-item.active {
  border-color: var(--green-light);
  background: var(--green-pale);
}
.addon-item.active { border-color: var(--green-dark); }
.addon-left { display: flex; align-items: center; gap: 12px; }
.addon-icon { font-size: 1.4rem; }
.addon-name { font-weight: 600; font-size: .92rem; color: var(--text-dark); }
.addon-desc { font-size: .8rem; color: var(--text-light); }
.addon-price { font-weight: 700; color: var(--green-dark); }
.addon-check {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}
.addon-item.active .addon-check { background: var(--green-dark); border-color: var(--green-dark); }

.booking-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.summary-camper-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 16px;
}
.summary-camper-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.summary-subtitle { font-size: .82rem; color: var(--text-light); margin-bottom: 20px; }
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.summary-line:last-of-type { border-bottom: none; }
.summary-line-label { color: var(--text-mid); }
.summary-line-value { font-weight: 600; color: var(--text-dark); }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--green-dark);
}
.summary-total-label { font-weight: 700; color: var(--green-dark); font-size: 1rem; }
.summary-total-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
}
.deposit-note {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 12px;
  font-size: .82rem;
  color: var(--text-mid);
  margin-top: 14px;
  line-height: 1.5;
}
.deposit-note strong { color: var(--green-dark); }

/* ---------- CAMPER LISTING PAGE ---------- */
.listing-page { padding: 100px 0 80px; }
.listing-carousel {
  position: relative;
  margin-bottom: 48px;
}
.listing-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 12px;
}
.listing-main-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.listing-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.listing-thumb img { width: 100%; height: 100%; object-fit: cover; }
.listing-thumb.active { border-color: var(--green-dark); }

.listing-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.listing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.listing-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.listing-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--text-mid);
}
.listing-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--text-dark);
}

.listing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.listing-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: .88rem;
  color: var(--text-mid);
}
.amenity-item .icon { font-size: 1.2rem; }

.listing-sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.listing-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}
.listing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
}
.listing-price-unit { font-size: .9rem; color: var(--text-light); }

/* ---------- CAMPGROUNDS PAGE ---------- */
.parks-page { padding: 120px 0 80px; }
.parks-hero-text {
  text-align: center;
  margin-bottom: 60px;
}
.parks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.park-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.park-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.park-card-img { aspect-ratio: 16/9; overflow: hidden; }
.park-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.park-card:hover .park-card-img img { transform: scale(1.06); }
.park-card-body { padding: 24px; }
.park-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.park-card-dist { font-size: .82rem; color: var(--sand); font-weight: 600; margin-bottom: 10px; }
.park-card-body p { font-size: .9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.park-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.park-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---------- FAQ PAGE ---------- */
.faq-page { padding: 120px 0 80px; }
.faq-list { max-width: 720px; margin: 0 auto; margin-top: 48px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.faq-q:hover { background: var(--green-pale); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--green-dark); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-a-inner {
  padding-bottom: 20px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding: 120px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; font-weight: 600; color: var(--green-dark); }
.contact-info-sub { font-size: .85rem; color: var(--text-light); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74,124,94,.15);
}
.form-group textarea { min-height: 120px; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--green-dark);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  font-weight: 500;
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-sub { font-size: .82rem; margin-bottom: 14px; }
.footer-brand-desc { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--sand); }

.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--sand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-badges { display: flex; gap: 10px; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 4px;
}

/* ---------- STICKY BOOK BTN (mobile) ---------- */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(30,58,47,.12);
}
.sticky-book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-book-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}
.sticky-book-night { font-size: .8rem; color: var(--text-light); }

/* ---------- PAGE SYSTEM (SPA) ---------- */
.page { display: none; }
.page.active { display: block; }
#page-listing, #page-campgrounds, #page-faq, #page-contact { background: var(--sand-pale); }

/* ---------- SECTION ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); color: var(--sand); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  color: var(--white);
  font-size: 1.8rem;
  padding: 8px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .camper-layout,
  .booking-cta-inner,
  .listing-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .booking-cta-widget { min-width: unset; width: 100%; max-width: 480px; margin: 0 auto; }
  .booking-page-grid { grid-template-columns: 1fr; }
  .booking-summary-card { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-lg { grid-column: span 2; }
  .gallery-item-md { grid-column: span 1; }
  .how-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-stats { gap: 20px; }

  .how-steps { grid-template-columns: 1fr; }
  .camps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .parks-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-lg, .gallery-item-md { grid-column: span 1; }

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

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

  .sticky-book { display: block; }
  body { padding-bottom: 76px; }

  .trust-bar-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .camper-ctas { flex-direction: column; }
  .listing-thumbs { grid-template-columns: repeat(2, 1fr); }
}
