/* ====================================================
   CASA GIADA — Modern Mediterranean Luxury
   ==================================================== */

:root {
  --cream: #faf8f4;
  --white: #ffffff;
  --sand: #f2ede6;
  --stone: #e8e0d4;
  --gold: #b8945f;
  --gold-light: #d4b87a;
  --gold-dark: #96764a;
  --sage: #6b7d5e;
  --text: #2a2520;
  --text-light: #6b6259;
  --text-muted: #9a9189;
  --border: rgba(42, 37, 32, 0.08);
  --border-gold: rgba(184, 148, 95, 0.25);
  --shadow-sm: 0 2px 20px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 8px 40px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(42, 37, 32, 0.12);
  --nav-h: 80px;
  --section-pad: clamp(80px, 12vw, 140px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--white); }
img { display: block; width: 100%; height: auto; object-fit: contain; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}
.accent-line.centered { margin: 1.2rem auto; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }

/* ====================================================
   NAVIGATION
   ==================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(250, 248, 244, 0.98);
  transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

#navbar.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  font-style: normal;
}

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

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 100px;
  transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s;
}
.lang-switcher:hover { border-color: var(--gold); }
.current-lang {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.4s;
}
.lang-caret { font-size: 0.55rem; color: var(--text-muted); transition: color 0.4s; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.lang-dropdown button:hover { background: var(--sand); color: var(--gold); }
.lang-dropdown button.active { color: var(--gold); font-weight: 500; }
.lang-flag { font-size: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 16px 32px !important;
    font-size: 0.85rem;
    color: var(--text) !important;
    border: none !important;
    border-radius: 0 !important;
  }
  .nav-links a::after { display: none; }
}

/* ====================================================
   HERO — Full-width video, text below
   ==================================================== */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1a1a1a;
  padding-top: var(--nav-h);
}

.hero-video-wrap {
  width: 100%;
  position: relative;
  background: #1a1a1a;
}
.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(48px, 8vw, 80px) 20px;
  background: linear-gradient(to bottom, rgba(26,26,26,0.95), rgba(26,26,26,1));
}

.hero-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s var(--ease-out) both 0.3s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s var(--ease-out) both 0.5s;
}
.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 2rem;
  animation: fadeUp 0.8s var(--ease-out) both 0.7s;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) both 0.9s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184,148,95,0.3);
}
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-content { padding: 40px 20px 56px; }
}

/* ====================================================
   SHOWCASE
   ==================================================== */
.showcase {
  padding: 0;
  background: var(--cream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.showcase-item:first-child {
  grid-column: 1 / -1;
}
.showcase-item {
  height: auto;
  overflow: visible;
}
.showcase-item picture {
  display: block;
  width: 100%;
  height: auto;
}
.showcase-item img {
  width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain !important;
  object-position: center;
  transition: transform 0.8s var(--ease);
}
.showcase-item:hover img {
  transform: none;
}

.showcase-stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  padding: clamp(32px, 5vw, 56px) 20px;
  background: var(--white);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.stat-num small { font-size: 0.6em; }
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 2px; }
  .showcase-item { height: auto; }
  .showcase-stats { flex-wrap: wrap; gap: 24px; }
}

/* ====================================================
   INTERSTITIAL QUOTES
   ==================================================== */
.interstitial-quote {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.interstitial-quote.iq-alt {
  background: var(--sand);
}

.iq-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: -0.3em;
  user-select: none;
}

.interstitial-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 1rem;
}

.interstitial-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ====================================================
   ABOUT
   ==================================================== */
#about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text);
  transition: border-color 0.3s, transform 0.3s;
}
.about-feature:hover { border-color: var(--gold); transform: translateY(-2px); }
.about-feature i { color: var(--sage); font-size: 1.1rem; }

.about-img-solo {
  border-radius: 8px;
  overflow: visible;
  aspect-ratio: auto;
}
.about-img-solo img { transition: transform 0.8s var(--ease); }
.about-img-solo:hover img { transform: none; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-solo { max-width: 600px; margin: 0 auto; }
}

/* ====================================================
   HOSTS
   ==================================================== */
