/* ============================================================
   MAISON LAJUS — MASTER STYLESHEET v5
   Brand: --primary #4CAF50 · --background #FAFAF5 · --text-main #2E2E2E
   Desktop layout max 800px · Mobile-first · Bilingual EN/FR
   ALL CAPS titles · lowercase body text
   ============================================================ */

:root {
  --primary:       #4CAF50;
  --primary-dark:  #388E3C;
  --primary-light: #A5D6A7;
  --background:    #FAFAF5;
  --text-main:     #2E2E2E;
  --surface:       #F0EDE6;
  --surface-dark:  #1E2D1F;
  --accent:        #B5623A;
  --gold:          #C9A84C;
  --muted:         #6B6660;
  --border:        rgba(46,46,46,0.12);
  --white:         #FFFFFF;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', system-ui, sans-serif;
  --radius:        3px;
  --max:           800px;
  --px:            1.5rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family:    var(--font-body);
  background:     var(--background);
  color:          var(--text-main);
  font-weight:    300;
  font-size:      15px;
  line-height:    1.75;
  overflow-x:     hidden;
  text-transform: lowercase;
}

/* ── LANGUAGE — hide/show ── */
[lang="fr"] .en { display: none !important; }
[lang="en"] .fr { display: none !important; }

/* ── TYPOGRAPHY — ALL CAPS ── */
h1, h2, h3, h4, h5, h6,
.section-eyebrow, .stat-label, .amenity-group-title,
.pricing-season, .policy-item h4, .rating-label, .platform-name,
.review-author, .nav-links a, .footer-dev-title, .footer-logo,
.btn-primary, .btn-ghost, .book-link, .nav-book,
.booking-bar a, .booking-bar-label, .lang-btn,
.pool-spec-label, .about-badge, .contact-card-label,
.coupon-btn, .modal-cta {
  text-transform: uppercase;
  letter-spacing:  0.07em;
}
h1 em, h2 em { font-style: italic; text-transform: uppercase; }

/* lowercase for body */
p, li, .lead, .price-note, .review-text, .hosts-note,
.detail-card ul li, .contact-note, .footer-copy, .footer-address,
.amenity-item, .distance-place, .policy-item p, .hero-sub,
.contact-card-value, .modal-instructions, .modal-terms,
.coupon-text p { text-transform: lowercase; }

/* ── SPLASH ── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-bg {
  position: absolute; inset: 0;
  background-image: url('https://media.vrbo.com/lodging/34000000/33600000/33590100/33590064/f6fd328e.jpg');
  background-size: cover; background-position: center; opacity: 0.38;
}
.splash-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  width: min(420px, 92vw);
}
.splash-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 3.6rem);
  font-weight: 300; color: var(--white);
  letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 0.4rem;
}
.splash-tagline {
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.splash-lang-row {
  display: flex; gap: 0.6rem; justify-content: center; margin-bottom: 1.6rem;
}
.splash-lang-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white); font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.52rem 1.6rem; border-radius: var(--radius); cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.splash-lang-btn.active,
.splash-lang-btn:hover { background: var(--primary); border-color: var(--primary); }
.splash-enter {
  display: block; width: 100%;
  background: var(--primary); color: var(--white);
  padding: 0.85rem; font-family: var(--font-body);
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  margin-top: 0.4rem;
}
.splash-enter:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem var(--px);
  background: rgba(250,250,245,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--surface-dark); text-decoration: none; flex-shrink: 0;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-links { display: flex; gap: 1rem; list-style: none; }
.nav-links a {
  font-size: 0.62rem; color: var(--text-main);
  text-decoration: none; transition: color 0.18s; white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-book {
  background: var(--surface-dark); color: var(--white) !important;
  padding: 0.4rem 0.9rem; border-radius: var(--radius); transition: background 0.18s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--primary-dark) !important; }

/* language toggle in nav */
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main); font-family: var(--font-body);
  font-size: 0.6rem; padding: 0.26rem 0.55rem;
  border-radius: var(--radius); cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.lang-btn.active,
.lang-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--surface-dark); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.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); }

