/* ============================================================
   THE MENNONITE HOUSE 1922 — Main Stylesheet
   Carved-wood heritage aesthetic · Airbnb-inspired booking UX
   ============================================================ */

/* ========================
   CSS Custom Properties
   ======================== */
:root {
  /* Backgrounds — aged dark walnut */
  --bg:          #0a0806;
  --bg-2:        #110e0a;
  --surface:     #1a1410;
  --surface-2:   #231a0f;
  --surface-3:   #2c2113;

  /* Borders */
  --border:      #28200f;
  --border-2:    #3a2e18;
  --border-3:    #4d3d22;

  /* Gold / Amber — pulled from logo's carved lettering */
  --gold:        #c9841f;
  --gold-2:      #e09a38;
  --gold-3:      #f2c06a;
  --gold-glow:   rgba(201, 132, 31, 0.2);
  --gold-glow-2: rgba(201, 132, 31, 0.08);

  /* Text */
  --cream:       #f5eed8;
  --cream-2:     #ccb990;
  --cream-3:     #8a7254;
  --cream-dim:   #5a4a32;

  /* Green — Chihuahuan landscape */
  --forest:      #384f2e;
  --forest-2:    #4e6840;

  /* Booking card (light surface) */
  --card-bg:     #fdf8f0;
  --card-text:   #1a1410;
  --card-sub:    #5a4a32;
  --card-border: #d4c4a0;
  --card-border-2:#bfa882;

  /* Functional */
  --error:       #b83c3c;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Radii */
  --radius:      6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Transitions */
  --ease:        0.3s ease;
  --ease-slow:   0.65s ease;

  /* Layout */
  --container:   1240px;
  --section-y:   110px;
}

/* ========================
   Reset & Base
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========================
   Typography
   ======================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 600; }
h5 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--gold); font-family: var(--font-body); }
p  { color: var(--cream-2); }
.lead { font-size: 1.15rem; color: var(--cream); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ========================
   Layout
   ======================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
section { padding: var(--section-y) 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 0.9rem; }
.section-intro { font-size: 1.05rem; color: var(--cream-2); }

/* ========================
   Ornamental Divider
   ======================== */
.ornament {
  color: var(--gold);
  display: flex;
  justify-content: center;
  padding: 0.5rem 2rem;
  overflow: hidden;
}
.ornament svg { width: 100%; max-width: 480px; height: 28px; }

/* ========================
   Buttons
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.88rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 238, 216, 0.3);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 238, 216, 0.07);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold-glow);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn--outline-amber {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--border-2);
  font-size: 0.8rem;
}
.btn--outline-amber:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-2);
}

.btn--amber {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
}
.btn--amber:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.78rem; }

/* ========================
   Scroll Reveal
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--ease), padding var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
  background: rgba(10, 8, 6, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Nav logo — text title */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--ease), box-shadow var(--ease) !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--gold-2) !important;
  border-color: var(--gold-2) !important;
  box-shadow: 0 4px 18px var(--gold-glow);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
.hero__slide.active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 6, 0.40) 0%,
    rgba(10, 8, 6, 0.28) 35%,
    rgba(10, 8, 6, 0.68) 72%,
    rgba(10, 8, 6, 0.92) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 820px;
  animation: heroFadeUp 1.4s ease 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero logo — now uses transparent PNG (no mix-blend-mode needed) */
.hero__logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero__logo {
  height: clamp(180px, 26vw, 300px);
  width: auto;
  filter: brightness(1.08) contrast(1.05) drop-shadow(0 4px 32px rgba(201,132,31,0.30));
}

/* Hero title banner */
.hero__title-fallback {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}
.hero__title-fallback .hero__eyebrow { margin-bottom: 0.75rem; }
.hero__title { line-height: 1.05; margin-bottom: 0.25rem; }
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-3);
}

/* SVG arch-sign banner that replaces the hero title when logo.png is absent */
.hero-banner-svg {
  width: clamp(260px, 76vw, 560px);
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
  filter:
    drop-shadow(0 6px 32px rgba(201, 132, 31, 0.30))
    drop-shadow(0 2px 8px  rgba(0, 0, 0, 0.60));
}

