/* markgather.com — Editorial Stillness
   Two colours, two typefaces, generous quiet.
   Charcoal Navy #1A2233 (printer's ink) · Warm Off-White #EFE8D6 (cloth-bound paper) */

:root {
  --navy: #1A2233;
  --cream: #EFE8D6;
  --coral: #B86F5A; /* accent only: large/bold text or non-text marks, never normal-size body text (~3.3:1 on cream/navy) */
  --cream-soft: rgba(239, 232, 214, 0.72);
  --navy-soft: rgba(26, 34, 51, 0.72);
  --rule: rgba(26, 34, 51, 0.22);
  --rule-on-navy: rgba(239, 232, 214, 0.24);
  --measure: 40rem;
  --section-y: clamp(3rem, 6vw, 4.5rem);
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Skip link */
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  z-index: 100;
}
.skip:focus { left: 0; }

/* Shared small-caps label */
.label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem 2rem;
}

.brand { display: block; text-decoration: none; }
.brand img { height: 3.25rem; width: auto; }
.brand .label {
  color: rgba(239, 232, 214, 0.82);
  margin-top: 0.72rem;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.brand:hover .label,
.brand:focus .label {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.1rem;
}
.site-nav a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--cream-soft);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.site-nav .nav-language a {
  color: rgba(239, 232, 214, 0.62);
  letter-spacing: 0.16em;
}
.site-nav .nav-language a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.78rem;
  margin: 0 1rem 0 0.1rem;
  background: var(--rule-on-navy);
  vertical-align: -0.12rem;
}

/* ---------- Hero (continuous with header) ---------- */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 4.4rem;
}
.hero-inner { max-width: var(--measure); margin: 0 auto; }
.hero-grid {
  max-width: 72rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 22rem);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy { max-width: 46rem; }
.hero .label { color: var(--cream-soft); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.22;
  margin: 1.5rem 0 0;
  letter-spacing: 0.005em;
}
.hero .subhead {
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream-soft);
  margin: 1.3rem 0 0;
}
.hero .cta-row { margin-top: 2.6rem; }
.hero-portrait {
  margin: 0;
  background: rgba(239, 232, 214, 0.08);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.52) contrast(0.95) brightness(0.96);
}

.trust-strip {
  background: var(--cream);
  color: var(--navy);
  padding: 1.15rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.trust-strip-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.6rem;
}
.trust-strip p {
  margin: 0;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--navy-soft);
}

/* ---------- Body ---------- */
main { display: block; }

.section {
  padding: var(--section-y) clamp(1.5rem, 5vw, 4rem);
}
.section-inner { max-width: var(--measure); margin: 0 auto; }
.section-inner--wide { max-width: 72rem; }
.section-inner--wide > h2,
.section-inner--wide > p {
  max-width: var(--measure);
}
.section + .section {
  padding-top: 0;
}
.section + .section .section-inner {
  border-top: 1px solid var(--rule);
  padding-top: var(--section-y);
}
.section.no-rule + .section .section-inner { border-top: 0; }
.section.no-rule + .section.section--keep-rule .section-inner { border-top: 1px solid var(--rule); }

.section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  margin: 0 0 1.4rem;
}
.section h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 0.9rem;
}
.section p { margin: 0 0 1.35rem; }
.section p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.6;
}
.lede p { margin-bottom: 1rem; }

.proof-rail {
  background: var(--cream);
  color: var(--navy);
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.proof-rail-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 8rem repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.proof-rail .label {
  align-self: center;
  margin: 0;
}
.proof-rail a {
  display: grid;
  gap: 0.25rem;
  min-height: 4.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  text-decoration: none;
  color: var(--navy);
  background: rgba(255, 252, 244, 0.5);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.proof-rail a:hover,
.proof-rail a:focus {
  border-color: var(--coral);
  background: rgba(184, 111, 90, 0.08);
}
.proof-rail span {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--navy-soft);
}
.proof-rail strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
}

.about-prose h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--navy-soft);
  margin: 2.2rem 0 0.75rem;
}
.about-prose .portrait + h2 {
  margin-top: 2rem;
}
.about-prose h2 + p {
  margin-top: 0;
}

