/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a1612;
  background: #faf9f7;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

/* ─── Utilities ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--alt { background: #f3f0ea; }
.section-title { margin-bottom: 2.5rem; color: #1a1612; }

/* ─── Focus styles ─── */
:focus-visible {
  outline: 2px solid #C2632A;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: #C2632A;
  color: #fff;
  border-color: #C2632A;
}
.btn-primary:hover { background: #a85522; border-color: #a85522; text-decoration: none; }
.btn-outline {
  background: transparent;
  color: #C2632A;
  border-color: #C2632A;
}
.btn-outline:hover { background: #C2632A10; text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: #1a1612;
  border-color: #1a1612;
}
.btn-secondary:hover { background: #1a161210; text-decoration: none; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e2d9;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.wordmark { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.wordmark-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1612;
  letter-spacing: 0.01em;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  margin: 0;
  margin-left: auto;
}
.nav-list a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4a3f35;
  transition: color 0.15s;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: #C2632A; text-decoration: none; }
.nav-cta { margin-left: 1rem; font-size: 0.8rem; padding: 0.55rem 1.25rem; }

/* ─── Hamburger ─── */
.nav-hamburger {
  display: none; /* shown only in mobile media query */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1612;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile nav drawer ─── */
.mobile-nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #faf9f7;
  border-bottom: 1px solid #e8e2d9;
  padding: 1.5rem 1.25rem;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .mobile-nav { display: none !important; }
  .mobile-nav.open { display: block !important; }
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.25rem;
}
.mobile-nav-list li { border-bottom: 1px solid #eae5de; }
.mobile-nav-list a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1612;
  letter-spacing: 0.02em;
}
.mobile-nav-list a[aria-current="page"] { color: #C2632A; }
.mobile-nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 2rem;
  max-width: 600px;
  margin-left: auto;
}
.hero-property-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #1a1612;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.hero-badge {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C2632A;
  margin-bottom: 1.25rem;
}
.hero-headline {
  margin-bottom: 1.25rem;
  color: #1a1612;
}
.hero-sub {
  font-size: 1.1rem;
  color: #5c4f44;
  margin-bottom: 1.5rem;
  max-width: 42ch;
  line-height: 1.7;
}
.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: #7a6a5e;
  margin-bottom: 2rem;
  font-weight: 400;
}
.sep { color: #c4b9af; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.hero-direct-note {
  font-size: 0.8rem;
  color: #6B7F3E;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-image-area {
  position: relative;
  overflow: hidden;
}
.hero-location-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-block;
  background: rgba(255,255,255,0.92);
  color: #1a1612;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 1px;
  z-index: 1;
}