#hosts {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.hosts-header { text-align: center; margin-bottom: 48px; }

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.host-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.host-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.host-image { height: auto; overflow: visible; }
.host-image img { transition: transform 0.8s var(--ease); }
.host-card:hover .host-image img { transform: none; }

.host-info { padding: 28px 24px; }
.host-info h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 4px;
}
.host-role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.host-bio {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}
.host-bio a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 768px) {
  .hosts-grid { grid-template-columns: 1fr; max-width: 480px; }
  .host-image { height: auto; }
}

/* ====================================================
   SECTION BREAK
   ==================================================== */
.section-break {
  height: auto;
  overflow: visible;
  position: relative;
}
.parallax-break img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none !important;
  transition: none;
}

/* ====================================================
   ROOMS — All 3 images per room
   ==================================================== */
#rooms {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.rooms-header { text-align: center; margin-bottom: 56px; }
.rooms-header .section-sub { margin: 0 auto; }

.room-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow 0.4s;
}
.room-full:hover { box-shadow: var(--shadow-md); }

.room-full-info {
  padding: clamp(24px, 4vw, 40px);
}
.room-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.room-full-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.room-full-info p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.room-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.room-details i { color: var(--gold); }

.room-full-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.room-gallery-2,
.room-gallery-4,
.room-gallery-5,
.room-gallery-6 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
/* Kitchen now uses the same 2-column grid as other sections */
/* Center the 5th Veranda/Living image under the 2-column grid */
.room-gallery-5 .room-img:last-child {
  grid-column: 1 / -1;
  width: min(100%, calc(50% - 2px));
  justify-self: center;
}
.room-img {
  height: auto;
  overflow: visible;
  cursor: pointer;
  position: relative;
}
.room-img img { transition: transform 0.6s var(--ease); }
.room-img:hover img { transform: none; }

@media (max-width: 768px) {
  .room-full-gallery,
  .room-gallery-2,
  .room-gallery-4,
  .room-gallery-5,
  .room-gallery-6 { grid-template-columns: 1fr; }
  .room-gallery-5 .room-img:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
  .room-img { height: auto; }
}

/* Amenities */
.amenities-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  margin-top: 16px;
}
.amenities-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.amenity:hover { border-color: var(--gold); transform: translateY(-2px); }
.amenity i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }

/* ====================================================
   GALLERY
   ==================================================== */
/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26,25,20,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
#lightbox.open { display: flex; }

.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
}
.lb-img {
  max-width: 85vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  animation: lbFade 0.35s var(--ease-out);
}
@keyframes lbFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); }
.lb-prev { left: -64px; }
.lb-next { right: -64px; }

.lb-close {
  position: fixed;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.lb-close:hover { background: var(--gold); border-color: var(--gold); }

.lb-caption {
  position: fixed;
  bottom: 56px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-align: center;
  max-width: 80vw;
  white-space: nowrap;
}
.lb-counter {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
}

/* ====================================================
   EXPLORE SALENTO
   ==================================================== */
#surroundings {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.explore-header { text-align: center; margin-bottom: 48px; }
.explore-header .section-sub { margin: 0 auto; }

.explore-map {
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.explore-map img {
  width: 100%;
  height: auto;
  display: block;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.explore-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.explore-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s var(--ease);
}
.explore-card:hover .explore-card-img img { transform: none; }

.explore-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.explore-card-body { padding: 16px 20px 20px; }
.explore-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-top: 6px; }
.explore-dist {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   REVIEWS — Expandable list
   ==================================================== */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--sand);
  overflow: hidden;
}

.review-summary {
  max-width: 1100px;
  margin: 0 auto 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
.review-summary-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 220px;
}
.review-summary-link {
  text-decoration: none;
  color: inherit;
}
.review-summary-link:hover {
  background: rgba(184, 148, 95, 0.04);
}
.review-summary-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.rs-muted { font-size: 0.85rem; color: var(--text-muted); }

