/* ============================================================
   Postcard from Thailand — Classroom
   Brand: deep temple crimson + warm cream, vintage-postcard feel
   ============================================================ */

:root {
  --crimson: #A5162A;        /* pulled from the logo circle */
  --crimson-deep: #7C0E1F;
  --crimson-soft: #C8324A;
  --cream: #FBF4E6;
  --cream-deep: #F3E7CE;
  --ink: #2A211B;
  --ink-soft: #5A4A3D;
  --gold: #C9962E;
  --paper-line: #E4D4B0;
  --teal: #2E6E63;           /* used sparingly for "nature" tag */
  --shadow: 0 10px 30px rgba(124, 14, 31, 0.12);
  --radius: 18px;
  --maxw: 1080px;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle postcard paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(201, 150, 46, 0.05) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(165, 22, 42, 0.05) 0, transparent 45%);
}

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

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

/* ---------- top bar ---------- */
.topbar {
  background: var(--crimson);
  color: var(--cream);
  border-bottom: 4px solid var(--gold);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.topbar img { width: 46px; height: 46px; }
.topbar .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.topbar .brand-text .kicker {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
}
.topbar .brand-text .sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-deep);
  opacity: 0.9;
}
.topbar nav { margin-left: auto; display: flex; gap: 1.2rem; }
.topbar nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.9;
}
.topbar nav a:hover { opacity: 1; text-decoration: underline; }

/* ---------- shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 2.5rem 0; }

.eyebrow {
  font-family: var(--body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--crimson);
}

h1, h2, h3 { font-family: var(--display); color: var(--ink); line-height: 1.15; }

/* ============================================================
   HOMEPAGE
   ============================================================ */
.hero {
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  padding: 3.5rem 1.25rem 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--paper-line);
}
.hero .logo-big {
  width: 132px; height: 132px;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 6px 18px rgba(124, 14, 31, 0.18));
}
.hero h1 {
  color: var(--crimson);
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero p.lead {
  max-width: 540px; margin: 0 auto;
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.intro-note {
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 1.4rem 0;
  margin: 3rem auto 0;
  max-width: 680px;
  font-size: 1rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.7;
}
.intro-note strong { color: var(--crimson); font-weight: 700; }

/* ---------- approach / trust note ---------- */
.approach-note {
  max-width: 680px;
  margin: 1.6rem auto 0;
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  text-align: left;
}
.approach-note h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.2rem;
  color: var(--crimson); margin-bottom: 0.6rem;
}
.approach-note p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; }
.approach-note p + p { margin-top: 0.7rem; }
.approach-note strong { color: var(--ink); }