@media (max-width: 640px) {
  .hero-banner-svg { width: clamp(240px, 90vw, 400px); }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(245, 238, 216, 0.82);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.78;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  bottom: 5.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 238, 216, 0.3);
  border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.hero__dot.active { background: var(--gold); transform: scale(1.35); }

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 238, 216, 0.4);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ========================
   THREE PILLARS
   ======================== */
.pillars {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.pillar {
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--surface-2); }

.pillar__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: background var(--ease), border-color var(--ease);
}
.pillar:hover .pillar__icon {
  background: rgba(201, 132, 31, 0.3);
  border-color: var(--gold);
}
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.pillar p  { font-size: 0.93rem; line-height: 1.76; margin-bottom: 1.4rem; }
.pillar__link {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--ease), letter-spacing var(--ease);
}
.pillar__link:hover { color: var(--gold-2); letter-spacing: 0.12em; }

/* ========================
   THE HOUSE
   ======================== */
.the-house { background: var(--bg-2); position: relative; }
.the-house::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-2), transparent);
}

.the-house__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.the-house__content h2 { margin-bottom: 1.4rem; }
.the-house__content .lead { margin-bottom: 1.25rem; }
.the-house__content p { margin-bottom: 1rem; font-size: 0.96rem; }

.the-house__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cream-3); font-weight: 700;
}

.the-house__image { position: relative; }
.the-house__image img {
  width: 100%; height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
}
.the-house__badge {
  position: absolute;
  bottom: 1.5rem; left: -1.5rem;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.15rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.the-house__badge span:first-child {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold);
}
.the-house__badge-year {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--cream);
}

/* ========================
   PHOTO GALLERY
   ======================== */
.gallery { background: var(--bg); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.5rem;
}
.gallery__item {
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: var(--radius);
  background: var(--surface);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gallery__item:hover img { transform: scale(1.07); }

.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem 0.6rem;
  background: linear-gradient(to top, rgba(10,8,6,0.92), transparent);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0; transform: translateY(5px);
  transition: opacity var(--ease), transform var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(5,4,3,0.96); cursor: pointer; }
.lightbox__content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.lightbox__img {
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.85);
  transition: opacity 0.2s ease;
}
.lightbox__caption {
  font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream-3);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; z-index: 2;
  color: var(--cream); font-size: 1.5rem;
  background: rgba(26,20,16,0.85);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.lightbox__close { top: 1rem; right: 1rem; font-size: 1.2rem; }
.lightbox__prev  { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }

/* ========================
   EXPERIENCES
   ======================== */
.experiences { background: var(--surface); border-top: 1px solid var(--border); }
.experiences__category { margin-bottom: 4rem; }
.experiences__cat-title {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--cream);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.experiences__cat-title svg { color: var(--gold); }

.exp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.exp-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.exp-card:hover {
  border-color: var(--border-3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.exp-card__img { position: relative; height: 220px; overflow: hidden; }
.exp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.exp-card:hover .exp-card__img img { transform: scale(1.06); }
.exp-card__tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: rgba(10,8,6,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-2);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: var(--radius);
}
.exp-card__body { padding: 1.5rem; }
.exp-card__body h4 { margin-bottom: 0.55rem; }
.exp-card__body p { font-size: 0.9rem; line-height: 1.72; margin-bottom: 1.25rem; }
.exp-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.exp-card__price { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--cream); }
.exp-card__price em { font-style: normal; font-size: 0.8rem; color: var(--cream-3); }

.class-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.class-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.class-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px var(--gold-glow-2);
  transform: translateY(-2px);
}
.class-card__icon { font-size: 2rem; line-height: 1; }
.class-card h4 { margin: 0; }
.class-card p { font-size: 0.88rem; line-height: 1.72; flex: 1; }
.class-card__meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--cream-3); }

.exp-booking {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 3rem; text-align: center;
}
.exp-booking__header { max-width: 520px; margin: 0 auto 2rem; }
.exp-booking__header h3 { margin-bottom: 0.75rem; }

