/* ============================================================
   Fremont Pups Playhouse — design system
   Palette drawn from the logo: navy lettering, red door,
   golden doormat, green suitcase, caramel pup, warm cream.
   Body text is solid black by design — no light grey fonts.
   ============================================================ */

:root {
  --navy: #2e4b7e;
  --navy-deep: #1e3357;
  --navy-tint: #eaf1fa;
  --ink: #000000;
  --cream: #fdf8f0;
  --cream-deep: #f6edde;
  --white: #ffffff;
  --red: #b5292b;
  --red-dark: #8f1f21;
  --green: #2e7d36;
  --green-bright: #4cb748;
  --gold: #f2b32c;
  --gold-deep: #d99b0e;
  --caramel: #9a6a33;
  --line: #e5d9c6;

  --font-display: "Fredoka", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Nunito", "Segoe UI", Verdana, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(46, 75, 126, 0.10);
  --shadow-lift: 0 16px 40px rgba(46, 75, 126, 0.16);
  --container: 1120px;
}

* { box-sizing: border-box; }

/* The hidden attribute must always win, even over display:flex/grid rules. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }
a { color: var(--navy); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--sky { background: var(--navy-tint); }
.section--cream-deep { background: var(--cream-deep); }

.section-head { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { font-size: 1.1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(181, 41, 43, 0.09);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-deep); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--lg { font-size: 1.15rem; padding: 1rem 2.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(30, 51, 87, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
.site-logo img { height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--navy);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover { border-bottom-color: var(--gold); }
.site-nav a.is-active { border-bottom-color: var(--red); }
.site-nav .btn { margin-left: 0.4rem; }
/* The nav CTA is a pill button, not a nav link — undo the link padding/underline
   (.site-nav a outspecifies .btn, so re-assert the button box here). */
.site-nav a.btn { padding: 0.8rem 1.7rem; border-bottom: 0; }
.site-nav a.btn:hover { border-bottom: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: 0 14px 24px rgba(30, 51, 87, 0.14);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--line); }
  .site-nav a.is-active { border-bottom-color: var(--red); }
  .site-nav .btn { margin: 1rem 0 0; justify-content: center; }
  .site-nav.is-open + * { margin-top: 0; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 5rem; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: var(--navy); margin-bottom: 0.5em; }
