/* =========================================================
   STRIDING FORWARD — brand design system
   Palette: Ink Plum, Plum, Terracotta, Gold, Linen, Cream
   Type: Fraunces (display) + Manrope (body/UI)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --ink: #2A1424;          /* body copy, near-black plum */
  --ink-rgb: 42, 20, 36;
  --plum: #3A1830;         /* nav, footer, dark sections */
  --plum-rgb: 58, 24, 48;
  --terracotta: #C1552E;   /* primary CTA, links, emphasis */
  --terracotta-rgb: 193, 85, 46;
  --gold: #B8863B;         /* hairlines, eyebrows, hover accents */
  --gold-rgb: 184, 134, 59;
  --linen: #F4E9DA;        /* primary background */
  --cream: #FFFBF5;        /* card / alt-section background */

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img, svg { display: block; max-width: 100%; }
input, button, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}

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

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: rgba(var(--ink-rgb), 0.85);
  max-width: 42ch;
}

em, .accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

.section--tight { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.section--dark { background: var(--plum); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--cream { background: var(--cream); }

.hr {
  border: none;
  border-top: 1px solid rgba(var(--plum-rgb), 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 1rem 1.9rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn--primary:hover { background: #a8461f; }

.btn--ghost-dark {
  border-color: rgba(var(--ink-rgb), 0.35);
  color: var(--ink);
  background: transparent;
}
.btn--ghost-dark:hover { border-color: var(--plum); background: rgba(var(--plum-rgb), 0.06); }

.btn--ghost-light {
  border-color: rgba(255, 251, 245, 0.45);
  color: var(--cream);
  background: transparent;
}
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--arrow::after {
  content: '\2192';
  font-size: 1.1em;
  transition: transform 0.25s var(--ease);
}
.btn--arrow:hover::after { transform: translateX(3px); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 233, 218, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(var(--plum-rgb), 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.wordmark span { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 26px;
  position: relative;
  z-index: 210;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--plum);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span { top: 12px; }
.nav-toggle span::before { top: -9px; }
.nav-toggle span::after { top: 9px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); background: var(--cream); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); background: var(--cream); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--plum);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 1rem; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Scroll spine (signature element, desktop only) ---------- */
.stride-spine {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40vh;
  max-height: 320px;
  background: rgba(var(--plum-rgb), 0.14);
  z-index: 90;
  display: none;
}
.stride-spine__fill {
  width: 100%;
  height: 0%;
  background: var(--terracotta);
  transition: height 0.1s linear;
}
.stride-spine__label {
  position: absolute;
  top: -1.9rem;
  left: -6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(var(--plum-rgb), 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  display: none;
}
@media (min-width: 1150px) {
  .stride-spine { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-photo { max-width: 380px; }
}

.hero-copy h1 {
  margin-bottom: 1.6rem;
}

.hero-copy h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: line-rise 0.9s var(--ease) forwards;
}
.hero-copy h1 .line:nth-child(1) { animation-delay: 0.05s; }
.hero-copy h1 .line:nth-child(2) { animation-delay: 0.22s; }
.hero-copy h1 .line:nth-child(3) { animation-delay: 0.39s; }

@keyframes line-rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 .line { opacity: 1; transform: none; animation: none; }
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero-cta-row small {
  font-size: 0.85rem;
  color: rgba(var(--ink-rgb), 0.65);
}

/* stride line svg under hero */
.stride-line {
  margin-top: 2.6rem;
  width: 100%;
  max-width: 420px;
  height: 20px;
}
.stride-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw-line 1.4s 0.7s var(--ease) forwards;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .stride-line path { stroke-dashoffset: 0; animation: none; }
}

.hero-photo {
  position: relative;
}
.photo-frame {
  aspect-ratio: 4 / 5;
  border: 1.5px solid var(--gold);
  outline: 1.5px solid var(--plum);
  outline-offset: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Placeholder blocks ---------- */
.placeholder-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  height: 100%;
  width: 100%;
  background: rgba(var(--plum-rgb), 0.05);
  border: 1.5px dashed rgba(var(--plum-rgb), 0.35);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  color: rgba(var(--ink-rgb), 0.6);
}
.placeholder-box strong {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.placeholder-box span { font-size: 0.9rem; max-width: 28ch; }

/* ---------- Intro section ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.intro-grid .eyebrow { margin-bottom: 1.4rem; }
@media (max-width: 760px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Services strip (editorial rows) ---------- */
.service-rows { border-top: 1px solid rgba(var(--plum-rgb), 0.18); }
.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid rgba(var(--plum-rgb), 0.18);
}
.service-row h3 { margin-bottom: 0; }
.service-row p { color: rgba(var(--ink-rgb), 0.75); max-width: 52ch; }
.service-row .btn { justify-self: start; }

@media (max-width: 760px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .service-row .btn { justify-self: start; }
}

/* ---------- CTA band ---------- */
.cta-band {
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 2rem;
}
.cta-band h2 { max-width: 16ch; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum);
  color: rgba(255, 251, 245, 0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 251, 245, 0.15);
}
.footer-brand .wordmark { color: var(--cream); }
.footer-brand .wordmark span { color: var(--gold); }
.footer-brand p { margin-top: 1rem; max-width: 32ch; font-size: 0.92rem; }
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a:hover { color: var(--gold); }

.footer-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.85rem;
}
.footer-icons a {
  color: rgba(255, 251, 245, 0.75);
  transition: color 0.25s var(--ease);
}
.footer-icons a:hover { color: var(--gold); }
.footer-icons svg { width: 19px; height: 19px; display: block; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Standalone (no-nav) pages ---------- */
.standalone-header {
  padding: 1.75rem 0;
}
.standalone-header .wordmark { display: inline-block; }

/* ---------- Reclaim landing page ---------- */
.reclaim-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.reclaim-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.reclaim-list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 1.02rem;
}
.reclaim-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  flex: none;
  transform: translateY(-2px);
}
.signup-card {
  background: var(--cream);
  border: 1px solid rgba(var(--plum-rgb), 0.15);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.signup-card h3 { margin-bottom: 0.5rem; }
.signup-card p.hint { font-size: 0.88rem; color: rgba(var(--ink-rgb), 0.65); margin-bottom: 1.5rem; }
.mailerlite-embed {
  min-height: 260px;
}
.consent-note {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(var(--ink-rgb), 0.6);
  line-height: 1.5;
}
.consent-note a { color: var(--terracotta); text-decoration: underline; }

@media (max-width: 860px) {
  .reclaim-hero { grid-template-columns: 1fr; }
}

/* ---------- Check-your-email page ---------- */
.confirm-screen {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0;
}
.confirm-card { max-width: 560px; margin: 0 auto; }
.confirm-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: rgba(var(--terracotta-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-card .lede { margin: 1.1rem auto 2rem; }
.confirm-steps {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.confirm-steps li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.98rem;
}
.confirm-steps li span.num {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--plum);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
.about-hero .photo-frame { aspect-ratio: 3 / 4; }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero .hero-photo { order: -1; max-width: 340px; }
}

.about-headline {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.15;
}

.about-copy {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-copy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(var(--ink-rgb), 0.88);
}
.about-questions { margin: 0.25rem 0; }

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 640px;
}
.credentials-list li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  font-size: 1.02rem;
  color: rgba(var(--ink-rgb), 0.85);
}
.credentials-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  transform: translateY(-2px);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.contact-card {
  background: var(--cream);
  border: 1px solid rgba(var(--plum-rgb), 0.15);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.contact-card a.email {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--plum);
}
.contact-card a.email:hover { color: var(--terracotta); }
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1rem;
}
.social-list a {
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.social-list a:hover { color: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Services page: offer blocks ---------- */
.service-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.pull-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-top: 1.75rem;
  max-width: 34ch;
}

.offers-list {
  display: flex;
  flex-direction: column;
}
.offer-block {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(var(--plum-rgb), 0.18);
}
.offers-list > .offer-block:first-child { padding-top: 0; }
.offers-list > .offer-block:last-child { border-bottom: none; padding-bottom: 0; }
.offer-block h2 { margin-top: 0.75rem; max-width: 28ch; }
.offer-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-top: 0.6rem;
  margin-bottom: 1.5rem;
}
.offer-list-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.9rem;
}
.offer-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 1.75rem 0;
}
@media (max-width: 760px) {
  .offer-lists { grid-template-columns: 1fr; }
}
.offer-best-for {
  font-size: 0.95rem;
  color: rgba(var(--ink-rgb), 0.72);
  margin: 1.75rem 0 1.75rem;
  max-width: 60ch;
}
.offer-best-for strong { color: var(--plum); }
.offer-availability {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.step-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  flex: none;
  width: 2.2rem;
}
.step-list h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum); margin-bottom: 0.35rem; }
.step-list p { font-size: 0.95rem; color: rgba(var(--ink-rgb), 0.75); max-width: 55ch; }

.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.speaking-topic { padding-top: 1.25rem; border-top: 1px solid rgba(var(--plum-rgb), 0.15); }
.speaking-topic:first-child { border-top: none; padding-top: 0; }
.speaking-topic h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--plum); margin-bottom: 0.5rem; }
.speaking-topic p { font-size: 0.95rem; color: rgba(var(--ink-rgb), 0.78); max-width: 70ch; }

.format-list {
  font-size: 0.92rem;
  color: rgba(var(--ink-rgb), 0.7);
  max-width: 70ch;
  margin-bottom: 1.75rem;
}
