/* ----- RESET & VARIABLES ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --color-primary: #9D5E2B;
  --color-secondary: #B68036;
  --color-tertiary: #9B683D;
  --color-bg-light: #FDFBF7;
  --color-bg-panel: #FAF3E6;
  --color-bg-dark: #160F0A;
  --color-text-dark: #2B1E16;
  --color-text-mute: #6C5A4E;
  --color-text-light: #FDFBF7;
  --color-border: #EADEC9;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 20px rgba(43, 30, 22, 0.04);
  --shadow-md: 0 16px 40px rgba(43, 30, 22, 0.07);
  --shadow-lg: 0 24px 60px rgba(43, 30, 22, 0.12);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .heading-serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--color-text-dark);
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section {
  padding: 90px 0;
  overflow: hidden;
}
.text-center { text-align: center; }
.section-header { margin-bottom: 50px; max-width: 650px; }
.section-header.center { margin-left: 0; margin-right: auto; text-align: left; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: 38px; margin-bottom: 16px; }
.section-desc { color: var(--color-text-mute); font-size: 15px; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 28px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition); border: 1px solid transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-solid { background: var(--color-primary); color: #fff; }
.btn-solid:hover { background: var(--color-tertiary); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--color-text-dark); border-color: var(--color-border); }
.btn-outline-dark:hover { background: var(--color-bg-panel); border-color: var(--color-primary); transform: translateY(-2px); }
.btn-dark { background: var(--color-bg-dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-whatsapp-color { background: #25D366; color: #fff; }
.btn-whatsapp-color:hover { background: #1ebd59; transform: translateY(-2px); }

/* ----- HEADER TOP & BOTTOM ----- */
.header-top {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.header-info-list {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-mute);
  list-style: none;
  align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-info-item svg {
  color: var(--color-primary);
}

.header-bottom {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 222, 201, 0.4);
  padding: 12px 0;
  transition: var(--transition);
}
.header-bottom.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 50px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--color-primary);
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 2px;
}
.brand-text h1 { font-size: 20px; font-weight: 700; color: var(--color-primary); }
.brand-text p { font-size: 11px; color: var(--color-text-mute); font-weight: 500; display: flex; align-items: center; }

.mobile-only-brand { display: none; }

nav { display: flex; gap: 28px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
nav a { color: var(--color-text-dark); position: relative; padding: 6px 0; }
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--color-primary);
  transition: var(--transition);
}
nav a:hover::after, nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--color-primary); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-text-dark); padding: 6px 12px;
  font-size: 11px; font-weight: 700; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lang-switch:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-bg-panel); }

.mobile-menu-btn { display: none; font-size: 20px; background: transparent; border: none; cursor: pointer; color: var(--color-text-dark); }
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: var(--color-bg-light); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; transform: translateY(-100%); transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; color: var(--color-text-dark); }

/* Smooth language transition */
[data-af][data-en] {
  transition: opacity 0.2s ease;
}
body.lang-switching [data-af][data-en] {
  opacity: 0;
}

/* ----- SUBPAGE SPECIFIC STYLES ----- */
.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 120px 0 90px;
  text-align: left;
  border-bottom: 1px solid rgba(234, 222, 201, 0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(22, 15, 10, 0.85) 0%, rgba(22, 15, 10, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: #F1DAB2;
}
.page-hero p {
  color: #B7A488;
  font-size: 16px;
  max-width: 600px;
}

/* About Page Premium Stacked Layout */
.about-top-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.about-top-photo-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 380px;
  transition: var(--transition);
}
.about-top-photo-wrapper:hover img {
  transform: scale(1.03);
}
.about-story-grid-stacked {
  margin-bottom: 60px;
}
.about-story-header {
  margin-bottom: 24px;
}
.about-story-header h2 {
  font-size: 42px;
  margin-bottom: 8px;
}
.about-story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about-story-columns p {
  font-size: 15.5px;
  color: var(--color-text-mute);
  line-height: 1.75;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.pillar-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.pillar-card i {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: block;
}
.pillar-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--color-text-mute);
}

