/* Childcare Tips — premium desktop-first SPA */
:root {
  --font: 'Quicksand', system-ui, sans-serif;
  --bg: #e0e0e0;
  --ink: #21304d;
  --heading: #21304d;
  --heading-deep: #1e3a5f;
  --text: #444444;
  --muted: #6b7280;

  --paper: #f3f0ea;
  --surface: #f7f5f1;
  --surface-card: #f3f0ea;
  --border: rgba(33, 48, 77, 0.09);
  --shadow: 0 4px 20px rgba(33, 48, 77, 0.07);
  --shadow-hover: 0 8px 28px rgba(33, 48, 77, 0.11);

  --radius: 22px;
  --radius-sm: 14px;

  --teal: #00b894;
  --teal-soft: #46cfc0;
  --teal-deep: #0f766e;

  --blue: #0984e3;
  --blue-soft: #74b9ff;
  --focus: #0984e3;

  --chip-bg: #fafafa;
  --chip-border: rgba(33, 48, 77, 0.1);

  --max: 1160px;
  --rail: 210px;
  --gutter: 2.25rem;
  --tap: 40px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* —— Shell —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(224, 224, 224, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(33, 48, 77, 0.06);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}
.brand:hover { text-decoration: none; color: var(--heading-deep); }
.brand__mark { width: 36px; height: 36px; flex-shrink: 0; }

.nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav a,
.nav__province {
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav a:hover,
.nav a[aria-current="page"],
.nav__province:hover {
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.nav__province img { opacity: 0.7; }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--gutter) 4.5rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 3rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* —— Cards —— */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 1.6rem 1.75rem;
}
.card--paper { background: var(--paper); }

.card--link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.card--link:hover {
  border-color: rgba(9, 132, 227, 0.28);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: inherit;
  transform: translateY(-2px);
}

.card__visual {
  aspect-ratio: 16 / 10;
  background: var(--surface);
  overflow: hidden;
}
.card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

/* —— Type —— */
h1, h2, h3 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 0.55rem;
}
h1 { font-size: clamp(2.1rem, 3.2vw, 2.75rem); color: var(--heading-deep); }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.12rem; }

.lead {
  font-size: 1.14rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 38em;
  font-weight: 500;
}

.age-prompt {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.filter-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin: 0.35rem 0 0.5rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0.2rem 0 0.4rem;
}
.meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.meta__item img {
  width: 15px;
  height: 15px;
  opacity: 0.55;
}

.detail-unit {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.85rem;
}

/* —— Province gate —— */
.province-gate {
  padding: 2.5rem 0 1rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.province-gate h1 { margin-bottom: 0.75rem; }
.province-gate__lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
  text-align: left;
}

.province-card {
  appearance: none;
  font-family: var(--font);
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.province-card:hover {
  border-color: rgba(9, 132, 227, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.province-card__name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.province-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}
.province-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 184, 148, 0.12);
  color: var(--teal-deep);
}
.province-card__badge--soon {
  background: rgba(33, 48, 77, 0.06);
  color: var(--muted);
}
.province-card.is-ready {
  border-color: rgba(0, 184, 148, 0.35);
}

/* —— Home hero —— */
.hero--home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 1.5rem 0 0.5rem;
}
@media (min-width: 960px) {
  .hero--home {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
    padding-top: 2rem;
  }
}

.age-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.age-card {
  appearance: none;
  font-family: var(--font);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.85rem;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 72px;
}
.age-card:hover {
  border-color: rgba(9, 132, 227, 0.35);
  box-shadow: var(--shadow);
}
.age-card__label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.age-card__range {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
  font-weight: 500;
}

