/* WaterBound — Westlake Hills Luxury Retreats
   Southwest chic, refined, warm. */

:root {
  /* Brand palette */
  --cream: #F5EDDC;
  --cream-light: #FAF4E8;
  --paper: #FFFAF0;
  --teal: #2E6A6F;
  --teal-deep: #1F4F54;
  --teal-soft: #A8C9CC;
  --teal-mist: #D4E4E5;
  --rust: #C56B3F;
  --rust-soft: #E2A989;
  --rust-mist: #F2D3BE;
  --mustard: #D6A93D;
  --mustard-soft: #E8CC85;
  --mustard-mist: #F3E5BC;
  --sage: #6B8472;
  --charcoal: #3B2F26;
  --gray: #6F6359;
  --line: rgba(59, 47, 38, 0.12);

  /* Type scale */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', 'Italianno', cursive;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ======== TYPOGRAPHY ======== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 400; }
h4 { font-size: 1.3rem; font-weight: 500; font-family: var(--font-sans); letter-spacing: 0.02em; text-transform: uppercase; }

p { font-weight: 300; }
p.lead { font-size: 1.25rem; line-height: 1.6; color: var(--gray); font-weight: 300; }

.script { font-family: var(--font-script); font-size: 2.5rem; color: var(--rust); line-height: 1; }
.eyebrow { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rust); margin-bottom: var(--space-sm); display: inline-block; }

/* ======== LAYOUT ======== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-md); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--space-md); }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--space-md); }

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

/* ======== NAVIGATION ======== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(245, 237, 220, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-brand-mark { width: 54px; height: 42px; }
.nav-brand-text { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--teal); letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s ease;
  padding-bottom: 4px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--rust); border-bottom-color: var(--rust); }
.nav-links a.active { color: var(--teal); border-bottom-color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--cream) !important;
  padding: 0.65rem 1.4rem !important;
  border-radius: 999px;
  border: 1.5px solid var(--teal) !important;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--teal-deep); border-color: var(--teal-deep) !important; color: var(--cream) !important; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(46, 106, 111, 0.2); }
.btn-secondary { background: transparent; color: var(--rust); border-color: var(--rust); }
.btn-secondary:hover { background: var(--rust); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--mustard-mist) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}
.hero-text { padding: var(--space-md) 0; }
.hero-text h1 {
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.hero-text h1 span { font-style: normal; color: var(--teal); display: block; }
.hero-text p.lead { margin-bottom: var(--space-md); max-width: 30em; }
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
  height: 75vh;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(59, 47, 38, 0.18);
}
.hero-decor-agave {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 280px;
  opacity: 0.55;
  z-index: 1;
}
.hero-decor-agave-tr {
  position: absolute;
  top: 80px;
  right: -80px;
  width: 220px;
  opacity: 0.4;
  transform: rotate(15deg);
}

/* ======== AGAVE / BOTANICAL ACCENTS ======== */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: var(--space-lg) 0;
  color: var(--rust);
}
.section-divider svg { width: 50px; height: 50px; }
.section-divider-line { flex: 0 0 60px; height: 1px; background: var(--rust); opacity: 0.5; }

/* ======== PROPERTY CARDS ======== */
.properties { background: var(--paper); position: relative; }
.properties::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.property-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.property-card:hover { transform: translateY(-6px); }
.property-card-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--space-md);
  position: relative;
  box-shadow: 0 20px 40px rgba(59, 47, 38, 0.12);
}
.property-card-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(245, 237, 220, 0.95);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  backdrop-filter: blur(8px);
}
.property-card-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.property-card-meta {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: var(--space-sm);
}
.property-card-desc { font-weight: 300; color: var(--charcoal); margin-bottom: var(--space-md); max-width: 36em; }
.property-card-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 4px;
  transition: gap 0.2s ease;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.property-card:hover .property-card-link { gap: 0.8rem; }

/* ======== STORY / INTRO SECTIONS ======== */
.story { background: var(--cream); position: relative; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.story-text h2 { margin-bottom: var(--space-md); }
.story-text p { margin-bottom: var(--space-sm); font-size: 1.1rem; }
.story-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 48px rgba(59, 47, 38, 0.15);
}