/* Gallery Page Filters & Grid */
.gallery-filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.full-gallery-grid .gallery-card {
  height: 280px;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.full-gallery-grid .gallery-card.hidden {
  display: none;
}

/* Contact Page Columns & Form */
.contact-form-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-info-block {
  margin-bottom: 30px;
}
.contact-info-block h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.contact-info-block p {
  font-size: 15px;
  color: var(--color-text-mute);
}
.contact-info-block .hours-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.contact-info-block .hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
}

/* ----- HERO ----- */
.hero { padding: 30px 0 60px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
}
.hero-content h2 {
  font-size: 56px; line-height: 1.15; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content h2 span { color: var(--color-primary); font-style: italic; }
.hero-content p { font-size: 16px; color: var(--color-text-mute); margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photos { position: relative; height: 460px; }
.hero-photo-main {
  width: 75%; height: 85%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  position: absolute; top: 0; left: 0; z-index: 2;
}
.hero-photo-sub {
  width: 60%; height: 65%; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  position: absolute; bottom: 0; right: 0; z-index: 1;
  transform: rotate(3deg);
  border: 6px solid var(--color-bg-light);
}

/* ----- STATS ----- */
.stats-section { padding: 20px 0 50px; }
.stats-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 30px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.stat-block {
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--color-border);
  padding-right: 15px;
}
.stat-block:last-child { border-right: none; }
.stat-rating-box { display: flex; align-items: baseline; gap: 2px; }
.stat-block .score { font-size: 28px; font-weight: 700; color: var(--color-primary); }
.stat-block .scale { font-size: 14px; color: var(--color-text-mute); }
.stat-stars { color: var(--color-secondary); font-size: 11px; display: flex; gap: 2px; }
.stat-block-desc { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--color-text-mute); letter-spacing: 1px; }
.stat-item-row { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--color-text-dark); }
.stat-item-row i { color: var(--color-primary); font-size: 18px; }

/* ----- ABOUT HOME ----- */
.about-grid { display: grid; grid-template-columns: 0.90fr 1.10fr; gap: 70px; align-items: center; }
.about-photo-frame { position: relative; }
.about-photo-frame::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 60%; height: 70%; border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg); z-index: 1; pointer-events: none;
}
.about-photo-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); z-index: 2; position: relative;
  height: 480px;
}
.about-content p { font-size: 15px; color: var(--color-text-mute); margin-bottom: 24px; }
.about-content p:last-of-type { margin-bottom: 36px; }