.path-grid {
  max-width: 72rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.path-item {
  border-top: 1px solid var(--rule);
  padding-top: 1.4rem;
}
.path-media {
  margin: 0 0 1.3rem;
  overflow: hidden;
  background: rgba(26, 34, 51, 0.035);
}
.path-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.96) brightness(0.98);
  transition: transform 0.32s ease, filter 0.32s ease;
}
.path-item:first-child .path-media img {
  object-position: 50% 35%;
}
.path-item h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

/* Stage list on the programme page: prose paragraphs, bold lead-in */
.stages p { margin-bottom: 1.1rem; }
.stages strong { font-weight: 700; }

.programme-snapshot {
  background: var(--cream);
  color: var(--navy);
  padding: 1.2rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.programme-snapshot-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}
.programme-snapshot p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--navy-soft);
}
.programme-snapshot span {
  display: block;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--navy);
}

.programme-preview-section {
  padding-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.micro-audit {
  max-width: 72rem;
}
.micro-audit h2 {
  margin-bottom: 0.8rem;
}
.micro-audit-question {
  max-width: var(--measure);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.35;
  color: var(--navy);
}
.micro-audit-grid {
  margin: 1.8rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.micro-audit-grid article {
  padding: 1.2rem 1.2rem 1.2rem 0;
}
.micro-audit-grid article + article {
  padding-left: 1.2rem;
  border-left: 1px solid var(--rule);
}
.micro-audit-grid span {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--navy-soft);
}
.micro-audit-grid p {
  margin: 0;
}

.stage-list {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
}
.stage-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
}
.stage-list li:first-child {
  border-top: 1px solid var(--rule);
}
.stage-list strong {
  font-weight: 700;
}

.recognition-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.recognition-list li {
  position: relative;
  padding: 1rem 0 1rem 2.2rem;
  border-bottom: 1px solid var(--rule);
}
.recognition-list li:first-child {
  border-top: 1px solid var(--rule);
}
.recognition-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid var(--coral);
  background: rgba(184, 111, 90, 0.08);
  transition: background-color 0.2s ease;
}

/* Interactive variant: each line can be quietly ticked */
.recognition-list--interactive li {
  cursor: pointer;
}
.recognition-list--interactive li:hover::before,
.recognition-list--interactive li:focus-visible::before {
  background: rgba(184, 111, 90, 0.28);
}
.recognition-list--interactive li:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
.recognition-list--interactive li.is-ticked::before {
  background: var(--coral);
}
.recognition-note {
  margin-top: 1.4rem;
}

.route-grid {
  max-width: 72rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.route-item {
  border-top: 1px solid var(--rule);
  padding-top: 1.4rem;
}
.route-grid .route-note {
  grid-column: 1 / -1;
  margin: 0;
}
.route-item h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.story-proof {
  position: relative;
  padding-left: clamp(1.3rem, 3vw, 2rem);
}
.story-proof::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0;
  width: 4px;
  background: var(--coral);
}
.story-proof .label {
  color: var(--navy-soft);
}

.faq-list {
  margin-top: 1.6rem;
}
.faq-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item:first-child {
  border-top: 1px solid var(--rule);
}
.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}
.faq-item p {
  color: var(--navy-soft);
}

/* Quiet plain lists where a list genuinely helps */
.plain-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}
.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}
.plain-list li:first-child { border-top: 1px solid var(--rule); }

.included-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}
.included-list li {
  position: relative;
  padding: 0.82rem 0.95rem 0.82rem 2.7rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(239, 232, 214, 0.42);
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.45;
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.05rem;
  width: 0.78rem;
  height: 0.42rem;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}
.after-checkout-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.after-checkout-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.55rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.45;
}
.after-checkout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.12rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--coral);
}

