/* =====================================================
   Casa del Sol — Light Luxury Design
   Inspired by Nakula.com
   Karla + Philosopher | Nude Brown | Cream White
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&family=Karla:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --nude:        #906b3e;
  --nude-dark:   #6b4f2e;
  --nude-light:  #b8915a;
  --nude-pale:   #ece0ce;
  --nude-ultra:  #f7f0e6;
  --cream:       #faf8f5;
  --cream-2:     #f2ebe0;
  --white:       #ffffff;
  --ink:         #1a1008;
  --text-dark:   #2a1f14;
  --text-mid:    #6b5a47;
  --text-light:  #8a7c6e;
  --border:      rgba(144, 107, 62, 0.18);
  --border-light: rgba(144, 107, 62, 0.09);
  --shadow-sm:   0 2px 12px rgba(26, 16, 8, 0.07);
  --shadow-md:   0 8px 40px rgba(26, 16, 8, 0.10);
  --shadow-lg:   0 20px 80px rgba(26, 16, 8, 0.14);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Custom Cursor ─── */
.c-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nude);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
}
.c-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(144, 107, 62, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
a:hover ~ .c-dot, button:hover ~ .c-dot { transform: translate(-50%, -50%) scale(2); }

/* ─── Page Loader ─── */
#page-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out);
}
#page-loader.out { opacity: 0; pointer-events: none; }
#page-loader .loader-logo {
  width: 180px;
  opacity: 0;
  animation: loaderFade 1.2s var(--ease-out) 0.2s forwards;
}
@keyframes loaderFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Navbar ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 51px;
  height: 88px;
  transition: transform 0.5s var(--ease-out), background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), height 0.4s var(--ease-out);
  background: transparent;
}
#navbar.hidden { transform: translateY(-100%); }
#navbar.scrolled {
  height: 70px;
  background: rgba(247, 240, 230, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo-img {
  height: 44px;
  width: auto;
  transition: filter 0.45s, height 0.4s, transform 0.35s var(--ease-out);
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.25));
}
#navbar.scrolled .nav-logo-img { filter: none; height: 38px; }
.nav-logo-img:hover { transform: translateY(-1px) scale(1.035); }
.nav-links-desktop { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 11.85px;
  font-weight: 500;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active { color: #fff; }
#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--nude); }
.nav-book {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 9.6px 24px;
  border-radius: 40px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.nav-book:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
#navbar.scrolled .nav-book { color: var(--nude); border-color: rgba(144, 107, 62, 0.45); }
#navbar.scrolled .nav-book:hover { background: var(--nude); color: var(--cream); border-color: var(--nude); }

/* ─── Hamburger ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; transition: background 0.3s, transform 0.3s; }
#navbar.scrolled .hamburger span { background: var(--text-dark); }
@media (max-width: 860px) {
  #navbar { padding: 0 22px; }
  .nav-links-desktop { display: none; }
  .hamburger { display: flex; }
}

/* ─── Mobile Menu ─── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 600;
  background: var(--cream-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-out);
}
#mobile-menu.open { transform: translateY(0); }
#mobile-menu a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--text-dark);
}
#mobile-menu a:hover { color: var(--nude); }
.menu-close { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 1.6rem; color: var(--text-mid); padding: 0.5rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  overflow: hidden;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 12s ease-in-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 16, 8, 0.25) 0%,
    rgba(26, 16, 8, 0.05) 50%,
    rgba(26, 16, 8, 0.55) 100%
  );
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 160px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  animation: heroFadeUp 1.2s var(--ease-out) 0.5s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 400px;
  max-width: 400px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 32px rgba(26,16,8,0.35));
  margin-bottom: 1.2rem;
}
@media (max-width: 500px) {
  .hero-logo { width: 260px; max-width: 260px; }
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Philosopher', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.hero-subtitle {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* Hero Dots */
.hero-dots {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  z-index: 4;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ─── Hero Search Bar ─── */
.hero-search-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 0 3rem 2.5rem;
}
.hero-search-bar {
  max-width: 900px;
  margin: 0 auto;
  display: flex; align-items: stretch;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,16,8,0.25);
}
.search-field {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 1.25rem 1.8rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  display: block;
}
.search-input,
.search-select {
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.search-input::placeholder { color: var(--text-light); }
.search-input::-webkit-calendar-picker-indicator {
  opacity: 0.4; cursor: pointer;
}
.search-btn-wrap {
  padding: 1rem;
  display: flex; align-items: center;
}
.search-btn {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--nude);
  color: #fff;
  border: none;
  padding: 1rem 1.8rem;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s;
}
.search-btn:hover { background: var(--nude-dark); }

.hero-price-preview {
  display: none;
  text-align: center;
  margin-top: 1rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  background: rgba(26,16,8,0.35);
  backdrop-filter: blur(8px);
  padding: 9.6px 24px;
  border-radius: 30px;
  max-width: 600px;
  margin: 0.8rem auto 0;
}

@media (max-width: 768px) {
  .hero-search-wrap { padding: 0 1.2rem 1.5rem; }
  .hero-search-bar {
    flex-direction: column;
    border-radius: 4px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.4rem;
  }
  .search-field:last-of-type { border-bottom: none; }
  .search-btn-wrap { padding: 1rem 1.4rem; }
  .search-btn { width: 100%; text-align: center; padding: 0.9rem; }
  .hero-content { bottom: 360px; }
  .hero-dots { bottom: 340px; }
}

/* ─── Section Base ─── */
.section { padding: 7rem 3rem; }
.section-light { background: var(--cream); padding: 7rem 3rem; }
.section-cream { background: var(--cream-2); padding: 7rem 3rem; }
.section-white { background: var(--white); padding: 7rem 3rem; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Typography ─── */
.overline {
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nude);
  display: block;
  margin-bottom: 1rem;
}
.gold-rule {
  width: 40px; height: 1px;
  background: var(--nude);
  margin-bottom: 1.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.display-xl {
  font-family: 'Philosopher', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-dark);
}
.display-lg {
  font-family: 'Philosopher', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}
.display-md {
  font-family: 'Philosopher', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.display-xl em, .display-lg em, .display-md em {
  font-style: italic;
  color: var(--nude);
}
.body-text {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.text-nude { color: var(--nude); }

/* ─── Buttons ─── */
.btn-nude {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--nude);
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.btn-nude:hover { background: var(--nude-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--nude);
  border: 1px solid var(--nude);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.btn-outline:hover {
  background: var(--nude);
  color: #fff;
  transform: translateY(-1px);
}

/* ─── Scroll Reveals ─── */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal { transform: translateY(28px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.96); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }
.d4 { transition-delay: 0.4s !important; }
.d5 { transition-delay: 0.5s !important; }

/* ─── Stats Strip ─── */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3rem;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Philosopher', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--nude);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border-light); }
}

/* ─── About Split Grid ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-photo-wrap {
  position: relative;
}
.about-photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-photo-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-accent { display: none; }
}

/* ─── Amenities ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.amenity-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  padding: 2.2rem 1.5rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  background: var(--white);
  transition: background 0.25s;
}
.amenity-item:hover { background: var(--nude-ultra); }
.amenity-item:nth-child(4n) { border-right: none; }
.amenity-icon {
  width: 38px; height: 38px;
  color: var(--nude);
  flex-shrink: 0;
}
.amenity-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-item:nth-child(4n) { border-right: 1px solid var(--border-light); }
  .amenity-item:nth-child(2n) { border-right: none; }
}

/* ─── Cinematic Panel ─── */
.cinematic-panel {
  position: relative;
  height: 70vh; min-height: 440px;
  overflow: hidden;
}
.cinematic-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.cinematic-panel:hover img { transform: scale(1); }
.cinematic-panel-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 16, 8, 0.4);
  display: flex; align-items: center; justify-content: center;
}
.cinematic-panel-text {
  text-align: center; color: #fff;
}

/* ─── Photo Strip ─── */
.photo-strip-wrap {
  overflow: hidden;
  padding: 0;
  cursor: grab;
  user-select: none;
}
.photo-strip-wrap:active { cursor: grabbing; }
.photo-strip {
  display: flex;
  gap: 0;
}
.photo-strip-item {
  flex: 0 0 calc(100% / 3.5);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.photo-strip-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .photo-strip-item { flex: 0 0 80vw; }
}

/* ─── Gallery ─── */
.gallery-header {
  padding: 4rem 3rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.filter-btn {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text-mid);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--nude);
  color: #fff;
  border-color: var(--nude);
}
.gallery-masonry {
  columns: 3; column-gap: 4px;
  padding: 4px;
  max-width: 1400px; margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,16,8,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,16,8,0.2); }
