/* ============================================================
   Happy Times Campground — Main Stylesheet
   Colors: Red #e63022 | Dark #1a1a1a | Tan/Gold #d4a843 | Teal #5bb8c4
   ============================================================ */

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

:root {
  --red:    #e63022;
  --red-dk: #c0261b;
  --gold:   #d4a843;
  --teal:   #5bb8c4;
  --dark:   #1a1a1a;
  --gray:   #555;
  --light:  #f8f7f4;
  --white:  #ffffff;
  --nav-h:  120px;
  --radius: 8px;
  --shadow: 0 4px 18px rgba(0,0,0,.13);
  --trans:  all .25s ease;
}

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

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--red); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--red-dk); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* --- Utility ---------------------------------------------- */
.container      { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center    { text-align: center; }
.text-red       { color: var(--red); }
.text-gold      { color: var(--gold); }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .4em;
  color: var(--dark);
}
.section-heading span { color: var(--red); }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: .75em 2em;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,48,34,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8903a;
  border-color: #b8903a;
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Top Bar --------------------------------------------- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar-contact { display: flex; gap: 20px; align-items: center; }
.top-bar-contact span { display: flex; align-items: center; gap: 6px; }

/* --- Navigation ------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 110px;
  width: auto;
}
.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: .5em .9em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--trans);
  letter-spacing: .02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(230,48,34,.07);
}
.nav-links .nav-cta a {
  background: var(--red);
  color: var(--white);
  padding: .5em 1.2em;
}
.nav-links .nav-cta a:hover {
  background: var(--red-dk);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.7) 0%, rgba(230,48,34,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .35em 1em;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--gold); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: .6em 1.1em;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge i { color: var(--gold); font-size: 1rem; }

/* --- Feature Strip --------------------------------------- */
.feature-strip {
  background: var(--red);
  padding: 28px 0;
}
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.feature-item i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-item-text strong { display: block; font-size: 1rem; }
.feature-item-text span  { font-size: .82rem; opacity: .85; }

/* --- About Section --------------------------------------- */
.about-section { background: var(--light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.about-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-grid img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}
.about-text .label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .7rem;
}
.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1.5rem 0 2rem;
}
.about-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--dark);
  font-weight: 600;
}
.about-meta-item i { color: var(--red); font-size: 1.1rem; }

/* --- Rates Preview --------------------------------------- */
.rates-section { background: var(--white); }
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 2.5rem;
}
.rate-card {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.rate-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rate-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
}
.rate-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 14px; right: -28px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25em 2.5em;
  transform: rotate(45deg);
}
.rate-icon { font-size: 2.2rem; color: var(--red); margin-bottom: .8rem; }
.rate-card h3 { font-size: 1.3rem; margin-bottom: .3rem; color: var(--dark); }
.rate-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  font-family: 'Lato', sans-serif;
  margin: .5rem 0 .2rem;
}
.rate-price sup { font-size: 1.2rem; vertical-align: super; }
.rate-period { font-size: .82rem; color: var(--gray); }
.rate-premium {
  display: inline-block;
  margin: .6rem 0;
  font-size: .82rem;
  background: #fff3cd;
  color: #856404;
  border-radius: 4px;
  padding: .2em .7em;
  font-weight: 600;
}
.rate-features { list-style: none; margin-top: 1rem; text-align: left; }
.rate-features li {
  padding: .35em 0;
  font-size: .9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.rate-features li:last-child { border-bottom: none; }
.rate-features i { color: var(--red); flex-shrink: 0; }

/* --- Photo Gallery --------------------------------------- */
.gallery-section { background: var(--dark); }
.gallery-section .section-heading { color: var(--white); }
.gallery-section .section-sub { color: rgba(255,255,255,.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 10px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230,48,34,0);
  transition: var(--trans);
}
.gallery-item:hover::after { background: rgba(230,48,34,.15); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

/* --- CTA Banner ------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #a01f15 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: .6rem; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }

/* --- Map Strip ------------------------------------------- */
.map-strip { height: 420px; }
.map-strip iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- Testimonials ---------------------------------------- */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-stars { color: var(--gold); margin-bottom: .8rem; font-size: 1.1rem; }
.testimonial-text { color: var(--gray); font-style: italic; margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-author { font-weight: 700; color: var(--dark); font-size: .9rem; }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(230,48,34,.1);
  font-family: Georgia, serif;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { height: 110px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: .5rem; }
.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--trans);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* --- Page Hero (inner pages) ----------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a1a 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .4rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* --- Amenities Page -------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.amenity-card-img {
  height: 200px;
  background: var(--light);
  overflow: hidden;
}
.amenity-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.amenity-card:hover .amenity-card-img img { transform: scale(1.06); }
.amenity-card-body { padding: 1.5rem; }
.amenity-card-body h3 { margin-bottom: .5rem; font-size: 1.2rem; color: var(--dark); }
.amenity-card-body p  { color: var(--gray); font-size: .9rem; line-height: 1.6; }
.amenity-icon-card {
  background: var(--white);
  border: 2px solid #ebebeb;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  transition: var(--trans);
}
.amenity-icon-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.amenity-icon-card i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: .8rem;
}
.amenity-icon-card h3 { font-size: 1rem; margin-bottom: .3rem; color: var(--dark); }
.amenity-icon-card p  { font-size: .85rem; color: var(--gray); }

/* Attractions */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.attraction-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  transition: var(--trans);
}
.attraction-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.15); }
.attraction-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: .5rem; }
.attraction-card p  { color: var(--gray); font-size: .9rem; margin-bottom: .8rem; }
.attraction-card address {
  font-style: normal;
  font-size: .85rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.attraction-card address a { color: var(--red); font-weight: 600; }

/* --- Policies Page --------------------------------------- */
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.55;
}
.policy-list li i { color: var(--red); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }

/* --- Reservations Page ----------------------------------- */
.reservation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-bottom: 3rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.step-number {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step-card p  { font-size: .88rem; color: var(--gray); }

/* --- Contact Page ---------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(230,48,34,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--red); font-size: 1.1rem; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: .3rem; color: var(--dark); }
.contact-info-card p, .contact-info-card a {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.5;
}
.contact-info-card a:hover { color: var(--red); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 { margin-bottom: 1.5rem; font-size: 1.6rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}
.form-group label .req { color: var(--red); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75em 1em;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--dark);
  font-family: inherit;
  transition: var(--trans);
  background: var(--light);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 1rem;
  font-style: italic;
}

/* --- GPS coords card ------------------------------------- */
.gps-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gps-card i { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
.gps-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: .3rem; }
.gps-card p  { font-size: .88rem; color: rgba(255,255,255,.75); }

/* --- Responsive ------------------------------------------ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .contact-layout { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 90px; }

  .nav-logo img { height: 76px; }

  .top-bar .container { justify-content: center; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--nav-h) + 16px) 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform .35s ease;
    box-shadow: 0 8px 28px rgba(0,0,0,.15);
    z-index: 1050;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: .75em 1em; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .about-grid,
  .contact-layout { grid-template-columns: 1fr; }

  .about-img-grid img:first-child { height: 200px; }
  .about-img-grid { grid-template-rows: auto; }

  .hero-bg { opacity: .35; }
  .hero { min-height: 75vh; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 200px; }
  .gallery-item.wide  { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

  .map-strip { height: 320px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 55px 0; }
  .rates-grid  { grid-template-columns: 1fr; }
  .hero h1     { font-size: 2rem; }
  .feature-strip .container { grid-template-columns: 1fr 1fr; }
}
