/* ========================================
   Springfield Stays — Shared Stylesheet
   Color Palette:
     Primary:    #2D6A4F (forest green)
     Accent:     #8B5E3C (warm brown)
     Background: #FDF6EC (warm cream)
     Card:       #FFFFFF
     Text:       #2C2C2C
     Muted:      #6B6B6B
     Border:     #E8D5B0
   ======================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --green: #2D6A4F;
  --green-dark: #1B4332;
  --green-light: #40916C;
  --brown: #8B5E3C;
  --cream: #FDF6EC;
  --cream-dark: #F5E8D0;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --muted: #6B6B6B;
  --border: #E8D5B0;
  --shadow: 0 4px 20px rgba(45,106,79,0.10);
  --shadow-hover: 0 8px 32px rgba(45,106,79,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  margin-top: 0;
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin-top: 0; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
.site-nav {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo svg { width: 28px; height: 28px; fill: var(--cream); }
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(253,246,236,0.85);
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 700px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
}
.hero h1 { color: white; margin-bottom: 16px; }
.hero p { font-size: 1.15rem; opacity: 0.88; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary {
  background: var(--brown);
  color: white;
  box-shadow: 0 4px 14px rgba(139,94,60,0.35);
}
.btn-primary:hover { background: #7a5234; box-shadow: 0 6px 20px rgba(139,94,60,0.45); }
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-green {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(45,106,79,0.4); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: white; }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ===== SECTION ===== */
.section { padding: 80px 20px; }
.section-alt { background: white; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--muted); max-width: 560px; margin-bottom: 48px; }
.centered { text-align: center; }
.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== PROPERTY CARDS ===== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.property-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.property-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
}
.property-card-body { padding: 24px; }
.property-card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.property-card-address { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.property-card-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.stat-value { font-size: 1.1rem; font-weight: 700; color: var(--green); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.property-card-desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.5; }
.property-card-price { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.property-card-price strong { color: var(--green); font-size: 1.2rem; }

/* ===== WHY BOOK DIRECT ===== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.perk {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.perk-icon { font-size: 2.4rem; margin-bottom: 14px; }
.perk h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--green-dark); }
.perk p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ===== ATTRACTIONS ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.attraction {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
}
.attraction-icon { font-size: 1.8rem; margin-bottom: 8px; }
.attraction h3 { font-size: 0.95rem; margin-bottom: 4px; }
.attraction p { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* ===== TWO FAMILIES ===== */
.two-families {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}
.two-families h2 { color: white; margin-bottom: 16px; }
.two-families p { opacity: 0.88; max-width: 600px; margin: 0 auto 32px; font-size: 1.05rem; }
.two-families-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.two-families-stat { text-align: center; }
.two-families-stat .num { font-size: 2.5rem; font-weight: bold; font-family: var(--font-serif); }
.two-families-stat .lbl { font-size: 0.85rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars { color: #F4A261; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: var(--text); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); }
.review-property { font-size: 0.8rem; color: var(--muted); }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
}
.gallery img:first-child { grid-row: 1 / 3; }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}
.amenity-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ===== BOOKING WIDGET ===== */
.booking-widget {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.booking-widget-header {
  background: var(--green);
  color: white;
  padding: 20px 24px;
}
.booking-widget-header h3 { margin: 0; font-size: 1.15rem; }
.booking-widget-header p { margin: 4px 0 0; font-size: 0.85rem; opacity: 0.85; }
.booking-widget-body { padding: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-sans);
  background: white;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.form-control::placeholder { color: #bbb; }

/* ===== QUOTE RESULT ===== */
.quote-result {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin: 16px 0;
}
.quote-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.quote-line:last-child { border-bottom: none; font-weight: 700; color: var(--text); font-size: 1rem; }
.quote-line.savings { color: var(--green); font-weight: 600; }

/* ===== CALENDAR ===== */
.calendar-section { margin-bottom: 32px; }
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cal-nav {
  background: none;
  border: 1.5px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--text);
}
.cal-nav:hover { background: var(--green); color: white; border-color: var(--green); }
.cal-month { font-weight: 600; font-size: 1rem; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day-header {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: 1.5px solid transparent;
  position: relative;
}
.cal-day:hover:not(.unavailable):not(.past):not(.empty) { background: var(--cream-dark); border-color: var(--green); }
.cal-day.unavailable { background: #fde8e8; color: #c0392b; cursor: not-allowed; text-decoration: line-through; }
.cal-day.past { color: #ccc; cursor: default; }
.cal-day.empty { cursor: default; }
.cal-day.selected-start, .cal-day.selected-end { background: var(--green); color: white; font-weight: 700; }
.cal-day.in-range { background: rgba(45,106,79,0.12); }
.cal-day.today { border-color: var(--brown); }
.cal-legend {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
}
.cal-legend span { display: flex; align-items: center; gap: 5px; }
.cal-legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

/* ===== PROPERTY DETAIL LAYOUT ===== */
.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.sticky-widget { position: sticky; top: 84px; }

/* ===== ROOMS TABLE ===== */
.rooms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.rooms-table th {
  background: var(--green);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.rooms-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.rooms-table tr:last-child td { border-bottom: none; }
.rooms-table tr:nth-child(even) td { background: var(--cream); }

/* ===== STRIPE ELEMENTS ===== */
#card-element {
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color 0.2s;
}
#card-element.StripeElement--focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
#card-element.StripeElement--invalid { border-color: #c0392b; }
#card-errors { color: #c0392b; font-size: 0.88rem; margin-top: 8px; min-height: 20px; }

/* ===== PRICE SUMMARY ===== */
.price-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.price-summary h3 { margin-bottom: 16px; font-size: 1.05rem; color: var(--green-dark); }
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; color: var(--text); padding-top: 14px; }
.price-row.savings-row { color: var(--green); font-weight: 600; }

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--muted);
}
.badge svg, .badge .badge-icon { color: var(--green); font-size: 1rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: rgba(253,246,236,0.85);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.88rem; opacity: 0.7; margin-bottom: 12px; }
.footer-contact a { color: var(--cream); opacity: 0.85; font-size: 0.9rem; }
.footer-section h4 { color: var(--cream); font-size: 0.95rem; margin-bottom: 14px; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-section ul { list-style: none; margin: 0; padding: 0; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul a { color: rgba(253,246,236,0.7); font-size: 0.88rem; transition: color 0.2s; }
.footer-section ul a:hover { color: var(--cream); text-decoration: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-box {
  max-width: 640px;
  margin: 60px auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.confirmation-header {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 48px 32px;
}
.confirmation-header .check { font-size: 4rem; margin-bottom: 12px; }
.confirmation-header h1 { color: white; margin-bottom: 8px; font-size: 1.8rem; }
.confirmation-header p { opacity: 0.88; margin: 0; }
.confirmation-body { padding: 40px; }
.conf-code-box {
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 28px;
}
.conf-code { font-size: 2rem; font-weight: bold; color: var(--green); letter-spacing: 3px; font-family: var(--font-serif); }
.conf-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.conf-detail-row:last-of-type { border-bottom: none; }
.conf-detail-label { color: var(--muted); }

/* ===== CONTACT / FAQ ===== */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: var(--font-sans);
}
.faq-question::after { content: '+'; font-size: 1.3rem; color: var(--green); transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 20px; color: var(--muted); line-height: 1.7; }

/* ===== UTILS ===== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.fw-bold { font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.tag {
  display: inline-block;
  background: rgba(45,106,79,0.1);
  color: var(--green);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.loading-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-error { background: #fde8e8; color: #c0392b; border: 1px solid #f5c6cb; }
.alert-success { background: #e8f5e9; color: #2D6A4F; border: 1px solid #c3e6cb; }
.alert-info { background: rgba(45,106,79,0.08); color: var(--green-dark); border: 1px solid rgba(45,106,79,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .property-detail-grid {
    grid-template-columns: 1fr;
  }
  .sticky-widget { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px;
  }
  .gallery img:first-child { grid-row: 1 / 2; grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dark); padding: 12px 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }

  .hero { padding: 60px 20px; }
  .section { padding: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .two-families { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 220px 160px 160px 160px; }
  .gallery img:first-child { grid-column: 1; }
  .properties-grid { grid-template-columns: 1fr; }
}