.featured-hero {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.featured-hero__visual {
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.featured-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-hero__body {
  padding: 1.35rem 1.5rem 1.6rem;
  border-left: 3px solid var(--teal);
  margin-left: 0;
}
.featured__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-bottom: 0.45rem;
}
.pick-why {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}
.pick-cta { margin: 1.15rem 0 0; }

/* —— Theme shelves —— */
.section { margin: 3rem 0 1.5rem; }
.section__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.section__head h2 { margin: 0; }
.section__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.theme-shelves {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 800px) {
  .theme-shelves {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .theme-shelves {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.theme-shelf {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}
.theme-shelf:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.theme-shelf__visual {
  aspect-ratio: 16 / 9;
  background: var(--surface);
}
.theme-shelf__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.theme-shelf__body {
  padding: 0.85rem 1rem 1.05rem;
}
.theme-shelf__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.theme-shelf__count {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* —— Chips —— */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 1.5rem;
  list-style: none;
  padding: 0;
}
.chips--compact { margin: 0.4rem 0 1rem; }
.chips--rail {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.4rem;
  margin: 0;
}

.chip {
  appearance: none;
  border: 1px solid var(--chip-border);
  background: var(--chip-bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 1.05rem;
  min-height: var(--tap);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  text-align: left;
}
.chips--rail .chip {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
}
.chip:hover { background: #fff; }
.chip[aria-pressed="true"],
.chip.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.chip--quiet {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  min-height: 36px;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.chip--quiet:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}
.chip--quiet.is-active,
.chip--quiet[aria-pressed="true"] {
  background: rgba(0, 184, 148, 0.12);
  color: var(--teal-deep);
  border-color: rgba(0, 184, 148, 0.28);
}

.theme-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-deep);
  background: rgba(0, 184, 148, 0.1);
  border: none;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  width: fit-content;
}

.age-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.age-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(33, 48, 77, 0.05);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.activity-card__title {
  margin: 0.15rem 0 0;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.3;
}
.activity-card__teaser {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* —— CTA —— */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  min-height: var(--tap);
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { color: #fff; background: #0873c9; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--chip-border);
}
.btn--ghost:hover { color: var(--ink); background: rgba(255, 255, 255, 0.7); }

/* —— Age layout —— */
.age-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.age-rail { display: none; }
.age-main { min-width: 0; }
.age-toolbar { display: block; }
.age-header { margin-bottom: 0.5rem; }
.age-rail__back { margin-bottom: 1.5rem; }
.age-mobile-back { display: block; }
.age-rail__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin: 0 0 0.6rem;
}
.age-rail__label--spaced { margin-top: 1.6rem; }

@media (min-width: 900px) {
  .age-mobile-back { display: none; }
  .age-layout {
    grid-template-columns: var(--rail) minmax(0, 1fr);
    gap: 2.75rem;
  }
  .age-rail {
    display: block;
    position: sticky;
    top: 5.25rem;
  }
  .age-toolbar { display: none; }
}

/* —— Activity grid —— */
.activity-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1050px) {
  .activity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

/* —— Detail —— */
.detail-shell {
  max-width: 880px;
  margin: 0 auto;
}
.detail-back { margin-bottom: 1.25rem; }

.detail-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.detail-hero {
  aspect-ratio: 21 / 10;
  background: var(--surface);
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-body {
  padding: 2rem 2.25rem 2.5rem;
}
.detail-body h1 {
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  margin-bottom: 0.25rem;
}

.detail-block { margin-top: 1.85rem; }
.detail-block h2 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--heading-deep);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.detail-block h2 img {
  width: 18px;
  height: 18px;
  opacity: 0.55;
}

/* —— Materials needed (detail + cards) —— */
.materials-panel {
  margin-top: 1.35rem;
  background: linear-gradient(180deg, rgba(46, 160, 140, 0.08), rgba(255, 255, 255, 0.55));
  border: 1.5px solid rgba(46, 160, 140, 0.35);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.15rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.materials-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.materials-panel__head h2 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--heading-deep);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.materials-panel__head h2 img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.materials-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0d6b5c;
  background: rgba(46, 160, 140, 0.18);
  border: 1px solid rgba(46, 160, 140, 0.35);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.materials-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}
@media (min-width: 560px) {
  .materials-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.materials-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.materials-check {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  border: 2px solid var(--teal);
  border-radius: 0.28rem;
  background: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(46, 160, 140, 0.08);
}
.materials-print-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.materials-print-note::before {
  content: '☐ ';
  color: var(--teal);
  font-weight: 700;
}

.materials-tease {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}
.materials-pill {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d6b5c;
  background: rgba(46, 160, 140, 0.14);
  border: 1px solid rgba(46, 160, 140, 0.28);
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.materials-tease__list {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.materials-tease__more {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

/* legacy alias if any leftover markup */
.materials-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.55rem;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.steps-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.steps-list li::before {
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 184, 148, 0.14);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-box {
  background: rgba(0, 184, 148, 0.09);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem;
  color: var(--ink);
  font-weight: 500;
}
.why-box p { margin: 0; }

.objectives-box {
  margin-top: 1.75rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--border);
}
.objectives-box h2 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--heading-deep);
}
.obj-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}
.obj-chip {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(9, 132, 227, 0.1);
  color: var(--blue);
}
.objectives-box ul.obj-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.objectives-box li { margin: 0.55rem 0; padding: 0; }
.obj-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.obj-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.12rem;
  font-weight: 500;
}

.watch-box,
.safety-box,
.tomorrow-box,
.variations-box {
  margin-top: 1.25rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius-sm);
}
.watch-box { background: rgba(116, 185, 255, 0.12); }
.watch-box h2 { color: var(--blue); font-size: 1rem; margin-bottom: 0.4rem; }
.watch-box ul { margin: 0; padding-left: 1.15rem; }

.safety-box { background: rgba(33, 48, 77, 0.05); }
.safety-box h2 { font-size: 1rem; margin-bottom: 0.35rem; }
.safety-box p { margin: 0; }

.tomorrow-box {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}
.tomorrow-box h2 { font-size: 1rem; margin-bottom: 0.35rem; }
.tomorrow-box p { margin: 0; }

.variations-box {
  background: rgba(0, 184, 148, 0.06);
}
.variations-box h2 { font-size: 1rem; margin-bottom: 0.4rem; }
.variations-box ul { margin: 0; padding-left: 1.15rem; }

/* —— Coming soon —— */
.coming-soon {
  max-width: 640px;
  margin: 2rem auto;
  text-align: center;
}
.coming-soon__visual {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
}
.coming-soon__framework {
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 0 0 1.25rem;
}

/* —— About —— */
.about-layout { max-width: 720px; }
.about-prose {
  padding: 2.15rem 2.35rem;
}
.about-prose p {
  margin: 0 0 1.15rem;
  max-width: 40em;
}

.muted { color: var(--muted); }
.hidden { display: none !important; }

.view { animation: fadeIn 0.2s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 699px) {
  :root {
    --gutter: 1.2rem;
    --tap: 48px;
  }
  main { padding: 1.35rem var(--gutter) 3.5rem; }
  .site-header__inner { padding: 0.85rem var(--gutter); }
  h1 { font-size: clamp(1.85rem, 6vw, 2.2rem); }
  .age-cards { grid-template-columns: 1fr; }
  .province-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .detail-body { padding: 1.35rem 1.25rem 1.75rem; }
  .theme-shelves { grid-template-columns: 1fr 1fr; }
  .nav__province span { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* —— Print: materials checklist —— */
@media print {
  .site-header,
  .site-footer,
  .detail-back,
  .nav,
  .skip-link {
    display: none !important;
  }
  .detail-shell { max-width: none; }
  .detail-card {
    border: none;
    box-shadow: none;
  }
  .detail-hero { max-height: 180px; }
  .materials-panel {
    break-inside: avoid;
    border: 1.5px solid #222;
    background: #fff;
    box-shadow: none;
  }
  .materials-checklist li {
    background: #fff;
    border-color: #bbb;
  }
  .materials-check {
    border-color: #222;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .materials-print-note { color: #444; }
  .materials-count {
    border-color: #222;
    color: #111;
    background: #eee;
  }
}
