/* ===========================
   TOP BANNER
   =========================== */
.top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 48px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.top-banner.hidden {
  transform: translateY(-100%);
}

.top-banner-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  transition: gap .2s;
}

.top-banner-link:hover { gap: 14px; }

.wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.top-banner-text { white-space: nowrap; }

.top-banner-arrow {
  font-size: .9rem;
  transition: transform .2s;
}

.top-banner-link:hover .top-banner-arrow {
  transform: translateX(4px);
}

.top-banner-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s;
}

.top-banner-close:hover { color: #fff; }

/* Push navbar & content down when banner is visible */
body.banner-visible #navbar { top: 41px; }
body.banner-visible #hero   { padding-top: 41px; }

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dark:       #17110a;
  --dark-2:     #231810;
  --dark-3:     #2e2015;
  --cream:      #f5ede0;
  --cream-2:    #ede0cc;
  --warm-white: #faf7f2;
  --text:       #1a130b;
  --text-muted: #7a6a58;
  --gold:       #b8975a;
  --gold-light: #d4b87a;
  --border:     rgba(26,19,11,.1);
  --border-dark: rgba(245,237,224,.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 2px 20px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { font-weight: 600; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   TYPOGRAPHY SYSTEM
   =========================== */
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
}

h2 em {
  font-style: italic;
  font-weight: 300;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow-light { color: var(--gold-light); }

/* ===========================
   SECTION VARIANTS
   =========================== */
section { padding: 110px 0; }

.section-dark {
  background: var(--dark);
  color: var(--cream);
}

.section-dark h2 { color: var(--cream); }
.section-dark h3 { color: var(--cream); }

.section-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.section-header-split--light h2 { color: var(--cream); }

.section-header-dark {
  margin-bottom: 56px;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 8px;
}

.section-intro--light { color: rgba(245,237,224,.6); }

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}

#navbar.scrolled {
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .04em;
  transition: color .3s;
}

#navbar.scrolled .nav-logo { color: var(--text); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .25s;
}

.nav-links a:hover { color: #fff; }

#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta {
  border: 1px solid rgba(255,255,255,.4) !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  color: #fff !important;
  transition: background .25s, border-color .25s !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.8) !important;
}

#navbar.scrolled .nav-cta {
  border-color: var(--border) !important;
  color: var(--text) !important;
}

#navbar.scrolled .nav-cta:hover {
  background: var(--dark) !important;
  color: var(--cream) !important;
  border-color: var(--dark) !important;
}

/* ── Weather tab ── */
.weather-tab {
  position: relative;
}

.weather-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 6px 14px 6px 10px;
  color: rgba(255,255,255,.9);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.weather-trigger:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
}

#navbar.scrolled .weather-trigger {
  background: var(--cream);
  border-color: var(--border);
  color: var(--text);
}

#navbar.scrolled .weather-trigger:hover {
  background: var(--cream-2);
}

.weather-trigger-icon { font-size: 1rem; line-height: 1; }
.weather-trigger-temp { font-weight: 600; letter-spacing: .02em; }

.weather-chevron {
  color: rgba(255,255,255,.5);
  transition: transform .25s, color .3s;
}

#navbar.scrolled .weather-chevron { color: var(--text-muted); }
.weather-tab.open .weather-chevron { transform: rotate(180deg); }

/* Panel */
.weather-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: var(--dark);
  border: 1px solid rgba(245,237,224,.1);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  padding: 20px;
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 50;
}

.weather-tab.open .weather-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.weather-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245,237,224,.08);
}

.weather-city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.weather-date {
  font-size: .72rem;
  color: rgba(245,237,224,.35);
  letter-spacing: .06em;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.weather-big-icon { font-size: 3rem; line-height: 1; }

.weather-big-temp {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}

.weather-condition {
  font-size: .8rem;
  color: rgba(245,237,224,.55);
  font-style: italic;
}

.weather-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245,237,224,.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.weather-detail-item {
  background: rgba(245,237,224,.03);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wd-icon { font-size: .9rem; }

.wd-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,237,224,.3);
  flex: 1;
}