.gallery-item-overlay svg { color: #fff; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }

/* ─── Lightbox ─── */
#lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26, 16, 8, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 92vw; max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(250,248,245,0.1);
  color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; font-size: 1.2rem; }
.lb-prev  { left:  1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(250,248,245,0.2); }

/* ─── Book Page ─── */
.page-banner {
  position: relative;
  height: 45vh; min-height: 320px;
  overflow: hidden;
}
.page-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(26, 16, 8, 0.42);
}
.page-banner-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 0 2rem;
}
.page-banner-content .overline { color: rgba(255,255,255,0.7); margin-bottom: 0.8rem; }
.page-banner-content .display-lg { color: #fff; margin-top: 0; }
.page-banner-content .display-lg em { color: rgba(255,255,255,0.8); }

/* ─── Booking Layout ─── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
}

/* ─── Pricing Card ─── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  position: sticky; top: 90px;
}
.pricing-card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}
.pricing-rate {
  font-family: 'Philosopher', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--nude);
}
.pricing-rate sub {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  vertical-align: baseline;
}
.price-breakdown {
  margin: 1.5rem 0;
  display: flex; flex-direction: column; gap: 0.7rem;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
}
.price-row .label { color: var(--text-mid); }
.price-row .value { color: var(--text-dark); font-weight: 500; }
.price-row.total {
  padding-top: 0.8rem;
  border-top: 1px solid var(--border-light);
  font-size: 1rem;
  font-weight: 600;
}
.price-row.total .label { color: var(--text-dark); }
.price-row.total .value { color: var(--nude); }
#price-placeholder {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light);
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}
.discount-box {
  margin: 1.4rem 0 1.2rem;
  padding: 1rem;
  background: var(--nude-ultra);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}
.discount-input-row {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.discount-input-row .form-input {
  min-width: 0;
}
.discount-apply {
  flex: 0 0 auto;
  border: 1px solid var(--nude);
  background: var(--nude);
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
}
.discount-apply:hover {
  transform: translateY(-1px);
  background: var(--text-dark);
  border-color: var(--text-dark);
}
.discount-status {
  min-height: 1.1rem;
  margin-top: 0.55rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
}
.discount-status.ok { color: #6f8f55; }
.discount-status.error { color: #b36b47; }
.price-row.discount .label,
.price-row.discount .value {
  color: #6f8f55;
  font-weight: 600;
}
.price-row.eur-row {
  font-size: 0.84rem;
  color: var(--text-light);
}
@media (max-width: 420px) {
  .discount-input-row { flex-direction: column; }
  .discount-apply { padding: 0.85rem 1rem; }
}
.pricing-features {
  margin: 1.5rem 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.pricing-feature {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.83rem;
  color: var(--text-mid);
}
.pricing-feature svg { color: var(--nude); flex-shrink: 0; }

/* ─── Calendar Widget ─── */
.calendar-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.calendar-title {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.calendar-nav {
  background: none; border: none; cursor: pointer;
  color: var(--nude); padding: 0.3rem; font-size: 1rem;
  transition: color 0.2s;
}
.calendar-nav:hover { color: var(--nude-dark); }
.calendar-grid {
  padding: 1rem 1.5rem 1.5rem;
}
.calendar-day-labels {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}
.calendar-day-label {
  text-align: center;
  font-family: 'Karla', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.3rem 0;
}
.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--text-dark);
}
.cal-day:hover:not(.blocked):not(.empty):not(.past) {
  background: var(--nude-pale);
  color: var(--nude-dark);
}
.cal-day.blocked {
  color: var(--text-light);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.4;
}
.cal-day.past { color: var(--text-light); opacity: 0.3; cursor: default; }
.cal-day.empty { cursor: default; }
.cal-day.selected-start,
.cal-day.selected-end {
  background: var(--nude);
  color: #fff;
  font-weight: 600;
}
.cal-day.in-range {
  background: var(--nude-pale);
  color: var(--nude-dark);
  border-radius: 0;
}
.cal-day.available {
  background: #e7f3e8;
  color: #2f6b3a;
  font-weight: 600;
  border: 1px solid #bcdfc1;
}
.cal-day.available:hover {
  background: #cfe9d3;
  color: #235029;
}
.cal-day.today { font-weight: 600; color: var(--nude); }