.hero__sub { font-size: 1.22rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero__note { margin-top: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }

.hero__photos { position: relative; min-height: 420px; }
.hero__photo {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
  object-fit: cover;
}
.hero__photo--1 { width: 62%; aspect-ratio: 1; top: 0; right: 4%; transform: rotate(3deg); }
.hero__photo--2 { width: 46%; aspect-ratio: 1; bottom: 0; left: 2%; transform: rotate(-4deg); z-index: 2; }
.hero__badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 12%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

@media (max-width: 900px) {
  .hero { padding: 3rem 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photos { min-height: 340px; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy); color: var(--white); padding: 1.4rem 0; }
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-strip__item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.trust-strip__item svg { flex: none; }
@media (max-width: 820px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
}

/* ---------- Cards / features ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card { text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon--red { background: rgba(181, 41, 43, 0.12); color: var(--red); }
.feature-card__icon--gold { background: rgba(242, 179, 44, 0.2); color: var(--caramel); }
.feature-card__icon--green { background: rgba(76, 183, 72, 0.14); color: var(--green); }
.feature-card__icon--navy { background: var(--navy-tint); color: var(--navy); }
.feature-card p { margin-bottom: 0; }
@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.about__photo { position: relative; max-width: 430px; margin: 0 auto; }
.about__photo img {
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lift);
  transform: rotate(-2deg);
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  opacity: 0.35;
  z-index: -1;
  transform: rotate(2deg);
}
.about__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.badge {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy-tint);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; }
.checklist__check {
  flex: none;
  width: 34px;
  height: 34px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist p { margin: 0; font-size: 1.08rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery img {
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery img:hover { transform: scale(1.04) rotate(-1deg); box-shadow: var(--shadow-lift); }
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { font-size: 1.15rem; max-width: 38rem; margin: 0 auto 1.6rem; }
.cta-band .paw-bg {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-top: 6px solid var(--navy);
}
.price-card--gold { border-top-color: var(--gold); }
.price-card--green { border-top-color: var(--green-bright); }
.price-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
  margin: 0.4rem 0 0.2rem;
}
.price-card__unit { font-weight: 700; font-size: 1rem; }
.price-card__desc { margin-top: 1rem; }
.price-card__desc p { margin-bottom: 0.4em; }
.price-card .price-note {
  margin-top: auto;
  padding-top: 1rem;
  font-style: italic;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- Booking steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.8rem 1.8rem; }
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step p { margin-bottom: 0; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Calendar ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
}

.calendar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
}
.calendar__nav {
  display: flex;
  gap: 0.5rem;
}
.calendar__nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--navy-tint);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.calendar__nav button:hover { background: var(--navy-tint); }
.calendar__nav button:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar__dow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-align: center;
  padding: 0.4rem 0;
}
.calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  position: relative;
}
.calendar__day--empty { background: transparent; }
.calendar__day--past { background: #efe6d6; }
.calendar__day--blocked {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}
.calendar__day--today { box-shadow: inset 0 0 0 3px var(--navy); }
.calendar__day--today::after {
  content: "";
  position: absolute;
  bottom: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}
.calendar__day--blocked.calendar__day--today { box-shadow: inset 0 0 0 3px var(--navy-deep); }

.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.calendar__legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.legend-swatch {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-block;
}
.legend-swatch--open { background: var(--cream); border: 1px solid var(--line); }
.legend-swatch--blocked { background: var(--red); }
.legend-swatch--today { background: var(--white); box-shadow: inset 0 0 0 2px var(--navy); }

/* Blackout side panel */
.blackout-panel { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.blackout-panel h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3em; }
.blackout-panel__updated {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.blackout-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.6rem; }
.blackout-list__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(181, 41, 43, 0.07);
  border-left: 5px solid var(--red);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background 0.15s ease;
}
.blackout-list__item:hover { background: rgba(181, 41, 43, 0.14); }
.blackout-list__item:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.blackout-list__x { color: var(--red); flex: none; display: flex; }
.blackout-panel__note { font-size: 0.98rem; margin-bottom: 0; }
.blackout-panel__note strong { color: var(--red); }

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--red);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.4rem 1.3rem; }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body ul { margin: 0.5em 0 0; padding-left: 1.4rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card { text-align: center; }
.contact-card h2, .faq-layout aside h2 { font-size: 1.35rem; }
.contact-card a { font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { margin-bottom: 0.35em; }

/* Long email addresses stay on one line: the font scales down with the
   card (container queries) instead of the address ever breaking mid-word. */
.contact-card,
.faq-layout aside .card,
.site-footer__grid > div { container-type: inline-size; }
a.email-link {
  white-space: nowrap;
  font-size: 1rem;
  font-size: clamp(0.75rem, 5.3cqw, 1.05rem);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--white); padding: 3.5rem 0 2rem; margin-top: 4.5rem; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-footer__logo {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.site-footer__logo img { height: 44px; width: auto; }
.site-footer h2 { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.9em; }
.site-footer p { margin-bottom: 0.5em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--white); text-decoration: none; font-weight: 700; }
.site-footer a:hover { color: var(--gold); }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.95rem;
}
.site-footer__bottom a { font-weight: 700; }
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy-tint);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero p { max-width: 40rem; margin: 0 auto; font-size: 1.15rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Note card (icon + text row) ---------- */
.note-card { display: flex; gap: 1.2rem; align-items: flex-start; }

/* ---------- Small screens ---------- */
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .section--tight { padding: 2.2rem 0; }
  .section-head { margin-bottom: 1.8rem; }
  .card { padding: 1.5rem; }
  .page-hero { padding: 2.4rem 0; }

  .hero { padding: 2.2rem 0 3rem; }
  .hero__inner { gap: 2.2rem; }
  .hero__sub { font-size: 1.1rem; }
  .hero__actions { gap: 0.7rem; }
  .btn--lg { font-size: 1.05rem; padding: 0.9rem 1.7rem; }
  .hero__photos { min-height: 290px; }
  .hero__badge { font-size: 0.92rem; padding: 0.55rem 1rem; }

  .trust-strip__item { font-size: 0.92rem; }

  .about__photo::after { inset: 10px -10px -10px 10px; }
  .gallery { gap: 0.8rem; }
  .cta-band { padding: 2.4rem 1.4rem; }
  .price-card { padding: 1.8rem 1.4rem; }
  .step { padding: 1.5rem 1.4rem; }

  .calendar { padding: 1.1rem; }
  .calendar__grid { gap: 4px; }
  .calendar__day { font-size: 0.9rem; border-radius: 9px; }
  .calendar__dow { font-size: 0.72rem; }
  .calendar__title { font-size: 1.15rem; }
  .calendar__legend { gap: 0.7rem 1rem; font-size: 0.88rem; }
  .blackout-panel { padding: 1.2rem; }

  .note-card { flex-direction: column; }
  .site-footer { padding: 2.6rem 0 1.6rem; margin-top: 3rem; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: 0 0 10px 0;
  font-weight: 800;
  z-index: 100;
}
.skip-link:focus { left: 0; }
