/* ============================================================
   SUNDANCE HAUS — Global Styles
   Colors: deep mountain green + golden amber + warm off-white
   ============================================================ */

:root {
  --green-deep:   #1a3a2e;
  --green-dark:   #0f1f18;
  --green-mid:    #2d5940;
  --amber:        #c8a45a;
  --amber-light:  #e8c97a;
  --cream:        #f5f1eb;
  --cream-dark:   #e8e2d9;
  --text:         #2d2d2d;
  --text-light:   #5a5a5a;
  --white:        #ffffff;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius:       8px;
  --shadow:       0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.15);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--amber); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ── NAV ── */
nav {
  background: var(--green-deep);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: var(--green-dark) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.875rem;
}
.nav-cta:hover { background: var(--amber-light) !important; color: var(--green-dark) !important; }

@media (max-width: 768px) {
  .nav-links { gap: 14px; }
  .nav-links li.hide-mobile { display: none; }
}
@media (max-width: 480px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 60%, #2d5940 100%);
  color: var(--white);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-amber {
  background: rgba(200, 164, 90, 0.20);
  border-color: var(--amber);
  color: var(--amber-light);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--green-dark);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.50);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-green {
  background: var(--green-deep);
  color: var(--white);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: var(--shadow); }

/* ── VALUE BANNER ── */
.value-banner {
  background: var(--amber);
  color: var(--green-dark);
  text-align: center;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
}
.value-banner span { opacity: 0.8; font-weight: 400; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 28px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ── FEATURE LIST ITEMS ── */
.feature-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-text h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ── PERK CARDS (gear) ── */
.perk-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green-deep);
}
.perk-card .perk-icon { font-size: 2.5rem; margin-bottom: 14px; }
.perk-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--green-deep); margin-bottom: 8px; }
.perk-card .value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(200,164,90,0.12);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.perk-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }

/* ── STAT BOXES ── */
.stat-box {
  background: var(--green-deep);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.stat-box .stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--cream-dark);
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p { font-size: 1rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 16px; position: relative; }
.testimonial-author { font-size: 0.875rem; font-weight: 700; color: var(--green-deep); }
.testimonial-author span { font-weight: 400; color: var(--text-light); }

/* ── BOOKING CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-strip p { color: rgba(255,255,255,0.80); font-size: 1.1rem; max-width: 520px; margin: 0 auto 32px; }

/* ── AMENITY GRID ── */
.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.amenity-list li::before { content: '✓'; color: var(--green-mid); font-weight: 700; }

/* ── COMPARISON TABLE ── */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 0.875rem; }
.comp-table th {
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.comp-table td { padding: 11px 16px; border-bottom: 1px solid var(--cream-dark); }
.comp-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.comp-table tr.highlight td { background: rgba(200,164,90,0.12); font-weight: 600; }
.check-yes { color: var(--green-mid); font-weight: 700; }
.check-no  { color: #b0b0b0; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 40px 20px 28px;
  text-align: center;
  font-size: 0.875rem;
}
footer a { color: var(--amber); }
footer .footer-nav { margin-bottom: 20px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
footer .footer-nav a { color: rgba(255,255,255,0.65); }
footer .footer-nav a:hover { color: var(--amber); }

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-style: italic;
}

/* ── INLINE HIGHLIGHT ── */
.highlight-box {
  background: rgba(200,164,90,0.12);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.highlight-box strong { color: var(--green-deep); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-green { color: var(--green-deep); }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ── FAQ PAGE ── */
.faq-category { margin-bottom: 32px; }
.faq-category h2 { font-size: 1.75rem; font-weight: 800; color: var(--green-deep); margin-bottom: 0; }
.faq-item { border-bottom: 1px solid rgba(37,68,37,0.1); padding: 28px 0; }
.faq-item:last-of-type { border-bottom: none; }
.faq-item h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 12px; }
.faq-item p { color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.faq-item p:last-child { margin-bottom: 0; }
.faq-item a { color: var(--green-mid); text-decoration: underline; }
.faq-item a:hover { color: var(--green-deep); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { padding: 60px 20px 56px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
