/* ===== LUMINA SHORE SANCTUARY ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --surface: #fdf8f8;
  --surface-dim: #ddd9d9;
  --surface-container: #f1eded;
  --surface-container-low: #f7f2f2;
  --surface-container-high: #ebe7e7;
  --surface-container-lowest: #ffffff;
  --on-surface: #1c1b1b;
  --on-surface-variant: #4a4549;
  --outline: #7b757a;
  --outline-variant: #ccc4c9;
  --primary: #5f5a5e;
  --primary-container: #787377;
  --on-primary: #ffffff;
  --secondary: #735c00;
  --secondary-container: #fed65b;
  --on-secondary: #ffffff;
  --tertiary: #5b5c5c;
  --gold: #D4AF37;
  --gold-light: #e9c349;
  --cream: #FFFDD0;
  --off-black: #121212;
  --inverse-surface: #313030;
  --inverse-on-surface: #f4f0ef;
}

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

html { scroll-behavior: smooth; font-size: 16px; min-height: 100%; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--surface);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.2; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
.headline-md { font-size: clamp(1.5rem, 3vw, 2rem); }
.headline-sm { font-size: 1.5rem; font-weight: 500; }
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-md { font-size: 1rem; line-height: 1.5; }
.label-caps {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fdf8f8;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 196, 201, 0.15);
  transition: all 0.5s ease;
  height: 150px;
}
.nav.scrolled { background: rgba(253, 248, 248, 0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.03); }
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2rem;
  height: 100%;
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 150px; width: auto;
  mix-blend-mode: multiply;
  transition: transform 0.4s ease, height 0.4s ease, clip-path 0.4s ease;
  transform: scale(1.4);
  transform-origin: left center;
  clip-path: inset(0 0 15% 0);
}
.nav.scrolled .nav-logo-img {
  height: 100px;
  transform: scale(1.3);
}
.nav.scrolled .nav-logo {
  margin-top: 0;
}
.nav.scrolled {
  height: 100px;
}
.footer-logo-img {
  height: 220px; width: auto;
  mix-blend-mode: multiply;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--on-surface-variant);
  text-decoration: none; transition: color 0.3s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--secondary);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: flex; gap: 0.25rem;
  background: var(--surface-container);
  border-radius: 100px; padding: 3px;
}
.lang-btn {
  padding: 6px 14px; border: none; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  background: transparent; color: var(--on-surface-variant);
}
.lang-btn.active { background: var(--on-surface); color: var(--on-primary); }
.btn-book {
  padding: 0.75rem 1.75rem; border: none;
  background: var(--primary); color: var(--on-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; border-radius: 2px;
}
.btn-book:hover { background: var(--primary-container); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--on-surface); margin: 5px 0; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.0);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.0); } to { transform: scale(1.25); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 40%, rgba(253,248,248,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 2rem;
  animation: fadeUp 1.2s ease-out;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(60px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-content h1 { color: var(--on-surface); margin-bottom: 1.5rem; }
.hero-content p { color: rgba(28,27,27,0.8); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll span { display: block; width: 24px; height: 40px; border: 2px solid var(--outline); border-radius: 12px; position: relative; }
.hero-scroll span::after {
  content: ''; width: 4px; height: 8px; background: var(--secondary);
  border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* ===== BOOKING SECTION ===== */
.booking-section {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: -4rem auto 4rem;
  padding: 0 2rem;
  scroll-margin-top: 160px;
}

.booking-container {
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-variant);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(28,27,27,0.08);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.5rem;
  align-items: flex-end;
}

.booking-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-group label {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.booking-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--outline-variant);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--on-surface);
  background: var(--surface);
  transition: all 0.3s ease;
  outline: none;
}

.booking-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.btn-search {
  padding: 1rem 2.5rem;
  background: var(--on-surface);
  color: var(--surface);
  border: 1px solid var(--on-surface);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 3.25rem;
}

.btn-search:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.child-ages-panel {
  display: none;
  grid-column: 1 / -1;
  background: var(--surface-container-low);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  margin-top: 1rem;
  animation: slideDown 0.4s ease-out;
}

.child-ages-panel.visible {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.child-ages-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--on-surface);
  margin-bottom: 1rem;
  font-weight: 500;
}

.child-ages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.age-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 100px;
}