/* ─── Highlights ─── */
.highlights-section { padding: 4rem 0; background: #fff; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #faf9f7;
  border: 1px solid #eae5de;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.highlight-check { color: #6B7F3E; font-weight: 700; flex-shrink: 0; }

/* ─── About Strip ─── */
.about-strip { padding: 5rem 0; background: #1a1612; color: #faf9f7; }
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.about-text .section-title { color: #faf9f7; }
.about-body { color: #c8bfb5; line-height: 1.8; margin-bottom: 1.5rem; max-width: 55ch; }
.about-mission {
  color: #6B7F3E;
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 55ch;
}
.about-strip .btn-secondary { color: #faf9f7; border-color: #faf9f7; }
.about-strip .btn-secondary:hover { background: rgba(255,255,255,0.1); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #faf9f7;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8a7a6e;
}

/* ─── Reviews ─── */
.reviews-section { padding: 5rem 0; }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.rating-badge-lg {
  font-size: 1rem;
  font-weight: 500;
  color: #C2632A;
  text-align: right;
}
.platform-breakdown {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7a6a5e;
  margin-top: 0.25rem;
}
.hero-badge-platforms {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #7a6a5e;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
  text-transform: none;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #eae5de;
  border-radius: 2px;
}
.review-stars { color: #c2963e; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: #4a3f35;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #8a7a6e;
}
.review-author { font-weight: 600; font-style: normal; color: #1a1612; }

/* ─── Book CTA ─── */
.book-cta-section {
  background: #C2632A;
  color: #fff;
  padding: 4rem 0;
}
.book-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.book-cta-headline {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.book-cta-sub { color: rgba(255,255,255,0.8); font-size: 1rem; }
.book-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.book-cta-section .btn-primary {
  background: #fff;
  color: #C2632A;
  border-color: #fff;
}
.book-cta-section .btn-primary:hover { background: #f0e8e0; border-color: #f0e8e0; }
.book-cta-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.book-cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ─── Page Hero ─── */
.page-hero { padding: 4rem 0 3rem; background: #1a1612; color: #faf9f7; }
.page-hero--sm { padding: 3rem 0 2.5rem; }
.page-title { color: #faf9f7; margin-bottom: 0.75rem; }
.page-sub { color: #9a8a7e; font-size: 1rem; }

/* ─── Property page ─── */
.bedroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bedroom-card {
  padding: 1.75rem;
  border: 1px solid #eae5de;
  border-radius: 2px;
  background: #fff;
}
.bedroom-name {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #C2632A;
}
.bedroom-beds {
  list-style: none;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.bedroom-features {
  list-style: none;
  font-size: 0.85rem;
  color: #5c4f44;
  line-height: 1.8;
}
.bedroom-bathroom {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #5c4f44;
  border-top: 1px solid #eae5de;
  padding-top: 0.75rem;
}
.sleeps-additional {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #7a6a5e;
  font-style: italic;
}
.amenity-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.amenity-group-title {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.75rem;
  color: #1a1612;
}
.amenity-list {
  list-style: none;
  font-size: 0.85rem;
  color: #5c4f44;
  line-height: 2;
}
.amenity-list li::before { content: "· "; color: #6B7F3E; font-weight: 700; }
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.rule-item {
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #eae5de;
  border-radius: 2px;
  font-size: 0.875rem;
}
.rule-yes { border-left: 3px solid #6B7F3E; }
.rule-no { border-left: 3px solid #c0392b; }
.rule-note {
  font-size: 0.85rem;
  color: #7a6a5e;
  font-style: italic;
  margin-top: 0.75rem;
}

/* ─── Location page ─── */
.location-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.location-bullets {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-bullets li::before { content: "→ "; color: #C2632A; }
.location-bullets li { font-size: 0.95rem; }
.location-map {
  border-radius: 2px;
  overflow: hidden;
  height: 340px;
  border: 1px solid #eae5de;
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.attraction-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #C2632A;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eae5de;
}
.attraction-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.attraction-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.attr-name { color: #1a1612; }
.attr-distance { font-size: 0.775rem; color: #9a8a7e; white-space: nowrap; }

/* ─── Book page ─── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.book-main { min-width: 0; }
.ownerrez-widget {
  width: 100%;
}
.direct-booking-box {
  background: #fff;
  border: 1px solid #eae5de;
  border-radius: 2px;
  padding: 2.5rem;
}
.direct-booking-box h2 { margin-bottom: 0.75rem; }
.direct-booking-box p { color: #5c4f44; margin-bottom: 1.5rem; }
.book-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.book-sidebar-card {
  background: #fff;
  border: 1px solid #eae5de;
  border-radius: 2px;
  padding: 1.5rem;
}
.book-sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eae5de;
}
.book-facts, .book-benefits {
  list-style: none;
  font-size: 0.875rem;
  line-height: 2;
  color: #4a3f35;
}
.book-benefits li { color: #3a6b2a; }

/* ─── FAQ page ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.faq-group { margin-bottom: 3rem; }
.faq-cat-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  color: #C2632A;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eae5de;
}
.faq-item {
  border-bottom: 1px solid #eae5de;
}
.faq-question {
  cursor: pointer;
  padding: 1.125rem 0;
  font-size: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: #1a1612;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #C2632A;
  flex-shrink: 0;
}
details[open] .faq-question::after { content: "−"; }
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #5c4f44;
  line-height: 1.75;
}
.faq-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.faq-cta-card {
  background: #fff;
  border: 1px solid #eae5de;
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-cta-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.faq-cta-card p { font-size: 0.875rem; color: #5c4f44; margin: 0; }
.faq-cta-card a { text-align: center; }

/* ─── Area landing ─── */
.area-layout { max-width: 700px; }
.prop-quick-facts {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #5c4f44;
}
.prop-quick-facts li::before { content: "· "; color: #C2632A; font-weight: 700; }

/* ─── Photo Grid (homepage) ─── */
.photo-grid-section { background: #1a1612; }
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
  max-height: 563px;
  overflow: hidden;
}
.photo-grid-item {
  display: block;
  overflow: hidden;
  position: relative;
}
.photo-grid-item--tall { grid-row: 1 / 3; }
.photo-grid-item--wide { grid-column: 1 / 3; }
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.photo-grid-item:hover img { transform: scale(1.04); }
.photo-grid-more {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(26,22,18,0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.85rem;
  border-radius: 1px;
}

/* ─── Space Sections (property page) ─── */
.space-section { padding: 5rem 0; background: #faf9f7; }
.space-section--alt { background: #f3f0ea; }
.space-section--dark { background: #1a1612; }
.space-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}
.space-layout--reverse { direction: rtl; }
.space-layout--reverse > * { direction: ltr; }
.space-text { }
.space-text p { color: #5c4f44; line-height: 1.8; }
.space-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.space-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.space-photo--main {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .space-layout { grid-template-columns: 1fr; direction: ltr; }
  .space-layout--reverse { direction: ltr; }
}

/* ─── Bedroom images ─── */
.bedroom-card { overflow: hidden; }
.bedroom-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.bedroom-card-body { padding: 1.25rem; }
.bedroom-card { padding: 0; }

/* ─── Gallery ─── */
.gallery-section { padding: 3rem 0; background: #faf9f7; }
.gallery-masonry {
  columns: 4;
  column-gap: 6px;
  padding: 0 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item--featured { column-span: none; }
.gallery-img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.03); opacity: 0.92; }
@media (max-width: 900px) { .gallery-masonry { columns: 3; } }
@media (max-width: 600px) { .gallery-masonry { columns: 2; } }

/* ─── Footer ─── */
.footer { background: #1a1612; color: #faf9f7; padding: 3rem 0 0; }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.footer-location { font-size: 0.85rem; color: #7a6a5e; }
.footer-col p { font-size: 0.875rem; color: #9a8a7e; margin-bottom: 0.25rem; }
.footer-col a { color: #c8bfb5; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid #2a2220;
  padding: 1.25rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
  font-size: 0.775rem;
  color: #9a8a7e;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }

  /* Header / Nav */
  .nav-list { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .header-inner { justify-content: space-between; }
  .wordmark-name { font-size: 1.1rem; }

  /* Hero — stacked, image on top */
  .hero { grid-template-columns: 1fr; grid-template-rows: 260px auto; min-height: auto; }
  .hero-image-area { order: -1; height: 260px; }
  .hero-content { padding: 2rem 1.25rem 2.5rem; max-width: 100%; margin: 0; }
  .hero-property-name { font-size: 2rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .hero-specs { font-size: 0.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Photo grid — 2 col on mobile */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
    max-height: none;
  }
  .photo-grid-item--tall { grid-row: 1 / 3; }
  .photo-grid-item--wide { grid-column: 1 / 3; }

  /* About strip */
  .about-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num { font-size: 2.25rem; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .rating-badge-lg { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Book CTA */
  .book-cta-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .book-cta-actions { flex-direction: column; width: 100%; }
  .book-cta-actions .btn { width: 100%; justify-content: center; }

  /* Book page */
  .book-layout { grid-template-columns: 1fr; }
  .ownerrez-iframe { min-height: 600px; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }

  /* Location */
  .location-overview { grid-template-columns: 1fr; }
  .location-map { height: 220px; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }

  /* Property page */
  .bedroom-grid { grid-template-columns: 1fr; }
  .bedroom-img { height: 240px; }
  .amenity-groups { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }

  /* Space sections */
  .space-layout { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .space-layout--reverse { direction: ltr; }
  .space-section { padding: 3rem 0; }
  .space-photo--main { aspect-ratio: 16/10; }

  /* Outdoor photos */
  .outdoor-photos-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .outdoor-photo--main { grid-row: 1; grid-column: 1 / 3; }

  /* Gallery */
  .gallery-masonry { columns: 2; padding: 0 0.5rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { font-size: 0.7rem; }
}