/* ======== STATS / FEATURES STRIP ======== */
.stats-strip {
  background: var(--teal);
  color: var(--cream);
  padding: var(--space-lg) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--mustard-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mist);
}

/* ======== EXPERIENCES ======== */
.experiences { background: var(--paper); }
.exp-header { text-align: center; margin-bottom: var(--space-lg); }
.exp-header h2 { margin-bottom: var(--space-sm); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.exp-card {
  padding: var(--space-md);
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(59, 47, 38, 0.08); }
.exp-icon {
  width: 48px; height: 48px;
  margin-bottom: var(--space-sm);
  color: var(--rust);
}
.exp-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

/* ======== CONTACT FORM ======== */
.book-section { background: var(--cream); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}
.book-info h2 { margin-bottom: var(--space-md); }
.book-info p.lead { margin-bottom: var(--space-md); }
.book-detail {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--line);
}
.book-detail h4 {
  color: var(--rust);
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}
.book-detail p { font-size: 1rem; color: var(--charcoal); }

form { background: var(--paper); padding: var(--space-lg); border-radius: 16px; box-shadow: 0 20px 50px rgba(59, 47, 38, 0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.form-group { margin-bottom: var(--space-sm); }
label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--paper);
}
textarea { resize: vertical; min-height: 100px; font-family: var(--font-sans); }
.form-submit { width: 100%; margin-top: var(--space-sm); }

/* ======== FOOTER ======== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 237, 220, 0.1);
}
.footer-brand-text { font-family: var(--font-serif); font-size: 1.6rem; color: var(--mustard-soft); margin-bottom: 0.6rem; }
.footer-brand-tag { color: var(--teal-mist); font-size: 0.95rem; max-width: 24em; }
.footer h4 { color: var(--mustard-soft); font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: var(--space-sm); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.7rem; }
.footer a { color: var(--cream); text-decoration: none; font-size: 0.95rem; opacity: 0.85; transition: opacity 0.2s ease; }
.footer a:hover { opacity: 1; color: var(--mustard-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--teal-mist); }

/* ======== PROPERTY DETAIL PAGE ======== */
.detail-hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) 0 var(--space-lg);
  color: var(--cream);
}
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(59, 47, 38, 0.6) 0%, rgba(59, 47, 38, 0.1) 60%);
}
.detail-hero .container { position: relative; z-index: 2; }
.detail-hero h1 { color: var(--cream); margin-bottom: var(--space-sm); font-style: italic; }
.detail-hero .eyebrow { color: var(--mustard-soft); }
.detail-hero p.lead { color: rgba(245, 237, 220, 0.92); max-width: 36em; }

.detail-intro {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.detail-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
}
.detail-meta-list {
  list-style: none;
}
.detail-meta-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-meta-list li:last-child { border-bottom: none; }
.detail-meta-list .label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
}
.detail-meta-list .value { font-size: 1.05rem; }

.detail-prose p { margin-bottom: var(--space-sm); font-size: 1.1rem; line-height: 1.75; }
.detail-prose p.lead { font-size: 1.3rem; margin-bottom: var(--space-md); }

.amenities {
  background: var(--paper);
  padding: var(--space-xl) 0;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.amenity-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.amenity-item svg { flex-shrink: 0; width: 28px; height: 28px; color: var(--teal); margin-top: 4px; }
.amenity-item-text strong { display: block; font-weight: 500; font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.2rem; }
.amenity-item-text span { font-size: 0.95rem; color: var(--gray); }

.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
  padding: var(--space-md) 0;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-row: span 2; }

/* ======== PROPERTY GALLERY (detail pages) ======== */
.property-gallery-section {
  background: var(--cream);
  padding: var(--space-xl) 0;
}
.property-gallery-section .container { max-width: 1480px; }
.property-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.property-gallery .pg-item {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 47, 38, 0.06);
}
.property-gallery .pg-item:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 24px rgba(59, 47, 38, 0.14); }
/* mosaic spans */
.property-gallery .pg-tall { grid-row: span 2; }
.property-gallery .pg-wide { grid-column: span 2; }
.property-gallery .pg-large { grid-column: span 2; grid-row: span 2; }

