/* Eli Canteras - Park & Airco — Redesign */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  --cream:    #FAF8F5;
  --cream-dk: #F0EBE0;
  --dark:     #1A1714;
  --dark2:    #2D2926;
  
  
  
  
  --gold:     #B89A4E;
  --gold-lt:  #EDE0C0;
  --text:     #3A3330;
  --muted:    #8A8380;
  --border:   #DDD5C8;
  --radius:   3px;
  --radius-lg: 12px;
  --max-w:    1160px;
  --shadow:   0 2px 20px rgba(26,23,20,.08);
  --shadow-lg: 0 12px 60px rgba(26,23,20,.14);
}

/* ── Typography ─────────────────────────────────────────────────── */
.serif  { font-family: 'Cormorant Garant', serif; }
h1, h2, .hero-title { font-family: 'Cormorant Garant', serif; }

/* ── Utilities ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.reveal    { opacity: 0; transform: translateY(32px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .30s; }
.reveal-delay-3 { transition-delay: .45s; }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.75rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(16px);
  padding: .9rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled .logo        { color: var(--dark); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .lang-btn    { color: var(--text); border-color: var(--border); }
.navbar.scrolled .nav-toggle  { color: var(--dark); }

.nav-inner { display: flex; align-items: center; gap: 2rem; position: relative; }
.mobile-lang { display: none; }
.logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem; font-weight: 600; font-style: italic;
  color: #fff; white-space: nowrap; flex: 0 0 auto;
  letter-spacing: .02em;
}
.nav-links {
  display: flex; list-style: none; gap: 2rem;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.85);
  letter-spacing: .12em; text-transform: uppercase;
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-switcher { display: flex; gap: .3rem; flex: 0 0 auto; }
.lang-btn {
  background: none; border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px; padding: .18rem .55rem;
  font-size: .68rem; font-weight: 600; cursor: pointer;
  font-family: 'Outfit', sans-serif; color: rgba(255,255,255,.85);
  letter-spacing: .08em; transition: all .2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
}
.navbar.scrolled .lang-btn:hover,
.navbar.scrolled .lang-btn.active {
  background: var(--dark); color: var(--cream); border-color: var(--dark);
}
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: #fff;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  animation: kenBurns 45s ease-in-out infinite alternate;
  transform-origin: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-bg.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1);    filter: brightness(.75); }
  to   { transform: scale(1.07); filter: brightness(.67); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,.35) 0%,
    rgba(26,23,20,.25) 50%,
    rgba(26,23,20,.6) 100%
  );
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-center {
  max-width: 720px; margin: 0 auto;
  text-align: center; color: #fff;
  padding: 7rem 0 5rem;
}


.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { flex: 0 0 32px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 500;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: .5rem; z-index: 1;
}
.scroll-hint-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Hero Stats Bar */
.hero-stats-bar {
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.hero-stats-inner {
  display: flex; align-items: center; justify-content: center;
}
.hero-stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: .3rem; padding: 0 3.5rem; text-align: center;
}
.hero-stat-item .hero-stat-val {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.65rem; font-weight: 700; color: var(--dark); line-height: 1;
}
.hero-stat-item .hero-stat-lbl {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.hero-stat-sep {
  width: 1px; height: 44px; background: var(--border); flex: 0 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: .78rem; cursor: pointer;
  transition: all .25s; border: 1.5px solid transparent;
  letter-spacing: .1em; text-transform: uppercase;
}
.btn-terra {
  background: var(--dark); color: var(--cream);
  border-color: var(--dark);
}
.btn-terra:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-ocean { background: transparent; color: var(--dark); border-color: var(--border); border-width: 1.5px; border-style: solid; }
.btn-ocean:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }

