/* Moonlight Peak — cabin rental marketing site
   Warm, natural, minimal. Fraunces (headings) + Inter (body). */

:root {
  --pine: #33503f;
  --pine-dark: #22382c;
  --ember: #bf6a3a;
  --ember-dark: #a4562c;
  --cream: #f7f2e9;
  --sand: #efe6d5;
  --stone: #e2d6c1;
  --ink: #2a2823;
  --muted: #6c6459;
  --line: rgba(42, 40, 35, 0.12);
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(34, 56, 44, 0.14);
  --shadow-sm: 0 8px 24px rgba(34, 56, 44, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1.18rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* Keyboard focus — visible ring for anyone tabbing through */
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; border-radius: 4px; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { outline: none; }

/* Skip link — hidden until focused */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  background: var(--pine-dark); color: var(--white);
  padding: 12px 20px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  transform: translateY(-140%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.08;
  color: var(--pine-dark);
  letter-spacing: -0.01em;
  text-wrap: balance; /* no single-word orphan lines in headings */
}

.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
}

.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-tight { padding: clamp(56px, 7vw, 90px) 0; }

.lead { font-size: 1.25rem; color: var(--muted); max-width: 62ch; text-wrap: pretty; }
.section-head .lead { text-wrap: balance; } /* centered subheads balance, no orphan last word */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ember); color: var(--white); box-shadow: 0 10px 24px rgba(191,106,58,.28); }
.btn-primary:hover { background: var(--ember-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.65); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--pine); color: var(--pine-dark); }
.btn-outline:hover { background: var(--pine); color: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header:not(.scrolled)::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,25,.5), rgba(20,32,25,0));
  pointer-events: none;
  z-index: -1;
}
.site-header.scrolled {
  background: rgba(247, 242, 233, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(34,56,44,.08);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-size: 1.4rem; color: var(--white); font-weight: 600; }
.brand .mark { color: var(--ember); }
.site-header.scrolled .brand { color: var(--pine-dark); }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,.92); font-weight: 500; font-size: 1rem; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a:hover { color: var(--ember); }
.nav-cta { padding: 11px 22px; font-size: .95rem; }
.site-header.scrolled .btn-ghost { border-color: var(--pine); color: var(--pine-dark); }
.site-header.scrolled .btn-ghost:hover { background: var(--pine); color: var(--white); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--pine-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: #1a2820;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,25,.6) 0%, rgba(20,32,25,.18) 38%, rgba(20,32,25,.84) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(56px, 9vw, 110px); padding-top: 140px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 16ch;
  margin: 18px 0 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero .lead { color: rgba(255,255,255,.94); font-size: clamp(1.15rem, 2vw, 1.4rem); max-width: 54ch; }
.hero .eyebrow { color: #f0c9a8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-tagline { margin-top: 26px; font-family: var(--font-head); font-style: italic; font-size: 1.1rem; letter-spacing: .04em; color: rgba(255,255,255,.9); }

/* stat bar */
.statbar {
  position: relative;
  z-index: 3;
  background: var(--pine-dark);
  color: var(--white);
}
.statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 26px 12px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-head); font-size: 2rem; line-height: 1; }
.stat span { font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-copy h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 16px 0 22px; }
.about-copy p + p { margin-top: 18px; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3.2; object-fit: cover; width: 100%; }
.about-media .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 16px 22px; box-shadow: var(--shadow-sm);
  font-family: var(--font-head); color: var(--pine-dark);
}
.about-media .badge b { display: block; font-size: 1.5rem; }
.about-media .badge span { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); }