/* ─── Booking Form ─── */
.form-section-title {
  font-family: 'Philosopher', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--nude);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.deposit-note {
  background: var(--nude-ultra);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.2rem 1.5rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.deposit-note strong { color: var(--text-dark); }

/* ─── How It Works Steps ─── */
.steps-list {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-top: 2rem;
}
.step-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--nude-pale);
  color: var(--nude);
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.step-text strong { color: var(--text-dark); }

/* ─── Toast ─── */
#toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  z-index: 2000;
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Tommy Note ─── */
.tommy-note {
  background: var(--nude-ultra);
  border-left: 3px solid var(--nude);
  padding: 1.5rem 1.8rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  border-radius: 0 2px 2px 0;
}
.tommy-note strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Guide Cards ─── */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  margin-top: 2rem;
}
.guide-card {
  background: var(--white);
  padding: 2rem;
  transition: background 0.25s;
}
.guide-card:hover { background: var(--nude-ultra); }
.guide-card-num {
  font-family: 'Philosopher', serif;
  font-size: 2rem;
  color: var(--nude-pale);
  line-height: 1;
  margin-bottom: 1rem;
}
.guide-card-title {
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.guide-card-desc {
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}
@media (max-width: 900px) {
  .guide-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .guide-cards { grid-template-columns: 1fr; }
}

/* ─── Guide Section Header ─── */
.guide-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .guide-section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-item {
  display: flex; gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-item:first-child { border-top: 1px solid var(--border-light); }
.contact-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nude);
  flex-shrink: 0;
}
.contact-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  display: block;
}
.contact-val {
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-val a { color: var(--nude); }
.contact-val a:hover { text-decoration: underline; }

.map-frame {
  width: 100%; border: none; border-radius: 2px;
  display: block;
}
.nearby-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.nearby-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.nearby-list { list-style: none; }
.nearby-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  font-family: 'Karla', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.nearby-list li:last-child { border-bottom: none; }
.nearby-time {
  font-weight: 600;
  color: var(--nude);
  min-width: 40px;
  font-size: 0.78rem;
}

/* ─── Host Bio ─── */
.host-bio-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.host-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--nude-pale);
}
.host-badges {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-top: 1rem;
}
.host-badge {
  font-family: 'Karla', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nude);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
}
@media (max-width: 640px) {
  .host-bio-grid { grid-template-columns: 1fr; text-align: center; }
  .host-photo { margin: 0 auto; }
  .host-badges { justify-content: center; }
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--nude);
  padding: 6rem 3rem;
  text-align: center;
}
.cta-banner .display-lg { color: #fff; }
.cta-banner .display-lg em { color: rgba(255,255,255,0.75); }
.cta-banner .body-text { color: rgba(255,255,255,0.75); margin: 1.2rem auto; max-width: 440px; }
.cta-banner .btn-nude {
  background: #fff;
  color: var(--nude);
}
.cta-banner .btn-nude:hover { background: var(--cream); }
.cta-banner .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ─── WA Float ─── */
.wa-float {
  position: fixed; bottom: 2.2rem; right: 2.2rem;
  z-index: 400;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ─── Footer ─── */
footer {
  background: var(--ink);
  color: rgba(244, 237, 224, 0.65);
  padding: 5rem 3rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo-img {
  height: 52px; width: auto;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.footer-tagline {
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.45);
}
.footer-col-title {
  font-family: 'Karla', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.4);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
  font-family: 'Karla', sans-serif;
  font-size: 0.88rem;
  color: rgba(244, 237, 224, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(244, 237, 224, 0.95); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  color: rgba(244, 237, 224, 0.3);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }
}

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* Responsive padding adjustments */
@media (max-width: 768px) {
  .section, .section-light, .section-cream, .section-white {
    padding: 4.5rem 1.5rem;
  }
  .stats-strip { padding: 2rem 1.5rem; }
  .page-banner { height: 38vh; min-height: 260px; }
  .booking-layout { gap: 2rem; }
  .pricing-card { position: static; }
  .contact-grid { gap: 2.5rem; }
  .cta-banner { padding: 4rem 1.5rem; }
}

/* ─── Why Book With Us ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.why-card {
  text-align: left;
  position: relative;
}
.why-num {
  font-family: 'Philosopher', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--nude);
  margin-bottom: 1.2rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.6rem;
}
.why-num::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--nude);
}
.why-icon {
  width: 48px; height: 48px;
  color: var(--nude);
  margin-bottom: 1.5rem;
  stroke-width: 1.2;
}
.why-title {
  font-family: 'Philosopher', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.why-desc {
  font-family: 'Karla', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── Reviews / Testimonials ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--nude);
}
.review-quote {
  font-family: 'Karla', sans-serif;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 300;
  font-style: italic;
  flex: 1;
  position: relative;
}
.review-quote::before {
  content: '\201C';
  font-family: 'Philosopher', serif;
  font-size: 3rem;
  color: var(--nude-pale);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  font-style: normal;
}
.review-author {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.review-name {
  font-family: 'Philosopher', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.review-meta {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.review-meta .text-nude { color: var(--nude); }
.review-platform {
  font-family: 'Karla', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-platform::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nude);
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Aggregate rating badge */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--nude-ultra);
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.rating-badge-stars {
  display: flex;
  gap: 1px;
  color: var(--nude);
}
.rating-badge-text {
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.rating-badge-text strong { font-weight: 600; }

/* ─── Experiences (large image cards) ─── */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  margin-top: 3rem;
}
.experience-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), opacity 0.5s;
  opacity: 0.78;
}
.experience-card:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}
.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,16,8,0) 30%,
    rgba(26,16,8,0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 1.6rem;
  pointer-events: none;
}
.experience-card-num {
  font-family: 'Karla', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.6rem;
}
.experience-card-title {
  font-family: 'Philosopher', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.experience-card-desc {
  font-family: 'Karla', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s var(--ease-out), margin-top 0.5s var(--ease-out);
}
.experience-card:hover .experience-card-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-card-desc { max-height: 200px; opacity: 1; margin-top: 0.3rem; }
}
@media (max-width: 500px) {
  .experiences-grid { grid-template-columns: 1fr; }
}