.booking-widget-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; min-height: 180px;
  border: 2px dashed var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2.5rem; color: var(--cream-3);
}
.booking-widget-placeholder svg { color: var(--border-2); }
.booking-widget-placeholder p { font-size: 0.88rem; max-width: 380px; text-align: center; }
.booking-widget-placeholder strong { color: var(--cream-2); }

/* ========================
   OUR STORY
   ======================== */
.our-story { position: relative; padding: var(--section-y) 0; overflow: hidden; }
.our-story__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.22) saturate(0.5);
}
.our-story__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.58) 100%);
}
.our-story .container { position: relative; z-index: 1; }
.our-story__content { max-width: 740px; }
.our-story__content h2 { margin-bottom: 0.5rem; }
.story-quote { margin: 2rem 0 2.5rem; }

.story-timeline { display: flex; flex-direction: column; margin-bottom: 2.5rem; position: relative; }
.story-timeline::before {
  content: ''; position: absolute;
  left: 72px; top: 0; bottom: 0;
  width: 1px; background: var(--border-2);
}
.story-beat {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.story-beat:last-child { border-bottom: none; }
.story-beat__year {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--gold); padding-top: 0.15rem;
  text-align: right; padding-right: 1.5rem;
  position: relative; z-index: 1;
}
.story-beat__year::after {
  content: ''; position: absolute;
  right: -5px; top: 0.5rem;
  width: 9px; height: 9px;
  border-radius: 50%; background: var(--gold);
  border: 2px solid var(--bg-2);
}
.story-beat__body h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.story-beat__body p { font-size: 0.9rem; line-height: 1.72; }

/* ========================
   AMENITIES
   ======================== */
.amenities { background: var(--bg-2); border-top: 1px solid var(--border); }
.amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.amenity {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), background var(--ease);
}
.amenity:hover { border-color: var(--gold); background: var(--surface-2); }
.amenity svg { color: var(--gold); flex-shrink: 0; }
.amenity span { font-size: 0.87rem; font-weight: 600; color: var(--cream-2); }

/* ========================
   LOCATION
   ======================== */
.location { background: var(--surface); border-top: 1px solid var(--border); }
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.location__content h2 { margin-bottom: 1.2rem; }
.location__content p { margin-bottom: 2rem; }
.location__list { display: flex; flex-direction: column; gap: 0.85rem; }
.location__list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.93rem; color: var(--cream-2);
}
.location__list li svg { color: var(--gold); flex-shrink: 0; }
.location__map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  margin-top: 3.5rem;
}
.location__map iframe { display: block; }

/* ========================
   BOOK — Airbnb-style layout
   ======================== */
.book { background: var(--bg-2); border-top: 1px solid var(--border); }

.book__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Left column */
.book__info h2 { margin-bottom: 1.5rem; }

.book__host {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.book__host-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.book__host-name { font-weight: 600; color: var(--cream); font-size: 0.95rem; margin-bottom: 0.2rem; }
.book__host-meta {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.83rem; color: var(--cream-3);
}
.book__host-meta svg { color: var(--gold); }

.book__quick-facts {
  display: flex; flex-direction: column; gap: 0.9rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.book__fact {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.92rem; color: var(--cream-2);
}
.book__fact svg { color: var(--gold); flex-shrink: 0; }

.book__direct-benefits {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.book__direct-benefits h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--cream);
}
.book-benefit-row {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: var(--cream-2);
  margin-bottom: 0.6rem;
}
.book-benefit-row svg { color: var(--gold); flex-shrink: 0; }

.book__engine { margin-top: 1.5rem; }
.booking-widget-placeholder--inline {
  flex-direction: row !important;
  text-align: left;
  min-height: 100px !important;
  gap: 1.25rem !important;
}
.booking-widget-placeholder--inline svg { flex-shrink: 0; }
.booking-widget-placeholder--inline p { font-size: 0.85rem; }
.booking-widget-placeholder--inline p:first-child { margin-bottom: 0.25rem; }

/* ========================
   BOOKING CARD (Airbnb-style)
   ======================== */
.book__sidebar { position: sticky; top: 96px; }

.booking-card {
  background: var(--card-bg);
  color: var(--card-text);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.25);
  margin-bottom: 1.25rem;
}

