/* =============================================
   BEZ Rentals — Global Stylesheet
   ============================================= */

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

:root {
  --navy:     #1a2b4a;
  --navy-mid: #243a61;
  --accent:   #e8843a;
  --accent-hover: #d06e28;
  --sky:      #e8f3fb;
  --white:    #ffffff;
  --gray-50:  #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-300: #cdd3db;
  --gray-500: #6b7685;
  --gray-700: #3d4a58;
  --text:     #1e2d3d;
  --radius:   12px;
  --shadow-sm: 0 2px 8px rgba(26,43,74,.08);
  --shadow-md: 0 6px 24px rgba(26,43,74,.12);
  --shadow-lg: 0 16px 48px rgba(26,43,74,.16);
  --transition: 0.25s ease;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--gray-700); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { color: var(--gray-500); max-width: 580px; margin: 0 auto; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section { padding: 5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .875rem; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
}
.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1.5rem;
  border-top: 1px solid var(--gray-100);
  gap: 1rem;
}
.mobile-menu a {
  font-weight: 600;
  color: var(--gray-700);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: .5rem; justify-content: center; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero h1 .highlight { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* =============================================
   FEATURED HOME STRIP
   ============================================= */
.featured-strip {
  background: var(--sky);
  padding: 4rem 0;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.featured-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.featured-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-300);
}
.featured-img-thumb {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-300);
}
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8d5e8, #a8bdd8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  font-size: .85rem;
  font-weight: 600;
  opacity: .6;
}
.featured-info h2 { margin-bottom: 1rem; }
.featured-info p { margin-bottom: 1.5rem; }

.specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.spec-chip svg { flex-shrink: 0; }

/* =============================================
   GUEST TYPES / "PERFECT FOR"
   ============================================= */
.guest-types { background: var(--white); text-align: center; }
.guest-types .section-intro { max-width: 580px; margin: 0 auto 3rem; }

.guest-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: left;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.guest-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.guest-icon {
  width: 52px;
  height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.guest-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.guest-card p { font-size: .9rem; color: var(--gray-500); }

/* =============================================
   AMENITIES / WHY GUESTS LOVE IT
   ============================================= */
.amenities { background: var(--navy); }
.amenities .section-label { color: #fbbf24; }
.amenities .section-title { color: var(--white); }
.amenities .section-sub { color: rgba(255,255,255,.6); }

.amenities-intro { text-align: center; margin-bottom: 3.5rem; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background var(--transition);
}
.amenity-item:hover { background: rgba(255,255,255,.1); }
.amenity-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,132,58,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.amenity-item h4 { color: var(--white); font-size: 1rem; margin-bottom: .25rem; }
.amenity-item p { color: rgba(255,255,255,.6); font-size: .875rem; }

/* =============================================
   LOCATION HIGHLIGHTS
   ============================================= */
.location { background: var(--gray-50); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.location-map-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8d5e8, #a8bdd8);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--navy-mid);
}
.location-map-placeholder .map-icon { font-size: 3rem; }
.location-map-placeholder p { font-size: .9rem; font-weight: 600; opacity: .7; }

.distance-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.distance-left { display: flex; align-items: center; gap: .75rem; }
.distance-left .di-icon { font-size: 1.3rem; }
.distance-left strong { font-size: .95rem; color: var(--navy); }
.distance-badge {
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 999px;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--white); text-align: center; }
.reviews-intro { margin-bottom: 3rem; }

.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.star-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.star-summary .big-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.star-summary .score-detail { text-align: left; }
.star-summary .score-detail .stars { margin-bottom: .1rem; }
.star-summary .score-detail p { font-size: .85rem; color: var(--gray-500); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; text-align: left; }
.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card .stars { font-size: .95rem; margin-bottom: .75rem; }
.review-card blockquote {
  font-size: .95rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.reviewer-date { font-size: .78rem; color: var(--gray-500); }
.airbnb-badge {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: #ff5a5f;
  font-weight: 600;
  margin-top: .25rem;
}

/* =============================================
   FAQ TEASER
   ============================================= */
.faq-teaser { background: var(--sky); text-align: center; }
.faq-items { max-width: 680px; margin: 2.5rem auto; }
.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
}
.faq-question .faq-chevron {
  font-size: .85rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* =============================================
   FINAL CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0f1c30;
  color: rgba(255,255,255,.55);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo .logo-mark { background: var(--accent); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background:
    linear-gradient(135deg, rgba(26,43,74,.88) 0%, rgba(26,43,74,.62) 100%),
    url('../images/hero-living-main.jpg') center/cover no-repeat;
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; font-size: 1.1rem; }

/* =============================================
   PROPERTY PAGE
   ============================================= */
.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
  margin-bottom: 3rem;
}
.gallery-main {
  grid-row: 1 / 3;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-300);
}
.gallery-thumb {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-300);
}

.property-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.property-specs-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 2rem;
}
.property-desc { margin-bottom: 2.5rem; }
.property-desc h3 { margin-bottom: .75rem; }
.property-desc p { margin-bottom: 1rem; }

.amenities-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.amenity-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.amenity-check::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* booking card */
.booking-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 88px;
  text-align: center;
}
.booking-card h3 { margin-bottom: .25rem; font-size: 1.3rem; }
.booking-card .sub { font-size: .85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
.booking-card .disclaimer {
  font-size: .75rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.airbnb-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .8rem;
  color: #ff5a5f;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.booking-card .spec-chip { margin: 0 auto; justify-content: center; }
.booking-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; text-align: left; }
.booking-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--gray-700);
}
.booking-feature::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { background: var(--gray-50); }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h3 { margin-bottom: .25rem; }
.team-card .role { font-size: .85rem; color: var(--accent); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: .9rem; color: var(--gray-500); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--sky);
  border: 1px solid rgba(26,43,74,.08);
}
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--gray-500); }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-full { background: var(--white); }
.faq-full .faq-items { max-width: 800px; margin: 0 auto; }
.faq-category-title {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--sky);
}
.faq-category-title:first-of-type { margin-top: 0; }

/* =============================================
   SCROLL ANIMATION
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .property-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 100svh; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

  .featured-inner,
  .grid-2,
  .grid-3,
  .location-grid,
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .featured-images { order: -1; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .amenities-list-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .property-gallery { grid-template-columns: 1fr; }
  .gallery-main { grid-row: auto; }
  .gallery-thumb:last-child { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
}
