/* ============================================================
   TON PIERRE — Stylesheet
   Palette : tons pierre, beige, terracotta
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --stone-50:  #faf7f2;
  --stone-100: #f2ece0;
  --stone-200: #e5d9c3;
  --stone-300: #d0bc98;
  --stone-400: #b89970;
  --stone-500: #9e7d55;
  --stone-600: #876849;
  --stone-700: #6e543d;
  --stone-800: #5a4433;
  --stone-900: #3d2e22;

  --terracotta: #c4785a;
  --terracotta-dark: #a85e42;
  --green:  #4a7c59;
  --white:  #ffffff;
  --black:  #1a1209;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 3px rgba(61,46,34,.08);
  --shadow-md: 0 4px 16px rgba(61,46,34,.12);
  --shadow-lg: 0 12px 40px rgba(61,46,34,.18);

  --radius: 4px;
  --transition: .3s ease;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--stone-800);
  background: var(--stone-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--stone-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--stone-700); line-height: 1.8; }

.section-title { text-align: center; margin-bottom: .5rem; }
.section-sub   { text-align: center; color: var(--stone-500); font-size: .95rem; margin-bottom: 3rem; letter-spacing: .04em; }
.section-divider {
  width: 60px; height: 2px;
  background: var(--terracotta);
  margin: 1rem auto 1.5rem;
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 14px rgba(196,120,90,.35);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,120,90,.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-stone {
  background: var(--stone-800); color: var(--white);
}
.btn-stone:hover { background: var(--stone-900); }
.btn-ghost {
  background: transparent; color: var(--stone-700);
  border: 1.5px solid var(--stone-300);
}
.btn-ghost:hover { background: var(--stone-100); border-color: var(--stone-400); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* --- Header / Nav ----------------------------------------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
#header.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--transition);
}
#header.scrolled .nav-logo { color: var(--stone-900); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--terracotta); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
#header.scrolled .nav-links a { color: var(--stone-700); }
#header.scrolled .nav-links a:hover { color: var(--stone-900); }

/* Language switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem .8rem;
  border-radius: 20px;
  cursor: pointer; display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600;
  transition: var(--transition);
}
#header.scrolled .lang-btn {
  background: var(--stone-100);
  border-color: var(--stone-300);
  color: var(--stone-800);
}
.lang-dropdown {
  position: absolute; top: calc(100% + .5rem); right: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 150px; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem;
  font-size: .85rem; color: var(--stone-700);
  transition: background var(--transition);
}
.lang-dropdown a:hover { background: var(--stone-100); }
.lang-dropdown a.active { background: var(--stone-100); font-weight: 600; color: var(--stone-900); }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .3rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); display: block; }
#header.scrolled .nav-toggle span { background: var(--stone-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --------------------------------------------- */
#hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,20,10,.35) 0%, rgba(30,20,10,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.9);
}
.hero-content h1 {
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .1em;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  cursor: pointer; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 3;
  display: flex; gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* --- Highlights ------------------------------------------ */
#highlights {
  background: var(--stone-900);
  padding: 3rem 2rem;
}
.highlights-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.highlight-item {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon {
  font-size: 2rem; margin-bottom: .75rem;
}
.highlight-item h3 {
  color: var(--white); font-size: 1.1rem; margin-bottom: .35rem;
}
.highlight-item p {
  color: var(--stone-300); font-size: .85rem;
}

/* --- Sections Layout ------------------------------------- */
.section {
  padding: 6rem 2rem;
}
.section-alt { background: var(--stone-100); }
.container {
  max-width: 1200px; margin: 0 auto;
}
.container-wide { max-width: 1400px; margin: 0 auto; }

/* --- Description ----------------------------------------- */
#about .about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
#about .about-text p { margin-bottom: 1.2rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--white);
  padding: 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--terracotta);
  display: block; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: .06em; }
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-img-grid img {
  border-radius: var(--radius);
  height: 220px; object-fit: cover; width: 100%;
}
.about-img-grid img:first-child {
  grid-column: 1/-1; height: 280px;
}