/* film grid */
.grid-head { text-align: center; margin-bottom: 2.4rem; }
.grid-head h2 { font-size: 2rem; font-weight: 500; }
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.6rem;
}
.film-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(42, 33, 27, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--paper-line);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.film-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(42,33,27,0.12); }
.film-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--crimson) 0%, var(--crimson-deep) 100%);
  position: relative;
  display: grid; place-items: center;
}
.film-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.film-card .thumb .play {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.film-card .thumb .play::after {
  content: ""; margin-left: 4px;
  border-left: 18px solid var(--crimson);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.film-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.film-card h3 { font-size: 1.2rem; }
.film-card p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
.film-card .go {
  align-self: flex-start;
  font-weight: 800; font-size: 0.85rem;
  color: var(--crimson);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.22rem 0.6rem; border-radius: 999px;
}
.tag.history { background: #F6DEE2; color: var(--crimson-deep); }
.tag.nature  { background: #DCEDE6; color: var(--teal); }
.tag.myth    { background: #F3E6C9; color: #8a6a17; }

.film-card.coming { opacity: 0.6; pointer-events: none; }
.film-card.coming .thumb { background: var(--cream-deep); }
.film-card.coming .thumb .soon {
  font-family: var(--display); color: var(--ink-soft); font-size: 1rem; font-weight: 600;
}

/* ============================================================
   FILM PAGE
   ============================================================ */
.breadcrumb { padding: 1rem 0 0; font-size: 0.85rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; font-weight: 700; }
.breadcrumb a:hover { color: var(--crimson); }

.film-header { padding: 1.4rem 0 0.6rem; }
.film-header h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 600; }
.film-header .subtitle { color: var(--ink-soft); font-size: 1.05rem; margin-top: 0.4rem; }
.meta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; align-items: center; }
.meta-chip {
  background: #fff; border: 1px solid var(--cream-deep);
  border-radius: 999px; padding: 0.3rem 0.8rem;
  font-size: 0.78rem; font-weight: 700; color: var(--ink-soft);
}

/* sensitive-topic banner */
.care-banner {
  background: #FBEEDD;
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.care-banner .dot { color: var(--gold); font-size: 1.2rem; line-height: 1; }

/* video */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  margin: 0.6rem 0 1.6rem;
  border: 3px solid #fff;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* mode toggle */
.mode-toggle {
  display: flex; gap: 0.5rem; margin: 1.5rem 0 0.5rem;
  background: var(--cream-deep);
  padding: 0.35rem; border-radius: 999px; width: fit-content;
}
.mode-toggle button {
  border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 800; font-size: 0.9rem;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  background: transparent; color: var(--ink-soft);
}
.mode-toggle button.active { background: var(--crimson); color: #fff; box-shadow: var(--shadow); }

/* activity blocks */
.activity {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  margin: 1.2rem 0;
  border: 1px solid var(--cream-deep);
}
.activity h2 { font-size: 1.4rem; display: flex; align-items: center; gap: 0.6rem; }
.activity h2 .num {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--crimson); color: #fff;
  font-size: 0.95rem; font-family: var(--body); font-weight: 800;
  flex-shrink: 0;
}
.activity .band {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-soft); margin: 0.2rem 0 0.9rem 2.6rem;
}
.activity p.lead-q { font-size: 1.02rem; margin-bottom: 0.8rem; }

/* watch-for list */
.watchfor { list-style: none; display: grid; gap: 0.55rem; }
.watchfor li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--cream); border-radius: 10px; padding: 0.6rem 0.8rem;
}
.watchfor li .check {
  width: 22px; height: 22px; border: 2px solid var(--crimson); border-radius: 6px;
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
  display: grid; place-items: center; font-weight: 900; color: transparent;
  transition: 0.12s;
}
.watchfor li .check.ticked { background: var(--crimson); color: #fff; }

/* question cards with reveal */
.q-card {
  border: 1px solid var(--cream-deep);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin: 0.7rem 0;
  background: var(--cream);
}
.q-card .q { font-weight: 700; }
.q-card .band-pill {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem; border-radius: 999px; margin-left: 0.5rem; vertical-align: middle;
}
.band-pill.ks2 { background: #F6DEE2; color: var(--crimson-deep); }
.band-pill.ks3 { background: #E7DFF3; color: #55408f; }
.q-card .reveal-btn {
  margin-top: 0.7rem;
  background: none; border: 2px solid var(--crimson); color: var(--crimson);
  font-family: var(--body); font-weight: 800; font-size: 0.8rem;
  padding: 0.35rem 0.9rem; border-radius: 999px; cursor: pointer;
}
.q-card .reveal-btn:hover { background: var(--crimson); color: #fff; }
.q-card .answer {
  margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px dashed var(--paper-line);
  font-size: 0.94rem; color: var(--ink-soft); display: none;
}
.q-card .answer.show { display: block; }
.q-card .answer strong { color: var(--crimson); }

/* quiz */
.quiz-q { margin: 1.1rem 0; }
.quiz-q .qtext { font-weight: 700; margin-bottom: 0.5rem; }
.quiz-opts { display: grid; gap: 0.5rem; }
.quiz-opt {
  text-align: left; cursor: pointer;
  border: 2px solid var(--cream-deep); background: #fff;
  border-radius: 10px; padding: 0.6rem 0.9rem;
  font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  transition: 0.12s;
}
.quiz-opt:hover { border-color: var(--crimson-soft); }
.quiz-opt.correct { border-color: var(--teal); background: #E4F1EC; }
.quiz-opt.wrong { border-color: var(--crimson); background: #FbeAED; }
.quiz-fb { margin-top: 0.5rem; font-size: 0.9rem; font-weight: 700; display: none; }
.quiz-fb.show { display: block; }

/* creative task */
.task-box {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-top: 0.6rem;
}
.write-lines { margin-top: 0.9rem; }
.write-lines .line {
  border-bottom: 1.5px solid var(--paper-line);
  height: 2.6rem;
}

/* print controls */
.print-bar {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center;
  background: var(--crimson);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.6rem 0;
}
.print-bar p { flex: 1; min-width: 220px; font-size: 0.92rem; }
.print-bar button {
  background: var(--gold); color: var(--ink);
  border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 800; font-size: 0.95rem;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.print-bar button:hover { background: #dfae4b; }

footer.site {
  background: var(--crimson-deep);
  color: var(--cream-deep);
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}
footer.site a { color: var(--gold); }

/* ============================================================
   MODE SWITCHING
   ============================================================ */
body.mode-print .screen-only { display: none !important; }
body:not(.mode-print) .print-only { display: none !important; }
/* on-screen worksheet preview: reveal the print-only bits */
body.mode-print .worksheet-head { display: block !important; }
body.mode-print .write-lines { display: block !important; }
/* keep the toggle usable while previewing */
body.mode-print .mode-toggle { display: flex !important; }

/* ============================================================
   PRINT WORKSHEET — colourful & branded
   ============================================================ */
@media print {
  @page { margin: 1.4cm; }

  /* hide interactive-only chrome */
  .topbar, .breadcrumb, .video-frame, .mode-toggle, .print-bar,
  .care-banner, footer.site, .reveal-btn, .hero .stamp,
  .meta-row { display: none !important; }

  body {
    background: #fff;
    color: var(--ink);
    font-size: 10.5pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body::before { display: none; }

  /* keep brand colour on print */
  .film-header h1 { color: var(--crimson) !important; }
  .eyebrow { color: var(--crimson) !important; }

  /* branded worksheet banner */
  .worksheet-head { display: block !important; }

  /* activity cards keep their colour, avoid breaking across pages */
  .activity {
    box-shadow: none;
    border: 1.5px solid var(--paper-line);
    border-top: 4px solid var(--crimson);
    break-inside: avoid;
    padding: 1rem 1.1rem;
    margin: 0.9rem 0;
  }
  .activity h2 { color: var(--ink); }
  .activity h2 .num { background: var(--crimson) !important; color: #fff !important; }

  .q-card {
    background: var(--cream) !important;
    border: 1px solid var(--paper-line);
    break-inside: avoid;
  }
  .band-pill.ks2 { background: #F6DEE2 !important; color: var(--crimson-deep) !important; }
  .band-pill.ks3 { background: #E7DFF3 !important; color: #55408f !important; }

  .quiz-q { break-inside: avoid; }
  .quiz-opt { border: 1.5px solid var(--cream-deep) !important; background:#fff !important; color:var(--ink) !important; }
  .quiz-fb { display: none !important; }

  .task-box {
    background: var(--cream) !important;
    border: 2px dashed var(--gold) !important;
    break-inside: avoid;
  }

  .answer { display: none !important; }
  .print-only { display: block !important; }
  a { color: var(--ink); text-decoration: none; }
  .write-lines .line { border-bottom: 1.2px solid var(--paper-line); }
  .watchfor li { background: var(--cream) !important; }
  .watchfor li .check { border-color: var(--crimson); }
}

/* ---------- branded worksheet header (shown in print + worksheet preview) ---------- */
.worksheet-head { display: none; }
.worksheet-head .ws-brand {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--crimson);
  color: var(--cream);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.9rem;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}
.worksheet-head .ws-brand img { width: 52px; height: 52px; flex-shrink: 0; }
.worksheet-head .ws-brand .ws-title { font-family: var(--display); font-weight: 600; font-size: 1.15rem; line-height: 1.15; }
.worksheet-head .ws-brand .ws-sub { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.9; }
.worksheet-head .ws-brand .ws-topic {
  margin-left: auto; text-align: right;
  font-size: 0.78rem; font-weight: 700; color: #fff;
  max-width: 40%;
}
.worksheet-head .name-row {
  display: flex; gap: 1.4rem; margin: 0 0 1.2rem;
  font-size: 0.9rem; font-weight: 700; color: var(--ink-soft);
}
.worksheet-head .name-row span { flex: 1; border-bottom: 1.5px solid var(--crimson); padding-bottom: 3px; }

/* ---------- worksheet-choice buttons on the film page ---------- */
.ws-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.ws-link {
  display: flex; flex-direction: column; gap: 0.25rem;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--paper-line);
  border-left: 5px solid var(--crimson);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.ws-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,33,27,0.12); }
.ws-link .ws-band {
  font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--crimson);
}
.ws-link .ws-desc { font-size: 0.85rem; color: var(--ink-soft); }
.ws-link .ws-cta { margin-top: 0.3rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- standalone worksheet page ---------- */
.ws-page { max-width: 820px; margin: 0 auto; padding: 1.5rem 1.25rem 3rem; }
.ws-page .ws-toolbar {
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center;
  margin-bottom: 1.4rem;
}
.ws-page .ws-toolbar a {
  text-decoration: none; font-weight: 700; font-size: 0.88rem; color: var(--ink-soft);
}
.ws-page .ws-toolbar a:hover { color: var(--crimson); }
.ws-page .ws-toolbar .print-now {
  margin-left: auto;
  background: var(--gold); color: var(--ink); border: 0; cursor: pointer;
  font-family: var(--body); font-weight: 800; font-size: 0.92rem;
  padding: 0.65rem 1.3rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ws-page .ws-toolbar .print-now:hover { background: #dfae4b; }
.ws-page .ws-tip { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 1rem; }
.ws-page .ws-tip strong { color: var(--crimson); }

/* on a worksheet page, the question cards always show (no reveal), answers hidden */
.ws-page .answer { display: none !important; }
.ws-page .reveal-btn { display: none !important; }
.ws-page .quiz-fb { display: none !important; }

@media print {
  .ws-page .ws-toolbar, .ws-page .ws-tip { display: none !important; }
  .ws-page { padding: 0; max-width: 100%; }
}

/* ---------- fun puzzles ---------- */
.wordsearch {
  border-collapse: collapse;
  margin: 0.8rem auto;
  font-family: var(--body);
}
.wordsearch td {
  width: 26px; height: 26px;
  text-align: center; vertical-align: middle;
  font-size: 0.92rem; font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--paper-line);
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}
.wordbank {
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem;
  justify-content: center;
  margin-top: 0.8rem;
}
.wordbank span {
  background: var(--cream); border: 1px solid var(--crimson);
  color: var(--crimson-deep); font-weight: 700; font-size: 0.82rem;
  padding: 0.2rem 0.6rem; border-radius: 999px;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}

/* sorting / matching puzzle */
.sort-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 0.6rem; }
.sort-col { border: 1.5px solid var(--paper-line); border-radius: 10px; padding: 0.7rem 0.8rem; background: var(--cream); }
.sort-col h4 { font-family: var(--body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.sort-col.myth h4 { color: var(--crimson); }
.sort-col.true h4 { color: var(--teal); }
.sort-item { font-size: 0.9rem; padding: 0.35rem 0; border-bottom: 1px dashed var(--paper-line); }
.sort-item:last-child { border-bottom: 0; }
.sort-item::before { content: "☐ "; color: var(--ink-soft); }

/* transfer / "think beyond" task */
.transfer-box {
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  margin-top: 0.6rem;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}
.transfer-box .badge {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.6rem;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}

/* ---------- worksheet landing page ---------- */
.landing-hero {
  background: var(--crimson);
  color: var(--cream);
  padding: 2.4rem 1.25rem 2.6rem;
  text-align: center;
}
.landing-hero .band-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.landing-hero h1 { color: #fff; font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.landing-hero p { color: rgba(251,244,230,0.85); max-width: 560px; margin: 0 auto; }

.download-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-top: 5px solid var(--gold);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(42,33,27,0.1);
  padding: 1.6rem;
  text-align: center;
  max-width: 560px;
  margin: -1.6rem auto 2.5rem;
  position: relative;
}
.download-card h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.4rem; }
.download-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.2rem; }
.dl-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.btn-primary, .btn-secondary {
  text-decoration: none;
  font-family: var(--body); font-weight: 800; font-size: 0.95rem;
  padding: 0.75rem 1.4rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary { background: var(--crimson); color: #fff; box-shadow: 0 4px 12px rgba(124,14,31,0.25); }
.btn-primary:hover { background: var(--crimson-deep); }
.btn-secondary { background: var(--cream-deep); color: var(--ink); border: 1px solid var(--paper-line); }
.btn-secondary:hover { background: #eaddc0; }

.info-block { max-width: 720px; margin: 0 auto; }
.info-block h3 { font-size: 1.35rem; font-weight: 600; margin: 2rem 0 0.8rem; color: var(--crimson); }
.info-block h3:first-child { margin-top: 0; }

.includes-list { list-style: none; display: grid; gap: 0.7rem; }
.includes-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--paper-line);
  border-radius: 12px; padding: 0.9rem 1.1rem;
}
.includes-list li .n {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--crimson); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 0.9rem;
}
.includes-list li .t strong { display: block; color: var(--ink); }
.includes-list li .t span { font-size: 0.9rem; color: var(--ink-soft); }

.curriculum {
  background: var(--cream-deep);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  margin: 1rem 0;
}
.curriculum ul { margin: 0.6rem 0 0 1.1rem; }
.curriculum li { margin-bottom: 0.4rem; font-size: 0.94rem; color: var(--ink-soft); }
.curriculum li strong { color: var(--ink); }

.how-steps { counter-reset: step; display: grid; gap: 0.7rem; margin-top: 0.6rem; }
.how-steps .step {
  display: flex; gap: 0.9rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--ink-soft);
}
.how-steps .step::before {
  counter-increment: step; content: counter(step);
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem;
}

/* ---------- draw-and-write: generous drawing area ---------- */
.draw-area {
  border: 2px dashed var(--gold);
  border-radius: 10px;
  background: #fff;
  height: 340px;
  margin: 0.8rem 0;
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
}
@media print {
  /* start the drawing task on a fresh page and fill it */
  .draw-page { break-before: page; page-break-before: always; break-inside: avoid; }
  .draw-page .draw-area { height: 16cm; }
}
