:root {
  color-scheme: light;
  --page: #fcfbf8;
  --paper: #fcfbf8;
  --paper-strong: #ffffff;
  --ink: #17130f;
  --ink-soft: #4f4740;
  --muted: #796f66;
  --line: rgba(23, 19, 15, 0.16);
  --line-soft: rgba(23, 19, 15, 0.09);
  --brown: #74503b;
  --brown-deep: #261d17;
  --brown-black: #17110e;
  --cream: #f3eee6;
  --danger: #9e3429;
  --success: #315f41;
  --focus: rgba(116, 80, 59, 0.34);
  --shell: min(1280px, calc(100% - 72px));
  --font: "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 100;
  padding: 0.72rem 0.95rem;
  color: var(--paper-strong);
  background: var(--brown-black);
  transition: top 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.nav > .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 1.18rem;
  font-weight: 300;
  font-synthesis: none;
  letter-spacing: 0.5em;
  line-height: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1;
}

.nav > .brand .brand-wordmark {
  display: block;
  width: clamp(8.4rem, 10vw, 10.6rem);
  max-width: none;
  height: auto;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.nav-links a {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding-bottom: 0.12rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.nav-toggle {
  margin-left: auto;
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 1px;
  background: currentColor;
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
.find-prompt:focus-visible,
.quiet-link:focus-visible,
.brand:focus-visible,
.footer-links a:focus-visible,
.privacy-note a:focus-visible,
.legal-content a:focus-visible,
.legal-kicker a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

/* Homepage */

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: stretch;
  background: var(--page);
}

.hero-stage {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 34px;
  padding-bottom: 36px;
}

.hero-index,
.hero-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  align-self: center;
  padding: 8vh 0 9vh;
}

.hero-copy h1 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3.9rem, 7.5vw, 7.1rem);
  font-weight: 470;
  letter-spacing: -0.052em;
  line-height: 1;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 18ch;
  margin: 2.15rem 0 0;
  color: var(--brown);
  font-size: clamp(0.98rem, 1.35vw, 1.6rem);
  font-weight: 430;
  letter-spacing: -0.032em;
}

.hero-foot {
  align-items: flex-end;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.hero-foot p {
  max-width: 340px;
  margin: 0;
  text-align: right;
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.22rem;
}

.quiet-link span {
  transition: transform 160ms ease;
}

.quiet-link:hover span,
.quiet-link:focus-visible span {
  transform: translateY(2px);
}

.recognition {
  color: var(--cream);
  background: var(--brown-black);
}

.recognition-stage {
  min-height: 92svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 48px;
  padding-bottom: 54px;
}

.scene-label,
.find-column-label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scene-label {
  color: currentColor;
  opacity: 0.56;
}

.recognition h2 {
  align-self: center;
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3.35rem, 6.45vw, 6.55rem);
  font-weight: 430;
  letter-spacing: -0.068em;
  line-height: 0.92;
  text-wrap: balance;
}

.recognition-line {
  max-width: 720px;
  margin: 0 0 0 auto;
  color: rgba(244, 236, 225, 0.68);
  font-size: clamp(1.02rem, 1.45vw, 1.45rem);
  letter-spacing: -0.024em;
  line-height: 1.32;
  text-align: right;
}

.find-scene {
  padding: 128px 0 150px;
  background: var(--paper);
}

.find-heading {
  margin-bottom: 88px;
}

.find-heading h2 {
  margin: 1.35rem 0 0;
  font-size: clamp(3.55rem, 6.5vw, 6.1rem);
  font-weight: 450;
  letter-spacing: -0.068em;
  line-height: 0.93;
  text-wrap: balance;
}

.find-heading > p:last-child {
  margin: 1.35rem 0 0;
  color: var(--brown);
  font-size: clamp(0.97rem, 1.27vw, 1.35rem);
  letter-spacing: -0.034em;
}

.find-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.find-prompts {
  padding: 34px 48px 34px 0;
  border-right: 1px solid var(--line);
}

.find-column-label {
  color: var(--muted);
}

.find-prompt {
  width: 100%;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 27px 0;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  background: transparent;
  text-align: left;
  transition: color 160ms ease, opacity 160ms ease;
}

.find-prompt:last-child {
  border-bottom: 0;
}

.find-prompt span {
  padding-top: 0.18rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.find-prompt strong {
  max-width: 430px;
  font-size: clamp(1.08rem, 1.45vw, 1.5rem);
  font-weight: 450;
  letter-spacing: -0.028em;
  line-height: 1.25;
}

.find-prompt:hover,
.find-prompt:focus-visible,
.find-prompt.is-active {
  color: var(--ink);
}

.find-prompt:not(.is-active) {
  opacity: 0.66;
}

.find-reading {
  min-height: 650px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 34px 0 0 64px;
  transition: opacity 140ms ease, transform 140ms ease;
}

.find-reading.is-changing {
  opacity: 0.42;
  transform: translateY(3px);
}

.find-reading-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-label {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.find-reading blockquote {
  max-width: 760px;
  margin: 72px 0 42px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.75vw, 3.1rem);
  font-weight: 430;
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}

.signal-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 46px;
}

