/* Modern Natural Stone & Wood Airbnb Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..800;1,400..800&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --bg-main: #FBF9F5;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F5F1EA;
  --bg-dark: #1E2421;

  --text-primary: #1C221F;
  --text-secondary: #5A645F;
  --text-muted: #8A958F;
  --text-on-dark: #F3F5F4;

  --brand-primary: #D9822B;
  --brand-hover: #C2701F;

  --accent-green: #2E4E3F;
  --accent-green-light: #EBF2EE;
  --accent-stone: #8C8275;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  --border-light: #E8E3DA;
  --border-medium: #D5CFC3;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(28, 34, 31, 0.05);
  --shadow-md: 0 8px 24px rgba(28, 34, 31, 0.08);
  --shadow-lg: 0 16px 40px rgba(28, 34, 31, 0.12);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  padding-bottom: 80px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.announcement-bar {
  background-color: var(--accent-green);
  color: #E2ECE7;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.announcement-bar .badge {
  background-color: var(--brand-primary);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green);
  white-space: nowrap;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-green);
}

.superhost-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Title Section */
.property-title-section {
  padding: 20px 0 12px;
}

.property-name {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 6px;
}

.property-title-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.property-subhead {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.property-meta-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.rating-badge {
  font-weight: 700;
  color: var(--text-primary);
}

/* Action Buttons Group */
.action-btn-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-secondary-sm {
  border: 1px solid var(--border-medium);
  background: var(--bg-surface);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-secondary-sm:hover {
  background: var(--bg-surface-elevated);
}

/* Bento Grid Desktop */
.bento-gallery-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 210px);
  gap: 8px;
  background-color: var(--border-light);
}

.bento-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.bento-item-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.bento-overlay-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(28, 34, 31, 0.8);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  pointer-events: none;
}

.mobile-photo-count {
  display: none;
}

.view-all-photos-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.view-all-photos-btn:hover {
  background: var(--bg-dark);
  color: white;
}

/* Layout Grid */
.main-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.sticky-booking-wrapper {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Host Card */
.host-summary-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.host-details h3 {
  font-size: 1.15rem;
}

.host-details p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.host-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  flex-shrink: 0;
}

/* Heritage Section */
.heritage-theme-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.heritage-theme-box h2 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.heritage-theme-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.tags-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.theme-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--accent-green);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Key Highlights */
.key-highlights-list {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.highlight-icon {
  font-size: 1.3rem;
  background: var(--bg-surface-elevated);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
}

.highlight-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Story Cards */
.storybook-narrative {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 4px;
  display: block;
}

.section-headline {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.story-card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.story-card.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.story-card.reverse > * {
  direction: ltr;
}

.story-img-frame {
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content h3 {
  font-size: 1.15rem;
  color: var(--accent-green);
  margin-bottom: 6px;
}

.story-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.story-quote {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--accent-stone);
  margin-top: 8px;
  padding-left: 8px;
  border-left: 2px solid var(--brand-primary);
  font-size: 0.82rem;
}

/* Room Switcher */
.room-switcher-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.room-tab-buttons {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 16px 0;
  -webkit-overflow-scrolling: touch;
}

.room-tab-btn {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  border: 1px solid transparent;
}

.room-tab-btn.active {
  background: var(--accent-green);
  color: white;
}

.room-display-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.room-preview-img {
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.room-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.room-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

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

.room-feature-pill {
  background: var(--bg-surface-elevated);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* Seasonal Guide */
.seasons-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.season-card {
  background: var(--bg-surface);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.season-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.season-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--accent-green);
}

.season-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.season-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Amenities */
.amenities-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.amenity-icon {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Rules Section */
.rules-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.rule-card {
  background: var(--bg-surface);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.rule-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.rule-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Sidebar Booking Widget */
.booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 800;
}

.price-unit {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.rating-summary {
  font-size: 0.82rem;
}

.booking-form-box {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.date-picker-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-medium);
}

.date-input-field {
  padding: 6px 10px;
}

.date-input-field:first-child {
  border-right: 1px solid var(--border-medium);
}

.field-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
}

.field-input {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  width: 100%;
}

.guest-picker-row {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.btn-counter {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-reserve {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-hover));
  color: white;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.btn-whatsapp-reserve {
  display: block;
  width: 100%;
  background: var(--whatsapp-green);
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.reserve-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price-calculator-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
}

.calc-row.total {
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.sidebar-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.host-avatar-sm {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.btn-sidebar-whatsapp {
  display: block;
  background: var(--whatsapp-green);
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
}

.btn-sidebar-call {
  display: block;
  border: 1px solid var(--text-primary);
  background: var(--bg-surface);
  color: var(--text-primary);
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.82rem;
}

.sidebar-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.distance-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dist-tag {
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-green-light);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
}

/* Guide Section */
.guide-section {
  padding: 36px 0;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.guide-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.guide-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.guide-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-green);
  background: var(--accent-green-light);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  display: inline-block;
}

.guide-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.guide-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.guide-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-green);
}

/* Reviews */
.reviews-section {
  padding: 36px 0;
}

.reviews-header-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.big-rating {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-serif);
}

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

.review-card {
  background: var(--bg-surface);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-stone);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer-info h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 36px 0 20px;
}

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