.age-input-group label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--outline);
}

.age-select {
  padding: 0.5rem !important;
  font-size: 0.8rem !important;
}

@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
  .child-ages-panel.visible {
    grid-column: span 2;
  }
  .btn-search {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .booking-container {
    grid-template-columns: 1fr;
  }
  .btn-search {
    grid-column: span 1;
  }
  .booking-section {
    margin-top: -2rem;
  }
}

/* ===== SECTIONS ===== */
.section { padding: 7.5rem 2rem; max-width: 1440px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--secondary); }
.section-label span { color: var(--secondary); }

/* ===== ABOUT / PHILOSOPHY ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.about-image::after {
  content: ''; position: absolute; bottom: -1.5rem; left: -1.5rem;
  width: 12rem; height: 16rem; background: var(--surface-container-lowest);
  z-index: -1;
}
.about-text h2 { margin-bottom: 2rem; }
.about-text p { color: var(--on-surface-variant); margin-bottom: 1.5rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--on-surface); text-decoration: none;
  border-bottom: 1px solid var(--on-surface); padding-bottom: 4px;
  transition: all 0.3s;
}
.link-arrow:hover { color: var(--secondary); border-color: var(--secondary); }
.link-arrow svg { transition: transform 0.3s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== SUITES ===== */
.suites-header { text-align: center; margin-bottom: 4rem; }
.suites-header h2 { margin-bottom: 1rem; }
.suites-header p { color: var(--on-surface-variant); max-width: 600px; margin: 0 auto; }
.suites-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.suite-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.suite-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.suite-card:hover img { transform: scale(1.05); }
.suite-card-info {
  padding: 1.5rem 0;
}
.suite-card-info h3 { margin-bottom: 0.5rem; }
.suite-card-info p { color: var(--on-surface-variant); font-size: 0.9rem; margin-bottom: 1rem; }
.suite-card-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid rgba(204,196,201,0.2); padding-top: 1rem;
}
.suite-price .from { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface-variant); }
.suite-price .amount { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.suite-detail-link {
  color: var(--secondary); text-decoration: none;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem; transition: color 0.3s;
}
.suite-detail-link:hover { color: var(--primary); }

/* Villa Feature Card */
.villa-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  background: var(--surface-container-low);
  border: 1px solid rgba(204,196,201,0.1);
  border-radius: 4px; padding: 1.5rem;
  align-items: center;
}
.villa-feature img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; }
.villa-feature-info { padding: 1rem 2rem; }
.villa-badge {
  display: inline-block; padding: 0.3rem 1rem;
  border: 1px solid var(--primary); border-radius: 100px;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 1rem;
}
.villa-feature-info h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.villa-feature-info p { color: var(--on-surface-variant); margin-bottom: 2rem; }