/* Quiet product feature on the courses page */
.product-feature {
  max-width: 64rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 28rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.product-feature--doorway {
  align-items: end;
}
.product-feature .plain-list {
  margin-top: 1.7rem;
}
.product-copy {
  max-width: var(--measure);
}
.product-image {
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.3rem);
  border-left: 4px solid var(--coral);
  background: rgba(26, 34, 51, 0.035);
}
.product-image img {
  box-shadow: 0 1.2rem 2.8rem rgba(26, 34, 51, 0.16);
}
.small-note {
  color: var(--navy-soft);
  font-family: var(--sans);
  font-size: 0.88rem;
}
.status-note {
  padding: 0.78rem 0.95rem;
  border-left: 3px solid var(--coral);
  border-radius: 4px;
  background: rgba(184, 111, 90, 0.08);
  color: var(--navy-soft);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.6;
}
.status-note strong {
  color: inherit;
  font-weight: 700;
}
.product-facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0;
  margin: 1.7rem 0 1.3rem;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.product-facts li {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--navy-soft);
  padding: 0.85rem 1rem 0.85rem 0;
}
.product-facts li + li {
  border-left: 1px solid var(--rule);
  padding-left: 1rem;
}

/* Author row: small portrait + credibility sentence beside the buy column */
.author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.6rem 0 1.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.author-portrait {
  margin: 0;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(26, 34, 51, 0.06);
}
.author-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-note {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--navy-soft);
  margin: 0;
  line-height: 1.5;
}

/* Specs grid: quiet number block above the inclusions list */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 1.4rem 0 0.6rem;
  padding: 0;
}
.specs-grid .spec {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
}
.specs-grid .spec:first-child,
.specs-grid .spec:nth-child(2) { border-top: 1px solid var(--rule); }
.specs-grid dt {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--navy-soft);
  margin-bottom: 0.15rem;
}
.specs-grid dd {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  margin: 0;
}

/* Look-inside strip: real pages of the workbook */
.look-inside-block {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.look-inside-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  align-items: start;
}
.look-inside-figure {
  margin: 0;
}
.look-inside-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--cream);
  box-shadow: 0 0.8rem 2rem rgba(26, 34, 51, 0.14);
}
.look-inside-figure figcaption {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--navy-soft);
  margin-top: 0.7rem;
  text-align: center;
}
.look-inside-caption {
  margin-top: 1rem;
  text-align: center;
}

/* Proof anchor: short origin paragraph styled like a quiet aside */
.proof-anchor {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-left: 4px solid var(--coral);
  padding-left: clamp(1.3rem, 3vw, 2rem);
}
.proof-anchor .label {
  color: var(--navy-soft);
}
.proof-anchor p {
  max-width: var(--measure);
}

/* Product close: self-study line, refund, price, buy button */
.product-close {
  margin-top: clamp(2.2rem, 4.5vw, 3rem);
}
.product-close .cta-row {
  margin-top: 1.4rem;
}

/* Inverted bands: Look inside and the closing CTA sit on printer's-ink navy
   so the cream pages and the final decision lift off the page. */
.section--navy {
  background: var(--navy);
  color: var(--cream);
}
.section--navy .label { color: var(--cream); }
.section--navy .small-note { color: var(--cream-soft); }
.section--navy .preview-gallery figcaption { color: var(--cream-soft); }
.section--navy .preview-secondary figure { border-bottom-color: var(--rule-on-navy); }
.section--navy .btn { border-color: var(--cream); }
.section--navy .btn--solid { background: var(--cream); color: var(--navy); }
.section--navy .btn--solid:hover,
.section--navy .btn--solid:focus { background: transparent; color: var(--cream); }
.section--navy .btn--ghost { background: transparent; color: var(--cream); }
.section--navy .btn--ghost:hover,
.section--navy .btn--ghost:focus { background: var(--cream); color: var(--navy); }

/* Rationed coral binding mark, used once at a band seam */
.accent-rule {
  width: 2.6rem;
  height: 2px;
  margin: 0 0 1.45rem;
  background: var(--coral);
  border-radius: 1px;
}

/* Chapter plate: one large serif line as a quiet 'stop and read' pause */
.section--plate {
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}
.section--plate .section-inner { text-align: center; }
.section--plate .accent-rule { margin: 0 auto 1.6rem; }
.product-plate {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.32;
  max-width: 24ch;
  margin: 0 auto;
}