.rs-booking-logo {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #003580;
  margin-bottom: 24px;
}
.rs-booking-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rs-booking-score {
  background: #003580;
  color: #fff;
  border-radius: 8px 8px 8px 0;
  padding: 8px 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.rs-booking-text { text-align: left; }
.rs-booking-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.rs-google-logo {
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  line-height: 1;
  margin-bottom: 8px;
}
.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }
.rs-google-sub {
  font-size: 1rem;
  color: #202124;
  margin-bottom: 14px;
}
.rs-google-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rs-bars { min-width: 140px; }
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.rs-bar-row span {
  width: 10px;
  font-size: 0.75rem;
  color: #70757a;
}
.rs-bar-row div {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: #e8eaed;
  overflow: hidden;
}
.rs-bar-row i {
  display: block;
  height: 100%;
  background: #fbbc04;
}
.rs-google-score strong {
  display: block;
  font-size: 2.2rem;
  color: #3c4043;
  line-height: 1;
}
.rs-google-score em {
  display: block;
  font-style: normal;
  color: #fbbc04;
  letter-spacing: 0.08em;
  margin: 2px 0 4px;
}

.rs-trip-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.rs-trip-logo-img {
  height: clamp(28px, 3.2vw, 42px);
  width: auto;
}
.rs-trip-bubbles {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.rs-trip-bubbles i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #34e0a1;
}
.rs-trip-score {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 6px;
}

.reviews-header { text-align: center; margin-bottom: 40px; }

.reviews-list {
  max-width: 800px;
  margin: 0 auto;
}

.review-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 24px;
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.ri-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.5;
  position: absolute;
  top: 24px; left: 24px;
  user-select: none;
}

.review-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
  padding-left: 28px;
}

.ri-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 28px;
}
.ri-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.ri-author strong { font-size: 0.85rem; display: block; font-weight: 500; }
.ri-author em { font-size: 0.72rem; color: var(--text-muted); font-style: normal; display: block; }

.reviews-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.reviews-hidden.expanded { max-height: 2000px; }

.reviews-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 12px 28px;
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
}
.reviews-toggle:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.reviews-toggle i { transition: transform 0.3s; font-size: 1rem; }
.reviews-toggle.expanded i { transform: rotate(180deg); }

@media (max-width: 768px) {
  .review-summary {
    grid-template-columns: 1fr;
  }
  .review-summary-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .review-summary-card {
    min-height: auto;
    padding: 24px 18px;
  }
  .rs-google-grid {
    width: 100%;
    justify-content: center;
  }
  .rs-bars { min-width: 120px; }
  .review-item { padding: 24px 20px 20px; }
  .review-item p { padding-left: 20px; }
  .ri-author { padding-left: 20px; }
}

/* ====================================================
   BOOKING / CONTACT
   ==================================================== */
#booking {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.booking-info .section-sub { margin-bottom: 2rem; }

.booking-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s;
}
.platform-btn:hover { border-color: var(--gold); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.platform-btn i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.platform-btn strong { font-size: 0.88rem; display: block; }
.platform-btn small { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 1px; }

.policies {
  list-style: none;
  margin: 0 0 2rem;
}
.policies li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.policies li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.contact-details a:hover { color: var(--gold); }
.contact-details i { color: var(--gold); font-size: 1rem; width: 18px; text-align: center; }

.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.form-sub { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,148,95,0.1);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
select option { background: var(--white); }
textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success i { font-size: 2.5rem; color: var(--sage); margin-bottom: 12px; display: block; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.9rem; }

@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ====================================================
   MAP
   ==================================================== */
#directions {
  height: 360px;
  background: var(--sand);
}
.map-embed {
  width: 100%;
  height: 100%;
  border: none;
}

/* ====================================================
   FOOTER
   ==================================================== */
#footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold-light); font-style: italic; }
.footer-desc { font-size: 0.84rem; line-height: 1.7; max-width: 260px; margin-bottom: 16px; }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

#footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 16px;
}
#footer ul { list-style: none; }
#footer ul li { margin-bottom: 8px; font-size: 0.84rem; }
#footer ul a { transition: color 0.2s; }
#footer ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-coords {
  font-family: monospace;
  font-size: 0.7rem;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ====================================================
   SCROLLBAR
   ==================================================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ====================================================
   SMOOTH SCROLL PROGRESS
   ==================================================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 1001;
  width: 0;
  transition: none;
}