/* ===== DINING & WELLNESS ===== */
.dining-section { background: var(--surface-container-low); padding: 7.5rem 0; }
.dining-inner { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.dining-grid { display: grid; grid-template-columns: 7fr 4fr; gap: 1.5rem; align-items: center; }
.dining-img { height: 600px; border-radius: 4px; overflow: hidden; }
.dining-img img { width: 100%; height: 100%; object-fit: cover; }
.dining-text { padding-left: 2rem; }
.dining-text h2 { margin-bottom: 1.5rem; }
.dining-text p { color: var(--on-surface-variant); margin-bottom: 2rem; }
.dining-detail-img { height: 350px; border-radius: 4px; overflow: hidden; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.dining-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.btn-outline {
  display: inline-block; padding: 0.9rem 1.75rem;
  border: 1px solid var(--outline); border-radius: 2px;
  color: var(--secondary); background: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.btn-outline:hover { background: var(--surface-container-low); border-color: var(--secondary); }

/* Wellness Grid */
.wellness-section { padding: 7.5rem 2rem; }
.wellness-inner { max-width: 1440px; margin: 0 auto; }
.wellness-header { text-align: center; margin-bottom: 3rem; }
.wellness-header h2 { margin-bottom: 0.5rem; }
.wellness-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
.wellness-main { 
  grid-row: span 2; position: relative; border-radius: 4px; 
  overflow: hidden; min-height: 800px;
  background: #fdf8f8;
}
.wellness-main img { 
  width: 100%; height: 100%; 
  object-fit: cover;
  object-position: center;
  display: block; opacity: 1;
}
.wellness-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,27,27,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 2rem;
  z-index: 2;
}
.wellness-main-overlay h3 { color: #fff; margin-bottom: 0.5rem; }
.wellness-main-overlay p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.wellness-card {
  background: var(--surface); border: 1px solid rgba(204,196,201,0.2);
  border-radius: 4px; padding: 2rem;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 20px 40px rgba(18,18,18,0.02);
}
.wellness-card-icon { color: var(--secondary); font-size: 1.75rem; margin-bottom: 1rem; }
.wellness-card h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.5rem; }
.wellness-card p { color: var(--on-surface-variant); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-section { padding: 7.5rem 2rem; }
.contact-inner { max-width: 1440px; margin: 0 auto; }
.contact-hero {
  position: relative; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-container-low); border-radius: 4px;
  overflow: hidden; margin-bottom: 4rem;
}
.contact-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity 0.5s; }
.contact-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.25); z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; text-align: center; padding: 3rem 2rem; color: #fff; }
.contact-hero-content h2 { margin-bottom: 1rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.contact-hero-content p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; text-shadow: 0 1px 5px rgba(0,0,0,0.2); }
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 3rem; }
.contact-details h3 { margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon { color: var(--outline); font-size: 1.25rem; margin-top: 2px; }
.contact-item .label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface-variant); margin-bottom: 4px; }
.contact-item .value { color: var(--on-surface); }
.contact-map {
  width: 100%; aspect-ratio: 1; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(204,196,201,0.2); margin-top: 2rem;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; filter: grayscale(30%); }
.contact-form {
  background: var(--surface-container-lowest);
  border: 1px solid rgba(204,196,201,0.1);
  border-radius: 4px; padding: 3rem;
}
.contact-form h3 { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--on-surface-variant);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--outline-variant);
  background: transparent; padding: 0.5rem 0;
  font-family: 'Montserrat', sans-serif; font-size: 1rem;
  color: var(--on-surface); transition: border-color 0.3s;
  border-radius: 0; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-bottom-color: var(--primary); }
.form-group textarea { resize: none; height: 100px; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--primary); color: var(--on-primary);
  border: none; border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.btn-submit:hover { background: var(--primary-container); }
.btn-book {
  padding: 0.75rem 1.5rem;
  background: var(--primary); color: var(--on-primary);
  border: none; border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

/* ===== FOOTER ===== */
.footer { background: var(--surface-container-low); padding: 4rem 2rem; margin-top: 4rem; border-top: 1px solid rgba(204,196,201,0.1); }
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.footer-logo { margin-bottom: 2rem; }
.footer-sections {
  display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center;
}
.footer-sections a {
  text-decoration: none; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--on-surface);
  transition: color 0.3s;
}
.footer-sections a:hover { color: var(--gold); }
.footer-links {
  display: flex; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  text-decoration: none; font-size: 0.8rem; color: var(--outline);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--on-surface); }
.footer-copy { font-size: 0.8rem; color: var(--outline); opacity: 0.8; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { 
  opacity: 1; 
  transform: translateY(0) scale(1); 
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); 
}

/* Only hide if JS is active */
.js-enabled .reveal { 
  opacity: 0; 
  transform: translateY(50px) scale(0.95); 
}

.js-enabled .reveal.visible { 
  opacity: 1; 
  transform: translateY(0) scale(1); 
}

/* ===== MOBILE ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(253,248,248,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--on-surface); text-decoration: none; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--on-surface);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .suites-grid { grid-template-columns: 1fr; }
  .villa-feature { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .dining-text { padding-left: 0; padding-top: 2rem; }
  .dining-img { height: 400px; }
  .wellness-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(204,196,201,0.2); width: 100%; }
  .booking-field:last-of-type { border-bottom: none; }
  .booking-bar .btn-book { width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 1.5rem; }
  .btn-book { display: none; }
  .nav { height: 100px; }
  .nav-inner { height: 100%; padding: 0 1rem; }
  .nav-logo { margin-top: 0; }
  .nav-logo-img { height: 100px; }
  .footer-logo-img { height: 130px; }
  .hero-content h1 { font-size: 2.2rem; }
}