/* Vocabulary Memory tool shown in a quiet phone frame (static preview of real phrases) */
.tool-phone {
  margin: 2.2rem 0 0;
  max-width: 17rem;
}
.tool-phone-frame {
  background: var(--navy);
  border-radius: 1.9rem;
  padding: 0.7rem;
  box-shadow: 0 1.4rem 3.2rem rgba(26, 34, 51, 0.3);
}
.tool-phone-screen {
  background: var(--cream);
  border-radius: 1.35rem;
  padding: 1rem 0.95rem 1.1rem;
  overflow: hidden;
}
.tool-phone-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0 0 0.75rem;
}
.tool-card {
  padding: 0.65rem 0 0.7rem;
  border-top: 1px solid var(--rule);
}
.tool-card:first-of-type { border-top: 0; padding-top: 0; }
.tool-card-word {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.tool-card-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--navy-soft);
  margin: 0 0 0.4rem;
}
.tool-card-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--navy-soft);
  margin: 0 0 0.45rem;
}
.tool-card-src {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0;
}
.tool-phone figcaption {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--navy-soft);
  margin-top: 0.85rem;
  max-width: 22rem;
}

/* Dedicated product page */
.product-hero {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}
.product-hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.product-hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  color: var(--cream);
  max-width: 11em;
}
.product-hero .subhead {
  color: rgba(239, 232, 214, 0.88);
}
.product-hero p {
  color: rgba(239, 232, 214, 0.82);
}
.product-hero .label,
.product-hero .price-line {
  color: var(--cream);
}
.product-hero .status-note {
  margin: 1.4rem 0 1.1rem;
  background: rgba(239, 232, 214, 0.08);
  color: rgba(239, 232, 214, 0.86);
}
.product-hero .btn {
  border-color: var(--cream);
}
.product-hero .btn--solid {
  background: var(--cream);
  color: var(--navy);
}
.product-hero .btn--solid:hover,
.product-hero .btn--solid:focus {
  background: transparent;
  color: var(--cream);
}
.product-hero .btn--ghost {
  background: transparent;
  color: var(--cream);
}
.product-hero .btn--ghost:hover,
.product-hero .btn--ghost:focus {
  background: var(--cream);
  color: var(--navy);
}
.product-hero-image {
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.4rem);
  border-left: 4px solid var(--coral);
  background: rgba(239, 232, 214, 0.08);
}
.product-hero-image img {
  box-shadow: 0 2rem 4.6rem rgba(0, 0, 0, 0.42);
}
.preview-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.product-preview,
.product-details-grid,
.fit-grid,
.author-feature {
  max-width: 64rem;
}
.preview-gallery figure {
  margin: 0;
}
.preview-gallery img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--cream);
  border: 1px solid rgba(239, 232, 214, 0.16);
  box-shadow: 0 1.4rem 3.4rem rgba(0, 0, 0, 0.42);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.preview-gallery figcaption {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--navy-soft);
  margin-top: 0.8rem;
}
.preview-secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.preview-secondary figure {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--rule);
}
.preview-secondary img {
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.4);
}
.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-feature-copy {
  max-width: var(--measure);
}
.story-feature-image {
  margin: 0;
  border-left: 4px solid var(--coral);
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
}
.story-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 1.2rem 2.8rem rgba(26, 34, 51, 0.14);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