/* --- Spaces --------------------------------------------- */
#spaces .spaces-tabs {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 3rem;
}
.space-tab {
  padding: .6rem 1.5rem;
  border: 1.5px solid var(--stone-300);
  border-radius: 30px; cursor: pointer;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  color: var(--stone-600); background: transparent;
  transition: var(--transition);
}
.space-tab.active, .space-tab:hover {
  background: var(--stone-900); color: var(--white); border-color: var(--stone-900);
}
.space-panel { display: none; }
.space-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.space-panel img {
  border-radius: var(--radius); height: 420px; object-fit: cover; width: 100%;
  box-shadow: var(--shadow-lg);
}
.space-info h3 { margin-bottom: 1rem; }
.space-info p { margin-bottom: 1.5rem; }
.space-features { display: flex; flex-direction: column; gap: .6rem; }
.space-feature {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--stone-700);
}
.space-feature::before {
  content: '';
  width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; flex-shrink: 0;
}

/* --- Bedrooms ------------------------------------------- */
#bedrooms .bedrooms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.bedroom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.bedroom-num {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--stone-400);
}
.bedroom-card h4 { font-size: .9rem; margin: .3rem 0; color: var(--stone-800); }
.bedroom-card p { font-size: .8rem; color: var(--stone-500); }

/* --- Gallery -------------------------------------------- */
#gallery { padding: 6rem 0; overflow: hidden; }
#gallery .container { padding: 0 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: 2px;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,20,10,.0);
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(30,20,10,.3); }
.gallery-zoom {
  color: var(--white); font-size: 1.5rem;
  opacity: 0; transform: scale(.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-more {
  text-align: center; margin-top: 2rem;
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,6,2,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 1.8rem; cursor: pointer;
  background: none; border: none; line-height: 1; opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.1); border: none;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .85rem;
}

/* --- Amenities ------------------------------------------ */
#amenities .amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-icon { font-size: 2rem; margin-bottom: .75rem; }
.amenity-card p { font-size: .85rem; color: var(--stone-600); font-weight: 500; }

/* --- Booking -------------------------------------------- */
#booking {
  background: var(--stone-900);
  padding: 6rem 2rem;
}
#booking .section-title,
#booking .section-sub { color: var(--white); }
#booking .section-sub { color: var(--stone-300); }
#booking .section-divider { background: var(--terracotta); }
.booking-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}
.booking-calendar-wrap {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  overflow: hidden;
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h3 {
  margin-bottom: 1.5rem; font-size: 1.3rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--stone-600); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem .9rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  font-size: .9rem; color: var(--stone-800);
  background: var(--stone-50);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* Pricing summary */
.price-summary {
  background: var(--stone-50);
  border-radius: var(--radius); padding: 1.25rem;
  margin: 1.25rem 0;
}
.price-row {
  display: flex; justify-content: space-between;
  font-size: .9rem; padding: .4rem 0;
  border-bottom: 1px solid var(--stone-200);
  color: var(--stone-700);
}
.price-row:last-child { border-bottom: none; font-weight: 700; color: var(--stone-900); font-size: 1rem; }
.price-row.deposit { color: var(--terracotta); font-weight: 600; }

/* Payment methods */
.payment-methods {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1rem;
}
.payment-option {
  border: 2px solid var(--stone-200);
  border-radius: var(--radius); padding: .75rem;
  cursor: pointer; text-align: center;
  transition: var(--transition);
}
.payment-option.selected {
  border-color: var(--terracotta); background: rgba(196,120,90,.06);
}
.payment-option input { display: none; }
.payment-option span { font-size: .85rem; font-weight: 600; display: block; }
.payment-option small { font-size: .75rem; color: var(--stone-500); }

/* --- Prices -------------------------------------------- */
#prices .prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--terracotta);
  background: linear-gradient(135deg, var(--stone-900) 0%, var(--stone-800) 100%);
}
.price-card.featured * { color: var(--white) !important; }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: var(--white);
  padding: .25rem .9rem; border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  white-space: nowrap;
}
.price-season {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--stone-500); margin-bottom: .5rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem; color: var(--stone-900); line-height: 1;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-amount span { font-size: 1rem; color: var(--stone-500); }
.price-dates { font-size: .85rem; color: var(--stone-500); margin: .5rem 0 1.5rem; }
.price-card hr { border-color: var(--stone-200); margin: 1.25rem 0; }
.price-notes { list-style: none; }
.price-notes li {
  font-size: .83rem; color: var(--stone-600);
  padding: .3rem 0; display: flex; align-items: center; gap: .5rem;
}
.price-notes li::before { content: '✓'; color: var(--green); font-weight: 700; }
.prices-footer {
  text-align: center; margin-top: 2.5rem;
  color: var(--stone-500); font-size: .85rem;
}

