/* Pet Planet Brunette — brand palette only:
   Bark #6A3D38 | Sage #B7C4A5 | Butter #E8C77E | Bone #E1CCBB */

:root {
  --bark: #6A3D38;
  --bark-deep: #4E2C28;
  --sage: #B7C4A5;
  --sage-light: #E3E9D9;
  --butter: #E8C77E;
  --butter-deep: #D4AC55;
  --bone: #E1CCBB;
  --bone-light: #F6EFE7;
  --bone-lighter: #FBF7F1;
  --ink: #3A2522;
  --ink-soft: #6F5A55;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 14px rgba(106, 61, 56, 0.10);
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Lexend", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bone-lighter);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, .display {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--bark);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--ink-soft); }

a { color: var(--bark); }

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  background: var(--sage-light);
  border: 1px solid var(--sage);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:focus-visible { outline: 3px solid var(--butter-deep); outline-offset: 2px; }

.btn-primary { background: var(--butter); color: var(--bark-deep); }
.btn-primary:hover { background: var(--butter-deep); }

.btn-dark { background: var(--bark); color: var(--bone-light); }
.btn-dark:hover { background: var(--bark-deep); }

.btn-ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--bark);
}
.btn-ghost:hover { background: var(--bone-light); }

.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* Top bar */
.top-bar {
  background: var(--bark);
  color: var(--bone-lighter);
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 8px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.top-bar a { color: var(--bone-lighter); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }

/* Logo fallback */
.logo-fallback {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bark);
  display: none;
}
.logo-fallback span { color: var(--butter-deep, #b8960a); }

/* Header */
.site-header {
  background: var(--bone-lighter);
  border-bottom: 1px solid var(--bone);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--bark);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--butter-deep); }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.main-nav a:hover, .main-nav a.active { color: var(--bark); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.signin-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
}
.signin-link:hover { color: var(--bark); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--bark);
  border-radius: 8px;
  color: var(--bark);
  font-size: 1.2rem;
  padding: 4px 10px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--sage-light);
  border-bottom: 1px solid var(--sage);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 72px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--butter) 62%);
}
.hero p.lede { font-size: 1.15rem; margin: 18px 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); }

.hero-card {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card ul { list-style: none; margin-top: 14px; }
.hero-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--bone);
  font-size: 0.97rem;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 4px var(--sage-light);
  border: 1px solid var(--bark);
  opacity: 0.85;
}

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { margin-top: 10px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

.alt { background: var(--bone-light); border-top: 1px solid var(--bone); border-bottom: 1px solid var(--bone); }
.dark { background: var(--bark); }
.dark h2, .dark h3 { color: var(--bone-light); }
.dark p { color: var(--bone); }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-deep);
  background: var(--butter);
  padding: 4px 12px;
  border-radius: 999px;
}
.card p { font-size: 0.97rem; flex-grow: 1; }
.card a.cardlink { font-weight: 800; text-decoration: none; }
.card a.cardlink::after { content: " \2192"; }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  counter-increment: step;
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.step::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bark);
  color: var(--butter);
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.96rem; }

/* Feature list */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: 0.92rem; }

/* Reviews */
.review {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.stars { color: var(--butter-deep); letter-spacing: 2px; font-size: 1rem; margin-bottom: 10px; }
.review p { font-size: 0.96rem; font-style: italic; }
.review .who { margin-top: 14px; font-style: normal; font-weight: 800; color: var(--bark); font-size: 0.9rem; }

/* Price tables */
.price-block {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.price-block h3 { margin-bottom: 14px; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--bone);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.price-row:last-child { border-bottom: none; }
.price-row strong { color: var(--bark); white-space: nowrap; }

table.enroll {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}
table.enroll th, table.enroll td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--bone);
  color: var(--ink-soft);
}
table.enroll th { color: var(--bark); font-weight: 800; background: var(--sage-light); }
table.enroll tr:last-child td { border-bottom: none; }

