/* ============================================
   Cherry Street RV Park — Stylesheet
   Bold editorial · Deep navy + warm gold
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --navy-dark: #121d33;
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #b8953f;
  --cream: #f7f4ee;
  --cream-dark: #ede8dd;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTION LABELS --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.accent-underline {
  position: relative;
  display: inline-block;
}

.accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(18, 29, 51, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.nav-logo-icon {
  color: var(--gold);
}

.nav-logo:hover {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  padding: 8px;
  transition: color 0.3s, transform 0.3s;
}

.nav-overlay-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.nav-overlay-link:hover {
  color: var(--gold);
}

.nav-overlay-cta {
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-overlay-contact {
  margin-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 2;
}

.nav-overlay-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.nav-overlay-contact a:hover {
  color: var(--gold);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  gap: 48px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 7/9;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.hero-scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}

.hero-scroll svg {
  color: rgba(255, 255, 255, 0.4);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- SITES --- */
.sites {
  padding: 120px 0;
  background: var(--cream);
}

.sites .section-label {
  margin-bottom: 12px;
}

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

.site-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 39, 68, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.12);
}

.site-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.site-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.site-card:hover .site-card-img img {
  transform: scale(1.05);
}

.site-card-body {
  padding: 28px;
}

.site-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.site-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.sites-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

.sites-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- AMENITIES --- */
.amenities {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.amenities .section-title {
  color: var(--white);
}

.amenities-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

.amenities-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 6/7;
}

.amenities-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.amenity {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}

.amenity:hover .amenity-icon {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.amenity-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.amenity-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

/* --- ABOUT --- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-group {
  position: relative;
}

.about-image-main {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 6/5;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 39, 68, 0.2);
  border: 4px solid var(--cream);
  aspect-ratio: 5/3.5;
  max-width: 280px;
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.about-badge svg {
  color: var(--navy-dark);
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
}

.about-signature svg {
  color: var(--gold);
}

/* --- LOCATION --- */
.location {
  padding: 120px 0;
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.location-detail p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-detail a {
  color: var(--gold-dark);
  transition: color 0.3s;
}

.location-detail a:hover {
  color: var(--navy);
}

.location-note {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

.location-map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.1);
  min-height: 360px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* --- CONTACT --- */
.contact {
  padding: 120px 0;
  background: var(--navy);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact .section-title {
  color: var(--white);
}

.contact-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-direct-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
}

.contact-direct-item:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.contact-direct-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-direct-value {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
}

.contact-direct-value:hover {
  color: var(--gold);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success.visible {
  display: flex;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.form-success-text {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-icon {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 32px;
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
  }

  .sites-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image-secondary {
    right: -20px;
    bottom: -20px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-image {
    order: -1;
    aspect-ratio: 4/3;
    max-height: 400px;
  }

  .hero-image-accent {
    display: none;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 1rem;
  }

  .sites-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .amenities-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenities-image {
    aspect-ratio: 4/3;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image-group {
    max-width: 480px;
  }

  .about-image-secondary {
    right: -10px;
    bottom: -20px;
    max-width: 200px;
  }

  .about-badge {
    top: -16px;
    left: -16px;
    padding: 12px 16px;
    font-size: 0.75rem;
  }

  .location-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    aspect-ratio: 16/9;
    min-height: 260px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

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

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

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

  .hero-inner {
    padding: 96px 16px 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-stat-divider {
    display: none;
  }

  .sites, .amenities, .about, .location, .contact {
    padding: 80px 0;
  }

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

  .contact-form-wrap {
    padding: 20px;
  }
}
