/* ===== LAUNCH BANNER ===== */
.launch-banner {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.3px;
}
.launch-banner a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 6px;
}
.launch-banner a:hover { opacity: 0.75; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --off-white: #faf8f4;
  --border: #e8e0d0;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.btn-outline:hover { background: white; color: var(--dark); border-color: white; }

.btn-small {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-small:hover { background: transparent; color: var(--gold); }

.full-width { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-e, .logo-s { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-btn {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: opacity 0.3s !important;
}
.nav-btn:hover { opacity: 0.85; color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,168,76,0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(201,168,76,0.08); }

.highlight-item i {
  font-size: 1.8rem;
  color: var(--gold);
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.highlight-item strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.highlight-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 48%;
  border-radius: var(--radius);
  border: 5px solid var(--off-white);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  z-index: 3;
}
.badge-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ROOMS ===== */
.rooms { background: var(--white); }

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

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

.room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img-wrap img { transition: transform 0.5s ease; }
.room-card:hover .room-img-wrap img { transform: scale(1.06); }

.room-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.luxury-tag { background: var(--dark); color: var(--gold); }

.room-info { padding: 24px; }

.room-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text);
}

.room-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.room-features li i { color: var(--gold); width: 14px; }

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.room-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.room-price span { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }

/* ===== AMENITIES ===== */
.amenities {
  position: relative;
  padding: 100px 0;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.amenities-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.88);
}

.amenities .container { position: relative; z-index: 1; }

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.6); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.amenity-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.amenity-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.amenity-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img { transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.featured-testimonial {
  background: var(--dark);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.featured-testimonial:hover { transform: translateY(-12px); }
.featured-testimonial p { color: rgba(255,255,255,0.8) !important; }
.featured-testimonial .guest strong { color: var(--white) !important; }
.featured-testimonial .guest span { color: rgba(255,255,255,0.5) !important; }

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card p {
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.guest { display: flex; align-items: center; gap: 14px; }

.guest-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guest strong { display: block; font-size: 0.9rem; color: var(--text); }
.guest span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== EARLY BIRD ===== */
.early-bird {
  background: var(--dark2);
  padding: 100px 0;
}

.early-bird-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.early-bird-text .section-title { color: var(--white); }

.early-bird-text p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.early-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.early-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}

.early-perks li i { color: var(--gold); font-size: 0.8rem; }

.early-bird-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.early-bird-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text);
}

@media (max-width: 900px) {
  .early-bird-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }

.two-col-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; width: 20px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; color: var(--text); }
.contact-item span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.booking-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: var(--text);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  color: var(--gold);
}
.form-success i { font-size: 3rem; margin-bottom: 12px; }
.form-success p { font-size: 1rem; color: var(--text-muted); }
.form-success.show { display: block; }

/* ===== MAP ===== */
.map-section { height: 220px; background: #e8e0d0; position: relative; }

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  background: linear-gradient(135deg, #f0ebe0, #e0d8c8);
}
.map-placeholder i { font-size: 2rem; color: var(--gold); }
.map-placeholder p { font-weight: 600; color: var(--text); }
.map-placeholder span { font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 70px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-testimonial { transform: none; }
  .two-col-contact { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--dark2);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.3s ease;
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }

  .hamburger { display: flex; z-index: 1001; }

  .highlights { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 500px) {
  .highlights { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