/* Header: price + rating */
.booking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.booking-card__price-block { display: flex; align-items: baseline; gap: 0.3rem; }
.booking-card__amount {
  font-family: var(--font-body);
  font-size: 1.5rem; font-weight: 700;
  color: var(--card-text);
}
.booking-card__per { font-size: 0.9rem; color: var(--card-sub); text-decoration: underline; text-underline-offset: 2px; }
.booking-card__rating {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.88rem; color: var(--card-text);
}
.booking-card__reviews { color: var(--card-sub); text-decoration: underline; text-underline-offset: 2px; }
.booking-card__reviews a { color: inherit; }

/* Date inputs */
.booking-card__dates {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--card-border-2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.6rem;
}
.booking-card__date {
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  transition: background var(--ease);
}
.booking-card__date:hover { background: rgba(201,132,31,0.06); }
.booking-card__date--in { border-right: 1.5px solid var(--card-border-2); }
.booking-card__date label {
  display: block;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--card-text);
  margin-bottom: 0.2rem;
  pointer-events: none;
}
.booking-card__date input[type="date"] {
  width: 100%; border: none; background: transparent;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--card-text); cursor: pointer; outline: none;
}
.booking-card__date input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5; cursor: pointer;
}

/* Guests dropdown */
.booking-card__guests-wrap {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--card-border-2);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border-color var(--ease);
}
.booking-card__guests-wrap:hover { border-color: var(--card-text); }
.booking-card__guests-inner label {
  display: block;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--card-text); margin-bottom: 0.2rem;
}
.booking-card__guests-inner select {
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--card-text); cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none; width: 100%;
}
.booking-card__guests-wrap svg { color: var(--card-sub); flex-shrink: 0; }

/* Reserve button */
.booking-card__reserve {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity var(--ease), box-shadow var(--ease), transform var(--ease);
  margin-bottom: 0.65rem;
}
.booking-card__reserve:hover {
  opacity: 0.92;
  box-shadow: 0 6px 22px rgba(201,132,31,0.45);
  transform: translateY(-1px);
}
.booking-card__reserve:active { transform: translateY(0); }

.booking-card__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--card-sub);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-bottom: 1.25rem;
}

/* Price breakdown */
.booking-card__breakdown {
  border-top: 1px solid var(--card-border);
  padding-top: 1.1rem;
}
.booking-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem; color: var(--card-text);
  margin-bottom: 0.6rem;
}
.booking-card__row-label {
  display: flex; align-items: center; gap: 0.3rem;
  color: var(--card-sub);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.booking-card__info {
  background: transparent; border: none; cursor: pointer;
  color: var(--card-sub); font-size: 0.85rem; padding: 0;
  line-height: 1;
}
.booking-card__row--total {
  border-top: 1px solid var(--card-border);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--card-text);
}
.booking-card__row--total em { font-style: normal; font-size: 0.8rem; color: var(--card-sub); }

/* Trust signals below card */
.booking-card__trust {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 0 0.25rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.83rem; color: var(--cream-3);
}
.trust-badge svg { color: var(--cream-dim); flex-shrink: 0; }

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials { background: var(--surface); border-top: 1px solid var(--border); }

.testimonials__rating-summary {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin-bottom: 1rem;
}
.testimonials__big-score {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--cream); line-height: 1;
}
.testimonials__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.2rem; }
.testimonials__rating-summary p { font-size: 0.82rem; color: var(--cream-3); margin: 0; }

.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial {
  padding: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color var(--ease), transform var(--ease);
}
.testimonial:hover { border-color: var(--border-2); transform: translateY(-2px); }
.testimonial__stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; }
.testimonial p {
  font-family: var(--font-display); font-size: 1.05rem;
  font-style: italic; color: var(--cream); line-height: 1.65; flex: 1;
}
.testimonial footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial footer strong { display: block; font-size: 0.88rem; color: var(--cream); }
.testimonial footer span { font-size: 0.78rem; color: var(--cream-3); }

/* ========================
   NEWSLETTER
   ======================== */