/* ─── Newsletter ─── */
.newsletter-section {
  background: var(--ink);
  padding: 5rem 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,147,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-section .overline {
  color: var(--nude-pale);
}
.newsletter-section .gold-rule {
  background: var(--nude-pale);
}
.newsletter-section .display-md {
  color: #fff;
  margin-bottom: 0.8rem;
}
.newsletter-section .display-md em {
  color: var(--nude-pale);
}
.newsletter-sub {
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin: 0.8rem auto 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.25s;
}
.newsletter-form:focus-within {
  border-color: var(--nude-pale);
}
.newsletter-input {
  flex: 1;
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  padding: 1rem 1.4rem;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-btn {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--nude-pale);
  border: none;
  padding: 1rem 1.8rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: #fff;
  color: var(--ink);
}
.newsletter-note {
  font-family: 'Karla', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 1.2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .newsletter-section { padding: 4rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { padding: 1rem; }
}

/* ─── Booking Confirmed ─── */
.booking-confirmed {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.booking-confirmed .check-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--nude-pale);
  color: var(--nude);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

/* ─── Availability modal (centered pop-up, matches the calendar card) ─── */
.avail-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(26, 16, 8, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.avail-modal.open { opacity: 1; pointer-events: all; }
.avail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  width: 100%; max-width: 420px;
  padding: 2.5rem 2.4rem 2.3rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(26, 16, 8, 0.28);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.avail-modal.open .avail-card { transform: none; }
.avail-icon {
  width: 48px; height: 48px; margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--nude-ultra); color: var(--nude);
  display: flex; align-items: center; justify-content: center;
}
.avail-icon svg { width: 24px; height: 24px; }
.avail-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 1.75rem; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 0.65rem;
}
.avail-card p {
  font-family: 'Karla', sans-serif;
  font-size: 0.92rem; line-height: 1.65;
  color: var(--text-mid); margin-bottom: 1.7rem;
}
.avail-card .btn-nude { cursor: pointer; border: none; }

/* ─── Casa del Sol consistency layer ─── */
:root {
  --nude: #b06a47;
  --nude-dark: #8b4e34;
  --nude-light: #c9886b;
  --nude-pale: #d8b092;
  --nude-ultra: #f8efe5;
  --cream: #fbf7ef;
  --cream-2: #f2e8da;
  --white: #fffaf3;
  --ink: #24170f;
  --text-dark: #24170f;
  --text-mid: #6f6156;
  --text-light: #9b8d80;
  --border: rgba(176, 106, 71, 0.22);
  --border-light: rgba(176, 106, 71, 0.12);
  --shadow-sm: 0 8px 22px rgba(20, 14, 8, 0.07);
  --shadow-md: 0 18px 48px rgba(20, 14, 8, 0.10);
  --shadow-lg: 0 28px 76px rgba(20, 14, 8, 0.16);
}

html { font-size: 17px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-weight: 300;
  letter-spacing: 0;
}

.nav-link,
.nav-book,
.overline,
.body-text,
.btn-nude,
.btn-outline,
.filter-btn,
.contact-label,
.footer-col-title,
.footer-links a,
.form-label,
.form-input,
.form-select,
.form-textarea,
.search-label,
.search-input,
.search-select,
.search-btn,
.pricing-feature,
.nearby-list,
.tommy-note,
.avail-card p {
  font-family: 'Jost', sans-serif;
}

.display-xl,
.display-lg,
.display-md,
.hero-title,
.stat-number,
.experience-card-title,
.pricing-rate,
.contact-val,
.avail-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.display-lg { font-size: clamp(2.35rem, 4.4vw, 3.8rem); line-height: 1.06; }
.display-md { font-size: clamp(1.85rem, 3.2vw, 2.65rem); line-height: 1.12; }
.display-xl em,
.display-lg em,
.display-md em { color: var(--nude); font-style: italic; }
.body-text { font-size: 1.02rem; line-height: 1.8; color: var(--text-mid); }

#navbar {
  height: 82px;
  padding: 0 3rem;
}
#navbar.scrolled {
  height: 70px;
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(20, 14, 8, 0.05);
}
.nav-logo-img { height: 44px; }
#navbar.scrolled .nav-logo-img { height: 38px; }
.nav-links-desktop { gap: clamp(1.4rem, 3vw, 2.4rem); }
.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
}
#navbar.scrolled .nav-link { color: var(--text-mid); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--nude); }
.nav-book {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
}
#navbar.scrolled .nav-book:hover,
#navbar.scrolled .nav-book.active { background: var(--nude); color: var(--cream); border-color: var(--nude); }

