/* Chalk Rebels Brand Guidelines - data/raw/brand-guidelines/ChalkRebels-Brand-Guidelines.pdf */

/* Helvetica Now trick: same as chalkrebels.com – font files named to match
   what the original Shopify theme expects. Place .otf files in /fonts/ */
@font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/HelveticaNowText-Regular.otf) format("opentype");
}
@font-face {
  font-family: Helvetica;
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/HelveticaNowText-Medium.otf) format("opentype");
}
@font-face {
  font-family: Helvetica;
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/HelveticaNowText-Bold.otf) format("opentype");
}
@font-face {
  font-family: Akko;
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/HelveticaNowDisplay-Regular.otf) format("opentype");
}
@font-face {
  font-family: Akko;
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/HelveticaNowDisplay-Bold.otf) format("opentype");
}

:root {
  --chalk-flax: #F9DF74;
  --chalk-jet: #343434;
  --chalk-white: #FFFFFF;
  --chalk-black: #000000;
  --chalk-turquoise: #A7DCB8;
  --chalk-tart: #F75550;
  --chalk-powder: #A1CCCE;
  --chalk-border: #d1d1d1;
  --chalk-footer-bg: #f8f8f8;
  --chalk-footer-text: #404040;
  --chalk-body: 16px;
  --chalk-line: 1.65;
  --chalk-prose-width: 65ch;
}

* { box-sizing: border-box; }

/* Main body text - matches chalkrebels.com (Helvetica = Helvetica Now) */
body,
input,
textarea,
button,
select {
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #2f2f2f;
  line-height: 1.5;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--chalk-white);
  margin: 0;
}

/* Announcement bar - Flax bg, Jet text */
.chalk-announcement {
  font-family: Akko, Helvetica, Arial, sans-serif;
  background-color: var(--chalk-flax);
  color: var(--chalk-jet);
  text-align: center;
  font-weight: 700;
  padding: 10px 1rem;
  letter-spacing: 0.05em;
}

.chalk-announcement a {
  color: var(--chalk-jet);
  text-decoration: none;
}

/* Header - border edge-to-edge, content max-width */
.chalk-header {
  width: 100%;
}

.chalk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.chalk-logo {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.chalk-logo a {
  color: var(--chalk-jet);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.chalk-logo__img {
  height: 40px;
  width: auto;
  display: block;
}

.chalk-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top nav bar - matches chalkrebels.com (Helvetica = Helvetica Now via @font-face) */
.chalk-nav a {
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #2f2f2f;
  line-height: 1.5;
  text-decoration: none;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.chalk-nav a:hover {
  text-decoration: underline;
}

/* Hamburger toggle - hidden on desktop */
.chalk-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 11;
  transition: gap 0.2s ease;
}

.chalk-nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chalk-jet);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.chalk-header--nav-open .chalk-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.chalk-header--nav-open .chalk-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.chalk-header--nav-open .chalk-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main content - page width per guidelines */
.chalk-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Inner content wrapper for tools/skills/gyms pages – match blog width */
.chalk-main-inner {
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}

.chalk-main h1,
.chalk-collection-hero__title,
.chalk-collection-hero__subtitle {
  font-family: Akko, Helvetica, Arial, sans-serif;
}

.chalk-main h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 0;
  line-height: 1.2;
}

.chalk-main h2,
.chalk-home-climbers__title,
.chalk-home-commitments__title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.chalk-main p {
  margin: 0 0 1.25rem;
}

.chalk-main a {
  color: var(--chalk-jet);
  text-decoration: underline;
}

.chalk-main ul {
  line-height: var(--chalk-line);
}

/* Blog article header: centered title and date */
.chalk-article--blog .chalk-article-header,
.chalk-article--blog .chalk-article-header h1,
.chalk-article--blog .chalk-article-header time {
  text-align: center;
}
.chalk-article--blog .chalk-article-header time {
  display: block;
  margin-top: 0.5rem;
}
.chalk-article--blog .chalk-article-header .chalk-collection-hero {
  margin-bottom: 1.5rem;
}
/* Space between date and content - use padding to avoid margin collapse */
.chalk-article--blog .chalk-article-header + .chalk-prose {
  padding-top: 2.5rem;
}
/* Blog article images: centered */
.chalk-article--blog .chalk-prose img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Footer-linked pages (FAQ, Distribution, etc.): centered title */
.chalk-article--footer-page .chalk-article-header,
.chalk-article--footer-page .chalk-article-header h1 {
  text-align: center;
}

