/* ============================================
   GEORGIAN BAY BEACHES — Style System
   Airbnb-inspired, warm, photography-first
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #222222;
  background: #ffffff;
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- CSS Variables --- */
:root {
  --color-primary: #ff385c;
  --color-primary-dark: #e00b41;
  --color-text: #222222;
  --color-text-secondary: #6a6a6a;
  --color-text-tertiary: #929292;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f7;
  --color-border: #dddddd;
  --color-accent-blue: #428bff;
  --font-primary: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 50%;
  --shadow-card: rgba(0,0,0,0.02) 0px 0px 0px 1px, rgba(0,0,0,0.04) 0px 2px 6px, rgba(0,0,0,0.1) 0px 4px 8px;
  --shadow-hover: rgba(0,0,0,0.08) 0px 4px 12px;
  --shadow-hero: 0 25px 50px -12px rgba(0,0,0,0.4);
  --max-width: 1200px;
  --nav-height: 72px;
  --banner-height: 44px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-primary); font-size: 16px; font-weight: 500;
  line-height: 1.25; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--color-text); color: #ffffff;
}
.btn-primary:hover { background: var(--color-primary); }
.btn-secondary {
  background: transparent; color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn-secondary:hover { background: var(--color-text); color: #ffffff; }
.btn-large { padding: 16px 32px; font-size: 18px; }

/* --- Demo Banner --- */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  background: #b91c1c; color: #fff;
  text-align: center; font-size: 14px; font-weight: 500;
  padding: 10px 16px; line-height: 1.4;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.demo-banner a { color: #fecaca; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-banner a:hover { color: #ffffff; }
.demo-banner-icon { font-size: 16px; }

/* --- Navigation --- */
.nav {
  position: fixed; top: var(--banner-height); left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-card); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: var(--nav-height); display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 32px; height: 32px; }
.nav-logo-text { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--color-text-secondary);
  transition: color 0.2s ease; position: relative;
}
.nav-link:hover { color: var(--color-text); }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--color-primary); transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--color-text); color: #ffffff; padding: 10px 20px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
}
.nav-cta:hover { background: var(--color-primary); color: #ffffff; }
.nav-cta::after { display: none; }
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  border-radius: 1px; transition: all 0.3s ease;
}
.mobile-menu {
  display: none; position: fixed; top: calc(var(--banner-height) + var(--nav-height)); left: 0; right: 0;
  background: #ffffff; border-bottom: 1px solid var(--color-border);
  padding: 16px 24px; flex-direction: column; gap: 16px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px; font-weight: 500; padding: 8px 0; color: var(--color-text);
}
.mobile-cta {
  background: var(--color-primary) !important; color: #ffffff !important;
  border-radius: var(--radius-sm); padding: 12px 20px !important; text-align: center;
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding-top: calc(var(--banner-height) + var(--nav-height));
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    url('https://www.cottagesincanada.com/_photos/grand/3931020231109181317048.jpg')
    center/cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.7) 100%
  );
}
.hero-content {
  position: relative; z-index: 1; text-align: center; max-width: 800px;
  padding: 40px 24px;
}
.hero-eyebrow {
  display: inline-block; font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -1px; color: #ffffff; margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85);
  line-height: 1.6; max-width: 600px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-primary {
  background: var(--color-primary); color: #ffffff;
}
.hero-actions .btn-secondary {
  background: rgba(255,255,255,0.15); color: #ffffff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section:nth-child(even):not(.cta-section):not(.hero) { background: var(--color-surface-alt); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 12px;
}
.section-subtitle {
  font-size: 18px; color: var(--color-text-secondary); max-width: 500px; margin: 0 auto;
}

/* --- Cottage Cards --- */
.cottage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cottage-card {
  display: block; background: var(--color-surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card); transition: all 0.3s ease;
}
.cottage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cottage-card-image {
  height: 320px; background-size: cover; background-position: center;
  position: relative;
}
.cottage-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--color-text);
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
}
.cottage-card-badge--accent {
  left: auto; right: 16px;
  background: var(--color-primary); color: #ffffff;
}
.cottage-card-body { padding: 24px; }
.cottage-card-title { font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.3px; }
.cottage-card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--color-text-secondary); margin-bottom: 8px;
}
.cottage-card-location svg { flex-shrink: 0; }
.cottage-card-desc { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 20px; }
.cottage-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--color-border);
}
.cottage-card-price { font-size: 14px; color: var(--color-text-secondary); }
.cottage-card-price strong { font-size: 18px; font-weight: 600; color: var(--color-text); }
.cottage-card-cta { font-size: 14px; font-weight: 600; color: var(--color-primary); }

/* --- Features --- */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.feature { text-align: center; padding: 32px 16px; }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--color-surface); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.feature-icon svg { stroke: var(--color-primary); }
.feature-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }

/* --- Quote --- */
.quote-section { background: #1a1a2e !important; }
.quote { text-align: center; max-width: 700px; margin: 0 auto; }
.quote p {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500;
  color: #ffffff; line-height: 1.5; font-style: italic; margin-bottom: 20px;
}
.quote cite { font-size: 14px; color: rgba(255,255,255,0.6); font-style: normal; }

/* --- Comparison Table --- */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 15px;
}
.comparison-table thead th {
  padding: 16px 20px; text-align: center; font-size: 18px; font-weight: 600;
  border-bottom: 2px solid var(--color-text);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th a { color: var(--color-primary); }
.comparison-table tbody td {
  padding: 14px 20px; border-bottom: 1px solid var(--color-border); text-align: center;
}
.comparison-table tbody td:first-child {
  text-align: left; font-weight: 500; color: var(--color-text-secondary);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://www.cottagesincanada.com/_photos/grand/3931020231109181317048.jpg') center/cover no-repeat;
  opacity: 0.15; z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-content { text-align: center; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: #ffffff; margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-primary {
  background: var(--color-primary); color: #ffffff;
}
.cta-actions .btn-secondary {
  background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.4);
}
.cta-actions .btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* --- Footer --- */
.footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-icon { width: 28px; height: 28px; }
.footer-brand span { font-size: 16px; font-weight: 600; color: #ffffff; }
.footer-tagline { font-size: 14px; margin-bottom: 16px; }
.footer-contact a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-contact a:hover { color: #ffffff; }
.footer-heading { font-size: 14px; font-weight: 600; color: #ffffff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-col a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; font-size: 13px; }
.built-by { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.built-by:hover { color: var(--color-primary); }
.cedar-icon { width: 1.25rem; height: 1.25rem; color: var(--color-primary); }
@media (max-width: 768px) { .footer-bottom { justify-content: center; text-align: center; } }

/* --- Listing Page Styles --- */
.listing-hero {
  position: relative; height: 60vh; min-height: 400px; max-height: 600px;
  margin-top: calc(var(--banner-height) + var(--nav-height));
}
.listing-hero-slider {
  height: 100%; position: relative; overflow: hidden;
}
.listing-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.listing-hero-slide.active { opacity: 1; }
.listing-hero-controls {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px; z-index: 10;
  max-width: 80%; overflow: hidden;
}
.listing-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.3s ease; border: none; flex-shrink: 0;
}
.listing-hero-dot.active {
  background: #ffffff; transform: scale(1.3);
  width: 20px; border-radius: 4px;
}
.listing-hero-arrows {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%); display: flex; justify-content: space-between;
  padding: 0 16px; z-index: 10; pointer-events: none;
}
.listing-hero-counter {
  position: absolute; top: 16px; left: 16px; z-index: 10;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 13px;
  padding: 4px 10px; border-radius: 12px; backdrop-filter: blur(4px);
}
.listing-hero-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; transition: all 0.2s ease; box-shadow: var(--shadow-card);
}
.listing-hero-arrow:hover { background: #ffffff; box-shadow: var(--shadow-hover); }

@media (max-width: 768px) {
  .listing-hero { min-height: 300px; }
  .listing-hero-arrow { width: 36px; height: 36px; }
  .listing-hero-arrow svg { width: 16px; height: 16px; }
  .listing-hero-counter { font-size: 11px; padding: 3px 8px; top: 12px; left: 12px; }
}

/* Listing layout */
.listing-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 48px 0; }
.listing-main {}
.listing-sidebar {}
.listing-title { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.listing-location { font-size: 16px; color: var(--color-text-secondary); margin-bottom: 24px; }
.listing-location svg { vertical-align: -2px; margin-right: 4px; }
.listing-highlights { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.listing-highlight { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.listing-highlight svg { stroke: var(--color-primary); flex-shrink: 0; }
.listing-highlight strong { font-weight: 600; }
.listing-section { margin-bottom: 40px; }
.listing-section h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.listing-section p { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); margin-bottom: 12px; }
.listing-section ul { list-style: none; }
.listing-section ul li { padding: 8px 0; font-size: 15px; color: var(--color-text-secondary); display: flex; gap: 10px; }
.listing-section ul li::before { content: '✓'; color: var(--color-primary); font-weight: 700; flex-shrink: 0; }
.listing-section ul li.no::before { content: '✗'; color: var(--color-text-tertiary); }

/* Booking sidebar card */
.booking-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 24px; position: sticky; top: calc(var(--banner-height) + var(--nav-height) + 24px);
}
.booking-card-price { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.booking-card-price span { font-size: 14px; font-weight: 400; color: var(--color-text-secondary); }
.booking-card-rating { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 24px; }
.booking-card-divider { height: 1px; background: var(--color-border); margin: 16px 0; }
.booking-card-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius-sm); margin-bottom: 16px; }
.booking-card-date { padding: 12px 16px; }
.booking-card-date:first-child { border-right: 1px solid var(--color-border); }
.booking-card-date label { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-secondary); margin-bottom: 4px; }
.booking-card-date input {
  width: 100%; border: none; font-family: var(--font-primary);
  font-size: 14px; color: var(--color-text); outline: none; background: transparent;
}
.booking-card-guests { margin-bottom: 16px; }
.booking-card-guests select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-primary); font-size: 14px;
  background: var(--color-surface);
}
.booking-card-total { display: flex; justify-content: space-between; padding: 12px 0; font-size: 15px; }
.booking-card-total.bold { font-weight: 700; border-top: 1px solid var(--color-border); }
.booking-card .btn { width: 100%; margin-top: 16px; }
.booking-card .btn-primary { background: var(--color-primary); }
.booking-card-inquiry { display: block; text-align: center; font-size: 13px; color: var(--color-text-secondary); margin-top: 12px; }

