.weekly-reflection-page .reset-hero-copy h1 {
  max-width: 12ch;
}

.weekly-reflection-page .reset-hero-card {
  transform: rotate(-1deg);
}

.reflection-method {
  margin-bottom: 1rem;
}

.reflection-method-heading,
.weekly-reflection-tool-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.reflection-method-heading h2,
.weekly-reflection-tool-heading h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.045em;
}

.reflection-method-heading > p,
.weekly-reflection-tool-heading > div > p:not(.eyebrow) {
  max-width: 26rem;
  color: var(--reset-muted);
  line-height: 1.55;
}

.reflection-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reflection-method-grid li {
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  border: 1px solid var(--reset-line);
  border-radius: 1.2rem;
  background: rgba(255,255,255,.68);
}

.reflection-method-grid span,
.weekly-prompt-label span {
  color: #a55321;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.reflection-method-grid strong {
  margin-top: auto;
  font-size: 1.15rem;
}

.reflection-method-grid p {
  margin: .4rem 0 0;
  color: var(--reset-muted);
  line-height: 1.5;
}

.weekly-reflection-tool {
  margin-bottom: 1rem;
}

.weekly-reflection-tool-heading > div > p:not(.eyebrow) {
  margin-bottom: 0;
}

.weekly-reflection-tool-heading .secondary {
  flex: 0 0 auto;
}

.weekly-prompt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.weekly-prompt-card {
  min-width: 0;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  border: 1px solid var(--reset-line);
  border-radius: 1.35rem;
  background: rgba(255,255,255,.72);
}

.weekly-prompt-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.weekly-prompt-label strong {
  color: var(--reset-muted);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.weekly-prompt-card h3 {
  margin: 2.6rem 0 .65rem;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.weekly-prompt-card > p {
  min-height: 3rem;
  margin: 0 0 1rem;
  color: var(--reset-muted);
  line-height: 1.5;
}

.weekly-answer-label,
.weekly-next-step-field label {
  display: block;
  margin-top: auto;
  margin-bottom: .4rem;
  color: var(--reset-ink);
  font-size: .82rem;
  font-weight: 850;
}

.weekly-prompt-card textarea,
.weekly-next-step textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--reset-line);
  border-radius: .95rem;
  padding: .85rem;
  background: rgba(255,255,255,.9);
  color: var(--reset-ink);
  line-height: 1.5;
}

.weekly-print-answer {
  display: none;
}

.weekly-next-step {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  align-items: end;
  margin-top: 1rem;
  padding: 1.35rem;
  border-radius: 1.35rem;
  background: linear-gradient(145deg, rgba(255,240,223,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(244,162,97,.18);
}

.weekly-next-step h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.weekly-next-step > div > p:not(.eyebrow) {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--reset-muted);
  line-height: 1.55;
}

.weekly-next-step-field label {
  margin-top: 0;
}

.weekly-reflection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--reset-line);
}

.weekly-reflection-actions p {
  margin: 0 0 0 auto;
  color: var(--reset-muted);
  font-size: .82rem;
}

.weekly-context {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.weekly-context article {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 1.6rem;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.82);
}

.weekly-context article:nth-child(2) {
  background: rgba(226,239,232,.72);
}

.weekly-context h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.weekly-context article > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--reset-muted);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .reflection-method-heading,
  .weekly-reflection-tool-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .reflection-method-grid,
  .weekly-prompt-grid {
    grid-template-columns: 1fr;
  }

  .weekly-prompt-card {
    min-height: 0;
  }

  .weekly-prompt-card h3 {
    margin-top: 1.8rem;
  }

  .weekly-next-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .weekly-reflection-page .reset-hero-copy h1 {
    max-width: 11ch;
  }

  .reflection-method-grid li {
    min-height: 8rem;
  }

  .weekly-context {
    grid-template-columns: 1fr;
  }

  .weekly-reflection-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .weekly-reflection-actions button {
    width: 100%;
  }

  .weekly-reflection-actions p {
    margin-left: 0;
  }
}

@media print {
  @page {
    margin: 14mm;
  }

  body.weekly-reflection-page {
    background: #fff !important;
  }

  .weekly-reflection-page .ambient,
  .weekly-reflection-page .reset-topbar,
  .weekly-reflection-page .reset-breadcrumbs,
  .weekly-reflection-page .reset-hero-card,
  .weekly-reflection-page .reflection-method,
  .weekly-reflection-page .weekly-reflection-tool-heading button,
  .weekly-reflection-page .weekly-reflection-actions,
  .weekly-reflection-page .weekly-context,
  .weekly-reflection-page .reset-related,
  .weekly-reflection-page footer,
  .weekly-reflection-page [data-reflection-word-count] {
    display: none !important;
  }

  .weekly-reflection-page .reset-main {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .weekly-reflection-page .reset-hero {
    display: block;
    margin-bottom: 8mm;
  }

  .weekly-reflection-page .reset-hero-copy h1 {
    max-width: 13ch;
    font-size: 34pt;
  }

  .weekly-reflection-page .reset-standfirst {
    max-width: 100%;
    font-size: 11pt;
  }

  .weekly-reflection-page .reset-note {
    font-size: 9pt;
  }

  .weekly-reflection-tool {
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
  }

  .weekly-reflection-tool-heading {
    display: block;
    margin-bottom: 5mm;
  }

  .weekly-prompt-grid {
    grid-template-columns: 1fr;
    gap: 4mm;
  }

  .weekly-prompt-card {
    min-height: 0;
    break-inside: avoid;
    padding: 5mm;
    border: 1px solid #cbd5e1;
    background: #fff;
  }

  .weekly-prompt-card h3 {
    margin: 4mm 0 2mm;
    font-size: 17pt;
  }

  .weekly-prompt-card > p {
    min-height: 0;
    margin-bottom: 3mm;
    font-size: 9pt;
  }

  .weekly-answer-label,
  .weekly-prompt-card textarea,
  .weekly-next-step textarea,
  .weekly-next-step-field label {
    display: none !important;
  }

  .weekly-print-answer {
    display: block;
    min-height: 14mm;
    padding: 3mm 0;
    border-top: 1px solid #d7dee6;
    color: #1f2937;
    font-size: 10pt;
    line-height: 1.45;
    white-space: pre-wrap;
  }

  .weekly-next-step {
    break-inside: avoid;
    grid-template-columns: 1fr;
    margin-top: 5mm;
    padding: 5mm;
    border: 1px solid #d7dee6;
    background: #fff !important;
  }

  .weekly-next-step h3 {
    font-size: 18pt;
  }
}