.newsletter { background: var(--bg); border-top: 1px solid var(--border); padding: 6rem 0; }
.newsletter__inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter__inner h2 { margin-bottom: 1rem; }
.newsletter__inner p { margin-bottom: 2rem; }

.newsletter__form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.newsletter__form input[type="email"] {
  flex: 1; min-width: 240px;
  padding: 0.88rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--cream); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color var(--ease);
}
.newsletter__form input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.newsletter__form input[type="email"]::placeholder { color: var(--cream-dim); }
.newsletter__fine { margin-top: 1rem !important; font-size: 0.76rem !important; color: var(--cream-dim) !important; }

/* ========================
   FOOTER
   ======================== */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 5rem 0 0; }

/* Logo in footer */
.footer__logo {
  height: 80px; width: auto;
  filter: brightness(1.05) drop-shadow(0 2px 12px rgba(201,132,31,0.20));
  margin-bottom: 0.5rem;
}

.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer__name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.15rem;
}
.footer__loc {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.85rem;
}
.footer__tagline { font-size: 0.88rem; line-height: 1.7; color: var(--cream-3); margin-bottom: 1.4rem; }

.footer__social { display: flex; gap: 0.65rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 50%; color: var(--cream-3);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow-2); }

.footer__links h5 { margin-bottom: 1rem; }
.footer__links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__links li a { font-size: 0.88rem; color: var(--cream-3); transition: color var(--ease); }
.footer__links li a:hover { color: var(--gold); }

.footer__contact h5 { margin-bottom: 1rem; }
.footer__contact p { font-size: 0.87rem; color: var(--cream-3); margin-bottom: 1rem; }
.footer__contact-link {
  display: block; font-size: 0.88rem; color: var(--cream-2);
  margin-bottom: 0.5rem; transition: color var(--ease);
}
.footer__contact-link:hover { color: var(--gold); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.78rem; color: var(--cream-dim); transition: color var(--ease); }
.footer__bottom-links a:hover { color: var(--cream-3); }

/* ========================
   RESPONSIVE — Tablet (≤ 1024px)
   ======================== */
@media (max-width: 1024px) {
  :root { --section-y: 80px; }

  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 85vw); height: 100vh;
    background: var(--surface); border-left: 1px solid var(--border);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 4rem 2.5rem; gap: 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1rem; }
  .nav__cta { padding: 0.75rem 1.5rem !important; font-size: 0.95rem !important; }

  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }

  .the-house__grid { grid-template-columns: 1fr; gap: 3rem; }
  .the-house__image { order: -1; }
  .the-house__image img { height: 380px; }
  .the-house__badge { left: 0; }
  .the-house__stats { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }

  .exp-cards { grid-template-columns: 1fr 1fr; }
  .class-cards { grid-template-columns: repeat(2, 1fr); }

  .book__layout { grid-template-columns: 1fr; }
  .book__sidebar { position: static; }
  .booking-card { max-width: 480px; margin: 0 auto; }

  .location__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .location__map { margin-top: 0; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .amenities__grid { grid-template-columns: repeat(3, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}

/* ========================
   RESPONSIVE — Mobile (≤ 640px)
   ======================== */
@media (max-width: 640px) {
  :root { --section-y: 60px; }
  .container { padding: 0 1.25rem; }

  .hero__logo { height: 140px; }
  .hero__actions { flex-direction: column; align-items: center; }

  .the-house__stats { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .exp-cards { grid-template-columns: 1fr; }
  .class-cards { grid-template-columns: 1fr; }

  .story-timeline::before { left: 62px; }
  .story-beat { grid-template-columns: 70px 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__rating-summary { flex-direction: column; gap: 0.5rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom-links { flex-wrap: wrap; gap: 0.75rem; }

  .amenities__grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter__form { flex-direction: column; }
  .newsletter__form input[type="email"] { min-width: unset; width: 100%; }
  .newsletter__form .btn { width: 100%; justify-content: center; }

  .exp-booking { padding: 2rem 1.25rem; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }

  .booking-card { border-radius: var(--radius-lg); }
}