.signal-line span {
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  background: transparent;
  font-size: 0.66rem;
}

.direction-reveal {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 2.5rem;
  align-items: end;
  margin-left: -64px;
  padding: 44px 0 46px 64px;
  border-top: 1px solid var(--line);
}

.direction-reveal h3 {
  margin: 0;
  font-size: clamp(2.45rem, 4.0vw, 4.35rem);
  font-weight: 440;
  letter-spacing: -0.064em;
  line-height: 0.94;
  text-wrap: balance;
}

.direction-reveal .find-column-label {
  font-weight: 400;
}

.direction-subtitle {
  margin: 0.9rem 0 0;
  color: var(--brown);
  font-size: clamp(0.82rem, 0.99vw, 1rem);
  letter-spacing: -0.025em;
}

.direction-reason {
  max-width: 350px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.discovery-scene {
  color: var(--cream);
  background: #2b211b;
}

.discovery-stage {
  min-height: 95svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: 64px;
  padding-bottom: 60px;
}

.discovery-copy h2 {
  margin: 1.55rem 0 0;
  max-width: 900px;
  font-size: clamp(3.3rem, 6vw, 5.95rem);
  font-weight: 430;
  letter-spacing: -0.066em;
  line-height: 0.92;
  text-wrap: balance;
}

.scent-path {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid rgba(244, 236, 225, 0.16);
  border-bottom: 1px solid rgba(244, 236, 225, 0.16);
}

.scent-path div {
  display: grid;
  gap: 0.7rem;
}

.scent-path span {
  color: rgba(244, 236, 225, 0.54);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scent-path strong {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 430;
  letter-spacing: -0.05em;
}

.path-arrow {
  visibility: hidden;
  font-size: 1.2rem !important;
  opacity: 0.62;
}

.discovery-note {
  max-width: 560px;
  margin: 0 0 0 auto;
  color: rgba(244, 236, 225, 0.62);
  font-size: clamp(0.98rem, 1.22vw, 1.18rem);
  letter-spacing: -0.025em;
  text-align: right;
}

.early-section {
  color: var(--ink);
  background: var(--page);
}

.access-stage {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 8vw;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.access-copy h2 {
  margin: 1.55rem 0 0;
  font-size: clamp(3.3rem, 5.85vw, 5.85rem);
  font-weight: 450;
  letter-spacing: -0.066em;
  line-height: 0.92;
  text-wrap: balance;
}

.access-copy > p:last-child {
  max-width: 430px;
  margin: 2rem 0 0;
  color: var(--brown);
  font-size: clamp(0.9rem, 1.14vw, 1.14rem);
  letter-spacing: -0.03em;
}

/* SCENTZ display typography: quiet, controlled and unsynthesized. */
.hero-copy h1,
.recognition h2,
.find-heading h2,
.discovery-copy h2,
.access-copy h2 {
  font-weight: 450;
  font-synthesis: none;
  font-kerning: normal;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.find-reading blockquote {
  font-weight: 400;
  font-synthesis: none;
  font-kerning: normal;
  letter-spacing: -0.01em;
  line-height: 1.08;
}


.early-form {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.form-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  border-bottom: 1px solid var(--ink);
}

.email-field {
  min-width: 0;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  min-height: 62px;
  padding: 0.8rem 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

input[type="email"] {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  letter-spacing: -0.025em;
}

input[type="email"]::placeholder {
  color: var(--muted);
}

input[aria-invalid="true"] {
  box-shadow: inset 0 -2px 0 var(--danger);
}

.button {
  min-height: 62px;
  padding: 0.8rem 0 0.8rem 1.5rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 650;
  white-space: nowrap;
  transition: opacity 160ms ease, transform 160ms ease;
}

.button::after {
  content: "→";
  display: inline-block;
  margin-left: 0.65rem;
  transition: transform 160ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(3px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.field-error,
.privacy-note,
.form-message {
  margin: 0;
  font-size: 0.82rem;
}

.field-error {
  min-height: 1.15rem;
  color: var(--danger);
}

.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 430;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 0.12rem 0 0;
  accent-color: var(--brown-deep);
}

.privacy-note {
  max-width: 520px;
  color: var(--muted);
}

.privacy-note a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-message {
  min-height: 1.4rem;
  color: var(--ink-soft);
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--page);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
}

.site-footer .brand-wordmark {
  display: block;
  width: clamp(7.2rem, 8vw, 8.8rem);
  max-width: none;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Legal and support pages */

.legal-main {
  padding: 78px 0 110px;
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 7vw;
  align-items: start;
}

.legal-kicker {
  position: sticky;
  top: 116px;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--brown);
  font-size: 0.6rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-kicker h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3.6vw, 4.1rem);
  font-weight: 460;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-kicker p {
  margin-top: 1.6rem;
  color: var(--muted);
}

.legal-content {
  padding: 0;
  background: transparent;
}

.legal-content section {
  padding: 0 0 2rem;
}

.legal-content section + section {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 590;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  padding-left: 1.15rem;
}

.legal-content a,
.legal-kicker a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.support-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}

.support-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.support-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 48px, 1280px);
  }

  .find-stage {
    grid-template-columns: 1fr;
  }

  .find-prompts {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .find-prompt strong {
    max-width: 680px;
  }

  .find-reading {
    min-height: 600px;
    padding-left: 0;
  }

  .direction-reveal {
    margin-left: 0;
    padding-left: 0;
  }

  .access-stage {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .early-form {
    max-width: 760px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .legal-kicker {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 1280px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.7rem 15px 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--page);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    color: var(--brown);
    font-size: 0.72rem;
  }

  .nav > .brand {
    font-size: 1.02rem;
    letter-spacing: 0.38em;
  }

  .hero,
  .hero-stage {
    min-height: calc(100svh - 66px);
  }

  .hero-stage {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .hero-index {
    font-size: 0.61rem;
  }

  .hero-index span:last-child {
    text-align: right;
  }

  .hero-copy {
    padding: 6vh 0 8vh;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15.8vw, 4.9rem);
    line-height: 1.02;
  }

  .hero-copy p {
    margin-top: 1.4rem;
    font-size: 0.82rem;
  }

  .hero-foot {
    display: grid;
    gap: 1.3rem;
  }

  .hero-foot p {
    max-width: 270px;
    margin-left: auto;
    font-size: 0.78rem;
    text-align: right;
  }

  .recognition-stage {
    min-height: 88svh;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .recognition h2 {
    font-size: clamp(2.85rem, 14.2vw, 4.55rem);
  }

  .recognition-line {
    max-width: 330px;
    font-size: 0.98rem;
  }

  .find-scene {
    padding: 92px 0 104px;
  }

  .find-heading {
    margin-bottom: 56px;
  }

  .find-heading h2 {
    font-size: clamp(2.95rem, 14.6vw, 4.6rem);
  }

  .find-heading > p:last-child {
    font-size: 0.96rem;
  }

  .find-prompts {
    padding-top: 25px;
    padding-bottom: 12px;
  }

  .find-prompt {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 0.6rem;
    padding: 22px 0;
  }

  .find-prompt strong {
    font-size: 0.98rem;
  }

  .find-reading {
    min-height: 570px;
    padding-top: 26px;
  }

  .find-reading blockquote {
    margin: 54px 0 36px;
    font-size: clamp(1.88rem, 9.1vw, 2.85rem);
  }

  .signal-line {
    padding-bottom: 36px;
  }

  .direction-reveal {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 34px 0 38px;
  }

  .direction-reveal h3 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .direction-reason {
    max-width: 100%;
  }

  .discovery-stage {
    min-height: 92svh;
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .discovery-copy h2 {
    font-size: clamp(2.85rem, 14.1vw, 4.45rem);
  }

  .scent-path {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 42px 0;
  }

  .path-arrow {
    transform: rotate(90deg);
    width: fit-content;
    margin-left: 0.2rem;
  }

  .scent-path strong {
    font-size: 2.05rem;
  }

  .discovery-note {
    max-width: 320px;
    font-size: 0.98rem;
  }

  .access-stage {
    min-height: auto;
    gap: 4rem;
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .access-copy h2 {
    font-size: clamp(2.95rem, 14.8vw, 4.55rem);
  }

  .access-copy > p:last-child {
    font-size: 0.94rem;
  }

  .form-inline {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  input[type="email"] {
    min-height: 58px;
    border-bottom: 1px solid var(--ink);
    font-size: 1.25rem;
  }

  .button {
    width: fit-content;
    min-height: 54px;
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .copyright {
    white-space: normal;
  }

  .legal-main {
    padding: 54px 0 84px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: min(100% - 24px, 1280px);
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: 2.95rem;
  }

  .recognition h2,
  .find-heading h2,
  .discovery-copy h2,
  .access-copy h2 {
    font-size: 2.75rem;
  }

  .find-reading blockquote {
    font-size: 2.2rem;
  }

  .find-reading-head {
    align-items: flex-start;
  }
}

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

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