@media (max-width: 920px) {
  .story-feature {
    grid-template-columns: 1fr;
  }
  .story-feature-copy {
    max-width: var(--measure);
  }
  .story-feature-image {
    max-width: 34rem;
  }
}
.story-roadmap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.story-roadmap > div {
  padding: 1.25rem 1.1rem 1.35rem;
}
.story-roadmap > div + div {
  border-left: 1px solid var(--rule);
}
.story-roadmap h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.story-roadmap p {
  font-size: 0.98rem;
}
.story-product-hero .product-hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.story-loop {
  max-width: 54rem;
}
.week-route {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.week-step {
  padding: 1.25rem 1.1rem 1.35rem;
}
.week-step + .week-step {
  border-left: 1px solid var(--rule);
}
.week-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.week-step p {
  font-size: 0.98rem;
}
.practice-loop {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}
.practice-loop span {
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  text-align: center;
}
.product-details-grid,
.fit-grid,
.author-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.buy-box {
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  background: rgba(26, 34, 51, 0.035);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.buy-box h2 {
  margin-bottom: 0.85rem;
}
.price-display {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1;
  color: var(--coral);
}
.buy-box .btn {
  margin-top: 1rem;
}

/* Release list form (Netlify) */
.release-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}
.release-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--navy-soft);
}
.release-form input {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(239, 232, 214, 0.62);
  color: var(--navy);
  font: inherit;
  padding: 0.8rem 0.9rem;
}
.release-form input:focus {
  outline: 2px solid rgba(184, 111, 90, 0.38);
  outline-offset: 2px;
}
.release-form .btn {
  margin-top: 0.2rem;
  justify-self: start;
  cursor: pointer;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.author-feature {
  grid-template-columns: 8rem minmax(0, var(--measure));
  align-items: center;
}
.author-feature-image {
  margin: 0;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(26, 34, 51, 0.06);
}
.author-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Private interaction tests ---------- */
.reveal-card {
  display: block;
  width: min(100%, 34rem);
  margin-top: 1.7rem;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(26, 34, 51, 0.035);
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.reveal-card__front,
.reveal-card__back {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}
.reveal-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
}
.reveal-card__back {
  display: none;
  border-radius: 0 0 4px 4px;
  background: var(--navy);
  color: var(--cream);
}
.reveal-card__back .label {
  color: var(--cream-soft);
}
.reveal-card.is-open .reveal-card__front {
  display: none;
}
.reveal-card.is-open .reveal-card__back {
  display: grid;
}
.reveal-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.reveal-card--compact {
  width: 100%;
  height: 100%;
}
.reveal-card--compact .reveal-card__front,
.reveal-card--compact .reveal-card__back {
  min-height: 15rem;
}
.reveal-card--compact strong {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}
.rhythm-flow {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.rhythm-flow article {
  padding: 1.15rem 1rem 1.35rem;
}
.rhythm-flow article + article {
  border-left: 1px solid var(--rule);
}
.rhythm-flow span {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.9rem;
  border: 1px solid var(--coral);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.74rem;
}
.rhythm-flow h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.rhythm-flow p {
  font-size: 0.95rem;
}
.story-opening-test {
  display: grid;
  grid-template-columns: minmax(0, var(--measure)) minmax(16rem, 28rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-opening-test blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 4px solid var(--coral);
  color: var(--navy-soft);
}
.story-opening-test audio {
  width: 100%;
  max-width: 28rem;
}
.story-opening-test figure {
  margin: 0;
}
.story-opening-test img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 1.2rem 2.8rem rgba(26, 34, 51, 0.14);
}
.story-opening-preview {
  display: grid;
  grid-template-columns: minmax(0, var(--measure)) minmax(16rem, 28rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-opening-preview blockquote {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 4px solid var(--coral);
  color: var(--navy-soft);
  font-style: italic;
}
.story-opening-preview figure {
  margin: 0;
}
.story-opening-preview img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 1.2rem 2.8rem rgba(26, 34, 51, 0.14);
}
.audio-note {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.68rem 0.82rem;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--navy-soft);
}
.soft-signup-test form {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: end;
}
.soft-signup-test label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--navy-soft);
}
.soft-signup-test input {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(239, 232, 214, 0.62);
  color: var(--navy);
  font: inherit;
  padding: 0.9rem 0.95rem;
}
.soft-signup-test input:focus {
  outline: 2px solid rgba(184, 111, 90, 0.38);
  outline-offset: 2px;
}
.interest-panel {
  display: grid;
  grid-template-columns: minmax(0, var(--measure)) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: rgba(26, 34, 51, 0.035);
}
.interest-panel h2 {
  margin-bottom: 0.8rem;
}
.interest-panel .btn {
  justify-self: end;
  white-space: nowrap;
}
.radius-test-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.radius-sample {
  border: 1px solid var(--rule);
  background: rgba(26, 34, 51, 0.035);
  padding: 1.25rem;
}
.radius-sample h3 {
  font-size: 1.15rem;
}
.radius-sample .btn {
  margin: 0.3rem 0 1.1rem;
}
.radius-sample ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.radius-sample li {
  border: 1px solid var(--rule);
  background: rgba(239, 232, 214, 0.46);
  padding: 0.65rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.radius-sample--soft,
.radius-sample--soft .btn,
.radius-sample--soft li {
  border-radius: 4px;
}
.radius-sample--round,
.radius-sample--round .btn,
.radius-sample--round li {
  border-radius: 12px;
}

/* Quiet inline text links (the "wider work" row, story links) */
.quiet-links {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-top: 1.8rem;
}
.quiet-links a {
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.15rem;
  white-space: nowrap;
}
.quiet-links a:hover,
.quiet-links a:focus { border-bottom-color: var(--navy); }
.quiet-links .sep { color: var(--navy-soft); margin: 0 0.7rem; }

/* ---------- Buttons ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.1rem;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border: 1px solid var(--navy);
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn--solid { background: var(--navy); color: var(--cream); }
.btn--solid:hover, .btn--solid:focus { background: transparent; color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover, .btn--ghost:focus { background: var(--navy); color: var(--cream); }
.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

/* On the navy hero, buttons invert */
.hero .btn { border-color: var(--cream); }
.hero .btn--solid { background: var(--cream); color: var(--navy); }
.hero .btn--solid:hover, .hero .btn--solid:focus { background: transparent; color: var(--cream); }
.hero .btn--ghost { background: transparent; color: var(--cream); }
.hero .btn--ghost:hover, .hero .btn--ghost:focus { background: var(--cream); color: var(--navy); }

/* Photo placeholder (until Mark supplies a photo) */
.photo-placeholder {
  border: 1px dashed var(--rule);
  background: rgba(26, 34, 51, 0.04);
  color: var(--navy-soft);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-align: center;
  padding: 3.5rem 1.5rem;
  margin: 0 0 2rem;
}

/* Portraits */
.portrait {
  margin: 0 0 2.2rem;
  background: rgba(26, 34, 51, 0.035);
  overflow: hidden;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(0.94) brightness(0.98);
  transition: transform 0.36s ease, filter 0.36s ease;
}
.portrait--headshot {
  aspect-ratio: 1 / 1;
  max-width: 22rem;
}
.portrait--restaurant {
  aspect-ratio: 4 / 3;
  max-width: 34rem;
}
.portrait--restaurant img {
  object-position: 40% 48%;
}
.portrait--jasmine {
  aspect-ratio: 4 / 3;
  max-width: 34rem;
}
.portrait--courtyard {
  max-width: 24rem;
}
.portrait--courtyard img {
  aspect-ratio: 4 / 5;
}
.portrait figcaption {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--navy-soft);
  margin-top: 0.8rem;
  line-height: 1.5;
}