.wd-value {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cream);
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 3px;
  transition: background .3s, border-color .3s;
}

#navbar.scrolled .lang-switcher {
  background: var(--cream);
  border-color: var(--border);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.55);
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 5px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}

.lang-btn:hover { color: #fff; }

.lang-btn.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}

#navbar.scrolled .lang-btn { color: var(--text-muted); }
#navbar.scrolled .lang-btn:hover { color: var(--text); }
#navbar.scrolled .lang-btn.active {
  background: var(--dark);
  color: var(--cream);
}

/* RTL support */
[dir="rtl"] .nav-container { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .section-header-split { direction: rtl; }
[dir="rtl"] .contact-wrapper { direction: rtl; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .footer-nav { flex-direction: row-reverse; }
[dir="rtl"] .restaurant-num,
[dir="rtl"] .activity-num { left: auto; right: 24px; }
[dir="rtl"] .lodging-badge { left: 20px; right: auto; }
[dir="rtl"] .activity-body ul li::before { margin-left: 4px; margin-right: 0; transform: scaleX(-1); }
[dir="rtl"] .hero-content { direction: rtl; }
[dir="rtl"] .hero-link { flex-direction: row-reverse; }
[dir="rtl"] .contact-form { direction: rtl; }
[dir="rtl"] .restaurant-details { direction: rtl; }
[dir="rtl"] .lodging-features { direction: rtl; }
[dir="rtl"] .music-btn { left: 32px; right: auto; }
[dir="rtl"] .music-btn::before { left: calc(100% + 10px); right: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s;
}

#navbar.scrolled .nav-toggle span { background: var(--text); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s ease;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(15,10,5,.6) 0%,
    rgba(15,10,5,.5) 50%,
    rgba(15,10,5,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: .9;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
  transition: border-color .25s, gap .25s;
}

.hero-link:hover { border-color: #fff; gap: 16px; }

.hero-meta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.hero-divider { opacity: .3; }

/* ===========================
   ABOUT
   =========================== */
#about {
  background: var(--warm-white);
}

.about-eyebrow { margin-bottom: 40px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.about-headline h2 {
  position: sticky;
  top: 100px;
}

.about-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--text); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--warm-white);
  padding: 36px 28px;
  text-align: center;
  transition: background .25s;
}

.stat:hover { background: var(--cream); }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number sup {
  font-size: 1.2rem;
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
}

.stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===========================
   GALLERY
   =========================== */
#gallery {
  padding-bottom: 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,10,5,.0);
  transition: background .4s;
}

.gallery-item:hover::after {
  background: rgba(15,10,5,.2);
}

.gallery-tall  { grid-row: span 2; }
.gallery-wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,10,5,.75));
  color: rgba(255,255,255,.9);
  padding: 48px 20px 18px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
  z-index: 1;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   ACTIVITIES
   =========================== */
#activities {
  background: var(--warm-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.activity-card {
  background: var(--warm-white);
  padding: 0;
  position: relative;
  transition: background .25s;
  display: flex;
  flex-direction: column;
}

.activity-card:hover { background: var(--cream); }

.activity-num {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .05em;
  z-index: 1;
}

.activity-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.activity-card:hover .activity-img {
  transform: scale(1.04);
}

.activity-body {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.activity-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.activity-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.activity-body ul li {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-body ul li::before {
  content: '—';
  opacity: .5;
  font-size: .7rem;
}

/* ===========================
   RESTAURANTS
   =========================== */
#restaurants {
  padding-bottom: 120px;
}

.restaurants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(245,237,224,.08);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.restaurant-card {
  background: var(--dark-2);
  position: relative;
  transition: background .3s;
  display: flex;
  flex-direction: column;
}

.restaurant-card:hover { background: var(--dark-3); }

.restaurant-num {
  position: absolute;
  top: 20px;
  left: 22px;
  font-family: var(--font-serif);
  font-size: .82rem;
  color: rgba(245,237,224,.4);
  letter-spacing: .05em;
  z-index: 1;
}

.restaurant-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.restaurant-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,10,5,.15);
}

