/* ===================================
   THE SALTY FIN — STYLE.CSS
   Coastal Premium Design System
   =================================== */

/* ------- Variables ------- */
:root {
  /* Core Palette — coastal sky blue + warm CTA */
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-light: #BAE6FD;
  --ocean: #0077A8;
  --ocean-dark: #005F8A;
  --teal: #17A8A8;
  --cta: #F97316;
  --cta-dark: #EA6504;
  --sand: #F0F9FF;
  --sand-warm: #F7F4EF;
  --white: #ffffff;
  --dark: #0C2340;
  --dark-mid: #1E3A5F;
  --gray: #5A7A9A;
  --gray-mid: #B8CDD8;
  --gray-light: #E8F4F8;
  --border: #D8EAF0;
  --star: #F59E0B;
  --review-bg: #F8FAFC;

  /* Typography */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Radii */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(12, 35, 64, 0.06);
  --shadow-sm: 0 2px 10px rgba(12, 35, 64, 0.08);
  --shadow: 0 4px 24px rgba(12, 35, 64, 0.10);
  --shadow-lg: 0 8px 48px rgba(12, 35, 64, 0.14);
  --shadow-cta: 0 4px 20px rgba(249, 115, 22, 0.35);

  /* Transitions */
  --transition: all 0.22s ease;
  --transition-slow: all 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
}

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

/* ===================================
   NAVIGATION — sticky premium style
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.nav-brand:hover .nav-logo-img {
  border-color: var(--primary);
}

.nav-brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--gray-light);
}

.nav-book-btn {
  background: var(--ocean);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 119, 168, 0.28);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.nav-book-btn:hover {
  background: var(--ocean-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 119, 168, 0.40);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: auto;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--gray-light);
  border-color: var(--gray-mid);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--gray-light);
  border-color: var(--gray-mid);
}

.mobile-link {
  display: block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-link:hover {
  background: var(--sand);
  color: var(--ocean);
}

.mobile-book {
  margin-top: 16px;
  background: var(--ocean);
  color: var(--white) !important;
  border-radius: 100px;
  padding: 14px 40px;
}

.mobile-book:hover {
  background: var(--ocean-dark) !important;
  color: var(--white) !important;
}

/* ===================================
   HERO — premium photo grid
   =================================== */
.hero {
  padding-top: 76px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  gap: 8px;
  max-height: 600px;
  overflow: hidden;
}

.hero-main {
  grid-row: 1 / 4;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  cursor: pointer;
}

.hero-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 8px;
  grid-row: 1 / 4;
  height: 600px;
  align-self: stretch;
}

.hero-side-img {
  overflow: hidden;
  cursor: pointer;
}

.hero-side-img:nth-child(2) {
  border-radius: 0 var(--radius) 0 0;
}

/* 5th item = wide spanning bottom row */
.hero-side-wide {
  grid-column: span 2;
  border-radius: 0 0 var(--radius) 0;
}

.hero-main img,
.hero-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main:hover img,
.hero-side-img:hover img {
  transform: scale(1.04);
}

.show-all-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font);
}

.show-all-btn:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* ===================================
   LISTING HEADER — Two-column layout
   =================================== */
.listing-header {
  padding: 44px 0 80px;
}

.listing-header-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

/* LEFT column */
.listing-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.listing-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.listing-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--gray);
  font-weight: 400;
}

.dot {
  color: var(--gray-mid);
  font-weight: 300;
}

.listing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* Highlights */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.55;
}

/* Description */
.listing-description h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.listing-description p {
  font-size: 0.95rem;
  color: #3A5570;
  line-height: 1.8;
  margin-bottom: 14px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
  cursor: pointer;
}

.read-more-link:hover {
  color: var(--ocean-dark);
}

/* Bedroom layout */
.bedroom-layout h2,
.amenities-section h2,
.location-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.bedroom-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  background: var(--white);
}

.bedroom-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.bedroom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--primary);
}

.bedroom-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.bedroom-type {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Amenities */
.amenities-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.amenity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 4px 0;
}

.amenity-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* Location */
.location-address {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.map-container {
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nearby-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #3A5570;
}

.nearby-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--sand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.nearby-list li strong {
  font-weight: 700;
  color: var(--dark);
  margin-right: 4px;
}

/* ===================================
   BOOKING CARD (sticky sidebar)
   =================================== */
.booking-card-wrap {
  position: sticky;
  top: 96px;
}

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

.booking-card-header {
  margin-bottom: 20px;
}

.booking-managed {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
}

.bc-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.3;
}

