/* ============================================
   Camp Blue Ground — Main Stylesheet
   ============================================ */

:root {
  --primary:       #2d5a27;   /* deep forest green */
  --primary-dark:  #1e3d1a;
  --primary-light: #3d7a34;
  --accent:        #c8a84b;   /* warm golden amber */
  --accent-dark:   #a88830;
  --bg:            #fafaf7;
  --card:          #ffffff;
  --text:          #1a1a1a;
  --muted:         #5a6a54;
  --border:        #d4ddd1;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.10);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --radius:        0.75rem;
  --radius-sm:     0.375rem;
  --font-body:     'PT Sans', sans-serif;
  --font-headline: 'Playfair Display', Georgia, serif;
  --max-w:         1280px;
  --header-h:      72px;
}

*, *::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(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Typography ── */
.font-headline { font-family: var(--font-headline); }
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Unica One', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-primary:hover { background: var(--primary-light); }

.btn-secondary {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid transparent;
}
.btn-secondary:hover { background: var(--accent-dark); }

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border: 2px solid transparent;
  font-size: 1rem;
}
.btn-accent:hover { background: var(--accent-dark); }
.btn-accent:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-lg { padding: 0.8rem 2.25rem; font-size: 1.35rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.95rem; }

.btn-glow {
  box-shadow: 0 0 16px rgba(45, 90, 39, 0.35);
}
.btn-glow:hover { box-shadow: 0 0 24px rgba(45, 90, 39, 0.5); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 58, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-link:hover { opacity: 0.85; }

.logo-text {
  font-family: 'Unica One', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: 'Unica One', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-size: 1.25rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.main-nav a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.7); }

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.hamburger-btn {
  color: #fff;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.15); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-family: 'Unica One', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: #fff; }

/* ── Background Image Utility ── */
.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.overlay-dark { background: rgba(0,0,0,0.5); }

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

.hero-bg { position: absolute; inset: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 6rem 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-cta { margin-top: 2.5rem; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-card { background: var(--card); }
.section-alt { background: #f0f4ee; }

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  padding: 3rem 0;
  opacity: 1;
  color: var(--primary);
}

.section-divider svg {
  width: 44px;
  height: 44px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-divider svg:hover {
  transform: scale(1.18) translateY(-2px);
}

.cta-section { padding: 4rem 0; }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.opening-notice {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
}

/* ── Waitlist Card ── */
.waitlist-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
}

.waitlist-title {
  font-size: 1.85rem;
  color: var(--primary);
  font-weight: 700;
}
.waitlist-desc { margin-top: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.privacy-note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); }

/* ── Beta Camper Section ── */
.beta-card {
  max-width: 900px;
  margin: 0 auto;
}

.beta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 3rem;
  text-align: center;
}

.benefit-item {
  background: var(--card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.benefit-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-headline);
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}


/* ── Quote Sections ── */
.quote-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.quote-bg { position: absolute; inset: 0; }

.quote-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.rotating-quote, .quote-content blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-text {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  max-width: 850px;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  padding-bottom: 1.5rem;
}

.quote-cite {
  font-style: normal;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ── Cabin Carousel ── */
.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 600px;
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.6); }
.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Amenity Grid ── */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
}

.amenity-photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--card);
}

.amenity-photo-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.amenity-grid-3 .amenity-photo-card img {
  height: 380px;
}
.amenity-photo-card:hover img { transform: scale(1.03); }

/* ── CTA Card ── */
.cta-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-title {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 700;
}
.cta-desc { margin: 0.75rem 0 1.5rem; color: var(--muted); }

/* ── Two-Col Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-text .section-title { text-align: left; }

.camp-notice {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--card);
}
.two-col-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ── Amenity Icons ── */
.amenity-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-icon-item {
  text-align: center;
  padding: 1rem;
}

.amenity-icon-item svg {
  color: var(--primary);
  margin: 0 auto 1rem;
}

.amenity-icon-item h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.amenity-icon-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ── Shop Grid ── */
.shop-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.shop-item {
  text-align: center;
  padding: 1rem;
}

.shop-item svg {
  color: var(--primary);
  margin: 0 auto 1rem;
}

.shop-item h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.shop-item p { color: var(--muted); font-size: 0.95rem; }

.shop-item-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-spirit-photo {
  width: 100%;
  max-width: 240px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.shop-spirit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.shop-spirit-photo:hover img { transform: scale(1.05); }

.shop-coming-soon {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background: #e8f0e6;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* ── Story / Narrative ── */
.story-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* ── Property Photo Gallery ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  auto-rows: 240px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
}

.gallery-item.gallery-tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.story-text {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.9;
  text-align: left;
}

.story-text p + p { margin-top: 1.25rem; }

.cabin-desc-block {
  text-align: left;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.cabin-desc-block p + p { margin-top: 1rem; }

/* ── Footer ── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3.5rem 1.5rem;
}

.footer-brand {
  font-family: 'Unica One', sans-serif !important;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-col-title {
  font-family: 'Unica One', sans-serif !important;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-location svg { color: var(--accent); flex-shrink: 0; }

.footer-tagline { font-size: 0.9rem; }

.footer-contact-list li { margin-bottom: 0.5rem; }

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-list a svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--accent); }

.coming-soon-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

.cookie-inner p { font-size: 0.9rem; }
.cookie-inner a { text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.cookie-banner .btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 301;
  width: min(520px, calc(100vw - 2rem));
  max-height: 90vh;
  overflow-y: auto;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}
.modal-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ── Wizard Steps ── */
.wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 64px;
  text-align: center;
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.wizard-step.active .step-icon,
.wizard-step.completed .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(200, 168, 75, 0.5);
}

.wizard-step.completed .step-icon {
  transform: scale(1);
}

.wizard-step span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
  transition: color 0.3s;
}