/* ── Section commons ─────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-cream    { background: var(--cream); }
.bg-cream-dk { background: var(--cream-dk); }
.bg-ocean    { background: var(--dark); }
.bg-dark     { background: var(--dark); }

.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; flex: 0 0 24px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--dark);
  letter-spacing: -.01em; line-height: 1.1;
}
.section-body {
  font-size: 1rem; color: var(--muted);
  margin-top: 1rem; max-width: 520px; line-height: 1.85;
  font-weight: 300;
}

/* ── About ───────────────────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--dark); color: var(--cream);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
  min-width: 120px;
}
.about-badge-score {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--gold-lt);
}
.about-badge-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; opacity: .85; margin-top: .2rem;
}
.about-badge-stars { font-size: .9rem; margin-top: .25rem; letter-spacing: .1em; color: var(--gold); }

.about-text .section-body { max-width: 100%; }
.about-text .section-body + .section-body { margin-top: .75rem; }
.about-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  padding: 1.5rem 1rem; text-align: center;
  border-right: 1px solid var(--border);
  background: #fff;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--dark);
  line-height: 1; display: block;
}
.stat-lbl {
  font-size: .68rem; color: var(--muted); margin-top: .3rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: .4rem;
}
.g-item {
  overflow: hidden; border-radius: var(--radius); cursor: zoom-in;
  background: var(--cream-dk); position: relative;
}
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(28,21,16,0); transition: background .4s;
}
.g-item:hover::after { background: rgba(26,23,20,.28); }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1); display: block;
}
.g-item:hover img { transform: scale(1.05); }
.g-feat  { grid-column: 1 / 8;  grid-row: 1 / 3; aspect-ratio: auto; min-height: 480px; }
.g-sm-1  { grid-column: 8 / 13; grid-row: 1 / 2; }
.g-sm-2  { grid-column: 8 / 13; grid-row: 2 / 3; }
.g-bot-1 { grid-column: 1  / 5; }
.g-bot-2 { grid-column: 5  / 9; }
.g-bot-3 { grid-column: 9  / 13; }
.g-sm-1, .g-sm-2, .g-bot-1, .g-bot-2, .g-bot-3 { aspect-ratio: 4/3; }

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(28,21,16,.97);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; animation: lbIn .2s; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 2rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  border-radius: 50%; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-left-color .2s;
  border-left: 2px solid transparent;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer;
  border-radius: 50%; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 501;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
@media (max-width: 600px) {
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

/* ── Amenities ───────────────────────────────────────────────────── */
.amenities-list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.amenity-row {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; padding: 1.1rem 1.4rem;
  transition: background .2s, border-left-color .2s;
  border-left: 2px solid transparent;
}
.amenity-row:hover { background: var(--cream); border-left-color: var(--gold); }
.am-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,152,91,.1); border-radius: 8px;
}
.am-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); stroke-width: 1.75; fill: none;
}
.am-label { font-size: .88rem; font-weight: 400; color: var(--text); }

/* ── Quote ───────────────────────────────────────────────────────── */
.quote-section {
  background: var(--dark); padding: 8rem 0; text-align: center; position: relative; overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute; top: -2rem; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garant', serif; font-size: 22rem;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic; color: rgba(255,255,255,.92);
  max-width: 700px; margin: 0 auto 1.5rem; line-height: 1.55;
  position: relative; z-index: 1; font-weight: 400;
}
.quote-source { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); }
.quote-stars   { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }

/* ── Location ────────────────────────────────────────────────────── */
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ── Why Direct ──────────────────────────────────────────────────── */
.direct-section { background: var(--cream-dk); padding: 5rem 0; }
.direct-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.direct-card {
  padding: 2rem 1.5rem;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow .3s, transform .3s;
}
.direct-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.direct-icon {
  width: 44px; height: 44px; margin-bottom: .85rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,152,91,.1); border-radius: 10px;
}
.direct-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.75; fill: none; }
.direct-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem;
}
.direct-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── Booking ─────────────────────────────────────────────────────── */
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.book-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  text-align: center; transition: box-shadow .3s, transform .3s;
}
.book-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.book-platform {
  width: 100%; padding: 1rem; border-radius: var(--radius);
  font-size: 1.05rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.plat-airbnb  { background: linear-gradient(135deg, #ff5a5f 0%, #fc2d55 100%); }
.plat-booking { background: linear-gradient(135deg, #003b95 0%, #0052cc 100%); }
.plat-getaway { background: linear-gradient(135deg, #1a5c3a 0%, #27864f 100%); }
.book-note { font-size: .82rem; color: var(--muted); font-weight: 300; }
.btn-book-card { width: 100%; justify-content: center; padding: .8rem 1.5rem; font-size: .75rem; }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-wrap { display: flex; flex-direction: column; gap: .3rem; }
.field-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: .9rem;
  background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,107,69,.1);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-aside {
  background: var(--dark); color: #fff;
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.aside-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.45rem; font-style: italic; color: #fff;
  margin-bottom: 1.75rem; line-height: 1.3;
}
.aside-row { display: flex; gap: .85rem; margin-bottom: 1.25rem; align-items: flex-start; }
.aside-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.aside-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.75; fill: none; }
.aside-info { font-size: .88rem; line-height: 1.6; }
.aside-info a { color: rgba(255,255,255,.75); transition: color .2s; }
.aside-info a:hover { color: var(--gold-lt); }
.aside-info strong {
  color: var(--gold-lt); display: block;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .15rem;
}
.aside-sep { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 1.5rem 0; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 4rem 0 2rem; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo { font-size: 1.45rem; margin-bottom: .75rem; display: block; color: rgba(255,255,255,.88); }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; font-weight: 300; }
.footer-col h5 {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .5rem; padding-top: 1.5rem; font-size: .75rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-inner { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat-item { padding: 0 2rem; }
  .hero-stat-sep { display: none; }
  .about-layout, .location-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 480px; }
  .about-badge { right: 0; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .g-feat  { grid-column: 1 / 3; grid-row: 1; min-height: 320px; aspect-ratio: 16/9; }
  .g-sm-1  { grid-column: 1 / 2; grid-row: 2; }
  .g-sm-2  { grid-column: 2 / 3; grid-row: 2; }
  .g-bot-1, .g-bot-2, .g-bot-3 { grid-column: span 1; grid-row: auto; }
  .g-bot-3 { display: none; }
  .booking-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .direct-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .amenities-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .section { padding: 3rem 0; }
  .section-sm { padding: 2.5rem 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.2; margin-bottom: .5rem; }
  .hero-center { padding: 2.5rem 0 3rem; }
  .hero-eyebrow { margin-bottom: .75rem; }
  .hero-desc { font-size: .8rem; margin-bottom: .75rem; }
  .hero-ctas { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-top: .75rem; }
  .scroll-hint { bottom: 1rem; margin-top: 1.5rem; }
  .hero-stats-bar { padding: 1.25rem 0; }
  .hero-stat-item { padding: .5rem 1rem; }
  .section-title { font-size: 1.6rem; margin-bottom: 1rem; }
  .container { padding: 0 1.25rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* ── Mobile navbar ── */
  .navbar { padding: .75rem 0; }
  .navbar.scrolled { padding: .5rem 0; }
  .nav-inner {
    display: flex;
    align-items: center;
  }
  .logo { flex: 1; font-size: 1.15rem; }

  /* Hide lang switcher from top bar — moves into menu */
  .lang-switcher { display: none; }

  /* Hamburger button — dark rounded box */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .navbar.scrolled .nav-toggle {
    background: var(--dark);
    color: #fff;
  }

  /* Dropdown menu — full width, slides under navbar */
  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--dark);
    padding: .5rem 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
    z-index: 100;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block !important;
    padding: .9rem 1.5rem !important;
    font-size: .8rem !important;
    color: rgba(255,255,255,.9) !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s;
  }
  .nav-links a:hover { background: rgba(255,255,255,.05); color: var(--gold) !important; }
  .nav-links a::after { display: none !important; }
  .navbar.scrolled .nav-links a { color: rgba(255,255,255,.9) !important; }
  .navbar.scrolled .nav-links { background: var(--dark); }

  /* Language switcher inside menu */
  .mobile-lang { display: flex !important; }
  .direct-grid { grid-template-columns: 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .g-feat, .g-sm-1, .g-sm-2, .g-bot-1, .g-bot-2 { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; min-height: auto; }
  .hero-desc { font-size: .85rem; }
  .btn { padding: .7rem 1.5rem; font-size: .72rem; }
  .about-layout { gap: 2rem; }
  .about-text { gap: .5rem; }
  .eyebrow { margin-bottom: .5rem; }
  .walk-section { display: none; }
  .trust-strip { padding: 2.5rem 0; }
  .nearby-section { padding: 3rem 0; }
  .guide-section { padding: 3rem 0; }
  .events-section { padding: 3rem 0; }
  .faq-section { padding: 3rem 0; }
  .booking-grid { gap: 1rem; }
  .contact-layout { gap: 2rem; }
  .savings-banner { padding: 2rem 0; }
  .savings-heading { font-size: 1.4rem; margin-bottom: 1.2rem; }
}


/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
/* ── Book Now Float Button ──────────────────────────────────── */
.book-float {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  background: var(--dark);
  color: var(--cream);
  padding: .65rem 1.25rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: background .2s;
}
.book-float:hover {
  background: var(--gold);
  color: var(--dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}


/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--dark);
  color: var(--gold-lt);
}
.reviews-section .eyebrow {
  color: var(--gold);
}
.reviews-section .section-title {
  color: var(--cream);
}
.reviews-summary {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(184,152,91,.35);
  background: rgba(184,152,91,.04);
  border-radius: 0 4px 4px 0;
}
.reviews-summary-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(250,248,245,.65);
}
.reviews-summary-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.reviews-summary-badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(184,152,91,.75);
  border: 1px solid rgba(184,152,91,.3);
  border-radius: 2px;
  padding: 0.2rem 0.65rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 154, 78, 0.2);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  font-style: italic;
  flex: 1;
}
.review-footer {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.85rem;
}
.review-author {
  font-size: 0.85rem;
  color: var(--gold-lt);
  font-weight: 500;
}
.review-platform-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(138, 131, 128, 0.4);
  border-radius: 2px;
  padding: 0.15rem 0.5rem;
  width: fit-content;
}
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--cream-dk); }
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--dark); }
.faq-q::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-weight: 300;
}
.faq-item.open .faq-q { color: var(--dark); }
.faq-item.open .faq-q::after {
  content: "−";
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding: 0 2rem 1.25rem 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.95rem;
}


