/* ═══════════════════════════════════════════════════
   Casita on the Park — Cozycore Design System
   ═══════════════════════════════════════════════════ */

/* ── Fonts ────────────────────────────────────────── */
/* DM Serif Display (headings) + DM Sans (body) loaded in HTML */

/* ── Design Tokens ────────────────────────────────── */
:root {
  /* Colors — pulled from the casita itself */
  --sage-green: #9DB5AA;
  --sage-green-light: #d4e2db;
  --sage-green-bg: #eef3f0;
  --casita-red: #D94040;
  --casita-red-hover: #c13636;
  --crisp-white: #FAFAF8;
  --navy: #2C3E5A;
  --honey-pine: #C4955A;
  --honey-pine-light: #e8d5b8;
  --espresso: #3E2F23;
  --tile-gray: #8E9B97;
  --tile-gray-light: #c8cfcc;

  /* Semantic */
  --bg-primary: var(--crisp-white);
  --bg-section: var(--sage-green-bg);
  --text-primary: var(--espresso);
  --text-secondary: var(--tile-gray);
  --text-heading: var(--navy);
  --accent: var(--casita-red);
  --accent-hover: var(--casita-red-hover);
  --accent-warm: var(--honey-pine);
  --border: var(--tile-gray-light);

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* Inline content links (descriptions, cards) */
.description a,
.highlight-row a,
.loc-desc a,
.neighborhood-card a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--honey-pine);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.2s;
}

.description a:hover,
.highlight-row a:hover,
.loc-desc a:hover,
.neighborhood-card a:hover {
  text-decoration-color: var(--casita-red);
}

button {
  cursor: pointer;
  font: inherit;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 400;
}

/* ── Utility ──────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Geometric tile pattern (from bathroom floor) ── */
.tile-pattern {
  background-image:
    linear-gradient(45deg, var(--sage-green-light) 25%, transparent 25%),
    linear-gradient(-45deg, var(--sage-green-light) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--sage-green-light) 75%),
    linear-gradient(-45deg, transparent 75%, var(--sage-green-light) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  opacity: 0.3;
}

/* ── Beadboard texture ────────────────────────────── */
.beadboard-bg {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(157, 181, 170, 0.08) 18px,
    rgba(157, 181, 170, 0.08) 19px
  );
}

/* ── Navigation ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 2px solid var(--sage-green-light);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--casita-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--casita-red);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--casita-red-hover);
}

/* Mobile menu toggle */
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-heading);
  padding: var(--space-sm);
}

/* ── Hero Section ─────────────────────────────────── */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(62, 47, 35, 0.1) 0%,
    rgba(62, 47, 35, 0.4) 60%,
    rgba(62, 47, 35, 0.7) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-3xl) var(--space-2xl);
}

.hero-content {
  max-width: 700px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--honey-pine-light);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-size: 52px;
  color: white;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.5;
}

/* ── Photo Gallery ────────────────────────────────── */
.gallery-section {
  margin-bottom: var(--space-2xl);
}

.gallery-section h2 {
  font-size: 32px;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 200px;
  gap: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-grid .gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

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

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-label {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  background: rgba(62, 47, 35, 0.7);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.show-photos-btn {
  display: block;
  margin: var(--space-md) auto 0;
  background: white;
  border: 2px solid var(--navy);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

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

/* ── Title Area ───────────────────────────────────── */
.title-area {
  margin-bottom: var(--space-lg);
}

.title-area h2 {
  font-size: 36px;
  margin-bottom: var(--space-sm);
}

.title-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--text-secondary);
}

.title-meta .star {
  color: var(--honey-pine);
  font-size: 18px;
}

.title-meta strong {
  color: var(--text-primary);
}

.title-meta .dot {
  color: var(--border);
}

.title-meta a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.title-meta a:hover {
  color: var(--text-primary);
}

/* ── Two-Column Layout ────────────────────────────── */
.listing-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  margin-top: var(--space-lg);
}

/* ── Host Bar ─────────────────────────────────────── */
.host-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.host-bar h3 {
  font-size: 22px;
}

.host-bar p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  font-family: var(--font-body);
}

.host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Highlights ───────────────────────────────────── */
.highlights {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.highlight-row {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: 14px 0;
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-green-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--sage-green);
}

.highlight-row h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-row p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ── Description ──────────────────────────────────── */
.description {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.description p {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.description .show-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  margin-top: var(--space-sm);
}

/* ── Sleeping Arrangements ────────────────────────── */
.sleeping {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.sleeping h2 {
  font-size: 26px;
  margin-bottom: var(--space-md);
}

.sleeping-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-lg);
  border: 2px solid var(--sage-green-light);
  border-radius: var(--radius-md);
  background: var(--sage-green-bg);
}

.sleeping-card .bed-icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.sleeping-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.sleeping-card p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── Amenities ────────────────────────────────────── */
.amenities {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.amenities h2 {
  font-size: 26px;
  margin-bottom: var(--space-lg);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 15px;
  padding: var(--space-sm) 0;
}

.amenity-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sage-green);
  flex-shrink: 0;
}

