:root {
  color-scheme: light;
  --navy: #1a2d42;
  --navy-soft: #29435e;
  --gold: #908876;
  --gold-light: #c9c2b2;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #263444;
  --muted: #62707e;
  --line: #dedbd3;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 18px 48px rgb(26 45 66 / 9%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .65rem 1rem;
  background: var(--navy);
  color: #fff;
}

.skip-link:focus { top: 1rem; }

.container { width: min(1120px, calc(100% - 3rem)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 3rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(251 250 247 / 94%);
  border-bottom: 1px solid rgb(144 136 118 / 24%);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: block;
  width: 58px;
  height: 54px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: url("discern-logo-mark.png") left center / 50px 50px no-repeat;
  border-right: 1px solid var(--gold-light);
}

.brand-mark::after {
  content: none;
}

.brand-text { display: grid; line-height: 1.1; }
.brand-name { font: 600 1.18rem/1.15 var(--serif); letter-spacing: .01em; }
.brand-descriptor { margin-top: .22rem; color: var(--muted); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 1.55rem; }
.site-nav a { color: var(--navy); font-size: .93rem; font-weight: 600; text-decoration: none; }
.site-nav a:not(.button):hover { color: var(--gold); }

.menu-button {
  display: none;
  padding: .55rem;
  background: none;
  border: 0;
  color: var(--navy);
  font: inherit;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
  margin: 6px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .72rem 1.3rem;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: #fff !important;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { background: var(--navy-soft); transform: translateY(-1px); }
.button-secondary { background: transparent; color: var(--navy) !important; }
.button-secondary:hover { background: var(--navy); color: #fff !important; }
.button-light { border-color: #fff; background: #fff; color: var(--navy) !important; }
.button-light:hover { background: transparent; color: #fff !important; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; color: var(--navy); font-family: var(--serif); font-weight: 500; }
h1 { max-width: 900px; margin-bottom: 1.25rem; font-size: clamp(2.7rem, 6.4vw, 5.7rem); line-height: .99; letter-spacing: -.035em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.025em; }
h3 { margin-bottom: .65rem; font-size: 1.35rem; line-height: 1.25; }
p { margin-top: 0; }
.lede { max-width: 720px; color: #3f4d5b; font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.6; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    linear-gradient(90deg, transparent 0 74%, rgb(144 136 118 / 6%) 74%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 15%;
  right: -8vw;
  width: min(42vw, 590px);
  height: min(42vw, 590px);
  border: 1px solid rgb(144 136 118 / 33%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  right: 2vw;
  bottom: 18%;
  width: min(31vw, 430px);
  height: 1px;
  background: var(--gold);
  transform: rotate(-12deg);
  transform-origin: right;
}

.hero-content { position: relative; z-index: 1; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.15rem; }
.credentials { display: flex; flex-wrap: wrap; gap: .55rem 1.3rem; margin-top: 3.3rem; color: var(--muted); font-size: .88rem; }
.credentials span { display: inline-flex; align-items: center; gap: .55rem; }
.credentials span::before { width: 18px; height: 1px; background: var(--gold); content: ""; }

/* Branded hero composition: an editorial monogram built entirely with reliable CSS. */
.hero-art {
  position: absolute;
  top: 50%;
  right: 0;
  width: min(29vw, 330px);
  translate: 0 -50%;
}

.hero-art-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgb(144 136 118 / 42%);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 72%), rgb(233 229 220 / 48%));
  box-shadow: 24px 24px 0 rgb(144 136 118 / 9%);
}

.hero-art-frame::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 42%;
  background: var(--navy);
  content: "";
}

.hero-art-frame::after {
  position: absolute;
  right: -18%;
  bottom: -13%;
  width: 75%;
  aspect-ratio: 1;
  border: 1px solid rgb(144 136 118 / 55%);
  border-radius: 50%;
  content: "";
}

.hero-art-letter {
  position: absolute;
  top: 50%;
  left: 48%;
  color: var(--navy);
  font: 500 clamp(10rem, 16vw, 14rem)/.75 var(--serif);
  letter-spacing: -.08em;
  translate: -50% -50%;
}

.hero-art-path {
  position: absolute;
  z-index: 2;
  left: 18%;
  right: 13%;
  bottom: 34%;
  height: 31%;
  border-top: 5px solid var(--gold);
  border-radius: 50%;
  rotate: -8deg;
}

.hero-art-circle {
  position: absolute;
  z-index: 3;
  right: 13%;
  bottom: 38%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgb(144 136 118 / 13%);
}

.hero-art-words {
  display: flex;
  justify-content: space-between;
  margin: 1.25rem 0 0;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (min-width: 1101px) {
  .hero-content { padding-right: 360px; }
  .hero h1 { font-size: clamp(2.7rem, 5.25vw, 5.2rem); }
}

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: #e8edf1; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: var(--gold-light); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.split-top { align-items: start; }
.section-intro { max-width: 670px; margin-bottom: 3.5rem; }

.statement {
  padding-left: clamp(1.3rem, 3vw, 2.2rem);
  border-left: 1px solid var(--gold);
  color: var(--navy);
  font: 500 clamp(1.5rem, 3vw, 2.2rem)/1.35 var(--serif);
}

.rule-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.rule-list li { display: grid; grid-template-columns: 2.3rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.rule-number { color: var(--gold); font: 600 .82rem/1.7 var(--sans); letter-spacing: .1em; }
.rule-list strong { display: block; color: var(--navy); font: 500 1.25rem/1.4 var(--serif); }
.rule-list p { margin: .25rem 0 0; color: var(--muted); font-size: .95rem; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service {
  min-height: 245px;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.service-index { display: block; margin-bottom: 3.2rem; color: var(--gold); font-size: .72rem; letter-spacing: .14em; }
.service p { margin-bottom: 0; color: var(--muted); }

.location-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgb(255 255 255 / 18%); border: 1px solid rgb(255 255 255 / 18%); }
.location-card { padding: clamp(2rem, 5vw, 3.5rem); background: var(--navy); }
.location-card p { color: #cbd4dc; }
.location-meta { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgb(255 255 255 / 20%); color: #fff !important; font-size: .9rem; }

.portrait-frame { position: relative; width: min(420px, 90%); margin-inline: auto; }
.portrait-frame::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--gold-light); }
.portrait-frame img { position: relative; aspect-ratio: 1 / 1; object-fit: cover; filter: saturate(.78); }
.profile-copy .button { margin-top: .65rem; }

.cta-band { padding: clamp(4rem, 8vw, 6.2rem) 0; border-top: 1px solid var(--line); text-align: center; }
.cta-band h2 { max-width: 760px; margin-inline: auto; }
.cta-band p { max-width: 650px; margin: 0 auto 2rem; color: var(--muted); }

.site-footer { padding: 3rem 0 2rem; background: #142538; color: #c8d0d8; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 3rem; }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark {
  width: 56px;
  height: 54px;
  background-color: #fbfaf7;
  background-position: center;
  background-size: 48px 48px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 7px;
  box-shadow: 0 4px 14px rgb(0 0 0 / 16%);
}
.site-footer .brand-descriptor, .site-footer p { color: #aeb9c3; }
.footer-title { margin-bottom: .65rem; color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: .4rem; }
.footer-links a { color: #c8d0d8; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgb(255 255 255 / 13%); font-size: .78rem; }

.landing-hero { min-height: 620px; text-align: center; }
.landing-hero h1, .landing-hero .lede { margin-inline: auto; }
.landing-hero .hero-actions, .landing-hero .credentials { justify-content: center; }
.landing-hero::before { right: 50%; translate: 50% 0; opacity: .8; }
.landing-hero::after { right: 50%; bottom: 13%; translate: 50% 0; width: min(60vw, 650px); }

.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.expect-step { padding: 2.25rem; border-right: 1px solid var(--line); }
.expect-step:last-child { border-right: 0; }
.expect-step .rule-number { display: block; margin-bottom: 2.8rem; }

.reassurance { padding: 2.3rem; border: 1px solid var(--gold-light); background: #fff; }
.reassurance p:last-child { margin-bottom: 0; }
.urgent-note { margin-top: 2rem; color: var(--muted); font-size: .84rem; line-height: 1.6; }

.resource-hero { min-height: 520px; }
.resource-hero h1 { max-width: 820px; }
.resource-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.resource-count { color: var(--muted); font-size: .85rem; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.resource-card { display: flex; min-height: 265px; flex-direction: column; align-items: flex-start; padding: clamp(1.5rem, 4vw, 2.4rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.resource-type { margin-bottom: 2.6rem; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.resource-card p { color: var(--muted); }
.resource-card a { margin-top: auto; color: var(--navy); font-size: .9rem; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .25rem; }
.resource-note { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--navy) !important; font-size: .88rem; }
.empty-resources { grid-column: 1 / -1; padding: 3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.education-note { padding: 2rem; border-left: 1px solid var(--gold); background: #fff; }

.crisis-panel { padding: clamp(2rem, 5vw, 3.5rem); background: var(--navy); color: #d8e0e7; }
.crisis-panel h2, .crisis-panel h3 { color: #fff; }
.crisis-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.6rem 0 2rem; }
.crisis-lines { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 2rem; margin: 1.4rem 0 0; padding-top: 1.4rem; border-top: 1px solid rgb(255 255 255 / 18%); }
.crisis-lines a { color: #fff; text-decoration: none; }

.crisis-strip { padding: 1.15rem 0; background: #e9e5dc; color: var(--navy); font-size: .82rem; line-height: 1.55; }
.crisis-strip p { margin: 0; }
.crisis-strip strong { font-weight: 800; }
.crisis-strip a { font-weight: 700; text-underline-offset: .18rem; }

.blog-hero { min-height: 520px; }
.blog-hero h1 { max-width: 870px; }
.blog-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.blog-header .button { flex: 0 0 auto; }
.post-list { border-top: 1px solid var(--line); }
.post-card { display: grid; grid-template-columns: 150px 1fr auto; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; padding: clamp(2rem, 5vw, 3.4rem) 0; border-bottom: 1px solid var(--line); }
.post-date { color: var(--gold); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.post-card h2 { margin-bottom: .75rem; font-size: clamp(1.65rem, 3.2vw, 2.6rem); }
.post-card p { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.post-link { align-self: center; color: var(--navy); font-size: .88rem; font-weight: 800; white-space: nowrap; text-decoration-thickness: 1px; text-underline-offset: .25rem; }
.post-state { padding: 2.5rem 0; color: var(--muted); }
.blog-principle { padding-left: 2rem; border-left: 1px solid var(--gold); }
.blog-principle p:last-child { margin-bottom: 0; }

.article-shell { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; }
.article-header { max-width: 850px; margin: 0 auto 3rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.article-header h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.article-header time { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.article-body { max-width: 760px; margin-inline: auto; color: #344251; font: 1.08rem/1.85 var(--serif); }
.article-body h2, .article-body h3, .article-body h4 { margin-top: 2.6rem; }
.article-body h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.article-body p { margin-bottom: 1.45rem; }
.article-body blockquote { margin: 2.2rem 0; padding: .4rem 0 .4rem 1.7rem; border-left: 2px solid var(--gold); color: var(--navy); font-size: 1.22rem; }
.article-body img { width: auto; height: auto; margin: 2.2rem auto; }
.article-body figure { margin: 2.2rem 0; }
.article-body figcaption { color: var(--muted); font: .82rem/1.5 var(--sans); text-align: center; }
.article-body a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: .2rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; }
.article-nav { display: flex; justify-content: space-between; gap: 1rem; max-width: 760px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.article-nav a { color: var(--navy); font-size: .88rem; font-weight: 800; text-underline-offset: .2rem; }
.article-loading, .article-error { max-width: 760px; margin-inline: auto; padding: 2rem; background: var(--paper); color: var(--muted); }

/* Discern motif system --------------------------------------------------- */
.section,
.cta-band,
.article-shell { position: relative; overflow: hidden; }

/* Gold arch: a quiet threshold beside major section introductions. */
.section-intro { position: relative; }
.section-intro::after {
  position: absolute;
  top: -.8rem;
  right: -5.5rem;
  width: 88px;
  height: 44px;
  border: 1px solid rgb(144 136 118 / 38%);
  border-bottom: 0;
  border-radius: 88px 88px 0 0;
  content: "";
}

/* Cropped D: an anchoring mark on editorial and resource entrances. */
.blog-hero .hero-content::after,
.resource-hero .hero-content::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 1rem;
  color: rgb(26 45 66 / 7%);
  content: "D";
  font: 500 clamp(14rem, 29vw, 25rem)/.72 var(--serif);
  letter-spacing: -.09em;
  translate: 0 -47%;
}

/* The Ready to Talk page receives the arch rather than another full monogram. */
.landing-hero .hero-content::after {
  position: absolute;
  z-index: -1;
  top: 42%;
  left: 50%;
  width: min(72vw, 760px);
  height: min(36vw, 380px);
  border: 1px solid rgb(144 136 118 / 25%);
  border-bottom: 0;
  border-radius: 760px 760px 0 0;
  content: "";
  translate: -50% -50%;
}

/* Service cards use small cropped arches, alternating position for rhythm. */
.service { position: relative; overflow: hidden; }
.service::after {
  position: absolute;
  right: -38px;
  bottom: -39px;
  width: 105px;
  height: 105px;
  border: 1px solid rgb(144 136 118 / 26%);
  border-radius: 50%;
  content: "";
}
.service:nth-child(even)::after { right: auto; left: -38px; }

/* Location panels pair the D and arch without changing their content. */
.location-card { position: relative; overflow: hidden; }
.location-card:first-child::before {
  position: absolute;
  right: 1.2rem;
  bottom: -2rem;
  color: rgb(255 255 255 / 5%);
  content: "D";
  font: 500 10rem/.8 var(--serif);
}
.location-card:last-child::before {
  position: absolute;
  right: -3rem;
  bottom: -5.5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgb(201 194 178 / 15%);
  border-radius: 50%;
  content: "";
}

/* River line: movement through calls to action and long-form reading. */
.cta-band::before {
  position: absolute;
  top: 48%;
  left: -5%;
  width: 34%;
  height: 42%;
  border-top: 2px solid rgb(144 136 118 / 36%);
  border-radius: 50%;
  content: "";
  rotate: -7deg;
}
.cta-band::after {
  position: absolute;
  right: -6%;
  bottom: 17%;
  width: 31%;
  height: 34%;
  border-top: 1px solid rgb(26 45 66 / 16%);
  border-radius: 50%;
  content: "";
  rotate: 7deg;
}
.cta-band .narrow { position: relative; z-index: 1; }

.article-header { position: relative; }
.article-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 92px;
  height: 32px;
  border: 1px solid rgb(144 136 118 / 46%);
  border-bottom: 0;
  border-radius: 92px 92px 0 0;
  content: "";
}

.post-card { position: relative; }
.post-card::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 74px;
  height: 18px;
  border-top: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  rotate: -6deg;
}

@media (max-width: 600px) {
  .article-nav { display: grid; }
}

@media (max-width: 880px) {
  .container, .narrow { width: min(100% - 2rem, 720px); }
  .nav-shell { min-height: 72px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: .55rem .25rem; }
  .site-nav .button { margin-top: .3rem; }
  .hero { min-height: auto; }
  .hero::before { top: 10%; right: -28vw; width: 76vw; height: 76vw; }
  .hero::after { right: -2rem; width: 55vw; }
  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(320px, 75vw);
    margin: 3.5rem auto 0;
    translate: none;
  }
  .split, .location-band, .footer-grid { grid-template-columns: 1fr; }
  .profile-copy { order: -1; }
  .expect-grid { grid-template-columns: 1fr; }
  .resource-grid, .crisis-lines { grid-template-columns: 1fr; }
  .resource-toolbar { display: block; }
  .blog-header { display: block; }
  .blog-header .button { margin-top: 1rem; }
  .post-card { grid-template-columns: 1fr; gap: .85rem; }
  .post-link { justify-self: start; }
  .blog-hero .hero-content::after,
  .resource-hero .hero-content::after { right: -2rem; opacity: .72; }
  .section-intro::after { right: 0; }
  .expect-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .expect-step:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .brand-descriptor { display: none; }
  .brand-mark { width: 48px; height: 44px; background-size: 40px 40px; }
  .hero { padding: 4.7rem 0 5rem; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-actions { display: grid; }
  .credentials { display: grid; }
  .hero-art { width: min(270px, 78vw); margin-top: 3rem; }
  .hero-art-letter { font-size: clamp(9rem, 44vw, 12rem); }
  .service-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .blog-hero .hero-content::after,
  .resource-hero .hero-content::after { top: 20%; right: -1rem; font-size: 13rem; }
  .landing-hero .hero-content::after { width: 96vw; height: 48vw; }
  .section-intro::after { top: -.2rem; width: 56px; height: 28px; }
  .cta-band::before, .cta-band::after { opacity: .65; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
