/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === Header / Navbar === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: background .3s, box-shadow .3s;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
}
.navbar .logo img { height: 60px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; color: #333; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 2px; background: #c8a96e; transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn-book {
  background: #c8a96e; color: #fff; padding: 10px 24px;
  border-radius: 4px; font-weight: 600; letter-spacing: 1px;
}
.nav-links .btn-book::after { display: none; }
.nav-links .btn-book:hover { background: #b8954e; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 2px; background: #333; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === Hero Section === */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; color: #fff;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.5)),
    url('../images/house14.jpg') center/cover no-repeat;
  margin-top: 0; padding-top: 80px;
}
.hero-content { max-width: 800px; padding: 40px 20px; }
.hero-badge {
  display: inline-block; background: rgba(200,169,110,0.9);
  padding: 8px 20px; border-radius: 30px; font-size: 13px;
  letter-spacing: 1px; margin-bottom: 16px; font-weight: 500;
  color: #fff; transition: background .3s;
}
a.hero-badge:hover { background: rgba(200,169,110,1); }
.hero-subtitle {
  font-size: 16px; text-transform: uppercase; letter-spacing: 4px;
  margin-bottom: 12px; opacity: 0.9;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 64px; font-weight: 700; margin-bottom: 16px;
  line-height: 1.1;
}
.hero p {
  font-size: 18px; max-width: 600px; margin: 0 auto 30px;
  opacity: 0.9; line-height: 1.8;
}
.hero .btn-primary { font-size: 16px; padding: 14px 40px; }