/* ----- ROOMS ----- */
.rooms-container { display: flex; flex-direction: column; gap: 40px; }
.room-row-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-row-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
.room-row-photo { position: relative; height: 100%; min-height: 380px; }
.room-row-tag {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(22, 15, 10, 0.85); color: #fff;
  padding: 8px 16px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.room-row-info { padding: 40px 48px; display: flex; flex-direction: column; justify-content: space-between; }
.room-row-title-bar { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; gap: 16px; }
.room-row-title-bar h3 { font-size: 28px; }
.room-row-title-bar .price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--color-primary); }
.room-row-title-bar .price span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; color: var(--color-text-mute); font-weight: 500; }
.room-row-desc { font-size: 14px; color: var(--color-text-mute); margin-bottom: 24px; line-height: 1.7; }
.room-row-amenities-wrap h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dark); margin-bottom: 12px; }
.room-row-amenities { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; }
.room-row-amenity-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-mute); }
.room-row-amenity-item i { color: var(--color-secondary); font-size: 11px; }
.room-row-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--color-border);
}
.room-row-footer .availability {
  font-size: 12px; font-weight: 700; color: #2e7d32;
  display: flex; align-items: center; gap: 8px;
}
.room-row-footer .availability::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #4caf50; display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* ----- TASTE ----- */
.taste-section { padding: 90px 0; background: var(--color-bg-dark); color: #fff; overflow: hidden; }
.taste-section .eyebrow { color: var(--color-secondary); }
.taste-section .section-title { color: #F1DAB2; }
.taste-section .section-desc { color: #B7A488; }
.taste-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.taste-menu-list { display: flex; flex-direction: column; gap: 32px; }
.taste-menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(234, 222, 201, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.taste-category-title { font-size: 20px; color: #F1DAB2; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(234, 222, 201, 0.1); padding-bottom: 10px; }
.taste-category-title i { color: var(--color-secondary); font-size: 16px; }
.taste-items-grid { display: flex; flex-direction: column; gap: 16px; }
.taste-item { display: flex; align-items: baseline; justify-content: space-between; font-size: 14px; }
.taste-item-name { font-weight: 600; color: #EFE1C4; }
.taste-item-dots { flex-grow: 1; border-bottom: 1px dotted rgba(234, 222, 201, 0.2); margin: 0 10px; }
.taste-item-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--color-secondary); }
.taste-showcase { position: relative; }
.taste-showcase-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); height: 460px; }
.taste-showcase-float {
  position: absolute; bottom: -24px; left: -24px;
  background: #9D5E2B; color: #fff; padding: 24px 30px;
  border-radius: var(--radius); max-width: 280px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.taste-showcase-float h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; margin-bottom: 6px; color: #FDFBF7; }
.taste-showcase-float p { font-size: 12px; color: #FAF3E6; line-height: 1.5; }

/* ----- GARDEN HOME ----- */
.garden-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.garden-content h2 { font-size: 42px; margin-bottom: 20px; }
.garden-content p { color: var(--color-text-mute); font-size: 15px; margin-bottom: 30px; }
.garden-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.garden-masonry-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); height: 180px; }
.garden-masonry-card.big { grid-row: span 2; height: 380px; }
.garden-masonry-card:hover img { transform: scale(1.05); }

/* ----- REVIEWS ----- */
.reviews-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.reviews-metric-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.reviews-metric-card .score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.reviews-metric-card .stars {
  color: var(--color-secondary);
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}
.reviews-metric-card .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.reviews-list-column { display: flex; flex-direction: column; gap: 24px; }
.review-item-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-item-card .stars { color: var(--color-secondary); margin-bottom: 12px; font-size: 12px; }
.review-item-card p { font-size: 14px; font-style: italic; color: var(--color-text-dark); margin-bottom: 16px; }
.review-item-card .meta { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: var(--color-text-mute); text-transform: uppercase; }

/* ----- GALLERY HOME ----- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); height: 240px; cursor: pointer;
}
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(157, 94, 43, 0.85); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: var(--transition);
  z-index: 2;
}
.gallery-overlay i { color: #fff; font-size: 24px; transform: scale(0.8); transition: var(--transition); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-card:hover .gallery-overlay i { transform: scale(1); }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-cta-container {
  grid-column: span 4;
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

/* ----- AMENITIES BAR ----- */
.amenities-bar {
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  color: #EFE1C4;
  box-shadow: var(--shadow-md);
}
.amenity-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
}
.amenity-block svg { color: var(--color-secondary); }

/* ----- CONTACT HOME ----- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.2fr 0.9fr; gap: 40px; align-items: stretch; }
.contact-column h3 { font-size: 24px; margin-bottom: 24px; }
.attractions-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.attractions-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--color-text-mute); }
.attractions-list li svg { color: var(--color-secondary); flex-shrink: 0; }
.map-card-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); min-height: 280px; }
.map-card-wrapper iframe { width: 100%; height: 100%; border: none; }
.contact-detail-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; font-size: 13.5px; color: var(--color-text-mute); line-height: 1.5; }
.contact-info-list li svg { color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.contact-column-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }

/* ----- FOOTER ----- */
footer { background: var(--color-bg-dark); color: #B7A488; padding: 80px 0 30px; border-top: 1px solid rgba(234, 222, 201, 0.1); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer-brand-box { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-box .brand { align-self: flex-start; }
.footer-brand-box .brand h1 { color: #F1DAB2; }
.footer-brand-box .brand-logo { border-color: var(--color-secondary); }
.footer-brand-box p { font-size: 13px; color: #B7A488; line-height: 1.6; }
footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #F1DAB2; margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
footer ul a:hover { color: #FDFBF7; }
.footer-socials { display: flex; gap: 12px; margin-bottom: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(234, 222, 201, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #FAF3E6; font-size: 14px;
}
.footer-socials a:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(234, 222, 201, 0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; font-size: 12px; color: #9A8871;
  flex-wrap: wrap; gap: 16px;
}

/* ----- BOOKING MODAL ----- */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(22, 15, 10, 0.6); backdrop-filter: blur(8px);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; padding: 20px;
}
.modal-overlay.open { opacity: 1; display: flex; }
.modal-card {
  background: var(--color-bg-light); border-radius: var(--radius-lg);
  width: 100%; max-width: 520px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border); overflow: hidden;
  transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-header {
  padding: 24px 30px; border-bottom: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--color-bg-panel);
}
.modal-header h3 { font-size: 22px; }
.modal-close { background: transparent; border: none; font-size: 28px; cursor: pointer; color: var(--color-text-mute); }
.modal-close:hover { color: var(--color-primary); }
.modal-body { padding: 30px; max-height: 70vh; overflow-y: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-span-2 { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-mute); }
.form-control {
  padding: 10px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-size: 13.5px;
  font-family: inherit; background: var(--color-bg-light);
  color: var(--color-text-dark); transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(157, 94, 43, 0.1); }
textarea.form-control { height: 80px; resize: none; }
.form-feedback {
  display: none; margin-top: 16px; padding: 14px;
  border-radius: var(--radius-sm); font-size: 12.5px; font-weight: 500;
  line-height: 1.5; text-align: center;
}
.form-feedback.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-feedback.error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* ----- LIGHTBOX ----- */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(14, 9, 6, 0.95); z-index: 3000;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; display: flex; }
.lightbox-content { position: relative; max-width: 80%; max-height: 80%; display: flex; flex-direction: column; align-items: center; }
.lightbox-img { max-width: 100%; max-height: 72vh; border-radius: var(--radius); object-fit: contain; box-shadow: 0 10px 45px rgba(0,0,0,0.6); }
.lightbox-caption { color: #D9C8AE; font-size: 14px; font-family: 'Cormorant Garamond', Georgia, serif; text-align: center; margin-top: 14px; }
.lightbox-close { position: absolute; top: -50px; right: 0; color: #fff; font-size: 36px; background: transparent; border: none; cursor: pointer; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 32px; background: rgba(22, 15, 10, 0.6);
  border: none; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: var(--color-primary); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ----- MEDIA RESPONSIVENESS OVERRIDES ----- */
@media(max-width:1024px){
  .hero-grid, .about-grid, .taste-grid, .garden-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .hero-photos { height: 380px; }
  .stats-card { grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px; }
  .stat-block { border-right: none; border-bottom: none; padding-bottom: 0; padding-right: 0; }
  .stat-block:last-child { border-bottom: none; }
  .room-row-card { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cta-container { grid-column: span 2; }
  .amenities-bar { grid-template-columns: repeat(4, 1fr); row-gap: 20px; }
  .about-top-photos { grid-template-columns: 1fr; gap: 20px; }
  .about-top-photo-wrapper { height: 280px; }
  .about-story-columns { grid-template-columns: 1fr; gap: 24px; }
  .full-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:768px){
  .header-top { display: none; }
  .mobile-only-brand { display: flex; }
  .nav-container { height: 70px; }
  .nav-container nav { display: none; }
  .mobile-menu-btn { display: block; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-nav { width: 36px; height: 36px; font-size: 20px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-photo-frame::after { display: none; }
  .room-row-photo { min-height: 250px; height: 250px; }
  .taste-showcase-float { position: relative; bottom: 0; left: 0; margin-top: 20px; max-width: 100%; }
  .amenities-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h2 { font-size: 38px; }
  .room-row-info { padding: 30px 24px; }
  .room-row-title-bar { flex-direction: column; gap: 8px; }
  .taste-items-grid { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px){
  .stats-card { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr; }
  .amenities-bar { grid-template-columns: repeat(2, 1fr); }
}