/* =========================================================
   THE RETREAT — Design System
   A single source of truth for brand styling.
   Edit the variables below to re-skin the entire site.
   ========================================================= */

:root {
  /* Brand palette */
  --forest-900: #16231a;
  --forest-800: #1f2e23;
  --forest-700: #2a3b2e;
  --forest-600: #38503d;
  --sage-200: #c7d2c2;
  --cream-50: #f6f3ec;
  --cream-100: #efeae0;
  --paper: #fbfaf6;
  --ink: #23241f;
  --ink-soft: #4a4c43;
  --ink-faint: #7c7e72;
  --brass-500: #c2a24c;
  --brass-600: #ab8b3a;
  --line: rgba(35, 36, 31, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing & layout */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
  --shadow-card: 0 18px 40px -24px rgba(22, 35, 26, 0.55);
  --shadow-float: 0 30px 60px -30px rgba(22, 35, 26, 0.6);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2 * var(--gutter), var(--container-wide)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-600);
  margin: 0 0 1.1rem;
}
.eyebrow--light { color: var(--brass-500); }

.display-1 { font-size: clamp(3rem, 8vw, 6.5rem); }
.display-2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.display-3 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-faint); }
.center { text-align: center; }
.measure { max-width: 60ch; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--brass-500); color: var(--forest-900); }
.btn--primary:hover { background: var(--brass-600); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: transparent; border-color: var(--line-light); color: #fff; }
.btn--light:hover { background: #fff; color: var(--forest-900); border-color: #fff; }
.btn--solid-light { background: #fff; color: var(--forest-900); }
.btn--solid-light:hover { background: var(--cream-100); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-700);
}
.link-arrow span { transition: transform var(--transition); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Image placeholder system ----------
   Drop a real photo into assets/images/ and set it as the
   --img variable inline (e.g. style="--img:url(assets/images/hero.jpg)")
   and it overrides the gradient automatically. */
.media {
  position: relative;
  background-color: var(--forest-700);
  background-image: var(--img, linear-gradient(135deg, #2a3b2e, #16231a 70%));
  background-size: cover;
  background-position: var(--img-pos, center);
  border-radius: var(--radius);
  overflow: hidden;
}
.media::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0.75rem 0;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.media[style*="--img"]::after { content: none; }

/* Warm grade — unifies the cooler, daytime "Founder's Collection" model
   renders with the golden-hour brand palette so every home reads like the
   same campaign. Fully reversible: drop the .media--warm class (or this
   rule) to restore the originals. Tune the filter to taste. */
.media--warm {
  filter: sepia(0.5) saturate(1.3) brightness(1.02) contrast(0.94) hue-rotate(-14deg);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 35, 26, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
  transition: background var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 84px;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.brand__mark { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.32em; }
.brand__tag { font-size: 0.52rem; letter-spacing: 0.4em; color: var(--brass-500); margin-top: 0.35rem; }
.brand__logo { display: block; width: auto; height: 58px; max-width: none; }
.footer .brand__logo { height: auto; width: 210px; max-width: 100%; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 0.5rem;
  position: relative;
  transition: color var(--transition);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brass-500);
  transition: width var(--transition);
}
.nav__menu a:hover,
.nav__menu a[aria-current="page"] { color: #fff; }
.nav__menu a:hover::after,
.nav__menu a[aria-current="page"]::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__call { color: rgba(255,255,255,0.8); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.nav__call:hover { color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 30px; height: 22px;
  position: relative;
}
.nav__toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; transition: var(--transition); }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 20px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,35,26,0.22) 0%, rgba(22,35,26,0.04) 32%, rgba(22,35,26,0.78) 100%),
    var(--hero-img, linear-gradient(150deg, #445a47, #16231a 75%));
  background-size: cover;
  background-position: var(--hero-pos, center);
  transform: scale(1.04);
  animation: heroDrift 20s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-12px); }
}
.hero__inner { padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: 6rem; max-width: 760px; }
.hero__inner .eyebrow,
.hero__title,
.hero__sub { text-shadow: 0 2px 24px rgba(11, 18, 13, 0.62), 0 1px 4px rgba(11, 18, 13, 0.5); }
/* Lift hero eyebrow + title off the image so they stay crisp/legible over light, hazy scenery.
   Eyebrow gets a brighter brass + a touch more size/weight (it was the weak point). */
.hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d8bd6e;
  text-shadow: 0 2px 18px rgba(11, 18, 13, 0.9), 0 1px 3px rgba(11, 18, 13, 0.72);
}
.hero__title { text-shadow: 0 3px 30px rgba(11, 18, 13, 0.55), 0 1px 5px rgba(11, 18, 13, 0.45); }

/* Keep a heading on one line where there's room, but allow it to wrap on
   smaller screens so it never runs off the page. Apply to headings that
   should read as a single line at desktop width. */
@media (min-width: 1000px) { .nowrap-lg { white-space: nowrap; } }
.hero__title { font-size: clamp(3rem, 9vw, 7rem); margin-bottom: 1.5rem; }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 48ch; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero--short { min-height: clamp(440px, 60vh, 620px); }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: rgba(255,255,255,0.4); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  background: var(--forest-700);
  color: #fff;
  border-block: 1px solid var(--line-light);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-light);
}
.stat { background: var(--forest-700); padding: 2rem 1.5rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: 2rem; color: var(--brass-500); }
.stat__label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.4rem; }

