/* ===========================
   HIDEAWAY POOL — style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --sky: #0098c8;
  --sky-dark: #0077a0;
  --aqua: #5fd3d3;
  --aqua-light: #b8f0f0;
  --aqua-pale: #e8fafa;
  --white: #ffffff;
  --sand: #fff8e7;
  --sand-dark: #ffe9b0;
  --text: #1a3a4a;
  --text-light: #4a7080;
  --card-shadow: 0 4px 20px rgba(0,152,200,0.13);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Fredoka One', cursive; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { line-height: 1.65; color: var(--text-light); font-size: 1.05rem; }

/* ── Utilities ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--aqua-pale); }
.section-sand { background: var(--sand); }
.text-center { text-align: center; }
.section-title { margin-bottom: 0.4rem; color: var(--sky-dark); }
.section-sub { font-size: 1.1rem; margin-bottom: 2.5rem; color: var(--text-light); }
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,152,200,0.3); }
.btn-primary { background: var(--sky); color: #fff; }
.btn-secondary { background: var(--white); color: var(--sky); border: 2.5px solid var(--sky); }
.btn-gold { background: #ffcc3d; color: var(--text); }

/* ── NAV ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(0,152,200,0.10);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.nav-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.35rem;
  color: var(--sky-dark);
  line-height: 1;
}
.nav-logo-text span { font-size: 0.8rem; display: block; color: var(--text-light); font-family: 'Nunito', sans-serif; font-weight: 600; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--aqua-pale); color: var(--sky-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--sky-dark);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #e0f7ff 0%, #b8f0f0 40%, #7ecece 100%);
}
.hero-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-circles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
}
.hero-bg-circles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,152,200,0.12) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-text { }
.hero-badge {
  display: inline-block;
  background: var(--sky);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-text h1 { color: var(--sky-dark); margin-bottom: 1rem; }
.hero-text p { font-size: 1.15rem; margin-bottom: 2rem; max-width: 420px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #7ecece 0%, #0098c8 100%);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,120,180,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder .ph-icon { font-size: 3rem; opacity: 0.7; }
.hero-img-placeholder .ph-label { opacity: 0.85; }
.wave-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  background: #ffcc3d;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  line-height: 1.3;
  text-align: center;
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #b8f0f0 0%, #5fd3d3 60%, #0098c8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem 1rem;
}
.img-placeholder .ph-icon { font-size: 2.2rem; opacity: 0.75; }
.img-placeholder .ph-label { opacity: 0.9; }
.img-ph-sm { aspect-ratio: 4/3; }
.img-ph-md { aspect-ratio: 16/9; }
.img-ph-tall { aspect-ratio: 3/4; }
.img-ph-wide { aspect-ratio: 21/9; }
.img-ph-square { aspect-ratio: 1/1; }
.img-ph-person {
  background: linear-gradient(135deg, #c8e8f0 0%, #7ecece 100%);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,152,200,0.18); }

/* ── FEATURE CARDS ── */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.features-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.features-row-centered {
  justify-content: center;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.6rem 1rem;
  text-align: center;
  transition: transform 0.2s;
  flex: 0 1 200px;   /* won't grow beyond 200px, won't shrink below content */
  min-width: 140px;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}
.feature-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--sky-dark);
}

/* ── PHOTO GRID ── */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-text p { margin-bottom: 1rem; }

/* About photo grid — replaces inline styles */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}
.about-photo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* ── ADULT POOL ── */
.adult-pool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.adult-pool-badge {
  display: inline-block;
  background: var(--sky-dark);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}
.adult-pool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.chip {
  background: var(--white);
  border: 2px solid var(--aqua);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sky-dark);
  white-space: nowrap;
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { display: block; width: 100%; }

/* ── HOURS TABLE ── */
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.hours-table th {
  background: var(--sky);
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  text-align: left;
}
.hours-table td {
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--aqua-pale);
  background: #fff;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:nth-child(even) td { background: var(--aqua-pale); }