.wizard-step.active span,
.wizard-step.completed span {
  color: #fff;
}

.step-line {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  margin-top: 20px;
  border-radius: 2px;
  transition: background 0.3s;
  min-width: 20px;
}
.step-line.completed { background: var(--accent); }

/* ── Wizard Panes ── */
.wizard-pane { display: none; }
.wizard-pane.active { display: block; }

.wizard-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
}
.wizard-intro { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

.wizard-section { margin-bottom: 1.25rem; }

.wizard-section-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.faq-item { margin-bottom: 1rem; }
.faq-q {
  font-weight: 700;
  font-size: 0.975rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.35rem;
}

.faq-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.faq-item p + p { margin-top: 0.5rem; }

.faq-item ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.faq-item li { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 0.25rem; }

.pro-tip {
  background: rgba(200, 168, 75, 0.15);
  border-left: 3px solid var(--accent);
  padding: 0.6rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.8) !important;
  margin-top: 0.5rem !important;
}

.bring-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bring-list li { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ── Wizard Checkbox ── */
.wizard-check {
  margin: 1.25rem 0 1rem;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.check-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.wizard-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.wizard-actions .btn-outline {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.wizard-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ── Booking Form ── */
.booking-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.form-group input,
.form-group textarea {
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

.form-group textarea { resize: vertical; }

/* ── What Comes Standard ── */
.standards-block {
  margin: 3rem auto;
  max-width: 1100px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.standards-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}
.standards-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.standard-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.standard-icon {
  background: #e8f0e6;
  color: var(--primary);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.standard-info h4 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.standard-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Teardrop Vibe Badge ── */
.badge-vibe {
  display: inline-block;
  background: #e8f0e6;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 700;
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border);
  line-height: 1.5;
}

/* ── Step 4 Form Radio Buttons ── */
.accommodation-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.25rem 0 0.5rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.radio-label:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.radio-label input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── Booking Success ── */
.booking-success {
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}
.booking-success svg {
  color: var(--accent);
  margin: 0 auto 1rem;
}
.booking-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.booking-success p { color: rgba(255,255,255,0.75); }

/* ── Outhouse Sub-Modal ── */
#outhouse-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#outhouse-overlay.open { opacity: 1; pointer-events: all; }

.sub-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 410;
  width: 90%;
  max-width: 520px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.sub-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.sub-modal .modal-close {
  color: var(--primary);
  top: 1rem;
  right: 1rem;
}
.outhouse-pics-trigger {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 0.25rem;
}
.outhouse-pics-trigger:hover {
  color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .main-nav { gap: 1.25rem; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-header-actions { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-text .section-title { text-align: center; }
  .standards-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-photo-card img { height: 380px; }

  .amenity-icons-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-location { justify-content: center; }
  .footer-contact-list a { justify-content: center; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .hero-section { min-height: 75vh; }
  .carousel-slide { height: 380px; }
  .amenity-icons-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-text { font-size: 1.2rem; }
  .cookie-inner { flex-direction: row; text-align: left; }
  .cookie-inner p { font-size: 0.8rem; flex: 1; min-width: 0; }
  .cookie-btns { flex-shrink: 0; }

  /* ── Booking Modal Mobile Refactoring ── */
  .modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
  }
  .modal.open {
    transform: translateY(0);
  }
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    z-index: 10;
  }
  .wizard-steps {
    padding-right: 0;
    margin: 0 auto 1.25rem;
    max-width: 300px;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
  .wizard-step {
    width: 36px;
    flex-shrink: 0;
  }
  .wizard-step span {
    display: none;
  }
  .step-icon {
    width: 36px;
    height: 36px;
    border-width: 1.5px;
  }
  .step-icon svg {
    width: 16px;
    height: 16px;
  }
  .step-line {
    margin-top: 0;
    flex: 0 1 36px;
    min-width: 8px;
    height: 2px;
  }
  .wizard-pane {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .wizard-title {
    font-size: 1.35rem;
    padding-right: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .wizard-intro {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }
  .wizard-section {
    margin-bottom: 1rem;
  }
  .wizard-section-title {
    margin-bottom: 0.5rem;
  }
  .faq-item {
    margin-bottom: 0.75rem;
  }
  .faq-q {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  .faq-item p,
  .faq-item li {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .pro-tip {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem !important;
    margin-top: 0.4rem !important;
  }
  .wizard-check {
    margin: 1rem 0;
    padding: 0.75rem;
  }
  .check-label {
    font-size: 0.85rem;
  }
  .check-label input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  .wizard-actions {
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.75rem;
  }
  .wizard-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    justify-content: center;
  }
  .radio-label {
    align-items: flex-start;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  .radio-label input[type=radio] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
  .booking-form {
    gap: 0.75rem;
  }
  .form-group {
    gap: 0.25rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  /* ── Sub-Modal Mobile Adjustments ── */
  .sub-modal {
    padding: 1.25rem;
    width: 95%;
  }
  .sub-modal-content img {
    height: 220px !important;
  }
}