/* =========================================================
   EDITORIAL (image + text split)
   ========================================================= */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.editorial--reverse .editorial__media { order: 2; }
.editorial__media { aspect-ratio: 5 / 4; }
.editorial__media--wide { aspect-ratio: 3 / 2; }

/* Community sub-brand identifier: redesigned community logo + name (secondary
   brand under the dominant Retreat master brand). Logo left of name on desktop,
   stacked on mobile. */
.community-id { display: flex; align-items: center; gap: 1.15rem; margin-bottom: 1.5rem; }
.community-id__logo {
  width: 84px; height: 84px; flex: none; border-radius: 14px;
  box-shadow: 0 6px 22px rgba(22, 35, 26, 0.16);
}
.community-id__text { display: flex; flex-direction: column; gap: 0.4rem; }
.community-id__name {
  font-size: 0.82rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--forest-900); margin: 0; line-height: 1;
}
.community-id__loc {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin: 0; line-height: 1;
}
@media (max-width: 640px) {
  .community-id { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .community-id__logo { width: 72px; height: 72px; }
}

/* "Available in any community" — model homes are community-agnostic, so they sit
   under the master brand and show all four communities as build destinations. */
.available-in { text-align: center; }
.available-in__title {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: var(--forest-900); margin: 0.5rem 0 1.8rem;
}
.available-in__logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start;
  gap: clamp(1.4rem, 5vw, 3rem);
}
.available-in__logo { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-decoration: none; }
.available-in__logo img {
  width: 76px; height: 76px; border-radius: 13px;
  box-shadow: 0 6px 20px rgba(22, 35, 26, 0.14);
  transition: transform var(--transition);
}
.available-in__logo:hover img { transform: translateY(-5px); }
.available-in__logo span {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---- Static content pages: contact, faq, legal ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h3 { font-family: var(--font-display); font-size: 1.45rem; margin: 2.2rem 0 0.6rem; color: var(--forest-900); }
.prose p, .prose li { color: var(--ink-soft); line-height: 1.7; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose .muted-note { font-size: 0.85rem; color: var(--ink-faint); font-style: italic; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid #e8e3d7; padding: 1.6rem 0; }
.faq-item:last-child { border-bottom: 1px solid #e8e3d7; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--forest-900); }
.faq-item p { color: var(--ink-soft); margin: 0; line-height: 1.6; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; max-width: 980px; margin: 0 auto; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.35rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid #ddd6c6; border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-info { background: var(--cream-50); border-radius: var(--radius-lg); padding: 2rem; }
.contact-info h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin: 1.4rem 0 0.3rem; }
.contact-info h4:first-child { margin-top: 0; }
.contact-info a { color: var(--forest-700); }
.editorial__text h2 { margin-bottom: 1.2rem; }
.editorial__rule { width: 48px; height: 2px; background: var(--brass-500); margin: 1.5rem 0; }

/* Community spotlight — highlights list + promise line */
.spotlight__label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-faint); margin: 1.5rem 0 0.75rem;
}
.spotlight__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1.25rem;
}
.spotlight__list li {
  position: relative; padding-left: 1.4rem;
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45;
}
.spotlight__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brass-500);
}
.spotlight__promise {
  margin: 1.5rem 0 0; padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.18rem; line-height: 1.4; color: var(--ink);
}