/* ---------- Feature highlights ---------- */
.features { background: var(--sand); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(44px, 6vw, 68px); }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 14px 0 16px; }
.section-head .lead { margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card img { aspect-ratio: 4/4.3; object-fit: cover; width: 100%; }
.feature-card .fc-body { padding: 26px 26px 30px; }
.feature-card h3 { font-size: 1.55rem; margin-bottom: 9px; }
.feature-card p { font-size: 1.06rem; color: var(--muted); line-height: 1.55; }

/* ---------- Amenities ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 40px; }
.amenity {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.amenity svg { width: 29px; height: 29px; flex: 0 0 29px; color: var(--ember); }
.amenity span { font-size: 1.1rem; font-weight: 500; }

/* ---------- Rates ---------- */
.rates-card {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(30px, 4.5vw, 56px);
}
.rates-highlights { display: grid; gap: 24px; }
.rate-hi { border-left: 3px solid var(--ember); padding-left: 20px; }
.rate-hi b { display: block; font-family: var(--font-head); font-weight: 500; font-size: 1.5rem; color: var(--pine-dark); line-height: 1.15; margin-bottom: 4px; }
.rate-hi span { font-size: 1.02rem; color: var(--muted); }
.rates-note { font-size: 1.1rem; color: var(--ink); line-height: 1.6; margin-bottom: 26px; }
.rates-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.rates-sub { margin-top: 20px; font-size: .95rem; color: var(--muted); font-style: italic; }

/* ---------- Gallery ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery figure:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }
.gallery img { width: 100%; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- Location ---------- */
.location { background: var(--pine-dark); color: var(--white); }
.location h2, .location h3 { color: var(--white); }
.location .eyebrow { color: #f0c9a8; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.loc-intro h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 14px 0 20px; }
.loc-intro p { color: rgba(255,255,255,.82); }
.loc-list { list-style: none; display: grid; gap: 4px; }
.loc-list li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.loc-list li svg { width: 25px; height: 25px; color: #e6b489; flex: 0 0 25px; margin-top: 3px; }
.loc-list b { font-weight: 600; }
.loc-list p { font-size: .96rem; color: rgba(255,255,255,.66); margin-top: 2px; }

/* ---------- Booking CTA band ---------- */
.cta-band { position: relative; color: var(--white); text-align: center; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content:""; position:absolute; inset:0; background: rgba(24,36,28,.72); }
.cta-inner { position: relative; z-index: 2; padding: clamp(80px, 12vw, 150px) 0; }
.cta-inner h2 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; margin: 16px auto 20px; }
.cta-inner p { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 50ch; margin: 0 auto 34px; }
.cta-inner .eyebrow { color: #f0c9a8; }

/* ---------- Footer ---------- */
.site-footer { background: #1c2a22; color: rgba(255,255,255,.75); padding: 72px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 16px; }
.foot-brand .mark { color: var(--ember); }
.foot-brand svg { width: 28px; height: 28px; }
.site-footer p { font-size: 1rem; line-height: 1.7; }
.foot-col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 16px; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; }
.foot-col a, .foot-col li { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: 1rem; }
.foot-col a:hover { color: var(--ember); }
.foot-col ul { list-style: none; }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; color: rgba(255,255,255,.5); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,14,11,.97); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 100px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.6rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; font-size: 2rem; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }

/* ---------- Page banner (contact) ---------- */
.page-banner { position: relative; color: var(--white); padding: 190px 0 90px; background: #1a2820; }
.page-banner .pb-bg { position: absolute; inset: 0; overflow: hidden; }
.page-banner .pb-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner .pb-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,32,25,.55), rgba(20,32,25,.78)); }
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.2rem); margin: 14px 0 14px; }
.page-banner p { color: rgba(255,255,255,.9); font-size: 1.2rem; max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin: 12px 0 20px; }
.info-list { list-style: none; display: grid; gap: 22px; margin-top: 30px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list svg { width: 26px; height: 26px; color: var(--ember); flex: 0 0 26px; margin-top: 3px; }
.info-list b { display: block; font-family: var(--font-head); color: var(--pine-dark); font-size: 1.2rem; }
.info-list a, .info-list span { color: var(--muted); font-size: 1.05rem; }
.info-list a:hover { color: var(--ember); }
.rules-box { margin-top: 34px; background: var(--sand); border-radius: var(--radius); padding: 26px 28px; }
.rules-box h3 { font-size: 1.25rem; margin-bottom: 14px; }
.rules-box ul { list-style: none; display: grid; gap: 8px; }
.rules-box li { position: relative; padding-left: 22px; font-size: 1rem; color: var(--muted); }
.rules-box li::before { content: "•"; position: absolute; left: 4px; color: var(--ember); font-weight: 700; }

.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(28px, 4vw, 44px); }
.form-card h2 { font-size: 1.7rem; margin-bottom: 8px; }
.form-card > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--ink); transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--ember); box-shadow: 0 0 0 4px rgba(191,106,58,.14); background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { margin-top: 16px; font-size: .95rem; color: var(--muted); text-align: center; display: none; }
.form-note.show { display: block; color: var(--pine); font-weight: 600; }
.form-card .btn { width: 100%; justify-content: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- One-of-one touches ---------- */

/* Editorial section index numerals on the eyebrows (01–06) */
.sec-num {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2em;
  color: var(--ember);
  margin-right: .55em;
}
.hero .sec-num, .location .sec-num { color: #f0c9a8; }

/* Owner sign-off — a human fingerprint in the About copy */
.owner-sign {
  margin-top: 26px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--pine-dark);
  max-width: 44ch;
}
.owner-sign span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* A-frame roofline peak cut into the dark sections — echoes the logo + the actual building */
.location, .cta-band { --peak: clamp(36px, 5vw, 64px); }
.location {
  clip-path: polygon(0 var(--peak), 50% 0, 100% var(--peak), 100% 100%, 0 100%);
  padding-top: calc(clamp(72px, 10vw, 130px) + var(--peak));
}
.cta-band { clip-path: polygon(0 var(--peak), 50% 0, 100% var(--peak), 100% 100%, 0 100%); }
.cta-band .cta-inner { padding-top: calc(clamp(80px, 12vw, 150px) + var(--peak)); }

/* Gallery hover captions — the real name of each spot */
.gallery figure { position: relative; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 15px;
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(24,36,28,0), rgba(24,36,28,.74));
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.gallery figure:hover figcaption,
.gallery figure:focus-visible figcaption { opacity: 1; transform: none; }

/* Single guest pull-quote (not a testimonials grid) */
.quote-band { background: var(--sand); text-align: center; padding: clamp(60px, 9vw, 112px) 0; }
.quote-band .wrap { max-width: 900px; }
.quote-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; }
.quote-stars svg { width: 22px; height: 22px; fill: var(--ember); }
.quote-band blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.32;
  color: var(--pine-dark);
  text-wrap: balance;
}
.quote-by { margin-top: 24px; font-size: .95rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid, .loc-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .about-media { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 1.1rem; }
  .section { padding: clamp(56px, 12vw, 82px) 0; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero .lead { font-size: 1.12rem; }
  .section-head { margin-bottom: 34px; }
  .section-head h2, .about-copy h2, .loc-intro h2 { font-size: clamp(1.9rem, 7.5vw, 2.5rem); }
  /* 1-up feature cards read better wide than tall on a phone */
  .feature-card img { aspect-ratio: 16/10; }
  .feature-card .fc-body { padding: 20px 22px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 55;
    background: var(--cream); padding: 92px 28px 40px; gap: 2px; box-shadow: none; overflow-y: auto;
  }
  .nav.open .nav-links a { color: var(--ink); font-size: 1.25rem; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links .btn { color: var(--white); margin-top: 22px; text-align: center; justify-content: center; font-size: 1.1rem; padding: 16px 30px; border-bottom: 0; }
  .statbar .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat:nth-child(2) { border-right: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .rates-card { grid-template-columns: 1fr; gap: 30px; }
  .rates-actions .btn { flex: 1 1 auto; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-media .badge { left: 0; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 400px) {
  .gallery { columns: 1; }
}

/* ---------- Reduced motion ---------- */
/* Content defaults to opacity:0 and animates in on scroll. For users who ask for
   less motion, show everything immediately and drop transforms/smooth scroll. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Peak Sports Lounge (coming soon) ---------- */
.lounge-band {
  background:
    radial-gradient(1100px 480px at 12% -12%, rgba(191,106,58,.18), transparent 60%),
    linear-gradient(165deg, #22382c 0%, #1c2620 46%, #201a14 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.lounge-band h2 { color: var(--white); }
.lounge-head { text-align: center; max-width: 66ch; margin: 0 auto clamp(40px, 5vw, 60px); }
.lounge-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 16px 0 18px; }
.lounge-head .lead { color: rgba(247,242,233,.80); margin: 0 auto; }
.lounge-eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; color: #f0c9a8; }
.soon-badge {
  display: inline-block; background: var(--ember); color: var(--white);
  padding: 5px 13px; border-radius: 100px; letter-spacing: .14em; font-size: .72rem;
  box-shadow: 0 8px 20px rgba(191,106,58,.35);
}

.lounge-hero {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45); margin-bottom: clamp(28px, 3.5vw, 44px);
}
.lounge-hero img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; display: block; }
.lounge-hero figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(30px, 5vw, 52px) clamp(22px, 4vw, 44px) clamp(20px, 3vw, 32px);
  background: linear-gradient(to top, rgba(20,16,12,.88), rgba(20,16,12,.12) 72%, transparent);
}
.lounge-hero figcaption b { display: block; font-family: var(--font-head); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); line-height: 1.1; }
.lounge-hero figcaption span { color: rgba(247,242,233,.82); font-size: 1.02rem; }

.lounge-features {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px; margin: 0 0 clamp(36px, 4.5vw, 56px); padding: 0;
}
.lounge-features li { display: flex; align-items: center; gap: 14px; font-size: 1.08rem; font-weight: 500; color: var(--cream); }
.lounge-features svg { width: 28px; height: 28px; flex: 0 0 28px; color: var(--ember); }

.lounge-note { text-align: center; margin-top: clamp(28px, 3.5vw, 40px); font-size: .98rem; font-style: italic; color: rgba(247,242,233,.62); }

/* lounge gallery sits on the dark band — keep caption scrim readable */
.lounge-band .gallery figcaption { background: linear-gradient(to top, rgba(20,16,12,.92), transparent); }

/* amenity "coming soon" chip */
.amenity-soon em { font-style: normal; color: var(--ember); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-left: 4px; }

@media (max-width: 980px) {
  .lounge-features { grid-template-columns: repeat(2, 1fr); }
  .lounge-hero img { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .lounge-features { grid-template-columns: 1fr; }
  .lounge-hero img { aspect-ratio: 4 / 3; }
}