.page-banner {
  height: min(68vh, 660px);
  min-height: 440px;
  background: var(--ink);
}
.page-banner img { filter: saturate(0.95); }
.page-banner-overlay {
  background: linear-gradient(to bottom, rgba(20,14,8,0.34), rgba(20,14,8,0.20) 45%, rgba(20,14,8,0.62));
}
.page-banner-content { bottom: clamp(3rem, 8vw, 5.5rem); }
.page-banner-content .overline { color: rgba(255,255,255,0.78); }
.page-banner-content .display-lg { color: #fff; }
.page-banner-content .display-lg em { color: rgba(255,255,255,0.78); }

.section,
.section-light,
.section-cream,
.section-white { padding: clamp(4.5rem, 8vw, 7rem) 3rem; }
.section-cream { background: var(--cream-2); }
.section-light,
.section-white { background: var(--cream); }
.section-inner,
.gallery-header,
.contact-grid { max-width: 1180px; }

.overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--nude);
  margin-bottom: 1rem;
}
.gold-rule { background: var(--nude); opacity: 0.8; }

.btn-nude,
.btn-outline,
.search-btn,
.newsletter-btn,
.avail-card .btn-nude {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.95rem 2.1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-nude,
.search-btn,
.avail-card .btn-nude {
  background: var(--nude);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(176,106,71,0.20);
}
.btn-nude:hover,
.search-btn:hover,
.avail-card .btn-nude:hover {
  background: var(--nude-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(176,106,71,0.28);
}
.btn-outline {
  color: var(--nude);
  border-color: rgba(176,106,71,0.45);
}
.btn-outline:hover {
  background: var(--nude);
  border-color: var(--nude);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(176,106,71,0.18);
}

.gallery-header {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 2rem;
  align-items: end;
}
.filter-bar { justify-content: flex-end; gap: 0.7rem; }
.filter-btn {
  border-radius: 40px;
  background: rgba(255,250,243,0.62);
  border: 1px solid var(--border-light);
  color: var(--text-mid);
  padding: 0.72rem 1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  box-shadow: 0 8px 24px rgba(20,14,8,0.03);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--nude);
  border-color: var(--nude);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(176,106,71,0.18);
}
.gallery-masonry {
  max-width: 1280px;
  columns: 3 300px;
  column-gap: 1rem;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border-light);
  transition: transform 0.38s var(--ease-out), box-shadow 0.38s var(--ease-out), filter 0.38s var(--ease-out);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(20,14,8,0.14);
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item-overlay { background: rgba(20,14,8,0); }
.gallery-item:hover .gallery-item-overlay { background: rgba(20,14,8,0.22); }

.cta-banner {
  background: var(--nude);
  padding: clamp(4rem, 8vw, 6.5rem) 3rem;
}
.cta-banner .btn-nude {
  background: var(--cream);
  color: var(--nude);
  box-shadow: none;
}
.cta-banner .btn-nude:hover { background: #fff; color: var(--nude-dark); }
.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.cta-banner .btn-outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
  margin: 0 auto;
}
.contact-item {
  background: rgba(255,250,243,0.72);
  border: 1px solid var(--border-light) !important;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 10px 28px rgba(20,14,8,0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.contact-item:hover {
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--border) !important;
  box-shadow: 0 18px 44px rgba(20,14,8,0.09);
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--nude);
}
.contact-label {
  font-size: 0.66rem;
  color: var(--text-light);
  letter-spacing: 0.18em;
  font-weight: 700;
}
.contact-val {
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.35;
}
.contact-val a { color: var(--nude); }
.tommy-note {
  background: var(--white);
  border-left: 3px solid var(--nude);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 12px 30px rgba(20,14,8,0.05);
}
.map-frame {
  border-radius: 12px !important;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(20,14,8,0.10);
}
.nearby-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(20,14,8,0.07);
}
.nearby-card-header { background: var(--white); color: var(--text-light); }
.nearby-list li { transition: background 0.25s, transform 0.25s; }
.nearby-list li:hover { background: var(--nude-ultra); transform: translateX(4px); }