.amenities .show-all-btn {
  margin-top: var(--space-lg);
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

.amenities .show-all-btn:hover {
  background: var(--navy);
  color: white;
}

/* ── Calendar Section ─────────────────────────────── */
.calendar-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.calendar-section h2 {
  font-size: 26px;
}

.calendar-section .subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.calendar-placeholder {
  background: var(--sage-green-bg);
  border: 2px dashed var(--sage-green-light);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ── Reviews ──────────────────────────────────────── */
.reviews {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.reviews-header h2 {
  font-size: 26px;
}

.reviews-header .star {
  color: var(--honey-pine);
  font-size: 24px;
}

.rating-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-bottom: var(--space-xl);
}

.rating-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--sage-green-light);
  border-radius: 2px;
}

.rating-bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.rating-bar-row span:last-child {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 24px;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.review-card {
  padding: var(--space-lg);
  background: var(--sage-green-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--sage-green-light);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-sm);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.review-author-info h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-author-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

.review-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}

.reviews .show-all-btn {
  margin-top: var(--space-lg);
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

.reviews .show-all-btn:hover {
  background: var(--navy);
  color: white;
}

/* ── Location ─────────────────────────────────────── */
.location {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.location h2 {
  font-size: 26px;
  margin-bottom: var(--space-xs);
}

.location .loc-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}

.map-placeholder {
  height: 320px;
  background: var(--sage-green-bg);
  border: 2px dashed var(--sage-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 15px;
}

.location .loc-desc {
  font-size: 16px;
  color: var(--text-primary);
  margin-top: var(--space-lg);
  line-height: 1.7;
}

/* ── Host Profile ─────────────────────────────────── */
.host-profile {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}

.host-card {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.host-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sage-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  font-weight: 600;
  flex-shrink: 0;
}

.host-card h2 {
  font-size: 26px;
}

.host-card .joined {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 2px;
  font-family: var(--font-body);
}

.host-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  font-size: 14px;
  color: var(--text-secondary);
}

.host-stats span {
  font-weight: 600;
  color: var(--text-primary);
}

.host-details {
  font-size: 16px;
  color: var(--text-primary);
  margin-top: var(--space-md);
  line-height: 1.7;
}

.host-contact-btn {
  margin-top: var(--space-lg);
  padding: 12px 24px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.host-contact-btn:hover {
  background: var(--espresso);
}

/* ── Things to Know ───────────────────────────────── */
.things-to-know {
  padding: var(--space-xl) 0;
}

.things-to-know h2 {
  font-size: 26px;
  margin-bottom: var(--space-lg);
}

.things-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.things-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.things-col li {
  list-style: none;
  font-size: 14px;
  color: var(--text-primary);
  padding: var(--space-xs) 0;
  line-height: 1.5;
}

.things-col .show-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  margin-top: var(--space-sm);
}

/* ── Booking Card (sticky sidebar) ────────────────── */
.booking-card {
  position: sticky;
  top: 92px;
  border: 2px solid var(--sage-green-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: white;
  box-shadow:
    0 4px 12px rgba(62, 47, 35, 0.06),
    0 12px 28px rgba(62, 47, 35, 0.1);
}

.booking-price {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: var(--space-lg);
}

.booking-price span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
}

.booking-fields {
  border: 2px solid var(--sage-green-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.booking-field {
  padding: 12px 14px;
  border-bottom: 2px solid var(--sage-green-light);
  font-size: 12px;
}

.booking-field:nth-child(odd) {
  border-right: 2px solid var(--sage-green-light);
}

.booking-field label {
  display: block;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.booking-field input,
.booking-field select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  margin-top: 2px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.booking-guests {
  grid-column: 1 / -1;
  border-bottom: none;
}

.book-now-btn {
  width: 100%;
  padding: 16px;
  background: var(--casita-red);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.book-now-btn:hover {
  background: var(--casita-red-hover);
}

.booking-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.price-breakdown {
  font-size: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text-primary);
}

.price-row a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-row.total {
  font-weight: 600;
  border-top: 2px solid var(--sage-green-light);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  font-size: 16px;
}

.booking-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--sage-green-bg);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: var(--space-md);
  text-align: center;
  justify-content: center;
}

/* ── Neighborhood Section ─────────────────────────── */
.neighborhood {
  padding: var(--space-3xl) 0;
  background: var(--sage-green-bg);
  margin-top: var(--space-xl);
}

.neighborhood h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.neighborhood .section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: var(--space-xl);
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.neighborhood-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--sage-green-light);
}

.neighborhood-card .card-icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.neighborhood-card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.neighborhood-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-3xl) 0 var(--space-lg);
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-size: 24px;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  opacity: 0.8;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--honey-pine-light);
  margin-bottom: var(--space-md);
}

.footer-col li {
  list-style: none;
  font-size: 14px;
  padding: var(--space-xs) 0;
}

.footer-col a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
}

/* ── Section Decoration (tile pattern divider) ────── */
.section-pattern-divider {
  height: 6px;
  background:
    linear-gradient(135deg, var(--sage-green-light) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, var(--sage-green-light) 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, var(--sage-green-light) 25%, transparent 25%),
    linear-gradient(45deg, var(--sage-green-light) 25%, transparent 25%);
  background-size: 12px 6px;
  background-color: var(--sage-green-bg);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .listing-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-card {
    position: static;
    margin-top: var(--space-xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 280px 180px;
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 360px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-overlay {
    padding: var(--space-xl);
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: block;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
  }

  .gallery-grid .gallery-item:nth-child(n+4) {
    display: none;
  }

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

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

  .rating-bars {
    grid-template-columns: 1fr;
  }

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

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

  .title-area h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: auto;
  }

  .gallery-grid .gallery-item:nth-child(n+2) {
    display: none;
  }

  .booking-price {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
  }
}