/* Experiences — featured experience lists (editorial, no icons) */
.exp-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.25rem; margin-top: 3rem;
}
.exp-item { border-top: 2px solid var(--brass-500); padding-top: 1rem; }
.exp-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.exp-item p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
/* Chips for curated-package band on dark background */
.exp-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 2rem; }
.exp-chips span {
  padding: 0.55rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  font-size: 0.9rem; background: rgba(255,255,255,0.04);
}

/* =========================================================
   CARDS
   ========================================================= */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* Pathway card (Stay / Own / Invest) */
.pathway {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pathway:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); border-color: transparent; }
.pathway__media { aspect-ratio: 16 / 11; }
.pathway__body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.pathway__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--forest-700);
  color: var(--brass-500);
  margin: -3.6rem 0 1rem 1.8rem;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-card);
}
.pathway h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.pathway p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }

/* Community / image card with caption overlay */
.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}
.tile .media { position: absolute; inset: 0; border-radius: 0; }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22,35,26,0.9));
}
.tile__body { position: relative; z-index: 2; padding: 1.6rem; transition: transform var(--transition); }
.tile:hover .tile__body { transform: translateY(-6px); }
.tile h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.tile p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; }
/* Community sub-brand badge on listing tiles — thin brass ring defines the
   evergreen emblem against the tile's evergreen scrim. */
.tile__id { display: flex; align-items: center; gap: 0.75rem; }
.tile__id img {
  width: 46px; height: 46px; flex: none; border-radius: 9px;
  border: 1px solid rgba(194, 162, 76, 0.55);
  box-shadow: 0 3px 12px rgba(0,0,0,0.45);
}
.tile__id > div { min-width: 0; }
.tile__id h3 { margin-bottom: 0.15rem; }

/* Feature (icon + text) */
.feature { text-align: center; padding: 1rem; }
.feature__icon { color: var(--brass-600); margin-bottom: 0.9rem; display: inline-flex; }
.feature h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.6rem; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* Listing card (rentals) */
.listing {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: var(--transition);
}
.listing:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.listing__media { aspect-ratio: 4 / 3; position: relative; }
.listing__badge { position: absolute; top: 10px; left: 10px; width: 44px; height: 44px; border-radius: 9px; box-shadow: 0 3px 12px rgba(22, 35, 26, 0.3); }
.resale-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin: 2rem auto 0; }
.resale-filter__btn {
  padding: 0.5rem 1.15rem; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--ink-soft); font-family: inherit; font-size: 0.8rem;
  letter-spacing: 0.04em; cursor: pointer; transition: var(--transition);
}
.resale-filter__btn:hover { border-color: var(--brass-500); color: var(--ink); }
.resale-filter__btn.is-active { background: var(--forest-900); color: #fff; border-color: var(--forest-900); }
.resale-empty { text-align: center; color: var(--ink-faint); margin: 2rem auto 0; display: none; }
.stay-search { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 0.75rem; background: var(--paper); padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); }
@media (max-width: 860px) { .stay-search { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stay-search { grid-template-columns: 1fr; } }
.listing__meta { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.listing h3 { font-size: 1.4rem; margin: 0.3rem 0; }
.listing__price { text-align: right; }
.listing__price strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--forest-700); }