/* mobile nav drawer */
.nav-drawer {
  display: none; position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(250,250,245,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem var(--px) 1.6rem;
  z-index: 99; flex-direction: column; gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-main); text-decoration: none;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.nav-drawer a:hover { color: var(--primary); }
.nav-drawer .drawer-book {
  margin-top: 1rem; background: var(--primary); color: var(--white);
  text-align: center; border-radius: var(--radius); border: none;
  padding: 0.75rem;
}

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--primary); padding: 0.38rem var(--px);
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
  position: sticky; top: 56px; z-index: 90;
}
.booking-bar-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.booking-bar a {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  color: var(--white); padding: 0.3rem 0.85rem; text-decoration: none;
  font-size: 0.62rem; border-radius: var(--radius); transition: background 0.18s;
  white-space: nowrap;
}
.booking-bar a:hover { background: rgba(255,255,255,0.26); }
.booking-bar a.direct {
  background: var(--white); color: var(--primary-dark);
  border-color: var(--white); font-weight: 500;
}
.booking-bar a.direct:hover { background: var(--surface); }

/* ── INNER WRAPPER — max 800px centred ── */
.inner {
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--px); padding-right: var(--px);
  width: 100%;
}

/* ── SECTIONS ── */
section { padding: 3.5rem 0; }
.section-eyebrow {
  display: block; font-size: 0.6rem; color: var(--primary);
  margin-bottom: 0.6rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--surface-dark); margin-bottom: 1rem;
}
.lead {
  font-size: 0.92rem; color: var(--muted);
  max-width: 640px; margin-bottom: 2rem; line-height: 1.85;
}

/* ── HERO ── */
.hero {
  height: 100svh; min-height: 500px; position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 3rem; background: var(--surface-dark); overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-image: url('https://media.vrbo.com/lodging/34000000/33600000/33590100/33590064/9b55efca.jpg');
  background-size: cover; background-position: center; opacity: 0.4;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,45,31,0.9) 0%, rgba(30,45,31,0.05) 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem var(--px) 0;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--primary-light); margin-bottom: 0.9rem; display: block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 1rem;
}
.hero h1 em { color: var(--gold); }
.hero-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 1.8rem; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 0.72rem 1.6rem; text-decoration: none;
  font-size: 0.7rem; border-radius: var(--radius);
  transition: background 0.18s, transform 0.12s; display: inline-block;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.36); color: var(--white);
  padding: 0.72rem 1.6rem; text-decoration: none;
  font-size: 0.7rem; border-radius: var(--radius);
  transition: border-color 0.18s, background 0.18s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface-dark); color: var(--white);
  display: flex; justify-content: center; flex-wrap: wrap; overflow-x: auto;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 1.4rem; border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center; flex-shrink: 0;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.2rem;
}
.stat-label { font-size: 0.55rem; color: rgba(255,255,255,0.5); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.about-imgs { position: relative; height: 340px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 78%; height: 82%;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 50%;
  object-fit: cover; border-radius: var(--radius);
  border: 5px solid var(--background); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-badge {
  position: absolute; top: 54%; left: 50%;
  background: var(--gold); color: var(--surface-dark);
  padding: 0.7rem 0.85rem; border-radius: var(--radius);
  font-size: 0.58rem; text-align: center; line-height: 1.5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.13); font-weight: 500;
}
.hosts-note {
  margin-top: 1.4rem; padding: 1rem 1.2rem;
  border-left: 3px solid var(--primary); background: rgba(76,175,80,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--muted);
  font-family: var(--font-display); font-size: 0.95rem; line-height: 1.7;
}
.hosts-name {
  display: block; margin-top: 0.4rem; font-style: normal;
  font-family: var(--font-body); font-size: 0.62rem;
  color: var(--primary-dark); text-transform: uppercase; letter-spacing: 0.12em;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px; gap: 3px;
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── DETAILS GRID ── */
.details-section { background: var(--surface); padding: 3.5rem 0; }
.details-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px; background: var(--border);
  border: 1.5px solid var(--border); border-radius: 4px; overflow: hidden;
}
.detail-card { background: var(--background); padding: 1.4rem 1.6rem; }
.detail-icon { width: 26px; height: 26px; margin-bottom: 0.7rem; color: var(--primary); }
.detail-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  color: var(--surface-dark); margin-bottom: 0.5rem;
}
.detail-card ul { list-style: none; }
.detail-card ul li { font-size: 0.8rem; color: var(--muted); padding: 0.15rem 0; }
.detail-card ul li::before { content: '–'; margin-right: 0.4rem; color: var(--primary); }