.hours-table .day-col { color: var(--text); font-weight: 700; }
.hours-table .time-col { color: var(--sky-dark); }

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 5px solid var(--aqua);
}
.price-card.featured { border-top-color: var(--sky); }
.price-card .price-amount {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  color: var(--sky-dark);
  line-height: 1;
  margin: 0.6rem 0 0.3rem;
}
.price-card .price-label {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.price-card .price-note {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}
.price-icon { font-size: 2rem; margin-bottom: 0.4rem; }

/* ── CONCESSION MENU ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.menu-card-header {
  background: var(--sky);
  color: #fff;
  padding: 1rem 1.5rem;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.menu-items { padding: 0.8rem 1.5rem 1.2rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--aqua-pale);
  font-size: 0.97rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .item-name { font-weight: 600; color: var(--text); }
.menu-item .item-price { font-weight: 800; color: var(--sky-dark); }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── SEASON BANNER ── */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.season-card {
  background: var(--sky);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.season-card.close { background: var(--aqua); color: var(--sky-dark); }
.season-card .s-label { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.85; }
.season-card .s-date { font-family: 'Fredoka One', cursive; font-size: 1.6rem; margin-top: 0.4rem; }

/* ── MOVIE SCHEDULE ── */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.movie-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.4rem;
  text-align: center;
  border-bottom: 4px solid var(--sky);
}
.movie-date {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.movie-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--text);
}
.movie-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }

/* ── FORMS ── */
.form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.form-wrap form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
}
.form-wrap input,
.form-wrap textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #d8eff8;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--aqua-pale);
  margin-bottom: 1rem;
  transition: border-color 0.15s;
  outline: none;
}
.form-wrap input:focus,
.form-wrap textarea:focus { border-color: var(--sky); background: #fff; }
.form-wrap textarea { min-height: 120px; resize: vertical; }
.form-wrap button[type="submit"] {
  width: 100%;
  padding: 0.9rem;
  background: var(--sky);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.form-wrap button[type="submit"]:hover { background: var(--sky-dark); transform: translateY(-2px); }

/* ── LIFEGUARD SECTION ── */
.lg-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lg-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.lg-benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.02rem;
}
.lg-benefits li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── MANAGER CARDS ── */
.managers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.manager-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-align: center;
}
.manager-photo { width: 100%; aspect-ratio: 1/1; }
.manager-info { padding: 1.5rem; }
.manager-info h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--sky-dark);
  margin-bottom: 0.2rem;
}
.manager-role {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}
.manager-info p { font-size: 0.95rem; }

/* ── INFO GRID (location+hours) ── */
.info-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #c8f0f8 0%, #7ecece 100%);
  padding: 4.5rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0 60 L0 30 Q300 0 600 30 Q900 60 1200 30 L1200 60Z' fill='white'/%3E%3C/svg%3E") no-repeat bottom center / cover;
}
.page-hero h1 { color: var(--sky-dark); margin-bottom: 0.5rem; }
.page-hero p { font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: var(--sky-dark);
  color: rgba(255,255,255,0.88);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand .nav-logo-text span { color: rgba(255,255,255,0.6); }
.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
footer h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1rem;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s;
}
footer ul a:hover { color: var(--aqua-light); }
.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */

/* Prevent anything from bleeding off-screen */
body { overflow-x: hidden; }
.container { width: 100%; }

/* Fix form inputs so placeholder text never wraps */
.form-wrap input,
.form-wrap textarea {
  min-width: 0;
  width: 100%;
}

/* Named grid classes for event/lesson sections (used inline in HTML) */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.two-col-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-text p { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .adult-pool-grid { grid-template-columns: 1fr; }
  .lg-hero { grid-template-columns: 1fr; }
  .info-2col { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .two-col-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-even { grid-template-columns: 1fr; gap: 2rem; }
  .managers-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    gap: 0.2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Layout */
  .hero-content { padding: 2.5rem 1rem; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* Grids → single column */
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-grid { grid-template-columns: 1fr 1fr; } /* keep 2-col on small phones, they're small squares */
  .adult-pool-grid { grid-template-columns: 1fr; }
  .photo-grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .season-grid { grid-template-columns: 1fr; }
  .managers-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .movie-grid { grid-template-columns: 1fr 1fr !important; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .two-col-grid { grid-template-columns: 1fr !important; gap: 1.8rem; }
  .two-col-even { grid-template-columns: 1fr !important; gap: 1.8rem; }

  /* Chips wrap nicely already, just ensure font size is ok */
  .chip { font-size: 0.82rem; }

  /* Hours table — allow text to wrap */
  .hours-table th,
  .hours-table td { padding: 0.75rem 1rem; font-size: 0.92rem; }

  /* Map */
  .map-wrap { height: 260px; }

  /* Forms */
  .form-wrap form { padding: 1.5rem; }
  .form-wrap input,
  .form-wrap textarea { font-size: 16px; } /* prevents iOS zoom on focus */

  /* Hero wave badge */
  .wave-badge { font-size: 0.85rem; padding: 0.5rem 0.75rem; }

  /* Page hero */
  .page-hero { padding: 3rem 1rem 2.5rem; }

  /* Footer */
  footer { padding: 2.5rem 1rem 1.5rem; }
}