/* =========================================================
   JOURNEY STEPS
   ========================================================= */
.journey { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); }
.journey__step { position: relative; padding-top: 3.5rem; }
.journey__step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--brass-500);
  opacity: 0.7;
}
.journey__step h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.journey__step p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   BANDS (full-width call sections)
   ========================================================= */
.band {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(rgba(22,35,26,0.82), rgba(22,35,26,0.92)), var(--band-img, linear-gradient(135deg, #38503d, #16231a));
  background-size: cover;
  background-position: center;
}
.band--solid { background: var(--forest-800); }
.band--solid::before { content: none; }
.band__inner { padding-block: clamp(4rem, 9vw, 7rem); }
.band h2 { color: #fff; margin-bottom: 1.2rem; }
.band p { color: rgba(255,255,255,0.82); }
.band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Section heading block */
.heading { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.heading--center { text-align: center; max-width: 60ch; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quotes {
  background: var(--forest-800);
  color: #fff;
}
.quotes__grid { display: grid; grid-template-columns: 0.8fr 1fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.quote__stars { color: var(--brass-500); letter-spacing: 0.2em; margin-bottom: 0.8rem; }
.quote p { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-style: italic; }
.quote cite { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-500); font-style: normal; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--forest-900); color: rgba(255,255,255,0.7); padding-top: clamp(4rem, 7vw, 6rem); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.9rem; max-width: 32ch; }
.footer__col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer__col a { font-size: 0.9rem; transition: color var(--transition); }
.footer__col a:hover { color: #fff; }
.footer__news h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer__form { display: flex; gap: 0.5rem; }
.footer__form input {
  flex: 1; padding: 0.85rem 1rem; border: 1px solid var(--line-light);
  background: transparent; color: #fff; border-radius: var(--radius); font-family: inherit;
}
.footer__form input::placeholder { color: rgba(255,255,255,0.45); }
.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; transition: var(--transition); }
.footer__social a:hover { background: var(--brass-500); color: var(--forest-900); border-color: var(--brass-500); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 1.8rem; font-size: 0.78rem; }
.footer__bottom a { margin-left: 1.5rem; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   EVENTS — calendar, filter bar, event cards, lightbox
   ========================================================= */
/* Recurring-events banner */
.event-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.6rem 1.2rem; text-align: center;
  background: var(--forest-900); color: #fff;
  border-radius: var(--radius-lg); padding: 1.1rem 1.4rem;
}
.event-banner strong { color: var(--brass-500); font-weight: 600; }
.event-banner span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.event-banner .dot { color: rgba(255,255,255,0.35); }

/* Year-at-a-glance calendar */
.event-cal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.event-cal__month {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem; background: var(--paper); min-height: 130px;
}
.event-cal__month--empty { background: var(--cream-50); }
.event-cal__name {
  font-family: var(--font-display); font-size: 1.25rem; color: var(--forest-700);
  margin-bottom: 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line);
}
.event-cal__events { display: flex; flex-direction: column; gap: 0.45rem; }
.event-chip {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  font-size: 0.82rem; color: var(--ink); cursor: pointer;
  background: none; border: none; padding: 0; text-align: left; font-family: inherit;
}
.event-chip:hover { color: var(--brass-600); }
.event-chip__date { color: var(--brass-600); font-weight: 600; min-width: 2.6em; }
.event-cal__quiet { font-size: 0.82rem; color: var(--muted); font-style: italic; }

/* Filter bar */
.filterbar { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filterbar button {
  font-family: inherit; font-size: 0.85rem; cursor: pointer;
  padding: 0.55rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  transition: all var(--transition);
}
.filterbar button:hover { border-color: var(--brass-500); }
.filterbar button.is-active { background: var(--forest-800); color: #fff; border-color: var(--forest-800); }

/* Event card (native, opens flyer in lightbox) */
.event-card {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg);
  overflow: hidden; color: #fff; display: flex; align-items: flex-end;
  cursor: pointer; border: none; padding: 0; text-align: left; width: 100%;
  font-family: inherit;
}
.event-card .media { position: absolute; inset: 0; border-radius: 0; }
.event-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22,35,26,0.92));
}
.event-card__body { position: relative; z-index: 2; padding: 1.4rem; width: 100%; transition: transform var(--transition); }
.event-card:hover .event-card__body { transform: translateY(-6px); }
.event-card__tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--forest-900); background: var(--brass-500); font-weight: 600;
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.7rem;
}
.event-card h3 { font-size: 1.25rem; margin-bottom: 0.35rem; line-height: 1.15; }
.event-card p { font-size: 0.82rem; color: rgba(255,255,255,0.82); margin: 0 0 0.7rem; }
.event-card__cta { font-size: 0.78rem; color: var(--brass-500); font-weight: 600; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw;
  background: rgba(11,18,13,0.86); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(92vw, 720px); max-height: 92vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  font-size: 2.4rem; line-height: 1; color: #fff;
  background: none; border: none; cursor: pointer;
}