/* ── AMENITIES ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.9rem; margin-top: 1rem;
}
.amenity-group { background: var(--surface); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.amenity-group-title {
  font-size: 0.58rem; color: var(--primary-dark); font-weight: 500;
  margin-bottom: 0.6rem; padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(76,175,80,0.22);
}
.amenity-item {
  font-size: 0.78rem; color: var(--text-main); padding: 0.18rem 0;
  display: flex; align-items: center; gap: 0.38rem;
}
.amenity-item::before {
  content: ''; width: 4px; height: 4px;
  background: var(--primary); border-radius: 50%; flex-shrink: 0;
}

/* ── OUTDOOR / POOL ── */
.outdoor-section { background: var(--surface-dark); color: var(--white); padding: 3.5rem 0; }
.outdoor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.outdoor-section h2 { color: var(--white); }
.outdoor-section .section-eyebrow { color: var(--primary-light); }
.outdoor-section .lead { color: rgba(255,255,255,0.65); }
.pool-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.pool-spec {
  border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
}
.pool-spec-val {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 300;
  color: var(--gold); line-height: 1; margin-bottom: 0.2rem;
}
.pool-spec-label { font-size: 0.6rem; color: rgba(255,255,255,0.42); }
.outdoor-img { border-radius: var(--radius); overflow: hidden; height: 300px; }
.outdoor-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── PHOTO GALLERY ── */
.photo-section { background: var(--surface); padding: 3.5rem 0; }
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px; gap: 5px; margin-top: 1.2rem;
}
.photo-grid .wide { grid-column: span 2; }
.photo-grid .tall { grid-row: span 2; }
.photo-grid figure { position: relative; overflow: hidden; border-radius: var(--radius); margin: 0; }
.photo-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,45,31,0.8));
  color: rgba(255,255,255,0.9); font-size: 0.65rem;
  padding: 1rem 0.7rem 0.5rem; text-transform: lowercase;
  opacity: 0; transition: opacity 0.3s;
}
.photo-grid figure:hover figcaption { opacity: 1; }