/* Specials */
.special {
  position: relative;
  background: var(--bone-lighter);
  border: 2px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
}
.special.popular { border-color: var(--butter-deep); background: #FDF6E6; }
.special .badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--butter);
  color: var(--bark-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.special .price {
  font-family: "Lexend", sans-serif;
  font-size: 2.4rem;
  color: var(--bark);
  margin: 6px 0 2px;
}
.special .price small { font-size: 1rem; color: var(--ink-soft); font-family: "Lexend", sans-serif; }
.special ul { list-style: none; margin: 16px 0 22px; flex-grow: 1; }
.special li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--bone);
}
.special li:last-child { border-bottom: none; }
.special li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--bark);
  font-weight: 800;
}

/* Requirements / checklist */
.checklist { list-style: none; }
.checklist li {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  padding: 16px 18px 16px 48px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--bark-deep);
  font-size: 0.8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.checklist strong { color: var(--bark); }

/* CTA banner */
.cta-banner {
  background: var(--bark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--bone-light); }
.cta-banner p { color: var(--bone); margin-top: 6px; }

/* Booking calendar */
.booking-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}
.panel {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
}
.panel h3 { margin-bottom: 4px; }
.panel .sub { font-size: 0.9rem; margin-bottom: 18px; }

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-head .month { font-family: "Lexend", sans-serif; font-weight: 600; color: var(--bark); font-size: 1.1rem; }
.cal-nav {
  background: var(--bone-light);
  border: 1px solid var(--bone);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: var(--bark);
  cursor: pointer;
}
.cal-nav:disabled { opacity: 0.35; cursor: default; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-align: center;
  padding-bottom: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border: 1px solid var(--bone);
  background: #fff;
  border-radius: 10px;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bark);
  cursor: pointer;
  transition: background 0.12s ease;
}
.cal-day:hover:not(:disabled) { background: var(--sage-light); }
.cal-day:disabled { background: transparent; border-color: transparent; color: var(--bone); cursor: default; }
.cal-day.empty { visibility: hidden; }
.cal-day.selected { background: var(--bark); color: var(--butter); border-color: var(--bark); }

.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.slot {
  border: 1.5px solid var(--bone);
  background: #fff;
  border-radius: 10px;
  padding: 10px 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bark);
  cursor: pointer;
}
.slot:hover { background: var(--sage-light); }
.slot.selected { background: var(--butter); border-color: var(--butter-deep); }
.slot-hint { font-size: 0.88rem; color: var(--ink-soft); margin-top: 12px; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-size: 0.86rem; font-weight: 800; color: var(--bark); display: block; margin-bottom: 5px; }
input, select, textarea {
  width: 100%;
  font-family: "Lexend", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--bone);
  border-radius: 10px;
  padding: 11px 13px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bark);
  box-shadow: 0 0 0 3px var(--sage-light);
}
textarea { resize: vertical; min-height: 84px; }

.summary {
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.93rem;
  color: var(--bark-deep);
  margin-bottom: 16px;
  font-weight: 700;
}

.confirm {
  text-align: center;
  padding: 40px 20px;
}
.confirm .paw {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--bark-deep);
  font-weight: 800;
}
.hidden { display: none !important; }

/* FAQ */
details {
  background: var(--bone-lighter);
  border: 1px solid var(--bone);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
details summary {
  font-weight: 800;
  color: var(--bark);
  cursor: pointer;
  font-size: 1rem;
}
details p { margin-top: 10px; font-size: 0.95rem; }


/* Images */
.hero-side-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bone);
  box-shadow: var(--shadow);
}
@media (max-width: 920px) {
  .hero-side-img { height: 240px; }
}
.hero-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bone);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--bone);
}
.split-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bone);
  box-shadow: var(--shadow);
}
.banner-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bone);
}

