@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/CormorantGaramond_600SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_400Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_500Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans_700Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #f7f3ee;
  --paper: #fdfbf8;
  --white: #ffffff;
  --ink: #2c2825;
  --muted: #746863;
  --mulberry: #8f5f63;
  --mulberry-deep: #5d3c40;
  --forest: #6f7b65;
  --forest-deep: #453436;
  --rose: #d49294;
  --rose-deep: #a86d70;
  --rose-soft: #ebd5d2;
  --rose-wash: #fbf0ee;
  --gold: #c7a66d;
  --sage: #a8b49a;
  --line: rgba(44, 40, 37, 0.12);
  --line-rose: rgba(168, 109, 112, 0.22);
  --shadow-soft: 0 24px 70px rgba(75, 56, 52, 0.12);
  --shadow-deep: 0 36px 90px rgba(65, 47, 47, 0.26);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(251, 240, 238, 0.95), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--ivory) 48%, #f4ece7 100%);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: 104px;
}

h2 {
  font-size: 66px;
}

h3 {
  font-size: 32px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.chapter-shell,
.hero-inner,
.footer-inner {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--dark {
  color: var(--mulberry-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  color: var(--ink);
  background: rgba(253, 251, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.site-header--overlay {
  position: fixed;
  inset: 0 0 auto;
  color: var(--white);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: none;
}

.site-header--overlay.is-scrolled {
  color: var(--ink);
  background: rgba(253, 251, 248, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.brand-link img,
.footer-brand img {
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.site-footer nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header--overlay.is-scrolled .site-nav a:hover,
.site-header--overlay.is-scrolled .site-nav a:focus-visible,
.site-header:not(.site-header--overlay) .site-nav a:hover,
.site-header:not(.site-header--overlay) .site-nav a:focus-visible {
  color: var(--rose-deep);
  background: rgba(212, 146, 148, 0.12);
}

.site-nav .nav-cta {
  min-height: 40px;
  margin-left: 8px;
  padding-inline: 17px;
  border: 1px solid currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-color: #74524e;
  background-image: url("assets/hero-mother-brand.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(72, 50, 47, 0.78) 0%, rgba(114, 79, 75, 0.43) 42%, rgba(114, 79, 75, 0.04) 73%),
    linear-gradient(0deg, rgba(44, 40, 37, 0.32) 0%, transparent 46%),
    radial-gradient(circle at 17% 82%, rgba(212, 146, 148, 0.22), transparent 32%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 176px 0 100px;
}

.hero .eyebrow {
  color: #f6dedc;
}

.hero h1 {
  max-width: 780px;
}

.hero-line {
  margin: 2px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.button:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button:hover {
  transform: translateY(-2px);
}

.button--light {
  color: var(--forest-deep);
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(75, 56, 52, 0.24);
}

.button--light:hover {
  background: var(--white);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.button.primary {
  color: var(--white);
  background: var(--rose-deep);
  box-shadow: 0 14px 36px rgba(168, 109, 112, 0.24);
}

.button.primary:hover {
  background: var(--mulberry-deep);
}

.button.secondary {
  color: var(--rose-deep);
  background: transparent;
  border-color: var(--line-rose);
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.text-link:hover {
  border-color: var(--white);
}

.hero-note {
  position: absolute;
  z-index: 1;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.section-pad {
  padding: 132px 0;
}

.manifesto {
  background: linear-gradient(180deg, var(--paper), var(--rose-wash));
}

.manifesto h2 {
  max-width: 940px;
  font-size: 78px;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 72px;
  max-width: 940px;
  margin: 76px 0 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.manifesto-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.manifesto-detail .manifesto-lead {
  color: var(--mulberry-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1.18;
}

.product-chapter {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.product-chapter--forest {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(93, 60, 64, 0.96), rgba(69, 52, 54, 1)),
    var(--forest-deep);
}

.product-chapter--light {
  color: var(--ink);
  background: #fbf4f3;
}

.product-chapter--rose {
  color: var(--mulberry-deep);
  background:
    radial-gradient(circle at 78% 12%, rgba(253, 251, 248, 0.38), transparent 32%),
    linear-gradient(135deg, #ead0cc, #dcaeae);
}

.chapter-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 96px;
  align-items: center;
}

.product-chapter--reverse .chapter-shell {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
}

.chapter-copy {
  max-width: 590px;
}

.chapter-copy h2 {
  margin-bottom: 30px;
}

.chapter-copy > p:not(.eyebrow):not(.chapter-quote) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.product-chapter--light .chapter-copy > p:not(.eyebrow):not(.chapter-quote),
.product-chapter--rose .chapter-copy > p:not(.eyebrow):not(.chapter-quote) {
  color: rgba(53, 29, 40, 0.74);
}

.chapter-list {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.chapter-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 17px 0;
}

.chapter-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.chapter-list span {
  color: #f0d8d5;
  font-size: 12px;
  font-weight: 700;
}

.chapter-quote {
  margin: 42px 0 0;
  padding-left: 22px;
  color: var(--mulberry-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  border-left: 2px solid var(--rose);
}

.phone-stage {
  width: min(100%, 330px);
  margin: 0 auto;
  filter: drop-shadow(var(--shadow-deep));
}

.app-screen-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border-radius: 48px;
  background: #f8f4ef;
}

.app-screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-6.5%);
}

.phone-stage--warm {
  filter: drop-shadow(0 34px 76px rgba(60, 61, 44, 0.18));
}

.statement-band {
  padding: 90px 0;
  color: var(--paper);
  background: var(--forest-deep);
}

.statement-band .section-shell {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  gap: 28px;
  align-items: baseline;
}

.statement-band p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  line-height: 1;
}

.statement-band p:nth-child(1) {
  color: var(--rose-soft);
}

.statement-band p:nth-child(2) {
  color: #e8c6c5;
}

.statement-band p:nth-child(3) {
  color: #d7c6a9;
}

.statement-band span {
  color: rgba(255, 250, 242, 0.6);
  text-align: right;
}

.women-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(212, 146, 148, 0.18), transparent 34%),
    linear-gradient(180deg, #4f383b 0%, #38282b 100%);
}

.women-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 96px;
  align-items: end;
  text-align: left;
}

.women-heading h2 {
  max-width: 760px;
  margin: 0;
}

.women-heading > p:last-child {
  max-width: 390px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.story-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: min(1180px, calc(100% - 64px));
  margin: 58px auto 0;
}

.story-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #2f2425;
  isolation: isolate;
}

.story-card--featured {
  min-height: 0;
}

.story-card--safiyyah {
  min-height: 0;
}

.story-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(14, 9, 10, 0.92), rgba(14, 9, 10, 0));
  pointer-events: none;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.story-card--asiya img {
  object-position: 48% center;
}

.story-card--safiyyah img {
  object-position: 62% center;
}

@media (hover: hover) and (pointer: fine) {
  .story-card:hover img {
    transform: scale(1.025);
  }
}

.story-card-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px;
}

.story-card-copy h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 35px;
  line-height: 1.04;
}

.story-card--featured .story-card-copy h3 {
  font-size: 35px;
}

.story-card-copy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.women-footnote {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 36px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.women-footnote p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
}

.women-footnote span {
  align-self: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reflection-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  min-height: 0;
  color: var(--ink);
  background: linear-gradient(90deg, var(--paper), var(--rose-wash));
}

.reflection-image {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c9c5c2;
}

.reflection-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition:
    opacity 850ms var(--ease-in-out),
    transform 850ms var(--ease-in-out);
}

.reflection-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.reflection-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reflection-slide--mood {
  background: linear-gradient(180deg, #aaa7a5 0%, #cbc7c4 54%, #d8d4d1 100%);
}

.reflection-slide--mood img {
  object-fit: contain;
}

.reflection-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 620px;
  padding: 112px 80px;
}

.reflection-copy h2 {
  margin-bottom: 26px;
}

.reflection-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.reflection-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
}

.reflection-details button {
  position: relative;
  padding: 8px 0 8px 14px;
  color: var(--muted);
  font: inherit;
  letter-spacing: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.reflection-details button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.92);
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.reflection-details button[aria-selected="true"] {
  color: var(--rose-deep);
}

.reflection-details button[aria-selected="true"]::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.reflection-details button:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 4px;
}

.connection-editorial {
  max-width: 570px;
  padding: 38px 0 32px;
}

.connection-kicker {
  margin: 0;
  color: rgba(81, 45, 59, 0.64);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.connection-editorial blockquote {
  margin: 28px 0 34px;
  color: var(--mulberry-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1.08;
}

.connection-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 18px;
  color: var(--mulberry);
  font-size: 13px;
  font-weight: 700;
}

.connection-steps span:nth-child(2) {
  text-align: center;
}

.connection-steps span:last-child {
  text-align: right;
}

.closing-cta {
  padding: 126px 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 146, 148, 0.18), transparent 32%),
    var(--forest-deep);
  text-align: center;
}

.closing-inner {
  width: min(780px, 100%);
  margin-inline: auto;
}

.closing-mark {
  margin: 0 auto 28px;
  border-radius: 16px;
}

.closing-cta h2 {
  margin-bottom: 24px;
}

.closing-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.closing-cta .button {
  margin-top: 34px;
}

.care-strip {
  padding: 44px 0;
  background: #e8e1d7;
  border-top: 1px solid var(--line);
}

.care-strip .section-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.care-strip h2 {
  font-size: 34px;
}

.care-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 30px 0;
  color: var(--paper);
  background: var(--forest-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.site-footer nav a {
  color: rgba(255, 250, 242, 0.7);
}

.site-footer nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 242, 0.56);
  font-size: 13px;
  text-align: right;
}

.document-wrap {
  padding: 80px 0 104px;
}

.document {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.document h1 {
  margin-bottom: 22px;
  font-size: 62px;
}

.document h2 {
  margin-top: 38px;
  font-size: 32px;
}

.document p {
  color: #594d4b;
}

.document a {
  color: var(--mulberry);
  font-weight: 700;
}

.support-hero {
  padding: 86px 0;
  background: var(--rose-wash);
  border-bottom: 1px solid var(--line);
}

.support-grid,
.section-inner {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  align-items: center;
}

.support-grid h1 {
  font-size: 72px;
}

.support-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.support-grid .button {
  margin-top: 12px;
}

.support-grid > img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feature-section {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 220px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feature-card h3 {
  margin-bottom: 14px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.linked-card {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.linked-card:hover {
  border-color: rgba(81, 45, 59, 0.44);
  transform: translateY(-3px);
}

.support-topic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.note-section {
  padding: 0 0 90px;
}

.care-note {
  max-width: 820px;
  padding: 32px;
  background: rgba(170, 181, 159, 0.26);
  border: 1px solid rgba(21, 56, 47, 0.18);
  border-radius: 8px;
}

.care-note h2 {
  font-size: 38px;
}

.care-note p:last-child {
  margin-bottom: 0;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 82px;
  }

  h2 {
    font-size: 54px;
  }

  .manifesto h2 {
    font-size: 62px;
  }

  .chapter-shell,
  .product-chapter--reverse .chapter-shell {
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .phone-stage {
    max-width: 310px;
  }

  .reflection-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .reflection-image {
    grid-column: 1;
    grid-row: 1;
  }

  .reflection-copy {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    padding-block: 78px 64px;
  }

  .reflection-copy {
    padding-inline: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
  }

  .section-shell,
  .chapter-shell,
  .hero-inner,
  .footer-inner,
  .support-grid,
  .section-inner {
    width: calc(100% - 36px);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand-link {
    font-size: 20px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    padding-inline: 13px;
  }

  .hero {
    min-height: 92svh;
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(22, 18, 17, 0.9) 0%, rgba(22, 18, 17, 0.48) 57%, rgba(22, 18, 17, 0.08) 78%),
      linear-gradient(90deg, rgba(22, 18, 17, 0.34), transparent 74%);
  }

  .hero-inner {
    padding: 200px 0 46px;
  }

  .hero-line {
    font-size: 32px;
  }

  .hero-copy {
    max-width: 420px;
    font-size: 17px;
  }

  .hero-actions {
    gap: 12px 20px;
    margin-top: 28px;
  }

  .hero-note {
    display: none;
  }

  .section-pad,
  .product-chapter {
    padding: 76px 0;
  }

  .manifesto h2 {
    font-size: 48px;
  }

  .manifesto h2 br {
    display: none;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 48px;
  }

  .chapter-shell,
  .product-chapter--reverse .chapter-shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .product-chapter--reverse .chapter-copy {
    order: 1;
  }

  .product-chapter--reverse .phone-stage {
    order: 2;
  }

  .chapter-copy {
    padding-inline: 18px;
  }

  .chapter-copy > p:not(.eyebrow):not(.chapter-quote) {
    font-size: 17px;
  }

  .phone-stage {
    width: min(100%, 268px);
  }

  .app-screen-frame {
    border-radius: 38px;
  }

  .statement-band {
    padding: 64px 0;
  }

  .statement-band .section-shell {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .statement-band p {
    font-size: 39px;
  }

  .statement-band span {
    grid-column: 1 / -1;
    margin-top: 18px;
    text-align: left;
  }

  .women-section {
    padding: 80px 0 68px;
  }

  .women-heading {
    display: block;
    text-align: left;
  }

  .women-heading > p:last-child {
    margin: 24px 0 0;
    font-size: 17px;
  }

  .story-gallery {
    display: flex;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    margin-top: 46px;
    padding: 0 18px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .story-gallery::-webkit-scrollbar {
    display: none;
  }

  .story-card,
  .story-card--featured,
  .story-card--safiyyah {
    flex: 0 0 min(82vw, 340px);
    min-height: 0;
    aspect-ratio: 1.38 / 1;
    scroll-snap-align: center;
  }

  .story-card-copy {
    padding: 24px;
  }

  .story-card-copy h3,
  .story-card--featured .story-card-copy h3 {
    font-size: 32px;
  }

  .women-footnote {
    align-items: flex-end;
    margin-top: 20px;
  }

  .women-footnote p {
    max-width: 220px;
    font-size: 23px;
  }

  .women-footnote span {
    max-width: 90px;
    text-align: right;
  }

  .reflection-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .reflection-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .reflection-copy {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    padding: 78px 24px 48px;
  }

  .connection-editorial {
    margin: 0 18px;
  }

  .connection-editorial blockquote {
    font-size: 38px;
  }

  .closing-cta {
    padding: 92px 24px;
  }

  .care-strip .section-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }

  .document-wrap {
    padding: 54px 0 72px;
  }

  .document {
    width: calc(100% - 36px);
    padding: 28px;
  }

  .document h1 {
    font-size: 48px;
  }

  .support-hero,
  .feature-section,
  .note-section {
    padding: 62px 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .support-grid h1 {
    font-size: 54px;
  }

  .support-grid > img {
    max-width: 320px;
  }

  .feature-grid,
  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