/* ======== HOMEPAGE GLIMPSE GALLERY ======== */
.glimpse {
  background: var(--cream);
  position: relative;
}
.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: var(--space-lg);
}
.glimpse-item {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s ease;
  box-shadow: 0 4px 16px rgba(59, 47, 38, 0.08);
}
.glimpse-item:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(59, 47, 38, 0.15); }
.glimpse-item.tall { grid-row: span 2; }
.glimpse-item.wide { grid-column: span 2; }
.glimpse-item.feature { grid-column: span 3; grid-row: span 2; }

/* ======== DESERT HORIZON BAND ======== */
.horizon-band {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-mist) 0%, var(--rust-mist) 60%, var(--mustard-mist) 100%);
}
.horizon-band > svg.horizon-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.horizon-band > svg.horizon-sun {
  position: absolute;
  bottom: 30%;
  right: 12%;
  width: 200px;
  height: 200px;
  z-index: 1;
  opacity: 0.85;
}
@media (max-width: 920px) {
  .horizon-band { height: 180px; }
  .horizon-band > svg.horizon-sun { width: 140px; height: 140px; right: 8%; bottom: 28%; }
}
@media (max-width: 540px) {
  .horizon-band { height: 140px; }
}

/* ======== BOTANICAL AGAVE — used as deliberate specimen ornament ======== */
.flowering-agave { pointer-events: none; }
.flowering-agave svg { width: 100%; height: auto; }

/* The hero no longer carries the agave — it's now a centered specimen between sections. */
.hero { overflow: visible; }

/* Centered specimen ornament — sits between the horizon band and the next content section */
.agave-specimen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-xl) auto var(--space-lg);
  max-width: 220px;
}
.agave-specimen-svg {
  width: 140px;
  height: auto;
  opacity: 0.92;
}
.agave-specimen-caption {
  margin-top: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft, #6B6457);
  text-align: center;
}
.agave-specimen-caption span {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-left: 0.35em;
}
@media (max-width: 920px) {
  .agave-specimen-svg { width: 110px; }
  .agave-specimen { margin: var(--space-lg) auto; }
}

/* ======== BOOK PAGE HERO BACKGROUND ======== */
.book-hero {
  position: relative;
  background-size: cover;
  background-position: center;
}
.book-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 237, 220, 0.95) 0%, rgba(168, 201, 204, 0.88) 100%);
}
.book-hero .container-narrow { position: relative; z-index: 2; }

@media (max-width: 920px) {
  .property-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .property-gallery .pg-large { grid-column: span 2; grid-row: span 2; }
  .property-gallery .pg-tall { grid-row: span 1; }
  .property-gallery .pg-wide { grid-column: span 2; }
  .glimpse-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .glimpse-item.feature, .glimpse-item.wide { grid-column: span 2; grid-row: span 1; }
}

/* ======== CTA BAND ======== */
.cta-band {
  background: linear-gradient(135deg, var(--rust) 0%, var(--mustard) 100%);
  color: var(--cream);
  padding: var(--space-xl) 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: var(--space-sm); font-style: italic; }
.cta-band p { color: rgba(245, 237, 220, 0.95); font-size: 1.2rem; margin-bottom: var(--space-md); max-width: 36em; margin-left: auto; margin-right: auto; }
.cta-band .btn-ghost { color: var(--cream); border-color: var(--cream); }
.cta-band .btn-ghost:hover { background: var(--cream); color: var(--rust); }

/* ======== UTILITY ======== */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }

/* ======== RESPONSIVE ======== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-block; }
  .hero-grid, .story-grid, .property-grid, .book-grid, .detail-intro-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .hero-image { height: 50vh; min-height: 320px; }
  .stats-grid, .exp-grid, .amenity-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  section { padding: var(--space-lg) 0; }
  :root { --space-xl: 4rem; --space-2xl: 6rem; }
}
@media (max-width: 540px) {
  .stats-grid, .exp-grid, .amenity-grid, .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .nav .container { padding: 0 1rem; }
}