.bc-manager {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

.booking-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}

.bs-item {
  background: var(--white);
  padding: 14px 12px;
  text-align: center;
}

.bs-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.bs-item span {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--cta) 0%, #FB923C 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-cta);
  letter-spacing: 0.01em;
  cursor: pointer;
  font-family: var(--font);
}

.book-btn:hover {
  background: linear-gradient(135deg, var(--cta-dark) 0%, var(--cta) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.48);
}

.bc-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 10px;
}

.bc-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}

.bc-features li {
  font-size: 0.82rem;
  color: #3A5570;
  display: flex;
  align-items: center;
  gap: 9px;
}

.bc-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
}

.bc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.bc-contact {
  text-align: center;
}

.bc-contact p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.bc-contact a {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  cursor: pointer;
}

.bc-contact a:hover {
  color: var(--ocean);
}

.bc-hours {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 6px !important;
}

/* ===================================
   REVIEWS / SOCIAL PROOF
   =================================== */
.reviews-section {
  background: var(--review-bg);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: var(--star);
}

.rating-number {
  font-weight: 800;
  font-size: 0.95rem;
  color: #92400E;
}

.rating-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #A16207;
}

.reviews-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  color: var(--star);
}

.review-card blockquote {
  font-size: 0.92rem;
  color: #3A5570;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  font-style: normal;
}

.reviews-cta {
  text-align: center;
}

.reviews-book-btn {
  display: inline-block;
  width: auto;
  padding: 16px 40px;
  font-size: 1rem;
}

/* ===================================
   GALLERY MODAL (full-page)
   =================================== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
}

.gallery-modal.open {
  display: block;
}

.gm-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gm-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
  font-family: var(--font);
}

.gm-close:hover {
  background: var(--gray-light);
  border-color: var(--gray-mid);
}

.gm-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.gm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 32px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.gm-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}

.gm-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gm-item:hover img {
  transform: scale(1.03);
}

.gm-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 24px 12px 10px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 56px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-email,
.footer-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: pointer;
}

.footer-email:hover,
.footer-phone:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: 0.1s;
}

.fade-up-d2 {
  transition-delay: 0.2s;
}

.fade-up-d3 {
  transition-delay: 0.3s;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .listing-header-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-card-wrap {
    position: static;
  }

  .booking-card {
    max-width: 480px;
  }

  .hero-grid {
    grid-template-rows: 250px 250px;
    max-height: 500px;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-book-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px;
    max-height: 280px;
  }

  .hero-main {
    grid-row: 1;
    border-radius: var(--radius);
  }

  .hero-side {
    display: none;
  }

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

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

  .amenities-grid-modern {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .listing-header {
    padding: 32px 0 56px;
  }
}

@media (max-width: 480px) {
  .bedroom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .review-card {
    padding: 22px;
  }
}

/* ===================================
   EXPLORE THE AREA SECTION
   =================================== */
.area-section {
  background: var(--dark);
  padding: 80px 0 88px;
  color: var(--white);
}

.area-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.area-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.area-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.area-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-mid);
}

/* Grid: 3-column auto-rows, items use row span */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.area-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
  background: var(--dark-mid);
}

.area-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.area-item:hover img {
  transform: scale(1.04);
}

.area-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.area-item:hover figcaption {
  opacity: 1;
}

/* Lead item: spans 2 rows and 1 col */
.area-item--lead {
  grid-row: span 2;
}

/* Wide item: spans all 3 columns */
.area-item--wide {
  grid-column: span 3;
}

.area-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.92rem;
  color: var(--gray-mid);
  font-style: italic;
}

@media (max-width: 900px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .area-item--lead {
    grid-column: span 2;
    grid-row: span 1;
  }

  .area-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .area-section {
    padding: 56px 0 64px;
  }

  .area-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .area-item--lead,
  .area-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .area-item figcaption {
    opacity: 1;
  }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
  background: var(--white);
  padding: 72px 0 80px;
}

.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.faq-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.faq-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0;
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--gray-mid);
  margin: 0;
}

/* ===================================
   REDUCED MOTION (a11y)
   =================================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================
   FOCUS STYLES (a11y)
   =================================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}