/* --- Events -------------------------------------------- */
#events { background: var(--stone-100); }
.events-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; grid-template-columns: auto 1fr;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-icon-wrap {
  width: 80px; background: var(--stone-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.event-body { padding: 1.75rem; }
.event-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.event-body p { font-size: .88rem; margin-bottom: 1rem; }

/* --- Reviews -------------------------------------------- */
#reviews { background: var(--stone-900); padding: 6rem 2rem; }
#reviews .section-title { color: var(--white); }
#reviews .section-divider { background: var(--terracotta); }
.reviews-score {
  text-align: center; margin-bottom: 3rem;
}
.score-num {
  font-family: var(--font-serif);
  font-size: 4rem; color: var(--white); line-height: 1;
}
.score-stars { font-size: 1.5rem; color: #f0c040; }
.score-label { color: var(--stone-400); font-size: .9rem; margin-top: .25rem; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.08);
}
.review-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { color: var(--white); font-weight: 600; font-size: .9rem; }
.review-meta { color: var(--stone-400); font-size: .78rem; }
.review-stars { color: #f0c040; font-size: .85rem; }
.review-text { color: var(--stone-300); font-size: .88rem; line-height: 1.7; }
.reviews-airbnb {
  text-align: center; margin-top: 2.5rem;
  color: var(--stone-400); font-size: .85rem;
}
.reviews-airbnb a { color: var(--terracotta); text-decoration: underline; }

/* --- Location ------------------------------------------ */
#location .location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 400px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.location-info h3 { margin-bottom: 1.5rem; }
.location-list { display: flex; flex-direction: column; gap: .75rem; }
.location-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 1rem;
  background: var(--stone-100); border-radius: var(--radius);
  font-size: .9rem; color: var(--stone-700);
}
.location-item-icon { font-size: 1.2rem; flex-shrink: 0; }

/* --- Contact ------------------------------------------ */
#contact { background: var(--stone-100); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: .75rem; }
.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--stone-700);
}
.contact-detail-icon { font-size: 1.1rem; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* --- Footer ------------------------------------------- */
#footer {
  background: var(--stone-900);
  padding: 4rem 2rem 2rem;
  color: var(--stone-300);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1.25rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .88rem; color: var(--stone-400); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--stone-500);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--stone-500); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* --- Toast / Notifications ------------------------------ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 3000;
  background: var(--stone-900); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: .9rem;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition);
  max-width: 380px;
  border-left: 4px solid var(--terracotta);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--green); }
.toast.error { border-color: #c0392b; }

/* --- FullCalendar overrides ----------------------------- */
.fc {
  --fc-border-color: rgba(255,255,255,.1);
  --fc-daygrid-event-dot-width: 8px;
  --fc-today-bg-color: rgba(196,120,90,.15);
  --fc-page-bg-color: transparent;
  font-family: var(--font-sans);
}
.fc .fc-toolbar-title { color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; }
.fc .fc-button {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: var(--white) !important;
}
.fc .fc-button:hover { background: rgba(255,255,255,.2) !important; }
.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-number { color: var(--stone-300); }
.fc .fc-daygrid-day.fc-day-disabled { background: rgba(0,0,0,.2); }
.fc-event-unavailable { background: rgba(192,57,43,.3) !important; border-color: rgba(192,57,43,.5) !important; }
.fc-event-booked { background: rgba(74,124,89,.3) !important; border-color: rgba(74,124,89,.5) !important; }

/* --- Loading Spinner ------------------------------------ */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Responsive ----------------------------------------- */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  #about .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .space-panel.active { grid-template-columns: 1fr; }
  .space-panel img { height: 300px; }
  #bedrooms .bedrooms-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  #prices .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0; top: 60px;
    background: rgba(250,247,242,.98); padding: 2rem;
    backdrop-filter: blur(8px); z-index: 999;
  }
  .nav-links.open a { color: var(--stone-800); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #bedrooms .bedrooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  #prices .prices-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  #location .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 1.25rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  #bedrooms .bedrooms-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* --- Animations ----------------------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* --- Utility -------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