/* ============================================================
   NEIGHBOURHOOD GUIDE SECTION
   ============================================================ */
.nearby-section { background: var(--cream-dk); }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 3rem auto 0;
}
.nearby-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nearby-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nearby-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,152,91,.12); border-radius: 50%;
}
.nearby-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.75; fill: none; }
.nearby-info strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.nearby-info span {
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 700px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOCAL GUIDE SECTION
   ============================================================ */
.guide-section {
  background: var(--dark);
}
.guide-section .section-title {
  color: var(--cream);
}
.guide-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  flex-wrap: wrap;
}
.guide-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.85rem 1.5rem;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.guide-tab:hover {
  color: var(--cream);
}
.guide-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.guide-panels {
  padding-top: 0.5rem;
}
.guide-panel {
  display: none;
}
.guide-panel.active {
  display: block;
}
.guide-entry {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.guide-entry:last-child {
  border-bottom: none;
}
.guide-entry-main {
  flex: 1;
}
.guide-entry-main strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.guide-entry-main p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.guide-dist {
  font-size: 0.78rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .guide-tab {
    padding: 0.75rem 0.9rem;
    font-size: 0.72rem;
  }
  .guide-entry {
    flex-direction: column;
    gap: 0.4rem;
  }
  .guide-dist {
    padding-top: 0;
  }
}

/* Guide entry name links */
.guide-entry-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.guide-name-link {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.guide-name-link:hover {
  color: var(--gold);
}
.guide-map-btn {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}
.guide-map-btn:hover {
  color: var(--gold);
}

/* ── Photo overlay ────────────────────────────────────────────── */
.gallery-see-all { text-align: center; margin-top: 1.25rem; }
.see-all-btn {
  background: none; border: none; color: var(--gold);
  font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  text-decoration: underline; text-underline-offset: 4px;
  padding: 0.5rem 1rem; transition: color .2s;
}
.see-all-btn:hover { color: var(--cream); }
.photo-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: var(--dark); overflow-y: auto; padding: 2rem;
}
.photo-overlay.open { display: block; }
.photo-overlay-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.photo-overlay-title { color: var(--cream); font-family: var(--font-serif); font-size: 1.4rem; }
.photo-overlay-close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  border-radius: 50%; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.photo-overlay-close:hover { background: rgba(255,255,255,.22); }
.photo-overlay-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .5rem; max-width: 1100px; margin: 0 auto;
}
.po-item {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); cursor: zoom-in;
}
.po-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.po-item:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .photo-overlay-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-overlay { padding: 1rem; }
}