/* ── LOCATION ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.distance-list { list-style: none; margin-top: 0.8rem; }
.distance-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem;
}
.distance-item:first-child { border-top: 1px solid var(--border); }
.distance-val { font-family: var(--font-display); font-size: 0.9rem; color: var(--accent); font-style: italic; }
.address-block { background: var(--surface); border-radius: var(--radius); padding: 1.3rem; margin-top: 1.4rem; }
.address-block p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }
.coords { margin-top: 0.6rem; font-size: 0.68rem; color: var(--primary-dark); font-family: monospace; text-transform: uppercase; }
.map-wrap { width: 100%; height: 280px; background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── PRICING ── */
.pricing-section { background: var(--surface); padding: 3.5rem 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.pricing-card {
  background: var(--background); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(76,175,80,0.1); }
.pricing-card.featured { background: var(--surface-dark); color: var(--white); }
.pricing-season { font-size: 0.6rem; color: var(--primary); margin-bottom: 0.7rem; }
.pricing-card.featured .pricing-season { color: var(--gold); }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; line-height: 1; color: var(--surface-dark); margin-bottom: 0.25rem; }
.pricing-card.featured .price-amount { color: var(--gold); }
.price-unit { font-size: 0.7rem; color: var(--muted); text-transform: lowercase; }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.5); }
.price-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.pricing-card.featured .price-divider { background: rgba(255,255,255,0.12); }
.price-note { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.pricing-card.featured .price-note { color: rgba(255,255,255,0.62); }
.pricing-policies {
  margin-top: 2rem; padding: 1.4rem 1.6rem; background: var(--background);
  border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1.2rem;
}
.policy-item h4 { font-size: 0.62rem; color: var(--surface-dark); font-weight: 500; margin-bottom: 0.3rem; }
.policy-item p { font-size: 0.78rem; color: var(--muted); }

/* ── REVIEWS ── */
.ratings-summary { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; }
.rating-big { font-family: var(--font-display); font-size: 4rem; font-weight: 300; line-height: 1; color: var(--surface-dark); }
.rating-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.rating-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.rating-label { font-size: 0.6rem; color: var(--muted); }
.platform-ratings { display: flex; gap: 1rem; flex-wrap: wrap; margin-left: auto; }
.platform-badge { text-align: center; padding: 0.75rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.platform-score { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--surface-dark); line-height: 1; }
.platform-name { font-size: 0.56rem; color: var(--muted); margin-top: 0.25rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.1rem; }
.review-card { background: var(--surface); border-radius: var(--radius); padding: 1.4rem; }
.review-text { font-family: var(--font-display); font-size: 0.92rem; font-style: italic; color: var(--text-main); line-height: 1.72; margin-bottom: 0.9rem; }
.review-author { font-size: 0.64rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.review-source { color: var(--primary-dark); }

/* ── CONTACT ── */
.contact-section { background: var(--surface-dark); color: var(--white); padding: 3.5rem 0; }
.contact-section h2 { color: var(--white); }
.contact-section .section-eyebrow { color: var(--primary-light); }
.contact-section .lead { color: rgba(255,255,255,0.65); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1rem; margin-top: 0.5rem; }
.contact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 1.4rem 1.3rem;
  text-decoration: none; color: var(--white);
  transition: background 0.18s, border-color 0.18s, transform 0.14s; display: block;
}
.contact-card:hover { background: rgba(76,175,80,0.15); border-color: var(--primary); transform: translateY(-2px); }
.contact-card-address:hover { transform: none; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.contact-card-icon { font-size: 1.3rem; margin-bottom: 0.75rem; display: block; color: var(--primary-light); }
.contact-card-label { font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 0.35rem; }
.contact-card-value { font-size: 0.88rem; color: var(--white); font-weight: 400; line-height: 1.5; margin-bottom: 0.6rem; }
.contact-card-action { font-size: 0.62rem; color: var(--primary-light); text-transform: lowercase; }

/* ── COUPON ── */
.coupon-section { background: var(--primary-dark); padding: 3rem 0; }
.coupon-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.coupon-badge {
  flex-shrink: 0; width: 90px; height: 90px; border-radius: 50%;
  background: var(--gold); color: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  box-shadow: 0 0 0 5px rgba(201,168,76,0.22); text-transform: none;
}
.coupon-text { flex: 1; min-width: 200px; }
.coupon-text h2 { color: var(--white); font-size: clamp(1.2rem,3.5vw,1.8rem); margin-bottom: 0.6rem; }
.coupon-text h2 em { color: var(--gold); }
.coupon-text p { font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.coupon-btn {
  flex-shrink: 0; background: var(--gold); color: var(--surface-dark);
  border: none; padding: 0.85rem 1.6rem; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  border-radius: var(--radius); cursor: pointer;
  transition: background 0.18s, transform 0.12s; white-space: nowrap;
}
.coupon-btn:hover { background: #b8943e; transform: translateY(-1px); }

/* ── BOOK ── */
.book-section { background: var(--accent); color: var(--white); text-align: center; padding: 3.5rem 0; }
.book-section h2 { color: var(--white); }
.book-section .section-eyebrow { color: rgba(255,255,255,0.6); }
.book-section .lead { color: rgba(255,255,255,0.8); margin: 0 auto 2rem; }
.book-links { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.book-link {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  color: var(--white); padding: 0.72rem 1.4rem; text-decoration: none;
  font-size: 0.68rem; border-radius: var(--radius); transition: background 0.18s; display: inline-block;
}
.book-link:hover { background: rgba(255,255,255,0.24); }
.book-link.direct { background: var(--white); color: var(--accent); border-color: var(--white); font-weight: 500; }
.book-link.direct:hover { background: var(--surface); }
.contact-note { font-size: 0.74rem; color: rgba(255,255,255,0.6); margin-top: 0.4rem; }

/* ── COUPON MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(30,45,31,0.82); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.28s, visibility 0.28s;
}
.modal-overlay.visible { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--background); border-radius: 6px;
  padding: 2.2rem 2.4rem; max-width: 460px; width: 100%;
  position: relative; text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.modal-close {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: none; border: none; cursor: pointer; font-size: 0.9rem;
  color: var(--muted); width: 28px; height: 28px; border-radius: 50%;
  transition: background 0.18s;
}
.modal-close:hover { background: var(--surface); }
.modal-coupon-badge {
  width: 70px; height: 70px; border-radius: 50%; background: var(--gold);
  color: var(--surface-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
  margin: 0 auto 1rem; box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.modal-box h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  color: var(--surface-dark); margin-bottom: 0.9rem; text-transform: uppercase;
}
.modal-code {
  font-family: monospace; font-size: 1.5rem; font-weight: 700;
  color: var(--primary-dark); letter-spacing: 0.22em;
  background: rgba(76,175,80,0.08); border: 2px dashed var(--primary);
  border-radius: var(--radius); padding: 0.5rem 1rem;
  margin: 0 0 1.1rem; text-transform: uppercase; display: inline-block;
}
.modal-instructions {
  font-size: 0.8rem; color: var(--muted); line-height: 1.78;
  text-align: left; margin-bottom: 0.9rem;
}
.modal-instructions a { color: var(--primary-dark); }
.modal-terms { font-size: 0.66rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.modal-cta {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 0.7rem 1.6rem; text-decoration: none; font-size: 0.7rem;
  border-radius: var(--radius); transition: background 0.18s;
}
.modal-cta:hover { background: var(--primary-dark); }

/* ── FOOTER ── */
footer { background: var(--surface-dark); color: rgba(255,255,255,0.44); padding: 2.2rem 0; }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.8rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); }
.footer-address { font-size: 0.74rem; margin-top: 0.35rem; line-height: 1.7; }
.footer-copy { font-size: 0.68rem; margin-top: 0.5rem; }
.footer-copy a { color: var(--primary-light); text-decoration: none; }
.footer-dev {
  border-top: 1px solid rgba(255,255,255,0.08); text-align: center;
  padding-top: 1.2rem; margin-top: 1.2rem;
  max-width: var(--max); margin-left: auto; margin-right: auto;
  padding-left: var(--px); padding-right: var(--px);
}
.footer-dev-title { font-size: 0.54rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.26); margin-bottom: 0.35rem; }
.footer-dev p { font-size: 0.7rem; color: rgba(255,255,255,0.42); line-height: 1.7; }
.footer-dev a { color: var(--primary-light); text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fade-in { opacity:0; transform:translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity:1; transform:none; }

/* ═══════════════════════════════════════════
   DESKTOP — constrain to 800px, no zoom blowout
═══════════════════════════════════════════ */
@media (min-width: 800px) {
  :root { --px: 2rem; }
  body { font-size: 15px; } /* hard cap — no scaling above this */
  .nav-hamburger { display: none; }
  .nav-links { display: flex; }
}

/* ═══════════════════════════════════════════
   MOBILE — max 799px
═══════════════════════════════════════════ */
@media (max-width: 799px) {
  :root { --px: 1rem; }

  /* nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-book-desktop { display: none; }

  /* booking bar — compact */
  .booking-bar { top: 56px; gap: 0.4rem; padding: 0.32rem var(--px); }
  .booking-bar-label { display: none; }

  /* hero */
  .hero-content { padding-top: 5rem; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* stats — scroll horizontally */
  .stats-bar { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; }
  .stats-bar::-webkit-scrollbar { height: 3px; }
  .stats-bar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }

  /* about — stack */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-imgs { height: 260px; }

  /* gallery strip — 1 row */
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .gallery-strip .gallery-main { grid-column: 1 / 3; }

  /* outdoor — stack */
  .outdoor-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .outdoor-img { height: 220px; }

  /* photo grid — 2 col */
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .photo-grid .wide { grid-column: span 1; }
  .photo-grid .tall { grid-row: span 1; }

  /* location — stack */
  .location-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-wrap { height: 220px; }

  /* ratings — stack */
  .platform-ratings { margin-left: 0; }
  .ratings-summary { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* coupon — stack */
  .coupon-inner { flex-direction: column; text-align: center; gap: 1.4rem; }
  .coupon-badge { margin: 0 auto; }

  /* contact cards — 2 col */
  .contact-cards { grid-template-columns: 1fr 1fr; }

  /* footer */
  .footer-inner { flex-direction: column; }
  .modal-box { padding: 1.8rem 1.4rem; }

  /* section padding tighter */
  section { padding: 2.8rem 0; }
  .details-section, .outdoor-section, .pricing-section, .photo-section,
  .contact-section, .coupon-section, .book-section { padding: 2.8rem 0; }
}

@media (max-width: 420px) {
  .contact-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .book-links { flex-direction: column; align-items: center; }
  .book-link { width: 100%; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}