.nav-return {
  margin-top: 0;
  margin-bottom: 2.2rem;
}

/* References note (programme page only) */
.refs {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--navy-soft);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
}
.site-footer .closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
}
.site-footer .brand-tag {
  color: var(--cream-soft);
  margin-top: 1.6rem;
}
.site-footer .footer-links {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.8rem;
}
.site-footer .footer-links a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--cream-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* ---------- Focus visibility ---------- */
a:focus-visible, .btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* ---------- Quiet motion layer ---------- */
.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(0.55rem);
}
.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.motion-ready .hero .motion-reveal,
.motion-ready .product-hero .motion-reveal {
  transform: translateY(0.35rem);
}
.motion-ready .hero-portrait img:hover,
.motion-ready .portrait img:hover,
.motion-ready .path-media img:hover,
.motion-ready .story-feature-image img:hover,
.motion-ready .product-hero-image img:hover {
  transform: scale(1.015);
}
.motion-ready .preview-gallery img[data-inspectable="true"],
.motion-ready .look-inside-strip img[data-inspectable="true"] {
  cursor: zoom-in;
}
.motion-ready .preview-gallery img[data-inspectable="true"]:hover,
.motion-ready .preview-gallery img[data-inspectable="true"]:focus,
.motion-ready .look-inside-strip img[data-inspectable="true"]:hover,
.motion-ready .look-inside-strip img[data-inspectable="true"]:focus {
  transform: translateY(-2px);
  box-shadow: 0 1.5rem 3.2rem rgba(26, 34, 51, 0.18);
}
/* On the navy band the hover shadow must be black, not navy, or the page sinks instead of lifting */
.motion-ready .section--navy .preview-gallery img[data-inspectable="true"]:hover,
.motion-ready .section--navy .preview-gallery img[data-inspectable="true"]:focus {
  box-shadow: 0 1.7rem 3.6rem rgba(0, 0, 0, 0.5);
}
/* The lead Look-inside preview leans slightly so it reads as an object, and straightens on hover/focus for flat reading */
.section--navy .preview-main img {
  transform: perspective(1200px) rotateY(-10deg);
}
.motion-ready .section--navy .preview-main img[data-inspectable="true"]:hover,
.motion-ready .section--navy .preview-main img[data-inspectable="true"]:focus {
  transform: perspective(1200px) rotateY(0deg) translateY(-3px);
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(26, 34, 51, 0.88);
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.image-viewer[open] {
  opacity: 1;
  pointer-events: auto;
}
.image-viewer::backdrop {
  background: transparent;
}
.image-viewer__inner {
  max-width: min(72rem, 94vw);
  max-height: 92vh;
}
.image-viewer img {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.38);
}
.image-viewer figcaption {
  margin-top: 0.9rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}