.book-platform svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; fill: none; vertical-align: middle; margin-right: 4px; }
/* ── Trust counter strip ──────────────────────────────────────────── */
.trust-strip { background: var(--dark); padding: 3.5rem 0; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.trust-stat { text-align: center; padding: 0 3rem; }
.trust-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.trust-num { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); line-height: 1; }
.trust-unit { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); }
.trust-lbl { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 0.5rem; }
.trust-sep { width: 1px; height: 50px; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media (max-width: 700px) {
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-sep { display: none; }
  .trust-stat { padding: 0 1rem; }
}

/* ── Walk animation ───────────────────────────────────────────────── */
.walk-section { background: var(--dark); padding: 4rem 0 3.5rem; }
.walk-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.walk-eyebrow { color: var(--gold); }
.walk-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; line-height: 1.25; margin: 0.5rem 0 1.25rem; }
.walk-title em { color: var(--gold); font-style: italic; }
.walk-desc { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; }
.walk-time { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.45); font-size: 0.875rem; margin-top: 1.25rem; }
.walk-time svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

/* Architectural ruler */
.walk-visual { display: flex; flex-direction: column; align-items: flex-start; padding-left: 2rem; }
.walk-ruler { display: flex; flex-direction: column; align-items: flex-start; }

.walk-ruler-origin { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 0.75rem; }
.walk-ruler-icon { display: flex; align-items: center; }
.walk-ruler-icon svg { width: 18px; height: 18px; stroke-width: 1.5; fill: none; stroke: rgba(184,152,91,.6); }
.walk-ruler-place {
  font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(184,152,91,.65);
}

.walk-ruler-track {
  position: relative;
  width: 140px; height: 280px;
}
.walk-ruler-rail {
  position: absolute; top: 0; bottom: 0; left: 0; width: 1.5px;
  background: rgba(255,255,255,.07);
}
.walk-ruler-fill {
  position: absolute; top: 0; left: 0; width: 1.5px; height: 0%;
  background: linear-gradient(180deg, rgba(184,152,91,.85) 0%, rgba(74,144,217,.7) 100%);
  box-shadow: 0 0 8px rgba(184,152,91,.3);
}
.walk-ruler-dot {
  position: absolute; top: 0%; left: 0;
  transform: translate(-50%, -50%); z-index: 4;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,152,91,.12), 0 0 12px rgba(184,152,91,.65);
}
.walk-ruler-dot::after {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(184,152,91,.3);
  animation: rulerPulse 2.2s ease-in-out infinite;
}
@keyframes rulerPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0; transform: scale(2.4); }
}
.walk-ruler-tick {
  position: absolute; left: 0;
  display: flex; align-items: center;
  transform: translateY(-50%);
}
.walk-ruler-mark {
  width: 10px; height: 1px;
  background: rgba(255,255,255,.12);
  transition: background 0.5s ease, width 0.3s ease;
  flex-shrink: 0;
}
.walk-ruler-label {
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.78rem; color: rgba(255,255,255,.18);
  margin-left: 9px; white-space: nowrap;
  transition: color 0.5s ease;
  letter-spacing: 0.01em;
}
.walk-ruler-tick.active .walk-ruler-mark {
  background: rgba(184,152,91,.65);
  width: 14px;
}
.walk-ruler-tick.active .walk-ruler-label {
  color: rgba(184,152,91,.8);
}