/* Plans pages (e.g. weekly plan): centered title, like gym/blog */
.chalk-article--plans .chalk-article-header,
.chalk-article--plans .chalk-article-header h1 {
  text-align: center;
}
.plan-header-subtitle {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--chalk-muted, #555);
  text-align: center;
}
.chalk-article--plans .chalk-article-header time,
.chalk-article--plans .chalk-article-header .chalk-article__plan-meta {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95em;
  color: var(--chalk-muted, #555);
}

/* Plan tabs */
.plan-tabs {
  margin-top: 1.5rem;
}
.plan-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.plan-tabs > label {
  display: inline-block;
}
.plan-tabs label {
  padding: 0.5rem 1rem;
  font-size: 0.9em;
  font-weight: 500;
  color: var(--chalk-muted, #555);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.plan-tabs label:hover {
  color: var(--chalk-text, #333);
}
.plan-tabs input:checked + label {
  color: var(--chalk-text, #333);
  border-bottom-color: var(--chalk-text, #333);
}
.plan-tab-panel {
  display: none;
  width: 100%;
  padding-top: 1.5rem;
}
#plan-panel-plan .chalk-prose {
  text-align: left;
}
#plan-panel-skills .chalk-prose,
#plan-panel-howto .chalk-prose {
  text-align: left;
}
/* Skills and Info: same constrained width and right alignment as Plan content */
.plan-panel-body {
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}
.plan-tabs #plan-tab-plan:checked ~ #plan-panel-plan,
.plan-tabs #plan-tab-skills:checked ~ #plan-panel-skills,
.plan-tabs #plan-tab-howto:checked ~ #plan-panel-howto {
  display: block;
}

/* No horizontal rules in plan tab content */
.plan-tab-panel .chalk-prose hr {
  display: none;
}

/* Debug nav: stage links at bottom of plan pages */
.plan-debug-nav {
  font-size: 10px;
  color: var(--chalk-muted, #888);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}
.plan-debug-nav a {
  color: var(--chalk-muted, #888);
  text-decoration: none;
}
.plan-debug-nav a:hover {
  text-decoration: underline;
  color: var(--chalk-text, #333);
}

/* Initial plan page: invite + markdown body, no tabs */
.plan-initial-content {
  margin-top: 1.5rem;
  text-align: left;
}
.plan-initial-invite {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Form variants: initial, checkin, weekly (separate partials) */
.site-footer__signup-form--initial .wr-section__content--initial-four {
  grid-template-columns: repeat(4, 1fr);
}
.site-footer__signup-form--checkin .wr-section__content--checkin-fields {
  grid-template-columns: repeat(2, 1fr);
}
.site-footer__signup-form--weekly-review .wr-section--weekly-experience .wr-section__content {
  grid-template-columns: repeat(4, 1fr);
}

/* Plan dashboard card */
.plan-dashboard-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--chalk-border, #e5e5e5);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}
.plan-dashboard-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--chalk-border, #eee);
}
.plan-dashboard-card__phase {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chalk-muted, #666);
}
.plan-dashboard-card__range {
  font-size: 0.85rem;
  color: var(--chalk-muted, #666);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-dashboard-card__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1rem;
}
.plan-dashboard-card__bar {
  width: 6px;
  border-radius: 2px;
  background: #e0e0e0;
  min-height: 4px;
}
.plan-dashboard-card__bar--filled { background: #a7dcb8; } /* L 1-4 green */
.plan-dashboard-card__bars--fill-2 .plan-dashboard-card__bar--filled { background: #f9df74; } /* M 5-7 yellow */
.plan-dashboard-card__bars--fill-3 .plan-dashboard-card__bar--filled { background: #e67e22; } /* H 8-9 orange */
.plan-dashboard-card__bars--fill-4 .plan-dashboard-card__bar--filled { background: #c0392b; } /* P 10 red */
.plan-dashboard-card__bar:nth-child(1) { height: 0.4rem; }
.plan-dashboard-card__bar:nth-child(2) { height: 0.6rem; }
.plan-dashboard-card__bar:nth-child(3) { height: 0.8rem; }
.plan-dashboard-card__bar:nth-child(4) { height: 1rem; }
.plan-dashboard-card__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.plan-dashboard-card__metric {
  text-align: center;
  padding: 0 0.75rem;
  border-right: 1px solid var(--chalk-border, #eee);
}
.plan-dashboard-card__metric--last {
  border-right: none;
}
.plan-dashboard-card__metric-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--chalk-muted, #888);
  margin-bottom: 0.25rem;
}
.plan-dashboard-card__metric-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chalk-text, #222);
}
.plan-dashboard-card__metric-icon {
  font-size: 1.25rem;
  font-weight: 400;
}
.plan-dashboard-card__week-row {
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid var(--chalk-border, #eee);
  min-width: 0;
}

.plan-subsection {
  margin-top: 1.5rem;
}
.plan-subsection h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--chalk-muted, #666);
}

/* Table of contents (plan pages with toc: true) */
.table-of-contents {
  max-width: var(--chalk-prose-width);
  margin: 1.5rem auto;
}
.table-of-contents__details {
  background: var(--chalk-muted-bg, #f5f5f5);
  border-radius: 4px;
  border: 1px solid var(--chalk-border, #eee);
}
.table-of-contents__summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chalk-jet, #343434);
  cursor: pointer;
  list-style: none;
  text-align: left;
}
.table-of-contents__summary::-webkit-details-marker {
  display: none;
}
.table-of-contents__summary::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.2s ease;
}
.table-of-contents__details[open] .table-of-contents__summary::before {
  transform: rotate(90deg);
}
.table-of-contents__nav {
  padding: 0 1.25rem 1rem;
  text-align: left;
}
.table-of-contents__content {
  font-size: 0.9rem;
}
.table-of-contents__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.table-of-contents__content li {
  margin-bottom: 0.35rem;
}
.table-of-contents__content li ul {
  margin-left: 1rem;
  margin-top: 0.25rem;
}
.table-of-contents__content a {
  color: var(--chalk-jet, #343434);
  text-decoration: none;
}
.table-of-contents__content a:hover {
  text-decoration: underline;
}

/* Skills collection (SKILLS tab): same chrome as TOC + category headings */
.table-of-contents--skills-collection .skills-collection__nav {
  padding-top: 0.25rem;
}
.table-of-contents--skills-collection .skills-collection__cat {
  margin: 0.85rem 0 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chalk-muted, #666);
}
.table-of-contents--skills-collection .skills-collection__cat:first-child {
  margin-top: 0;
}
.table-of-contents--skills-collection .skills-collection__cat:not(:first-child) {
  border-top: 1px solid var(--chalk-border, rgba(0, 0, 0, 0.08));
  margin-top: 0.85rem;
  padding-top: 0.7rem;
}
/* List: left indent + bullets; no extra top gap under category label */
.table-of-contents--skills-collection .skills-collection__list {
  list-style: disc;
  list-style-position: outside;
  margin: 0 0 0.25rem;
  padding: 0 0 0 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem 1.25rem;
  align-items: start;
}
.table-of-contents--skills-collection .skills-collection__list > li {
  display: list-item;
  margin-bottom: 0;
}
.table-of-contents--skills-collection .skills-collection__list > li:first-child {
  margin-top: 0;
}
@media (min-width: 640px) {
  .table-of-contents--skills-collection .skills-collection__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .table-of-contents--skills-collection .skills-collection__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Skills list source page: plan header is centered globally; body content should read left-aligned */
.chalk-article--plan-skillslist .plan-content {
  text-align: left;
}

/* Skills library source page (00skls): headings + plain links, no list chrome */
.skill-library-inline__heading {
  margin: 1rem 0 0.35rem;
}
.skill-library-inline__heading:first-child {
  margin-top: 0;
}
.skill-library-inline__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0;
}

.plan-panel-anchor {
  display: block;
  height: 0;
  overflow: hidden;
}

.plan-pullquote {
  width: 100%;
  max-width: var(--chalk-prose-width);
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  background: var(--chalk-muted-bg, #f5f5f5);
  border-left: 4px solid var(--chalk-border, #ddd);
  font-size: 1.1em;
  font-style: italic;
  color: var(--chalk-muted, #555);
}

/* All blockquotes in plan tabs use pullquote style */
.plan-tab-panel blockquote {
  width: 100%;
  max-width: var(--chalk-prose-width);
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  background: var(--chalk-muted-bg, #f5f5f5) !important;
  border: none !important;
  border-left: 4px solid var(--chalk-border, #ddd) !important;
  font-size: 1.1em;
  font-style: italic;
  color: var(--chalk-muted, #555);
}

/* Prose / long-form content - constrained width for readability (~65 chars/line) */
.chalk-prose {
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}

/* CTAs - Flax bg, Black text */
.chalk-btn {
  display: inline-block;
  background-color: var(--chalk-flax);
  color: var(--chalk-black);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.chalk-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Buttons in main must not inherit .chalk-main a underline */
.chalk-main .chalk-btn {
  text-decoration: none;
}

/* Footer - matches chalkrebels.com site-footer */
.site-footer.chalk-footer,
.chalk-footer {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--chalk-footer-bg);
  color: #000000;
  border-top: 1px solid var(--chalk-border);
  padding: 2rem 0 0 0;
  margin-top: 1.5rem;
}

.site-footer p,
.site-footer h4,
.site-footer small {
  color: #000000;
}

.site-footer a {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  color: #000000;
  text-decoration: none;
}

.site-footer a:hover {
  color: #404040;
}

.site-footer__content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.site-footer__content:has(.site-footer__signup--weekly) {
  text-align: left;
}

.site-footer__bottom-bar {
  width: 100%;
  background: #ffffff;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid #dfdfdf;
}

/* Gyms signup footer section */
.site-footer__signup {
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  padding: 1.5rem 1rem;
  background: var(--chalk-footer-bg);
  border-radius: 4px;
}
/* Weekly review form: constrain to content width, grid layout on desktop */
.site-footer__signup--weekly {
  max-width: min(65ch, 720px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.site-footer__signup-form--weekly {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
}
.wr-form__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-align: center;
  width: 100%;
}
.wr-debug-row {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.wr-debug-row .wr-debug-toggle[aria-pressed="true"] {
  font-weight: 600;
}
.wr-form__intro {
  margin: 0 0 1.5rem;
  color: var(--chalk-muted, #555);
  line-height: 1.5;
  text-align: center;
}
.site-footer__signup-form--weekly > .chalk-btn {
  align-self: center;
  margin-top: 1.5rem;
}

/* Plan signup form: centered layout */
.site-footer__signup-form--plan-signup {
  text-align: center;
  align-items: center;
}
.site-footer__signup-form--plan-signup .wr-form__intro {
  text-align: center;
  width: 100%;
}
.site-footer__signup-form--plan-signup .site-footer__signup-form__field {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.site-footer__signup-form--plan-signup .site-footer__signup-form__field input {
  width: 100%;
  box-sizing: border-box;
}
.site-footer__signup-form--plan-signup .site-footer__signup-meta {
  text-align: center;
}

/* Section blocks */
.wr-section {
  padding-bottom: 1.5rem;
}
.wr-section:last-of-type {
  padding-bottom: 0;
}
.wr-section__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chalk-muted, #555);
  margin: 0 0 0.5rem;
  text-align: left;
}
.wr-section__intro {
  font-size: 13px;
  line-height: 1.45;
  color: var(--chalk-muted, #555);
  margin: 0 0 0.75rem;
  text-align: left;
}
.wr-section__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
.wr-section__content--experience {
  grid-template-columns: repeat(2, 1fr);
}
/* Full review: experience section spans full width like wellness/sessions below */
.wr-mode--weekly .wr-experience-grid {
  grid-template-columns: 1fr;
}
.wr-mode--weekly .wr-experience-grid .wr-section__title--experience,
.wr-mode--weekly .wr-experience-grid .wr-experience-fields,
.wr-mode--weekly .wr-experience-grid .wr-how-to-report__title,
.wr-mode--weekly .wr-experience-grid .wr-how-to-report__text {
  grid-column: 1;
}
.wr-mode--weekly .wr-section__content--experience {
  grid-template-columns: repeat(4, 1fr);
}
/* Override weekly form's min-width:0 so Skills dropdown doesn't truncate */
.site-footer__signup-form--weekly .wr-section--experience .site-footer__signup-form__field select {
  min-width: 10rem;
  width: 100%;
}
/* Check-in mode: both sections share same width so "How to report" columns align */
.wr-mode--checkin .wr-section--experience,
.wr-mode--checkin .wr-section--done {
  width: 100%;
}
.wr-mode--checkin .wr-section--weekly-only,
.wr-mode--checkin .wr-field--weekly-only {
  display: none;
}
/* Initial mode: show XP, current, max (override checkin hide); hide How to report; single-column experience */
.wr-mode--initial .wr-field--initial-only {
  display: block !important;
}
.wr-mode--initial .wr-field--initial-hide,
.wr-mode--initial .wr-section--initial-hide {
  display: none !important;
}
.wr-mode--initial .wr-experience-grid {
  grid-template-columns: 1fr;
}
.wr-mode--initial .wr-section__content--experience {
  grid-template-columns: repeat(3, 1fr);
}
.wr-experience-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: auto auto;
  gap: 0 2rem;
  row-gap: 0.5rem;
  align-items: start;
  width: 100%;
}
.wr-experience-grid .wr-section__title--experience {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.wr-experience-grid .wr-how-to-report__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.wr-experience-grid .wr-experience-fields {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}
.wr-experience-grid .wr-how-to-report__text {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--chalk-muted, #555);
  margin: 0;
}
.wr-debug-toggle {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--chalk-muted, #555);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}
.wr-debug-toggle:hover {
  color: var(--chalk-text, #333);
}
.wr-debug-content {
  margin-top: 0.5rem;
}
.wr-section--debug .wr-section__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wr-debug__subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chalk-muted, #555);
  margin: 1rem 0 0.5rem;
  width: 100%;
}
.wr-section--debug .wr-debug__subtitle:first-of-type {
  margin-top: 0;
}
.wr-debug__value--long {
  word-break: break-all;
  max-width: 100%;
}
.wr-section--sessions .wr-section__content {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}
.wr-section--sessions .wr-section__content .site-footer__signup-form__field {
  flex: 1;
  min-width: 0;
}
.wr-section--done .wr-section__content {
  grid-template-columns: 1fr;
  justify-items: start;
}
.wr-section--done .wr-section__content--done {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: auto auto;
  gap: 0 2rem;
  row-gap: 0.5rem;
  align-items: start;
  width: 100%;
}
.wr-section--done .wr-section__title--done {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.wr-section--done .wr-how-to-report__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.wr-section--done .wr-done-days {
  grid-column: 1;
  grid-row: 2;
}
.wr-section--done .wr-how-to-report__text {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  max-width: 280px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--chalk-muted, #555);
  margin: 0;
}

.site-footer__signup-form--weekly .site-footer__signup-form__field {
  min-width: 0;
}
.site-footer__signup-form--weekly .site-footer__signup-form__field select {
  width: 100%;
  min-width: 0;
}
.site-footer__signup-form--weekly .site-footer__signup-form__wellness {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  grid-column: 1 / -1;
}
.site-footer__signup-copy h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.site-footer__signup-copy p {
  margin: 0 0 1rem;
}
.site-footer__signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.site-footer__signup-form.site-footer__signup-form--weekly {
  justify-content: flex-start;
  align-items: flex-start;
}
.site-footer__signup-form input[type="email"] {
  min-width: 220px;
  max-width: 320px;
  padding: 10px 12px;
  border: 1px solid #909090;
  border-radius: 2px;
  font-size: 16px;
}
/* Day buttons for weekly done (R/L/M/H) */
.site-footer__signup-form__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px 8px;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__signup-form--weekly .site-footer__signup-form__days {
  margin-left: 0;
  margin-right: 0;
}
.site-footer__signup-form__days-label {
  font-size: 11px;
  color: var(--chalk-muted, #555);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}
.site-footer__signup-form--weekly .site-footer__signup-form__days-label {
  text-align: left;
}
.wr-day-btn {
  appearance: none;
  background: #fff;
  border: 1px solid #909090;
  border-radius: 2px;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  cursor: pointer;
  min-width: 36px;
  transition: background 0.15s, border-color 0.15s;
}
.wr-day-btn:hover {
  background: #f5f5f5;
  border-color: #2f2f2f;
}
.wr-day-btn[data-val="L"] { background: #e8f4ea; border-color: #a7dcb8; }
.wr-day-btn[data-val="M"] { background: #f9df74; border-color: #e0c555; }
.wr-day-btn[data-val="H"] { background: #e67e22; color: #fff; border-color: #d35400; }
.wr-day-btn[data-val="P"] { background: #c0392b; color: #fff; border-color: #a93226; }
.wr-day-btn[data-val="R"] { background: #fff; border-color: #909090; color: #2f2f2f; }
.site-footer__signup-form__done-display {
  margin: 0.25rem 0 0;
  font-family: ui-monospace, monospace;
  font-size: 14px;
  color: var(--chalk-muted, #555);
}
.site-footer__signup-form__done-display span {
  letter-spacing: 0.2em;
}

/* Wellness row – fatigue, injury, peak side by side */
.site-footer__signup-form__wellness {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

/* User ID label – non-editable, full width at top */
.site-footer__signup-form__id {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 12px;
  color: var(--chalk-muted, #555);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer__signup-form__id-key {
  min-width: 1.5rem;
}
.site-footer__signup-form__id-value {
  font-family: ui-monospace, monospace;
  font-size: 14px;
  color: #2f2f2f;
  text-transform: none;
  letter-spacing: 0;
}

/* Grade dropdowns – match gyms page select styling */
.site-footer__signup-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}
.site-footer__signup-form__field select {
  appearance: none;
  background: #fff;
  color: #2f2f2f;
  border: 1px solid #909090;
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 16px;
  height: 44px;
  min-width: 120px;
}
.site-footer__signup-meta {
  width: 100%;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--chalk-footer-text);
}
@media (max-width: 640px) {
  .site-footer__signup-form {
    flex-direction: column;
    align-items: stretch;
  }
  .site-footer__signup-form input[type="email"] {
    width: 100%;
    max-width: none;
  }
  .site-footer__signup-form__field {
    width: 100%;
    min-width: 0;
  }
  .site-footer__signup-form--checkin .wr-section__content--checkin-fields {
    grid-template-columns: 1fr;
  }
  .site-footer__signup-form--initial .wr-section__content--initial-four {
    grid-template-columns: 1fr;
  }
  .site-footer__signup-form__field select {
    width: 100%;
    min-width: 0;
  }
  .site-footer__signup-form__wellness {
    flex-direction: column;
  }
  .wr-section__content {
    grid-template-columns: 1fr;
  }
  .wr-section__content--experience,
  .wr-mode--weekly .wr-section__content--experience,
  .site-footer__signup-form--weekly-review .wr-section--weekly-experience .wr-section__content {
    grid-template-columns: 1fr;
  }
  .wr-section--sessions .wr-section__content {
    flex-wrap: wrap;
  }
  .wr-section--sessions .wr-section__content .site-footer__signup-form__field {
    flex: 1 1 100%;
  }
  .wr-section--done .wr-section__content--done {
    grid-template-columns: 1fr;
  }
  .wr-section--done .wr-section__title--done {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }
  .wr-section--done .wr-done-days {
    grid-column: 1;
    grid-row: auto;
    order: 2;
  }
  .wr-section--done .wr-how-to-report__title {
    display: none;
  }
  .wr-section--done .wr-how-to-report__title,
  .wr-section--done .wr-how-to-report__text {
    max-width: 360px;
  }
  .wr-section--done .wr-how-to-report__text {
    grid-column: 1;
    grid-row: auto;
    order: 4;
  }
  .wr-experience-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .wr-experience-grid .wr-section__title--experience,
  .wr-experience-grid .wr-experience-fields,
  .wr-experience-grid .wr-how-to-report__text {
    grid-column: 1;
    grid-row: auto;
  }
  .wr-experience-grid .wr-how-to-report__title {
    display: none;
  }
  .wr-experience-grid .wr-how-to-report__text {
    max-width: 360px;
  }
  .site-footer__signup-form--weekly .site-footer__signup-form__wellness {
    grid-template-columns: 1fr;
  }
}

/* Weekly review form (workouts page) */
.weekly-review-form {
  max-width: 28rem;
  margin: 2rem 0;
}
.weekly-review-form__row {
  margin-bottom: 1rem;
}
.weekly-review-form__row label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}
.weekly-review-form input[type="email"],
.weekly-review-form input[type="text"],
.weekly-review-form input[type="number"],
.weekly-review-form select {
  width: 100%;
  max-width: 20rem;
  padding: 10px 12px;
  border: 1px solid #909090;
  border-radius: 2px;
  font-size: 16px;
}
.weekly-review-form__row--optional input {
  max-width: 6rem;
}

.site-footer__linklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 1.5rem;
}

.site-footer__linklist-item {
  margin: 0;
}

.site-footer__linklist a {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-footer__hr {
  border: none;
  border-bottom: 1px solid #dfdfdf;
  margin: 1.5rem auto;
  max-width: 1200px;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
}

.site-footer__social-link svg {
  width: 24px;
  height: 24px;
}

.site-footer__copyright {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.83333em;
  color: #000000;
}

.site-footer__copyright a {
  color: #000000;
}

.chalk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
}

@media (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
  }
}

/* Prose - blog/product content */
.chalk-prose img {
  max-width: 100%;
  height: auto;
}

.chalk-prose time {
  display: block;
  font-size: 0.9rem;
  color: var(--chalk-footer-text);
  margin-bottom: 1rem;
}

/* Markdown tables in prose (Benefits, FAQ, Details) */
.chalk-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.chalk-prose th,
.chalk-prose td {
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid var(--chalk-border);
}

.chalk-prose th {
  font-weight: 600;
  width: 40%;
}

.chalk-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--chalk-border);
}

.chalk-prose h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Order sheet page - blog-style layout, wider content for table */
.chalk-order-sheet .chalk-order-sheet__body {
  max-width: 55rem;
}
.chalk-order-sheet__table table {
  border-collapse: separate;
  border-spacing: 0.5em 0;
  margin: 1rem 0;
  width: 100%;
}
.chalk-order-sheet__table td,
.chalk-order-sheet__table th {
  padding-left: 0.75em;
  padding-right: 0.75em;
  border-bottom: none;
}
.chalk-order-sheet__table .collection-hr td {
  padding: 0;
  border: none;
}
.chalk-order-sheet__table .collection-hr hr {
  margin: 0.5em 0 1em;
  border: none;
  border-top: 1px solid var(--chalk-border);
}
.chalk-order-sheet__table td:nth-child(3),
.chalk-order-sheet__table th:nth-child(3) {
  text-align: right;
}
.chalk-order-sheet__table td:nth-child(3) input {
  text-align: right;
  min-width: 4.5em;
  width: 4.5em;
  box-sizing: border-box;
}
.chalk-order-sheet__table #total-price {
  font-weight: bold;
}
.chalk-order-sheet__table #add-all-cart {
  margin-top: 0.5rem;
  display: inline-block;
  background-color: var(--chalk-flax);
  color: var(--chalk-black);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}
.chalk-order-sheet__table #add-all-cart:hover {
  opacity: 0.9;
}
.chalk-order-sheet__table #add-all-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.chalk-order-sheet__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--chalk-footer-text);
  text-align: center;
}

/* Article list */
.chalk-article-list article {
  margin-bottom: 1rem;
}

.chalk-article-list article a {
  font-weight: 600;
}

/* Blog list page: centered title */
.chalk-news-list-header {
  text-align: center;
}

/* News filter (tag dropdown) - matches chalkrebels.com Filter by */
.chalk-news-filter {
  margin-bottom: 1.5rem;
}

.chalk-news-filter__label {
  margin-right: 0.5rem;
}

.chalk-news-filter__select {
  font-size: 1rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--chalk-border);
  background: var(--chalk-white);
  cursor: pointer;
}

/* Tag pills on news cards */
.chalk-news-card__tags {
  display: block;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.chalk-tag {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  padding: 0.15rem 0.5rem;
  background: var(--chalk-footer-bg);
  color: var(--chalk-jet);
  text-decoration: none;
  border-radius: 2px;
}

.chalk-tag:hover {
  text-decoration: underline;
}

/* News grid - matches chalkrebels.com/blogs/news */
.chalk-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.chalk-news-card {
  margin: 0;
}

.chalk-news-card__link {
  display: block;
  color: var(--chalk-jet);
  text-decoration: none;
  padding-bottom: 1.5rem;
}

.chalk-news-card__link:hover {
  text-decoration: underline;
}

.chalk-news-card__link:hover .chalk-news-card__readmore {
  text-decoration: underline;
}

.chalk-news-card__image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--chalk-footer-bg);
  margin-bottom: 1rem;
}

.chalk-news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.chalk-news-card__date {
  display: block;
  font-size: 0.9rem;
  color: var(--chalk-footer-text);
  margin-bottom: 0.75rem;
}

.chalk-news-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  color: var(--chalk-jet);
}

.chalk-news-card__readmore {
  font-weight: 600;
}

/* Pagination */
.chalk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--chalk-border);
}

.chalk-pagination a {
  text-decoration: none;
  font-weight: 600;
}

.chalk-pagination a:hover {
  text-decoration: underline;
}

.chalk-pagination__info {
  color: var(--chalk-footer-text);
  font-size: 0.9rem;
}

/* Collection product grid - matches chalkrebels.com/collections/chalk */
.chalk-collection__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 2rem;
  color: var(--chalk-jet);
}

.chalk-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chalk-product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chalk-product-card__link {
  display: block;
  color: var(--chalk-jet);
  text-decoration: none;
  flex: 1;
}

.chalk-product-card__image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.chalk-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-product-card__link .chalk-product-card__title {
  padding: 1.25rem 1.25rem 0;
  text-align: center;
}

.chalk-product-card__link .chalk-product-card__price {
  display: block;
  padding: 0 1.25rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.chalk-product-card__link:hover .chalk-product-card__title {
  text-decoration: underline;
}

.chalk-product-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
}

.chalk-product-card__description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--chalk-footer-text);
}

.chalk-product-card__cta {
  font-weight: 600;
  font-size: 0.9rem;
}

.chalk-product-card__buy {
  display: block;
  background: var(--chalk-flax);
  color: var(--chalk-jet);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-top: 1px solid var(--chalk-border);
}

.chalk-product-card__buy:hover {
  background: #f5d966;
}

/* Product page - matches chalkrebels.com/products/... */
.chalk-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.chalk-product__gallery {
  position: sticky;
  top: 2rem;
}

.chalk-product__image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
}

.chalk-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-product__image-placeholder {
  aspect-ratio: 1;
  background: #fff;
  border: 1px dashed var(--chalk-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chalk-footer-text);
  font-size: 0.9rem;
}

.chalk-product__vendor {
  font-size: 0.9rem;
  color: var(--chalk-footer-text);
  margin: 0 0 0.5rem;
}

.chalk-product__price {
  font-weight: 700;
}

.chalk-product__title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.chalk-product__tagline {
  font-size: 1rem;
  line-height: var(--chalk-line);
  margin: 0 0 1.5rem;
  color: var(--chalk-jet);
}

.chalk-product__content {
  margin-bottom: 1.5rem;
}

.chalk-product__summary,
.chalk-product__benefits,
.chalk-product__body {
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}

.chalk-product__content ul,
.chalk-product__summary ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.chalk-product__content li,
.chalk-product__summary li {
  margin-bottom: 0.5rem;
  line-height: var(--chalk-line);
}

.chalk-product__buy {
  display: inline-block;
  background: var(--chalk-flax);
  color: var(--chalk-jet);
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.chalk-product__buy:hover {
  background: #f5d966;
}

.chalk-product__related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--chalk-border);
}

.chalk-product__related-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.chalk-product__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.chalk-product__related-card {
  margin: 0;
}

.chalk-product__related-link {
  display: flex;
  flex-direction: column;
  color: var(--chalk-jet);
  text-decoration: none;
}

.chalk-product__related-link:hover {
  text-decoration: none;
}

.chalk-product__related-link:hover .chalk-product__related-cta {
  text-decoration: underline;
}

.chalk-product__related-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.chalk-product__related-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-product__related-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.chalk-product__related-bullets {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--chalk-footer-text);
  flex: 1;
}

.chalk-product__related-bullets li {
  margin-bottom: 0.25rem;
  padding-left: 0;
}

.chalk-product__related-bullets li::before {
  content: "• ";
  font-weight: 700;
}

.chalk-product__related-cta {
  font-weight: 600;
  font-size: 0.9rem;
}

.chalk-product__extended {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--chalk-border);
  max-width: var(--chalk-prose-width);
  margin-left: auto;
  margin-right: auto;
}

.chalk-product__extended p {
  margin-bottom: 1.25rem;
}

.chalk-product__extended h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.chalk-product__extended h3:first-child {
  margin-top: 0;
}

.chalk-product__extended table {
  width: 100%;
  max-width: var(--chalk-prose-width);
  border-collapse: collapse;
  margin: 1rem 0;
}

.chalk-product__extended thead,
.chalk-product__extended table tr:first-child {
  display: none !important;
}

.chalk-product__extended th,
.chalk-product__extended td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--chalk-border);
}

.chalk-product__extended th {
  font-weight: 600;
  width: 40%;
}

.chalk-product__benefits h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.chalk-product__benefits h3:first-child {
  margin-top: 0;
}

.chalk-product__benefits p,
.chalk-product__body p {
  line-height: var(--chalk-line);
}

/* Homepage hero */
.chalk-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  overflow: hidden;
}

.chalk-hero__image-wrapper {
  position: absolute;
  inset: 0;
}

.chalk-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.chalk-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.chalk-hero__line1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chalk-hero__line2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chalk-hero__cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--chalk-flax);
  color: var(--chalk-jet);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Collection page hero (chalkrebels.com style) - full viewport width */
.chalk-collection-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.chalk-collection-hero__image-wrapper {
  position: absolute;
  inset: 0;
}

.chalk-collection-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.chalk-collection-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.chalk-collection-hero__title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chalk-collection-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: inherit;
}

.chalk-collection-hero__cta {
  display: inline-block;
  margin-top: 0.5rem;
}

.chalk-home-content {
  max-width: 1000px;
  margin: 0 auto;
}

.chalk-home__title {
  margin-top: 0;
  text-align: center;
}

/* Homepage grid - links to product/collection pages */
.chalk-home-grid {
  margin: 2rem auto 3rem;
  max-width: 1000px;
}

.chalk-home-grid__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.chalk-home-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.chalk-home-grid__card {
  margin: 0;
}

.chalk-home-grid__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--chalk-jet);
  text-decoration: none;
}

.chalk-home-grid__link:hover {
  text-decoration: underline;
}

.chalk-home-grid__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.chalk-home-grid__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chalk-home-grid__name {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.chalk-home-grid__cta-wrap {
  margin: 1.5rem 0 0;
  text-align: center;
}

/* Homepage - Made by climbers for climbers */
.chalk-home-climbers {
  margin: 3rem 0;
  padding: 3rem 2rem;
  border-top: 1px solid var(--chalk-border);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Full viewport width to match hero - breakout of main container */
.chalk-home-climbers--with-bg,
.chalk-home-climbers[style*="background-image"] {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 420px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

/* Content wrapper - mirrors hero structure, ensures centering */
.chalk-home-climbers__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}

.chalk-home-climbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 0;
}

/* All text white - override .chalk-main inheritance */
.chalk-home-climbers--with-bg .chalk-home-climbers__content,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__content {
  color: #fff;
}

.chalk-home-climbers--with-bg .chalk-home-climbers__title,
.chalk-home-climbers--with-bg .chalk-home-climbers__content p,
.chalk-home-climbers--with-bg .chalk-home-climbers__content p strong,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__title,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__content p,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__content p strong {
  color: #fff !important;
}

.chalk-home-climbers--with-bg .chalk-home-climbers__cta,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__cta {
  background: var(--chalk-flax);
  color: var(--chalk-jet) !important;
}

.chalk-home-climbers--with-bg .chalk-home-climbers__cta:hover,
.chalk-home-climbers[style*="background-image"] .chalk-home-climbers__cta:hover {
  opacity: 0.95;
}

.chalk-home-climbers__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chalk-home-climbers__content p {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.chalk-home-climbers__cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Homepage - Our commitments - all content centered in display */
.chalk-home-commitments {
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.chalk-home-commitments.chalk-prose {
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.chalk-home-commitments__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  width: 100%;
}

.chalk-home-commitments__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.chalk-home-commitments__logo {
  flex-shrink: 0;
}

.chalk-home-commitments__logo img {
  display: block;
  width: 100px;
  height: auto;
}

.chalk-home-commitments__text {
  margin: 0;
  max-width: 55ch;
  text-align: center;
  width: 100%;
}

.chalk-home-commitments__text p {
  margin-bottom: 1rem;
  color: var(--chalk-jet);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .chalk-collection-hero {
    min-height: 180px;
  }
  .chalk-collection-hero__title {
    font-size: 1.5rem;
  }
  .chalk-collection-hero__subtitle {
    font-size: 1.1rem;
  }
  .chalk-logo__img {
    height: 32px;
  }
  .chalk-header {
    position: relative;
    z-index: 100;
  }
  .chalk-header__inner {
    padding: 1rem;
  }
  .chalk-nav-toggle {
    display: flex;
  }
  .chalk-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 4rem 2rem 2rem;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .chalk-header--nav-open .chalk-nav-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .chalk-nav {
    flex-direction: column;
    gap: 0;
    align-items: center;
    font-size: 1.25rem;
  }
  .chalk-nav li {
    border-bottom: 1px solid var(--chalk-border);
    width: 100%;
    text-align: center;
  }
  .chalk-nav a {
    display: block;
    padding: 1rem 1.5rem;
  }
  .chalk-product__layout {
    grid-template-columns: 1fr;
  }
  .chalk-product__gallery {
    position: static;
  }
  .chalk-product__related-grid {
    gap: 1.5rem;
  }
  .chalk-home-commitments__logos {
    gap: 1.5rem;
  }
  .chalk-home-commitments__logo img {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .chalk-product__related-grid {
    grid-template-columns: 1fr;
  }
}

/* Plan week preview – same style as wr-day-btn (R/L/M/H/P) */
.plan-dashboard-card .plan-week-preview {
  margin-bottom: 0;
  max-width: none;
  width: 100%;
  min-width: 0;
}

/* Desktop: cap day boxes so they don't stretch and look oversized */
@media (min-width: 641px) {
  .plan-dashboard-card .plan-week-preview {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-dashboard-card .plan-week-preview__tile {
    font-size: 16px;
    padding: 6px;
  }
}
.plan-week-preview {
  margin-bottom: 1rem;
  max-width: 360px;
}
.plan-week-preview__labels,
.plan-week-preview__tiles {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px 8px;
}
.plan-week-preview__label {
  font-size: 11px;
  color: var(--chalk-muted, #555);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  min-width: 0;
}
.plan-week-preview__tile {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 1;
  padding: 4px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #909090;
  border-radius: 2px;
  background: #fff;
  color: #2f2f2f;
}
.plan-week-preview__tile--R { background: #fff; border-color: #909090; color: #2f2f2f; }
.plan-week-preview__tile--L { background: #e8f4ea; border-color: #a7dcb8; }
.plan-week-preview__tile--M { background: #f9df74; border-color: #e0c555; }
.plan-week-preview__tile--H { background: #e67e22; color: #fff; border-color: #d35400; }
.plan-week-preview__tile--P { background: #c0392b; color: #fff; border-color: #a93226; }
.plan-week-preview__tile--today {
  box-shadow: 0 0 0 2px var(--chalk-flax);
}

/* Tighter week preview on small screens so it fits inside the dashboard card */
@media (max-width: 600px) {
  .plan-dashboard-card {
    padding: 1rem 1rem;
  }
  .plan-week-preview__labels,
  .plan-week-preview__tiles {
    gap: 2px 4px;
  }
  .plan-week-preview__label {
    font-size: 9px;
    letter-spacing: 0.02em;
  }
  .plan-week-preview__tile {
    padding: 2px;
    font-size: 12px;
  }
}

/* Signup landing page (00sign) */
.chalk-article--plan-signup {
  padding: 0;
}
.signup-landing {
  margin-bottom: 2rem;
}
.signup-landing__hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--chalk-jet) 0%, #2a2a2a 100%);
  margin: -2rem -2rem 2rem -2rem;
  overflow: hidden;
  width: calc(100% + 4rem);
  max-width: none;
}
@media (min-width: 1280px) {
  .signup-landing__hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.signup-landing__hero--with-image .signup-landing__hero-image {
  position: absolute;
  inset: 0;
}
.signup-landing__hero--with-image .signup-landing__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signup-landing__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}
.signup-landing__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 3rem 2rem;
  max-width: 46rem;
  margin: 0 auto;
}
.signup-landing__hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
.signup-landing__hero-meta-item {
  margin: 0;
  padding: 0 0.35rem;
}
.signup-landing__hero-meta-item dt {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.9);
}
.signup-landing__hero-meta-item dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .signup-landing__hero-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.25rem;
  }
}
.signup-landing__hero-title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.signup-landing__hero-tagline {
  font-size: 1.2rem;
  margin: 0 0 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
}
.signup-landing__hero-cta {
  text-decoration: none;
}
.signup-landing__hero-cta:hover {
  opacity: 0.95;
}
/* Testimonials */
.signup-landing__testimonials {
  margin: 3rem auto 2rem;
  max-width: 1000px;
  padding: 0 2rem;
}
.signup-landing__testimonials-title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--chalk-footer-text);
  text-align: center;
  margin: 0 0 1.5rem;
}
.signup-landing__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.signup-landing__testimonial {
  margin: 0;
  padding: 1.25rem;
  background: var(--chalk-footer-bg);
  border-radius: 4px;
  border-left: 4px solid var(--chalk-powder);
}
.signup-landing__testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--chalk-jet);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.signup-landing__testimonial-author {
  font-size: 0.85rem;
  color: var(--chalk-footer-text);
}
.signup-landing__testimonial-author cite {
  font-style: normal;
  font-weight: 500;
}
.signup-landing__testimonial-role {
  font-weight: 400;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .signup-landing__testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.signup-landing__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 2rem;
}
.signup-landing__feature {
  text-align: center;
}
.signup-landing__feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.signup-landing__feature-title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.signup-landing__feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--chalk-footer-text);
  margin: 0;
}

/* “This plan is for you if …” (SendFlow landing) */
.signup-landing__for-you {
  margin: 2.75rem auto 0;
  max-width: 640px;
  padding: 0 2rem;
}
.signup-landing__for-you-inner {
  padding: 1.35rem 1.5rem;
  background: var(--chalk-footer-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.signup-landing__for-you-title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.3;
  color: var(--chalk-jet);
}
.signup-landing__for-you-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--chalk-footer-text);
}
.signup-landing__for-you-list li {
  margin-bottom: 0.5rem;
}
.signup-landing__for-you-list li:last-child {
  margin-bottom: 0;
}

/* SendFlow landing — visible PLACEHOLDER + TODO (remove when shipping) */
.signup-landing__placeholder {
  margin: 2.5rem auto 0;
  max-width: 720px;
  padding: 1.25rem 1.5rem 1.5rem;
  border: 2px dashed rgba(180, 120, 0, 0.75);
  border-radius: 6px;
  background: rgba(255, 248, 220, 0.65);
}
.signup-landing__placeholder-label {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c4300;
  background: rgba(255, 193, 7, 0.45);
  border-radius: 3px;
}
.signup-landing__placeholder-title {
  font-family: Akko, Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--chalk-jet);
}
.signup-landing__placeholder-note {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #5c4300;
}
.signup-landing__placeholder-note code {
  font-size: 0.78em;
  word-break: break-all;
}
.signup-landing__placeholder-todos {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3d2e00;
}
.signup-landing__placeholder-todos li {
  position: relative;
  margin: 0 0 0.55rem;
  padding-left: 1.65rem;
}
.signup-landing__placeholder-todos > li:last-child {
  margin-bottom: 0;
}
.signup-landing__placeholder-todos li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 0.95em;
  height: 0.95em;
  border: 2px solid rgba(92, 67, 0, 0.55);
  border-radius: 2px;
  background: #fff;
  box-sizing: border-box;
}
.signup-landing__placeholder-subtodos {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92em;
}
.signup-landing__placeholder-subtodos li {
  margin-bottom: 0.4rem;
}
.signup-landing__placeholder-subtodos li:last-child {
  margin-bottom: 0;
}
.signup-landing__placeholder-subtodos li::before {
  width: 0.8em;
  height: 0.8em;
  top: 0.32em;
}

@media (max-width: 768px) {
  .signup-landing__hero {
    min-height: 45vh;
  }
  .signup-landing__hero-title {
    font-size: 1.75rem;
  }
  .signup-landing__hero-tagline {
    font-size: 1.05rem;
  }
  .signup-landing__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