.restaurant-info {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.restaurant-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}

.restaurant-info h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.restaurant-info p {
  font-size: .88rem;
  color: rgba(245,237,224,.55);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.restaurant-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(245,237,224,.1);
  padding-top: 16px;
}

.restaurant-details span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(245,237,224,.4);
  text-transform: uppercase;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid rgba(245,237,224,.1);
}

.restaurant-details span:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* ── Carousel ── */
.carousel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.carousel-track {
  display: flex;
  height: 100%;
  min-height: 340px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,10,5,.55);
  color: var(--cream);
  border: 1px solid rgba(245,237,224,.15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(15,10,5,.85);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn--prev { left: 14px; }
.carousel-btn--next { right: 14px; }

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245,237,224,.35);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.carousel-dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* The Vintage — featured card */
.restaurant-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  flex-direction: unset;
}

.restaurant-card--featured .restaurant-info {
  padding: 36px 32px;
}

.restaurant-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,237,224,.1);
  font-size: .78rem;
  color: rgba(245,237,224,.35);
  line-height: 1.5;
}

.restaurant-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: .8;
  transition: opacity .2s;
}

a.restaurant-address {
  cursor: pointer;
  transition: color .2s;
}

a.restaurant-address:hover {
  color: var(--gold-light);
}

a.restaurant-address:hover svg {
  opacity: 1;
}

/* ===========================
   LODGING
   =========================== */
#lodging {
  background: var(--warm-white);
}

.lodging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 80px;
}

.lodging-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
  position: relative;
}

.lodging-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lodging-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  flex-direction: unset;
}

.lodging-featured .lodging-img { height: 100%; min-height: 340px; }
.lodging-featured .lodging-info { padding: 44px 40px; }

.lodging-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--dark);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 1;
}

.lodging-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.lodging-card:hover .lodging-img { transform: scale(1.03); }

.lodging-info {
  padding: 26px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lodging-type {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.lodging-info h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}

.lodging-info > p:not(.lodging-type):not(.lodging-price) {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.lodging-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.lodging-features span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
}

.lodging-price {
  font-size: .9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
  margin-bottom: 0 !important;
}

.lodging-price strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
}

/* Lodging Video */
.lodging-video {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.lodging-video-label .eyebrow { display: block; }

.lodging-video-label h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lodging-video-label h3 em {
  font-style: italic;
  font-weight: 300;
}

.lodging-video-label p {
  font-size: .9rem;
  color: rgba(245,237,224,.55);
  line-height: 1.8;
}

.video-thumb {
  display: block;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, opacity .4s;
  opacity: .85;
}

.video-thumb:hover img {
  transform: scale(1.04);
  opacity: .7;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,10,5,.7);
  color: rgba(245,237,224,.85);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===========================
   CONTACT
   =========================== */
#contact { padding-bottom: 120px; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dark);
}

.contact-item:first-child { padding-top: 0; }

.contact-label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: .9rem;
  color: rgba(245,237,224,.65);
  line-height: 1.7;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,237,224,.5);
}

.optional {
  font-weight: 400;
  font-size: .68rem;
  color: rgba(245,237,224,.3);
  letter-spacing: 0;
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,237,224,.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,237,224,.25);
}

.form-group select option { background: var(--dark-2); color: var(--cream); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}

.btn-submit {
  width: 100%;
  background: var(--cream);
  color: var(--dark);
  border: none;
  padding: 15px 32px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .25s, transform .2s;
}

.btn-submit:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  margin-top: 20px;
  background: rgba(72,199,142,.1);
  border: 1px solid rgba(72,199,142,.25);
  color: rgba(168,240,203,.9);
  padding: 24px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 40px;
  height: 40px;
  background: rgba(72,199,142,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 12px;
}

.form-success strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 6px;
}

.form-success p {
  font-size: .84rem;
  color: rgba(168,240,203,.7);
}