/* Destination */
.walk-ruler-dest {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; margin-top: 0.75rem;
}
.walk-ruler-beach svg {
  width: 20px; height: 20px; stroke-width: 1.5; fill: none;
  stroke: rgba(74,144,217,.4);
  transition: stroke 0.9s ease, filter 0.9s ease;
}
.walk-ruler-beach.arrived svg {
  stroke: #4A90D9;
  filter: drop-shadow(0 0 7px rgba(74,144,217,.6));
}
.walk-ruler-name {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.9rem; letter-spacing: 0.01em; line-height: 1;
  color: rgba(255,255,255,.22);
  transition: color 1.1s ease;
}
.walk-ruler-name.arrived { color: var(--gold); }
.walk-ruler-sub {
  font-family: var(--font-sans); font-size: 0.57rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.18);
}

@media (max-width: 700px) {
  .walk-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .walk-visual { align-items: center; padding-left: 0; }
  .walk-ruler { align-items: flex-start; }
  .walk-ruler-track { height: 220px; }
  .walk-ruler-name { font-size: 1.55rem; }
}

/* ── Climate strip ────────────────────────────────────────────────────── */
.climate-section { background: #201e1b; border-top: 1px solid rgba(184,152,91,.12); }
.climate-section .section-title { color: #fff; }
.climate-section .eyebrow { color: var(--gold); }
.climate-sub { text-align: left; color: rgba(255,255,255,.38); max-width: 520px; margin: 0.5rem 0 3rem; }
.climate-chart {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 0; height: 290px; padding-top: 44px;
  position: relative;
}
.climate-chart::after {
  content: '';
  position: absolute; bottom: 36px; left: 0; right: 0;
  height: 1px; background: rgba(184,152,91,.14);
  pointer-events: none;
}
.climate-month { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; flex: 1; }
.climate-bar-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  width: 100%; height: 220px; position: relative;
}
.climate-temp-bar {
  width: 52%; min-width: 6px; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(184,152,91,.95) 0%, rgba(184,152,91,.38) 100%);
  height: 0; transition: height 0.85s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.climate-val {
  position: absolute;
  top: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.85rem; color: rgba(255,255,255,.7); white-space: nowrap;
  opacity: 0; transition: opacity 0.4s ease 0.5s;
}
.climate-temp-bar.revealed .climate-val { opacity: 1; }
.climate-label {
  font-size: 0.65rem; color: rgba(255,255,255,.28);
  margin-top: 8px; font-family: var(--font-sans);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.climate-sun-pip {
  border-radius: 50%;
  background: rgba(184,152,91,.45);
  margin-top: 5px;
  width: 4px; height: 4px; /* overridden by JS */
}
.climate-legend { display: flex; justify-content: flex-start; gap: 2rem; margin-top: 1.75rem; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,.3); font-family: var(--font-sans); }
.legend-dot { width: 8px; height: 8px; border-radius: 2px; }
.legend-pip { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.legend-temp-dot { background: rgba(184,152,91,.85); }
.legend-sun-pip { background: rgba(184,152,91,.42); }
@media (max-width: 600px) {
  .climate-chart { gap: 0; height: 200px; padding-top: 28px; }
  .climate-label { font-size: 0.55rem; }
  .climate-val { font-size: 0.62rem; top: -18px; }
}

/* ── Weather strip ────────────────────────────────────────────────── */
.weather-strip { background: rgba(28,21,16,.96); border-bottom: 1px solid rgba(184,152,91,.2); padding: 0.85rem 0; }
.weather-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.weather-icon { font-size: 1.6rem; line-height: 1; }
.weather-main { display: flex; align-items: baseline; gap: 0.6rem; }
.weather-temp { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.weather-desc { font-size: 0.85rem; color: rgba(255,255,255,.7); }
.weather-details { display: flex; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,.5); }
.weather-place { margin-left: auto; font-size: 0.75rem; color: rgba(255,255,255,.35); letter-spacing: 0.04em; }
@media (max-width: 600px) {
  .weather-place { display: none; }
}

/* ── Price estimator ──────────────────────────────────────────────── */
.est-card {
  max-width: 680px; margin: 0 auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2rem 2.5rem; border: 1px solid var(--border);
}
.est-fields { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.est-field { display: flex; flex-direction: column; gap: 0.4rem; }
.est-label { font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); font-family: var(--font-sans); }
.est-input {
  padding: 0.65rem 0.85rem; border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--dark); background: var(--cream); outline: none;
  transition: border-color .2s;
}
.est-input:focus { border-color: var(--gold); }
.est-result { display: none; }
.est-result.visible { display: block; }
.est-result-inner { display: flex; align-items: stretch; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.est-col { flex: 1; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.35rem; background: var(--cream); }
.est-col-direct { background: rgba(184,152,91,.06); }
.est-divider { width: 1px; background: var(--border); flex-shrink: 0; }
.est-col-label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.est-price { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); line-height: 1; }
.est-price-direct { color: var(--gold); }
.est-nights { font-size: 0.8rem; color: var(--muted); }
.est-saving {
  text-align: center; padding: 0.6rem 1rem; margin-bottom: 1rem;
  background: rgba(34,120,60,.08); border-radius: 6px;
  font-size: 0.88rem; color: #1a6b38; font-weight: 500;
}
.est-cta { display: block; text-align: center; text-decoration: none; }
@media (max-width: 600px) {
  .est-fields { grid-template-columns: 1fr 1fr; }
  .est-card { padding: 1.5rem; }
  .est-result-inner { flex-direction: column; }
  .est-divider { width: auto; height: 1px; }
}

/* ── Local Events section ───────────────────────────────────────────── */
.events-section {
  background: var(--cream);
}
.events-eyebrow { color: var(--gold); }
.events-section .section-title { color: var(--dark); text-align: left; }
.events-sub { text-align: left; color: var(--muted); max-width: 520px; margin: 0.5rem 0 2rem; }

/* Full-width carousel */
.events-carousel-wrap {
  position: relative;
  width: 100%;
}
.events-track {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 8px 64px 20px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.events-track::-webkit-scrollbar { display: none; }

/* Nav arrows — overlaid at edges */
.events-nav {
  position: absolute; top: calc(50% - 20px); transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(30,22,10,.18);
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.events-nav:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
.events-nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.events-prev { left: 16px; }
.events-next { right: 16px; }

/* Card */
.event-card {
  flex: 0 0 310px; scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(30,22,10,.1);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(30,22,10,.12); }

/* Card image */
.event-img-wrap { position: relative; height: 200px; overflow: hidden; }
.event-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }
.event-date {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.68); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.88rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.02em;
}
.event-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.67rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
}
.event-badge.free  { background: rgba(52,199,89,.12); color: #34c759; border: 1px solid rgba(52,199,89,.28); }
.event-badge.paid  { background: rgba(184,152,91,.14); color: var(--gold); border: 1px solid rgba(184,152,91,.3); }

/* Card body */
.event-body { padding: 16px; }
.event-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark); margin: 0 0 6px; line-height: 1.3; }
.event-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin: 0 0 12px; }
.event-loc   { display: flex; align-items: center; gap: 5px; font-size: 0.74rem; color: var(--gold); }
.event-loc svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; flex-shrink: 0; }