/* Calendar styles */
.calendar { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.calendar th { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 8px; text-align: center; color: var(--color-text-secondary); }
.calendar td { text-align: center; padding: 0; }
.calendar-day {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; margin: 2px auto; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; transition: all 0.2s ease;
}
.calendar-day.available {
  color: #14532d; background: #ecfdf5;
  border: 1px solid #6ee7b7; cursor: pointer;
}
.calendar-day.available:hover { background: #d1fae5; }
.calendar-day.booked {
  color: #991b1b; text-decoration: line-through;
  background: #fee2e2; border: 1px solid #fca5a5; cursor: not-allowed;
}
.calendar-day.unavailable {
  color: var(--color-text-tertiary); background: #ffffff;
  border: 1px solid var(--color-border); opacity: 0.45; cursor: not-allowed;
}
.calendar-day.selected { background: var(--color-primary); color: #ffffff; }
.calendar-day.in-range { background: rgba(255,56,92,0.1); }
.calendar-day.today { border: 2px solid var(--color-primary); }
.calendar-day.past { color: var(--color-text-tertiary); opacity: 0.5; }
.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.calendar-nav h4 { font-size: 16px; font-weight: 600; }
.calendar-nav button {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-alt); transition: all 0.2s ease;
}
.calendar-nav button:hover { background: var(--color-border); }
.calendar-legend { display: flex; gap: 16px; font-size: 12px; color: var(--color-text-secondary); margin-bottom: 16px; flex-wrap: wrap; }
.calendar-legend-item { display: flex; align-items: center; gap: 6px; }
.calendar-legend-dot { width: 12px; height: 12px; border-radius: 3px; }

/* Amenities grid */
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px; }

/* Rules list */
.rules-list { list-style: none; }
.rules-list li { padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; line-height: 1.6; color: var(--color-text-secondary); display: flex; gap: 10px; }
.rules-list li::before { content: '•'; color: var(--color-primary); font-weight: 700; flex-shrink: 0; margin-top: -1px; }

/* Reviews */
.reviews-summary { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.reviews-score { font-size: 36px; font-weight: 700; line-height: 1; color: var(--color-text-primary); }
.reviews-score-detail { display: flex; flex-direction: column; gap: 2px; }
.reviews-stars { color: var(--color-primary); font-size: 16px; letter-spacing: 1px; }
.reviews-count { font-size: 13px; color: var(--color-text-secondary); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--color-surface); border-radius: var(--radius-card); padding: 24px; border: 1px solid var(--color-border); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }

.review-meta { flex: 1; min-width: 0; }
.review-name { font-weight: 600; font-size: 15px; color: var(--color-text-primary); }
.review-date { font-size: 13px; color: var(--color-text-tertiary); }
.review-tag { background: rgba(255,56,92,0.08); color: var(--color-primary); font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); margin: 0; }
.review-text::before { content: ''; }
.review-text::after { content: ''; }

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .reviews-summary { gap: 8px; }
  .reviews-score { font-size: 28px; }
  .review-card { padding: 16px; }
  .review-header { gap: 8px; }
  .review-tag { font-size: 11px; padding: 3px 8px; }
}

/* Booking page */
.booking-process { max-width: 800px; }
.booking-step { display: flex; gap: 24px; margin-bottom: 40px; }
.booking-step-number {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--color-primary); color: #ffffff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
}
.booking-step-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.booking-step-content p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; }

/* Payment rails */
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.payment-option {
  background: var(--color-surface); border: 2px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.2s ease;
}
.payment-option:hover { border-color: var(--color-primary); }
.payment-option-icon { font-size: 32px; margin-bottom: 12px; }
.payment-option h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.payment-option p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; }
.payment-option .tag { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; margin-top: 12px; }
.payment-option .tag-recommended { background: #ecfdf5; color: #065f46; }
.payment-option .tag-viable { background: #eff6ff; color: #1e40af; }
.payment-option .tag-future { background: #fef3c7; color: #92400e; }

/* Availability page */
.availability-header { text-align: center; margin-bottom: 48px; }
.availability-cottages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.availability-calendar-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 32px;
}
.availability-calendar-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.availability-calendar-card .subtitle { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 24px; }
.calendar-note { margin-top: 16px; font-size: 13px; color: #6a6a6a; }
.calendar-note a { color: var(--color-primary); font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .listing-layout { grid-template-columns: 1fr; }
  .listing-sidebar { order: -1; }
  .booking-card { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .cottage-grid { grid-template-columns: 1fr; }
  .cottage-card-image { height: 240px; }
  .features-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .availability-cottages { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .booking-card-dates { grid-template-columns: 1fr; }
  .booking-card-date:first-child { border-right: none; border-bottom: 1px solid var(--color-border); }
  .booking-step { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .demo-banner { font-size: 12px; padding: 8px 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}