.image-viewer__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--cream);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.image-viewer__close:hover,
.image-viewer__close:focus {
  background: var(--cream);
  color: var(--navy);
}

/* ---------- Narrow screens ---------- */
@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: 1.1rem 2rem;
  }
  .brand img { height: 2.4rem; }
  .brand .label { display: none; }
  .site-nav ul { gap: 0.85rem 1.4rem; }
  .site-nav a { font-size: 0.72rem; }
  .hero { padding-top: 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .proof-rail-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .proof-rail a {
    min-height: 0;
  }
  .hero-grid,
  .path-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }
  .programme-snapshot-inner {
    grid-template-columns: 1fr;
  }
  .hero-portrait {
    max-width: 18rem;
  }
  .quiet-links a { white-space: normal; }
  .product-feature {
    grid-template-columns: 1fr;
  }
  .product-image {
    order: -1;
  }
  .portrait--headshot {
    max-width: 100%;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid .spec:nth-child(2) { border-top: 0; }
  .look-inside-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .author-row {
    flex-wrap: wrap;
  }
  .product-facts,
  .product-hero-inner,
  .preview-gallery,
  .story-feature,
  .story-roadmap,
  .micro-audit-grid,
  .week-route,
  .rhythm-flow,
  .reveal-grid,
  .practice-loop,
  .story-opening-test,
  .story-opening-preview,
  .product-details-grid,
  .fit-grid,
  .author-feature,
  .soft-signup-test form,
  .interest-panel,
  .radius-test-grid {
    grid-template-columns: 1fr;
  }
  .product-facts li + li,
  .week-step + .week-step,
  .rhythm-flow article + article {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .product-facts li + li {
    padding-left: 0;
  }
  .preview-secondary figure {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }
  .section--navy .preview-main img {
    transform: none;
  }
  .product-hero {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .product-hero-inner {
    gap: 1.6rem;
  }
  .product-hero h1 {
    font-size: 2.55rem;
    line-height: 1.12;
  }
  .product-hero .cta-row {
    margin-top: 1.6rem;
  }
  .product-hero-image {
    max-width: 18rem;
    padding: 0.75rem;
  }
  .story-product-hero .product-hero-image { max-width: 17rem; }
  .micro-audit-grid article,
  .micro-audit-grid article + article {
    padding: 1.1rem 0;
    border-left: 0;
  }
  .micro-audit-grid article + article {
    border-top: 1px solid var(--rule);
  }
  .story-feature-image {
    padding-left: 0;
    border-left: 0;
    max-width: 30rem;
  }
  .story-roadmap > div + div {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .author-feature {
    gap: 1.4rem;
  }
  .interest-panel .btn {
    justify-self: start;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