/* Footer */
.site-footer {
  display: flex;
  margin-top: 72px;
  min-height: 260px;
}
.footer-left {
  background: var(--bark);
  padding: 48px 56px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  gap: 14px;
  text-align: center;
}
.footer-left img { height: 48px; width: auto; }
.footer-left p { font-size: 0.82rem; color: var(--bone); line-height: 1.4; margin: 0; }
.footer-left p a { color: var(--bone); font-weight: 600; }
.footer-left p a:hover { color: var(--butter); }
.footer-right {
  flex: 1;
  background: var(--bark);
  color: var(--bone);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 32px;
  align-content: start;
}
.footer-right h4 {
  font-family: "Lexend", sans-serif;
  color: var(--bone-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-right a { color: var(--bone); text-decoration: none; font-size: 0.9rem; }
.footer-right a:hover { color: var(--butter); }
.footer-right ul { list-style: none; }
.footer-right li { margin-bottom: 8px; }
.footer-right p { color: var(--bone); font-size: 0.9rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 6px; gap: 12px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(225,204,187,0.15);
  color: var(--bone);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(225,204,187,0.25);
}
.footer-social a:hover { background: rgba(225,204,187,0.3); color: var(--butter); }
.footer-legal {
  background: var(--bark-deep);
  padding: 14px 56px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(225,204,187,0.6);
}
.footer-legal a { color: rgba(225,204,187,0.6); text-decoration: none; }
.footer-legal a:hover { color: var(--butter); }


/* Ticker Ribbon */
.ticker-wrap {
  background: #6A3D38;
  overflow: hidden;
  padding: 12px 0;
  border-top: 3px solid #B7C4A5;
  border-bottom: 3px solid #B7C4A5;
  width: 100%;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-item {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #B7C4A5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-sep {
  color: #B7C4A5;
  opacity: 0.5;
  font-size: 1rem;
  align-self: center;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Summer Banner */
.summer-banner {
  position: relative;
  overflow: hidden;
  background: url('Daycare Dogs Home page.jpg') center/cover no-repeat;
  border-radius: 0;
  margin: 0;
}
.summer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.05) 100%);
}
.summer-banner-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 56px;
}
.summer-banner-text { max-width: 520px; }
.summer-badges { display: flex; gap: 10px; margin-bottom: 20px; }
.badge-summer {
  background: #e8620a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
}
.badge-limited {
  background: #2a9d5c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
}
.summer-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.summer-sub { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 16px; }
.summer-price { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 24px; }
.summer-price small { font-size: 1rem; font-weight: 400; opacity: 0.85; }
@media (max-width: 768px) {
  .summer-banner { margin: 0; border-radius: 0; }
  .summer-banner-inner { padding: 48px 28px; }
}

/* Logo image */
.logo-img { height: 38px; width: auto; display: block; }

/* Header phone */
.header-phone {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bark);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid var(--bone);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--bone-lighter);
}
.header-phone:hover { background: var(--bone-light); }

@media (max-width: 920px) {
  .header-phone { display: none; }
}

/* Footer brand strip */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--bone);
  margin-top: 4px;
  line-height: 1.4;
}
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(225,204,187,0.15);
  color: var(--bone);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(225,204,187,0.25);
}
.footer-social a:hover { background: rgba(225,204,187,0.3); color: var(--butter); }
.footer-legal {
  border-top: 1px solid rgba(225,204,187,0.2);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--bone);
  opacity: 0.75;
}
.footer-legal a { color: var(--bone); text-decoration: none; }
.footer-legal a:hover { color: var(--butter); }

/* Responsive */
@media (max-width: 920px) {
  .hero-inner, .booking-shell, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .steps, .features { grid-template-columns: 1fr 1fr; }
  .footer-right { grid-template-columns: 1fr 1fr; padding: 36px 32px; }
  .footer-left { min-width: 180px; padding: 36px 40px 36px 28px; }
  .footer-left img { height: 40px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone-lighter);
    border-bottom: 1px solid var(--bone);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .signin-link { display: none; }
  /* Hide header CTA button — nav hamburger covers it */
  .header-cta .btn { display: none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .grid-3, .steps, .features, .form-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .footer-left { border-radius: 0; padding: 32px 24px; min-width: 100%; }
  .footer-right { grid-template-columns: 1fr; padding: 32px 24px; }
  .slot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
  /* Hero */
  .hero-inner { padding: 40px 16px; gap: 24px; }
  .hero p.lede { font-size: 1rem; margin: 14px 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  /* CTA banner */
  .cta-banner { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 18px; }
  /* Summer banner */
  .summer-banner-inner { padding: 36px 20px; }
  .summer-price { font-size: 2rem; }
  /* Top bar */
  .top-bar { gap: 12px; padding: 8px 16px; font-size: 0.78rem; }
  /* Section head */
  .section-head { margin-bottom: 28px; }
}
/* Table overflow on mobile */
table.enroll { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