.booking-layout { gap: clamp(2.5rem, 5vw, 4.5rem); }
.pricing-card,
.calendar-wrap,
.deposit-note,
.avail-card {
  background: var(--white);
  border-color: var(--border-light);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(20,14,8,0.08);
}
.pricing-card { top: 96px; }
.pricing-card-header { background: var(--nude-ultra); border-radius: 12px; }
.calendar-header { border-bottom-color: var(--border-light); }
.calendar-nav { border-radius: 50%; color: var(--nude); }
.calendar-nav:hover { background: var(--nude-ultra); color: var(--nude-dark); }
.cal-day { border-radius: 10px; }
.cal-day.available {
  background: rgba(87, 150, 95, 0.12);
  color: #35683f;
  border: 1px solid rgba(87,150,95,0.18);
}
.cal-day.available:hover {
  background: rgba(87, 150, 95, 0.22);
  transform: translateY(-2px);
}
.cal-day.selected-start,
.cal-day.selected-end { background: var(--nude); color: #fff; }
.cal-day.in-range { background: rgba(176,106,71,0.15); color: var(--nude-dark); }
.form-input,
.form-select,
.form-textarea {
  border-radius: 10px;
  border-color: var(--border-light);
  background: var(--white);
  color: var(--text-dark);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--nude); box-shadow: 0 0 0 4px rgba(176,106,71,0.09); }