.form-error {
  display: none;
  margin-top: 16px;
  background: rgba(220,80,60,.1);
  border: 1px solid rgba(220,80,60,.25);
  color: rgba(244,169,160,.9);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  text-align: center;
}

.form-error.visible { display: block; }

/* ===========================
   VISITOR BANNER
   =========================== */
.visitor-banner {
  background: var(--dark);
  border-top: 1px solid rgba(245,237,224,.06);
  padding: 20px 32px;
}

.visitor-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.visitor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  color: rgba(245,237,224,.5);
}

.visitor-item svg {
  flex-shrink: 0;
  color: var(--gold);
  opacity: .7;
}

.visitor-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.visitor-count {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
  transition: opacity .4s;
}

.visitor-count.loading { opacity: .3; }

.visitor-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,237,224,.35);
}

.visitor-divider {
  width: 1px;
  height: 36px;
  background: rgba(245,237,224,.08);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .visitor-banner { padding: 20px 16px; }
  .visitor-item { padding: 0 20px; gap: 10px; }
  .visitor-count { font-size: 1.3rem; }
  .visitor-label { font-size: .6rem; }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--dark);
  padding: 64px 0 40px;
}

.footer-top {
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.footer-top p {
  font-size: .88rem;
  color: rgba(245,237,224,.4);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-nav a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,237,224,.4);
  transition: color .2s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-copy {
  font-size: .72rem;
  color: rgba(245,237,224,.25);
  letter-spacing: .08em;
}

/* ===========================
   MUSIC BUTTON
   =========================== */
.music-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(245,237,224,.15);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: background .25s, transform .2s, border-color .25s;
  overflow: hidden;
}

.music-btn:hover {
  background: var(--dark-3);
  border-color: var(--gold);
  transform: scale(1.08);
}

.music-btn.playing {
  border-color: var(--gold);
}

.music-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Animated bars (visible when playing) */
.music-bars {
  position: absolute;
  bottom: 10px;
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.music-btn.playing .music-bars { display: flex; }
.music-btn.playing .music-icon--on { display: none; }

.music-bars span {
  display: block;
  width: 3px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: bar-bounce 1s ease-in-out infinite;
}

.music-bars span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 12px; animation-delay: .15s; }
.music-bars span:nth-child(3) { height: 6px;  animation-delay: .3s; }
.music-bars span:nth-child(4) { height: 10px; animation-delay: .1s; }

@keyframes bar-bounce {
  0%, 100% { transform: scaleY(.4); opacity: .7; }
  50%       { transform: scaleY(1);  opacity: 1;  }
}

/* Tooltip */
.music-btn::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: rgba(245,237,224,.8);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  border: 1px solid rgba(245,237,224,.1);
}

.music-btn:hover::before { opacity: 1; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .lodging-featured {
    grid-template-columns: 1fr;
    grid-column: span 2;
    flex-direction: column;
  }
  .lodging-featured .lodging-img { height: 260px; min-height: unset; }
  .lodging-featured .lodging-info { padding: 28px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }

  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1rem !important;
    color: rgba(245,237,224,.7) !important;
    letter-spacing: .2em !important;
  }
  .nav-cta {
    border-color: rgba(245,237,224,.2) !important;
    color: var(--cream) !important;
  }
  .nav-toggle { display: flex; }
  .weather-tab { order: -1; }
  .weather-panel { right: auto; left: 0; width: 260px; }

  /* Hero */
  .hero-content h1 { font-size: clamp(3.5rem, 16vw, 5.5rem); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.2rem; }

  /* Section headers */
  .section-header-split { grid-template-columns: 1fr; gap: 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }

  /* Activities */
  .activities-grid { grid-template-columns: 1fr; }

  /* Restaurants */
  .restaurants-grid { grid-template-columns: 1fr; }
  .restaurant-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .restaurant-gallery { min-height: 260px; }

  /* Lodging */
  .lodging-grid { grid-template-columns: 1fr; }
  .lodging-featured { grid-column: auto; }

  /* Lodging video */
  .lodging-video { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