/* === Buttons === */
.btn-primary {
  display: inline-block; background: #c8a96e; color: #fff;
  padding: 12px 32px; border-radius: 4px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
  transition: background .3s, transform .3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #b8954e; transform: translateY(-2px); }
.btn-outline {
  display: inline-block; border: 2px solid #c8a96e; color: #c8a96e;
  padding: 12px 32px; border-radius: 4px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
  transition: all .3s; background: transparent; cursor: pointer;
}
.btn-outline:hover { background: #c8a96e; color: #fff; }

/* === Section Styles === */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  color: #c8a96e; font-size: 13px; text-transform: uppercase;
  letter-spacing: 3px; font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px; font-weight: 700; color: #222; margin-bottom: 16px;
}
.section-desc {
  color: #666; font-size: 16px; max-width: 800px; margin: 0 auto;
  line-height: 1.8;
}

/* === Stats Bar === */
.stats-bar {
  background: #1a1a2e; color: #fff; padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 48px; color: #c8a96e; margin-bottom: 8px;
}
.stat-item p { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

/* === Photo Grid (House) === */
.photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 0;
}
.photo-grid img {
  width: 100%; height: 280px; object-fit: cover; cursor: pointer;
  transition: transform .4s, opacity .3s; border-radius: 2px;
}
.photo-grid img:hover { transform: scale(1.03); opacity: 0.9; }

/* === Info Cards Section === */
.info-cards { background: #f9f7f4; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.info-card-img { border-radius: 8px; overflow: hidden; }
.info-card-img img { width: 100%; height: 400px; object-fit: cover; }
.info-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; margin-bottom: 16px; color: #222;
}
.info-card-text p { color: #666; line-height: 1.8; margin-bottom: 20px; }
.info-card-text .btn-outline { font-size: 12px; padding: 10px 24px; }

/* Alternate layout */
.info-grid.reverse { direction: rtl; }
.info-grid.reverse > * { direction: ltr; }

/* === History & Culture Section === */
.culture-section { background: #1a1a2e; color: #fff; padding: 80px 0; }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.culture-text .section-label { color: #c8a96e; }
.culture-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; margin-bottom: 12px;
}
.culture-text h3 {
  font-size: 18px; font-weight: 400; color: #c8a96e;
  margin-bottom: 20px;
}
.culture-text p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 20px; }

/* === Culture Cards === */
.culture-cards { padding: 80px 0; background: #f9f7f4; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 12px; }
.card-body p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.card-body a { color: #c8a96e; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.card-body a:hover { color: #b8954e; }

/* === Reviews Section === */
.reviews { background: #fff; padding: 80px 0; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; margin-bottom: 8px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 800px; margin: 0 auto; }
.review-card {
  background: #f9f7f4; padding: 32px; border-radius: 8px;
  text-align: center;
}
.review-stars { color: #c8a96e; font-size: 20px; margin-bottom: 12px; }
.review-card h4 { font-size: 16px; margin-bottom: 12px; color: #222; }
.review-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.review-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.review-author-info h5 { font-size: 14px; color: #222; }
.review-author-info span { font-size: 12px; color: #999; }

/* === Area Gallery === */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 2px;
  transition: transform .4s; cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* === Activities Section === */
.activities { background: #1a1a2e; color: #fff; padding: 60px 0; }
.activities-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.activities-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; margin-bottom: 16px;
}
.activity-items { display: flex; gap: 40px; }
.activity-item { text-align: center; }
.activity-item img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.activity-item span { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* === CTA / Booking Section === */
.cta-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/house14.jpg') center/cover no-repeat;
  color: #fff; text-align: center; padding: 100px 0;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px; margin-bottom: 24px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === Footer === */
.footer { background: #fff; color: #333; padding: 60px 0 30px; border-top: 1px solid #e5e5e5; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { color: #666; font-size: 14px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px; color: #2b8cc4;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #666; font-size: 14px; transition: color .3s; }
.footer-links a:hover { color: #2b8cc4; }
.footer-contact p { color: #666; font-size: 14px; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px; text-align: center;
  color: #999; font-size: 13px;
}

/* === Page Hero (Inner Pages) === */
.page-hero {
  position: relative; min-height: 50vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  color: #fff; padding-top: 80px;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
    url('../images/house14.jpg') center/cover no-repeat;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px; margin-bottom: 12px;
}
.page-hero p { font-size: 16px; opacity: 0.9; max-width: 800px; margin: 0 auto; }

/* === Content Pages === */
.page-content { padding: 60px 0; }
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; margin-bottom: 20px; color: #222;
}
.page-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; margin-bottom: 16px; color: #333;
}
.page-content p { color: #555; line-height: 1.8; margin-bottom: 20px; }
.page-content img { border-radius: 8px; margin: 20px 0; }

/* Article body for blog post pages */
.article-body { max-width: 800px; margin: 0 auto; }
.article-body p { color: #555; line-height: 1.9; margin-bottom: 20px; font-size: 16px; }
.article-body strong { color: #333; }
.article-body ol { padding-left: 20px; margin-bottom: 20px; color: #555; line-height: 1.8; }
.article-body ol li { margin-bottom: 8px; }
.article-back { margin-bottom: 30px; }
.article-back a { color: #c8a96e; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.article-back a:hover { color: #b8954e; }

/* Article list for The Area / History pages */
.article-list { display: grid; gap: 30px; }
.article-preview {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform .3s;
  display: flex; align-items: stretch; overflow: hidden;
}
.article-preview:hover { transform: translateY(-3px); }
.article-preview img {
  width: 280px; min-height: 200px; object-fit: cover; flex-shrink: 0;
}
.article-preview-content {
  padding: 30px; flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.article-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 12px; color: #222;
}
.article-preview p { color: #666; line-height: 1.7; margin-bottom: 16px; }
.article-preview a { color: #c8a96e; font-weight: 600; text-transform: uppercase; font-size: 13px; }
@media (max-width: 768px) {
  .article-preview { flex-direction: column; }
  .article-preview img { width: 100%; height: 200px; }
}

/* === Room Details === */
.room-hero { background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.5)), url('../images/house3.jpg') !important; background-position: center !important; background-size: cover !important; }
.room-info { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.room-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.room-feature {
  background: #f9f7f4; padding: 20px; border-radius: 8px; text-align: center;
}
.room-feature h4 { font-size: 15px; color: #222; margin-bottom: 4px; }
.room-feature span { font-size: 13px; color: #666; }
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.amenity {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: #555;
}
.amenity svg { width: 20px; height: 20px; color: #c8a96e; flex-shrink: 0; }

/* Ratings */
.ratings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.rating-item { display: flex; justify-content: space-between; align-items: center; }
.rating-item span { font-size: 14px; color: #555; }
.rating-bar { flex: 1; margin: 0 12px; height: 6px; background: #e9e5df; border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: #c8a96e; border-radius: 3px; }
.rating-value { font-size: 14px; color: #222; font-weight: 600; }

/* Sidebar booking card */
.booking-card {
  background: #f9f7f4; padding: 32px; border-radius: 8px;
  position: sticky; top: 100px;
}
.booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; margin-bottom: 8px;
}
.booking-card .rating { color: #c8a96e; font-size: 14px; margin-bottom: 20px; }
.booking-card .btn-primary { width: 100%; text-align: center; font-size: 15px; padding: 14px; }

/* Weather charts */
.weather-charts { display: grid; gap: 40px; }
.weather-chart { text-align: center; }
.weather-chart h3 { margin-bottom: 16px; }
.weather-chart img { max-width: 100%; border-radius: 8px; }

/* Getting here steps */
.steps { counter-reset: step; }
.step {
  background: #f9f7f4; padding: 30px; border-radius: 8px;
  margin-bottom: 20px; position: relative; padding-left: 80px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 24px; top: 28px;
  width: 40px; height: 40px; background: #c8a96e;
  color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 18px; }
.step p { margin-bottom: 0; }

/* Airports info */
.airports-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; }
.airport-card {
  background: #f9f7f4; padding: 30px; border-radius: 8px;
}
.airport-card h3 { font-size: 20px; margin-bottom: 16px; color: #222; }
.airport-card ul { padding-left: 0; }
.airport-card li {
  padding: 6px 0; color: #555; font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; gap: 8px;
}

/* Stopping points */
.stop-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0; }
.stop-point {
  background: #f9f7f4; padding: 24px; border-radius: 8px; text-align: center;
}
.stop-point h4 { font-size: 16px; color: #222; margin-bottom: 8px; }
.stop-point p { font-size: 13px; color: #666; }

/* === Lightbox === */
.lightbox {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.9);
  z-index: 2000; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 36px; cursor: pointer;
  background: none; border: none; z-index: 2001;
}

/* === Hero Rating Badge === */
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  padding: 12px 24px; border-radius: 50px; font-size: 15px;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.hero-rating .stars { color: #c8a96e; font-size: 18px; }
.hero-rating .rating-score { font-weight: 700; font-size: 17px; }
.hero-rating .rating-divider { opacity: 0.5; }
.hero-rating .rating-count { opacity: 0.9; font-weight: 400; }

/* Hero Feature Tags */
.hero-features {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 20px 0 32px;
}
.hero-feature-tag {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  padding: 8px 18px; border-radius: 24px; font-size: 13px;
  letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

/* === Property Highlights === */
.highlights { padding: 60px 0; background: #fff; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
  text-align: center;
}
.highlight-item {
  padding: 24px 12px; border-radius: 12px;
  transition: background .3s;
}
.highlight-item:hover { background: #f9f7f4; }
.highlight-item svg {
  width: 36px; height: 36px; margin: 0 auto 12px; display: block;
  stroke: #c8a96e; fill: none; stroke-width: 1.5;
}
.highlight-item h4 {
  font-size: 15px; font-weight: 600; color: #222; margin-bottom: 4px;
}
.highlight-item p { font-size: 13px; color: #888; }

/* === Featured Gallery === */
.featured-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px; max-height: 560px;
}
.featured-gallery .gallery-main { grid-row: 1 / 3; }
.featured-gallery img {
  width: 100%; height: 100%; object-fit: cover; cursor: pointer;
  transition: opacity .3s;
}
.featured-gallery img:hover { opacity: 0.9; }
.gallery-view-all { position: relative; }
.gallery-view-all-btn {
  position: absolute; bottom: 16px; right: 16px;
  background: #fff; color: #333; padding: 10px 20px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  border: 1px solid #222; cursor: pointer; transition: background .3s;
  z-index: 10;
}
.gallery-view-all-btn:hover { background: #f0f0f0; }

/* Full gallery (initially hidden) */
.full-gallery { display: none; }
.full-gallery.active { display: block; }

/* === Reviews Enhanced === */
.reviews-aggregate {
  text-align: center; margin-bottom: 40px;
}
.reviews-aggregate .big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 700; color: #222; line-height: 1;
}
.reviews-aggregate .stars-large { color: #c8a96e; font-size: 28px; margin: 12px 0; }
.reviews-aggregate .review-count {
  color: #888; font-size: 16px;
}
.reviews-aggregate .review-count a { color: #c8a96e; font-weight: 600; }
.reviews-aggregate .review-count a:hover { color: #b8954e; }

/* === Sticky Mobile CTA === */
.mobile-booking-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform .3s ease;
}
.mobile-booking-bar.visible { transform: translateY(0); }
.mobile-booking-bar .booking-info { font-size: 14px; line-height: 1.4; }
.mobile-booking-bar .booking-info .rating-stars { color: #c8a96e; }
.mobile-booking-bar .booking-info .rating-text { font-weight: 600; color: #222; }
.mobile-booking-bar .btn-primary { padding: 12px 24px; font-size: 14px; white-space: nowrap; }

/* === Animations === */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1024px) {
  .info-grid, .culture-grid, .airports-grid { grid-template-columns: 1fr; }
  .info-grid.reverse { direction: ltr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .room-info { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-gallery { max-height: 440px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0; background: #fff;
    padding: 20px; gap: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 40px; }
  .section-title { font-size: 30px; }
  .photo-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img, .gallery-grid img { height: 200px; }
  .cards-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .activities-grid { flex-direction: column; text-align: center; }
  .activity-items { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .room-features { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .ratings-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .highlight-item { padding: 16px 8px; }
  .featured-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    max-height: none;
  }
  .featured-gallery .gallery-main { grid-row: auto; grid-column: 1 / 3; }
  .featured-gallery img { height: 220px; }
  .featured-gallery .gallery-main img { height: 280px; }
  .mobile-booking-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 68px; }
  .reviews-aggregate .big-rating { font-size: 56px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .photo-grid, .gallery-grid { grid-template-columns: 1fr; }
  .activity-items { flex-direction: column; }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .highlight-item h4 { font-size: 13px; }
  .highlight-item p { font-size: 11px; }
  .hero-feature-tag { font-size: 12px; padding: 6px 12px; }
  .featured-gallery { grid-template-columns: 1fr; }
  .featured-gallery .gallery-main { grid-column: 1; }
  .featured-gallery img, .featured-gallery .gallery-main img { height: 240px; }
}