footer {
  background: #160f09;
  padding: 4.5rem 3rem 2rem;
}
.footer-grid { max-width: 1180px; }
.footer-logo-img { height: 40px; }
.footer-links a:hover { color: #fff; transform: translateX(4px); display: inline-block; }
.wa-float { box-shadow: 0 12px 34px rgba(37,211,102,0.32); }

@media (hover: hover) and (pointer: fine) {
  .page-banner img,
  .map-frame,
  .nearby-card,
  .pricing-card,
  .calendar-wrap,
  .tommy-note,
  .cta-banner .btn-nude,
  .cta-banner .btn-outline { transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), filter 0.35s var(--ease-out); }
  .map-frame:hover,
  .nearby-card:hover,
  .pricing-card:hover,
  .calendar-wrap:hover,
  .tommy-note:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(20,14,8,0.12); }
}

@media (max-width: 900px) {
  #navbar { padding: 0 1.4rem; }
  .page-banner { height: 54vh; min-height: 360px; }
  .section,
  .section-light,
  .section-cream,
  .section-white { padding: 4rem 1.35rem; }
  .gallery-header { grid-template-columns: 1fr; align-items: start; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.4rem; }
  .filter-btn { flex: 0 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-val { font-size: 1.06rem; }
  .flex-center { flex-direction: column; align-items: stretch; }
  .flex-center .btn-nude,
  .flex-center .btn-outline { width: 100%; }
}