.footer-brand h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #A0ABA4;
  font-size: 0.8rem;
}

.footer-col h5 {
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col a {
  color: #A0ABA4;
  font-size: 0.78rem;
}

.footer-bottom {
  border-top: 1px solid #272F2B;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #78857E;
}

/* Mobile Sticky Bottom Bar (Airbnb Style) */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-medium);
  padding: 10px 16px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
  align-items: center;
}

.mobile-price-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.mobile-price-unit {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.mobile-dates-hint {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.mobile-reserve-btn {
  background: var(--whatsapp-green);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

/* Gallery Overlay */
.scroll-gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-main);
  z-index: 2000;
  display: none;
  flex-direction: column;
}

.scroll-gallery-overlay.active {
  display: flex;
}

.scroll-gallery-header {
  position: sticky;
  top: 0;
  background: rgba(251, 249, 245, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scroll-gallery-title-group h2 {
  font-size: 1.1rem;
  color: var(--accent-green);
}

.gallery-count-badge {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.close-scroll-gallery-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
}

.scroll-gallery-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

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

.scroll-photo-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.scroll-photo-frame {
  height: 260px;
}

.scroll-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-photo-caption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.active {
  display: flex;
}

.booking-success-box {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 90%;
  text-align: center;
}

/* ==========================================================================
   PERFECT MOBILE OVERHAUL MEDIA QUERIES (<768px)
   ========================================================================== */

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

  .announcement-bar {
    font-size: 0.72rem;
    padding: 4px 8px;
  }

  .header-content {
    height: 54px;
  }

  .brand-logo {
    font-size: 1.05rem;
  }

  .nav-links {
    display: none;
  }

  .property-title-section {
    padding: 12px 0 8px;
  }

  .property-name {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .property-title-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .action-btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .btn-secondary-sm {
    padding: 8px 6px;
    font-size: 0.75rem;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-full);
  }

  .property-meta-bar {
    font-size: 0.8rem;
    margin-top: 4px;
  }

  /* Hero Photo Grid Mobile Frame */
  .bento-gallery-container {
    height: 240px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .bento-grid {
    display: block;
    height: 100%;
  }

  .bento-item {
    display: none;
  }

  .bento-item-large {
    display: block;
    height: 100%;
    width: 100%;
  }

  .bento-overlay-label {
    display: none;
  }

  .mobile-photo-count {
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .view-all-photos-btn {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
  }

  /* Single Column Layout */
  .main-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .sticky-booking-wrapper {
    position: static;
  }

  .heritage-theme-box {
    padding: 16px;
    margin: 16px 0;
  }

  .heritage-theme-box h2 {
    font-size: 1.25rem;
  }

  .story-card, .story-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 12px;
    padding: 14px;
  }

  .story-img-frame {
    height: 180px;
  }

  .story-content h3 {
    font-size: 1.05rem;
  }

  .room-display-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .room-preview-img {
    height: 180px;
  }

  .room-features-list {
    grid-template-columns: 1fr;
  }

  .seasons-grid, .rules-grid, .guide-cards-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .scroll-photo-grid {
    grid-template-columns: 1fr;
  }

  .scroll-photo-frame {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .mobile-bottom-bar {
    display: flex;
  }
}