/* =========================================================
   INQUIRY FORM — event booking request
   ========================================================= */
.inquiry {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 18px 50px rgba(35,36,31,0.06);
}
.inquiry__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem;
}
.field { display: grid; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field > span {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  padding: 0.8rem 0.85rem; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: inherit; font-size: 0.98rem;
  color: var(--ink); background: var(--paper); width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--brass-500);
  box-shadow: 0 0 0 3px rgba(176,141,87,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.inquiry__actions {
  grid-column: 1 / -1; display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap; margin-top: 0.25rem;
}
.inquiry__note { font-size: 0.85rem; color: var(--ink-faint); margin: 0; }
.inquiry__success {
  display: none; text-align: center; padding: 2.5rem 1.5rem;
}
.inquiry__success h3 { margin: 0 0 0.6rem; }
.inquiry.is-sent .inquiry__form { display: none; }
.inquiry.is-sent .inquiry__success { display: block; }
.inquiry__error {
  display: none; margin: 0.25rem 0 0; padding: 0.85rem 1rem;
  font-size: 0.9rem; color: #7a2e2e;
  background: rgba(122,46,46,0.08); border: 1px solid rgba(122,46,46,0.25);
  border-radius: var(--radius);
}
.inquiry.is-error .inquiry__error { display: block; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .event-cal { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand, .footer__news { grid-column: span 3; }
  .quotes__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px) {
  .nav__menu, .nav__call { display: none; }
  .nav__toggle { display: block; }
  .nav[data-open="true"] .nav__menu {
    display: flex; position: absolute; top: 84px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--forest-900); padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line-light);
  }
  .nav[data-open="true"] .nav__menu a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line-light); }
}
@media (max-width: 860px) {
  .editorial, .editorial--reverse { grid-template-columns: 1fr; }
  .editorial--reverse .editorial__media { order: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .event-cal { grid-template-columns: repeat(2, 1fr); }
  .exp-list { grid-template-columns: 1fr 1fr; }
  .card-grid--3, .card-grid--4, .card-grid--5 { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: 1fr 1fr; }
  .listing { grid-template-columns: 1fr; text-align: left; }
  .listing__price { text-align: left; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand, .footer__news { grid-column: span 2; }
}
@media (max-width: 540px) {
  .card-grid--3, .card-grid--4, .card-grid--5, .journey, .quotes__grid, .stats__grid, .footer__top { grid-template-columns: 1fr; }
  .event-cal { grid-template-columns: 1fr; }
  .inquiry__grid { grid-template-columns: 1fr; }
  .inquiry { padding: 1.5rem; }
  .spotlight__list { grid-template-columns: 1fr; }
  .exp-list { grid-template-columns: 1fr; }
  .footer__brand, .footer__news { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

