/* Starfall Lodge — recreated homepage styles */

:root {
  --charcoal: #272725;
  --cream: #ece7dd;
  --cream-alt: #e3ddd1;
  --taupe: #d6cdbf;
  --accent: #949189;
  --ink: #272725;
  --muted: #6f6a62;
  --line: rgba(39, 39, 37, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.star { color: var(--accent); font-size: 1.1rem; display: block; margin: 0 auto 1.2rem; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  color: #fff;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { font-weight: 700; letter-spacing: 0.04em; font-size: 1.15rem; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.82); transition: color .2s; }
.nav a:hover { color: #fff; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 11px 22px;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .2s;
}
.btn:hover { background: #7f7c74; }
.nav-toggle { display: none; }

/* ---------- Hero (full-bleed cinematic) ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 18, 17, 0.9) 0%,
    rgba(18, 18, 17, 0.5) 32%,
    rgba(18, 18, 17, 0.12) 62%,
    rgba(18, 18, 17, 0.28) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 64px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
  max-width: 16ch;
}
.hero-content .lead {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 10px;
}
.hero-content .specs {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 30px;
}
.hero-cta {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-cta:hover { background: var(--cream); transform: translateY(-2px); }

@media (max-width: 560px) {
  .hero { min-height: calc(100svh - 64px); }
  .hero-content { padding-top: 90px; padding-bottom: 48px; }
}

/* ---------- Generic section ---------- */
section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-alt { background: var(--cream-alt); }
.section-taupe { background: var(--taupe); }
.section-dark { background: var(--charcoal); color: #fff; }

h2.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.section-intro { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.section-intro.center { margin: 0 auto; text-align: center; }

/* ---------- The Experience ---------- */
.experience .grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.experience figure { margin: 0; border-radius: 3px; overflow: hidden; box-shadow: 0 20px 40px rgba(39,39,37,0.22); }
.experience h3 { font-size: 1.6rem; margin: 0 0 18px; }

/* ---------- Explore the Lodge ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 52px;
}
.feature figure { margin: 0 0 16px; border-radius: 3px; overflow: hidden; aspect-ratio: 3/2; background: var(--taupe); }
.feature figure img { width: 100%; height: 100%; object-fit: cover; }
.feature h4 { margin: 0 0 4px; font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.disclaimer { margin-top: 40px; color: var(--muted); font-size: 0.82rem; font-style: italic; }

.sleeps-note { max-width: 820px; margin: 56px auto 0; text-align: center; color: var(--ink); font-size: 1.08rem; }

/* ---------- Stay ---------- */
.stay .section-intro { font-size: 1.15rem; color: var(--ink); }
.stay .config { color: var(--muted); letter-spacing: 0.02em; margin: 6px 0 0; }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.stay-grid figure { margin: 0; border-radius: 3px; overflow: hidden; }
.stay-grid figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.stay-grid figure.wide { grid-column: 1 / -1; }
.stay-grid figure.wide img { aspect-ratio: 16/8; }
.stay-grid figcaption { padding: 12px 2px 0; color: var(--muted); font-size: 0.92rem; }
.bunk-title { text-align: center; margin: 44px 0 0; }
.bunk-title h3 { font-size: 1.6rem; margin: 0; }

/* ---------- At a Glance ---------- */
.glance-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 56px;
  margin-top: 52px;
}
.glance h3 { font-size: 1.1rem; letter-spacing: 0.04em; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.glance ul { list-style: none; margin: 0; padding: 0; }
.glance li { color: var(--muted); padding: 5px 0; font-size: 0.95rem; }

/* ---------- Why ---------- */
.why .section-title { text-align: center; }
.why .body { max-width: 760px; margin: 0 auto; text-align: center; }
.why .body p { font-size: 1.08rem; margin: 0 0 1.2rem; }
.why .closing { max-width: 720px; margin: 48px auto 0; text-align: center; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #fff; padding: 64px 0 48px; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.site-footer .brand { font-size: 1.3rem; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }
.colophon { width: 100%; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav { display: none; }
  .nav.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--charcoal); padding: 20px 28px; gap: 18px; }
  .nav-toggle { display: block; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
  .experience .grid { grid-template-columns: 1fr; gap: 30px; }
  .experience figure { max-width: 320px; }
  .features { grid-template-columns: 1fr 1fr; }
  .glance-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features, .stay-grid, .glance-cols { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .stay-grid figure.wide { grid-column: auto; }
}