@media (max-width: 700px) {
  .events-track { padding: 8px 48px 20px; }
  .events-nav { width: 34px; height: 34px; }
  .events-prev { left: 8px; }
  .events-next { right: 8px; }
  .event-card { flex: 0 0 260px; }
  .event-img-wrap { height: 170px; }
}


.event-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
}
.event-link:hover { gap: 7px; opacity: 0.8; }

/* ── Savings Banner ────────────────────────────────────────────── */
.savings-banner {
  background: var(--dark);
  color: #fff;
  padding: 3.5rem 0;
}
.savings-inner {
  text-align: center;
}
.savings-heading {
  font-family: 'Cormorant Garant', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--gold-lt);
}
.savings-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.8rem;
}
.savings-card {
  background: var(--dark2);
  border: 1px solid rgba(184,154,78,.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.savings-pct {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.savings-vs {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.savings-note {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.savings-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.savings-note a:hover {
  color: var(--gold-lt);
}

@media (max-width: 600px) {
  .savings-cards { flex-direction: column; gap: 1rem; align-items: center; }
  .savings-card { padding: 1.2rem 2rem; width: 100%; max-width: 280px; }
  .savings-heading { font-size: 1.6rem; }
  .savings-pct { font-size: 2.2rem; }
}

/* ── Date Picker ───────────────────────────────────────────────── */
.date-display {
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  min-height: 2.6rem;
  display: flex;
  align-items: center;
}
.date-display.has-value { color: var(--text); font-weight: 500; }
.date-trigger-wrap { cursor: pointer; }

.dp-calendar {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: .5rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  position: relative;
}
.dp-calendar.open { display: block; }

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.dp-months-title {
  display: flex;
  gap: 3rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}
.dp-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .2s;
}
.dp-nav:hover { background: var(--cream); }

.dp-body {
  display: flex;
  gap: 2rem;
}
.dp-month {
  flex: 1;
}
.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px 0;
}
.dp-day {
  text-align: center;
  padding: .55rem 0;
  font-size: .85rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s, color .15s;
  color: var(--text);
  position: relative;
}
.dp-day:hover:not(.dp-empty):not(.dp-past) { background: var(--cream-dk); }
.dp-day.dp-empty { cursor: default; }
.dp-day.dp-past { color: var(--border); cursor: default; }
.dp-day.dp-blocked {
  color: var(--border);
  cursor: default;
  text-decoration: line-through;
  position: relative;
}
.dp-day.dp-blocked:hover { background: none; }
.dp-day.dp-start {
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
}
.dp-day.dp-end {
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
}
.dp-day.dp-in-range {
  background: var(--cream-dk);
  border-radius: 0;
}
.dp-day.dp-start.dp-in-range { border-radius: 50% 0 0 50%; }
.dp-day.dp-end.dp-in-range { border-radius: 0 50% 50% 0; }
.dp-day.dp-start { border-radius: 50%; }
.dp-day.dp-end { border-radius: 50%; }
.dp-day.dp-in-range:not(.dp-start):not(.dp-end) { border-radius: 0; }

@media (max-width: 600px) {
  .dp-body { flex-direction: column; gap: 1.5rem; }
  .dp-months-title { gap: 1rem; font-size: 1.1rem; }
  .dp-calendar { padding: 1rem; }
}

/* ── Availability Calendar (read-only) ─────────────────────────── */
.avail-cal {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow);
}
.avail-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.avail-cal-body {
  display: flex;
  gap: 3rem;
}
.avail-month-col {
  flex: 1;
}
.avail-month-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .8rem;
}
.avail-cal .dp-day { cursor: default; }
.avail-cal .dp-day:hover:not(.dp-empty) { background: none; }
.avail-cal .dp-day:not(.dp-past):not(.dp-blocked):not(.dp-empty) {
  color: #1a8a5a;
  font-weight: 500;
}
.avail-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.avail-legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--muted);
}
.avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.avail-dot-free { background: #1a8a5a; }
.avail-dot-booked { background: var(--border); }

@media (max-width: 600px) {
  .avail-cal { padding: 1.2rem; }
  .avail-cal-body { flex-direction: column; gap: 1.5rem; }
}
