@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --ink: #1f1713;
  --ink-soft: #51443a;
  --cream: #fbf5ea;
  --cream-deep: #f1e6d2;
  --mustard: #efc126;
  --orange: #f05b2c;
  --teal: #16bbb4;
  --teal-deep: #109890;
  --brown: #3c261d;
  --line: rgba(31, 23, 19, 0.14);
  --header-height: 5.4rem;
  --page-gutter: clamp(1.25rem, 3.2vw, 3rem);
  --content-max: 1520px;
  --content-width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
  --section-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  --text-max: 72ch;
  --breadcrumb-bg: #ead2b3;
  --breadcrumb-line: rgba(31, 23, 19, 0.18);
  --hero-art: url("assets/editorial-notebook.jpg");
  --hero-art-position: center center;
  --hero-intro-duration: 820ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-home {
  --hero-bg: var(--mustard);
  --hero-slide-bg: var(--mustard);
  --hero-ink: var(--ink);
  --hero-copy: rgba(31, 23, 19, 0.78);
  --hero-visible-height: calc(100vh - var(--header-height));
  --page-accent: var(--orange);
}

body.page-home.full-home-preview {
  zoom: 0.78;
  transform-origin: top center;
}

body.page-home.full-home-preview .page-hero {
  min-height: min(var(--hero-visible-height), 50rem);
}

body.page-home.full-home-preview .back-to-top {
  display: none !important;
}

body.page-home.hero-preview-still .page-hero [data-parallax-speed] {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0);
  transition: none;
}

body.page-home.motion-settled-preview [data-parallax-speed] {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0);
  transition: none;
}

body.page-home.hero-preview-still.hero-intro-active .page-hero h1,
body.page-home.hero-preview-still.hero-intro-active .page-hero .hero-support,
body.page-home.hero-preview-still.hero-intro-active .page-hero .hero-actions,
body.page-home.hero-preview-still.hero-intro-active .page-hero .hero-media {
  animation: none;
}

body.page-shop,
body.page-legality,
body.page-retreats,
body.article-page.article-law,
body.article-page.article-retreat {
  --hero-bg: var(--orange);
  --hero-ink: #fffaf3;
  --hero-copy: rgba(255, 250, 243, 0.86);
  --page-accent: var(--mustard);
  --breadcrumb-bg: #efbf98;
  --breadcrumb-line: rgba(108, 54, 25, 0.24);
}

body.page-blog,
body.page-research,
body.page-safety,
body.page-contact,
body.article-page.article-research,
body.article-page.article-safety {
  --hero-bg: var(--teal);
  --hero-ink: #fffaf3;
  --hero-copy: rgba(255, 250, 243, 0.88);
  --page-accent: var(--mustard);
  --breadcrumb-bg: #9edfd7;
  --breadcrumb-line: rgba(10, 86, 81, 0.24);
}

body.page-about,
body.page-faq {
  --hero-bg: var(--mustard);
  --hero-ink: var(--ink);
  --hero-copy: rgba(31, 23, 19, 0.8);
  --page-accent: var(--teal);
  --breadcrumb-bg: #f0d267;
  --breadcrumb-line: rgba(94, 71, 10, 0.22);
}

body.page-shop {
  --hero-art: url("assets/library-stacks.jpg");
  --hero-art-position: center 44%;
}

body.page-about,
body.page-contact {
  --hero-art: url("assets/editorial-notebook.jpg");
  --hero-art-position: center 52%;
}

body.page-blog,
body.page-faq {
  --hero-art: url("assets/library-stacks.jpg");
  --hero-art-position: center 36%;
}

body.page-legality,
body.article-page.article-law {
  --hero-art: url("assets/legal-documents.jpg");
  --hero-art-position: center 52%;
}

body.page-retreats,
body.article-page.article-retreat {
  --hero-art: url("assets/retreat-landscape.jpg");
  --hero-art-position: center 58%;
}

body.page-research,
body.article-page.article-research {
  --hero-art: url("assets/research-lab.jpg");
  --hero-art-position: center 48%;
}

body.page-safety,
body.article-page.article-safety {
  --hero-art: url("assets/editorial-notebook.jpg");
  --hero-art-position: center 52%;
}

@supports (height: 100dvh) {
  body.page-home {
    --hero-visible-height: calc(100dvh - var(--header-height));
  }
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-color: var(--page-accent, var(--teal));
}

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

.skip-link {
  position: absolute;
  top: 1rem;
  left: -9999px;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--brown);
  color: #fff;
  text-decoration: none;
}

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

.wrap {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 245, 234, 0.96);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.4rem;
}

.brand,
.brand a {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  line-height: 1;
}

.brand-mark {
  width: auto;
  height: clamp(1.7rem, 2vw, 3.15rem);
  max-height: calc(5.4rem * 0.66);
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(1rem, 1.15vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 5.4rem;
  padding: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--page-accent, var(--teal));
  color: var(--ink);
}

.nav-toggle {
  display: none;
  grid-template-columns: 1.35rem auto;
  grid-template-rows: repeat(3, 2px);
  align-items: center;
  column-gap: 0.8rem;
  row-gap: 0.28rem;
  border: 0;
  background: none;
  color: var(--ink);
  min-height: 3.35rem;
  padding: 0.75rem 0 0.75rem 1rem;
  cursor: pointer;
  justify-items: center;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
}

.nav-toggle span:not(.nav-toggle-label) {
  grid-column: 1;
  width: 1.1rem;
  height: 2px;
  margin: 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span:nth-child(1) {
  grid-row: 1;
}

.nav-toggle span:nth-child(2) {
  grid-row: 2;
}

.nav-toggle span:nth-child(3) {
  grid-row: 3;
}

.nav-toggle-label {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

@media (max-width: 1280px) {
  :root {
    --header-height: 4.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: 4.5rem;
  }

  .brand a {
    gap: 0.55rem;
  }

  .brand-mark {
    height: clamp(1.45rem, 1.3rem + 0.9vw, 2.5rem);
    max-height: calc(4.5rem * 0.66);
  }

  body.js-ready .nav-toggle {
    display: inline-grid;
  }

  .nav-toggle {
    grid-template-columns: 1.35rem;
    padding-left: 0.75rem;
    min-width: 2.75rem;
  }

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

  .primary-nav {
    width: 100%;
    margin-left: 0;
  }

  body.js-ready .primary-nav {
    display: none;
  }

  body.js-ready.nav-open .primary-nav {
    display: block;
    padding: 0.4rem 0 0.85rem;
    border-top: 1px solid var(--line);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.1rem 0 0;
  }

  .primary-nav a {
    min-height: 0;
    justify-content: flex-start;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid rgba(31, 23, 19, 0.08);
    font-size: 0.78rem;
  }
}

.site-main.wrap {
  width: 100%;
  max-width: none;
}

.site-main {
  padding: 0;
}

.site-main > * + * {
  margin-top: 0;
}

.breadcrumbs {
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--section-inline);
  background: var(--breadcrumb-bg);
  box-shadow: inset 0 -1px 0 var(--breadcrumb-line);
  border-bottom: 1px solid var(--breadcrumb-line);
}

.breadcrumbs ol {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0.78rem 0 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  color: rgba(31, 23, 19, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--ink);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.38rem;
  color: rgba(81, 68, 58, 0.48);
}

.page-hero,
.section {
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--section-inline);
}

.page-hero {
  display: grid;
  gap: clamp(2rem, 4vw, 3.2rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8.75rem);
  background: var(--hero-bg, var(--mustard));
  color: var(--hero-ink, var(--ink));
}

.page-home .page-hero {
  --hero-left-nudge: clamp(0.2rem, 0.45vw, 0.55rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(21rem, 0.8fr);
  grid-template-areas:
    "eyebrow media"
    "title media"
    "support media"
    "actions media";
  min-height: var(--hero-visible-height);
  align-content: center;
  align-items: center;
  gap: clamp(0.95rem, 1.7vw, 1.8rem);
  padding-left: calc(var(--section-inline) + var(--hero-left-nudge));
  padding-right: var(--section-inline);
  padding-block: clamp(2.1rem, 4.2vh, 3.8rem);
  background: var(--hero-slide-bg, var(--mustard));
  transition: background-color 800ms ease;
}

.page-home .page-hero > * {
  grid-column: auto;
}

.page-home .page-hero .eyebrow {
  grid-area: eyebrow;
}

.page-home .page-hero h1 {
  grid-area: title;
  max-width: 120ch;
  font-size: clamp(3rem, 4.55vw, 4.6rem);
}

.page-home .hero-support {
  grid-area: support;
  max-width: 37rem;
  min-height: 0;
  margin: 0.45rem 0 0;
  color: var(--hero-copy);
  font-size: clamp(0.94rem, 1.02vw, 1.04rem);
  line-height: 1.62;
}

.page-home .page-hero::after {
  content: none;
}

.page-home .hero-media {
  grid-area: media;
  position: relative;
  min-height: clamp(32rem, 42vw, 41rem);
  justify-self: end;
  align-self: center;
  width: min(100%, 29rem);
  overflow: hidden;
  pointer-events: none;
}

.page-home .hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease;
}

.page-home .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.page-home .hero-slide img {
  width: auto;
  height: clamp(36rem, 47vw, 44rem);
  max-width: min(100%, 24.75rem);
  object-fit: contain;
  object-position: right center;
}

body:not(.page-home) .page-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.78fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: end;
}

body:not(.page-home) .page-hero > * {
  grid-column: 1;
}

body:not(.page-home) .page-hero::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 8;
  min-height: clamp(18rem, 26vw, 24rem);
  align-self: stretch;
  background-image:
    linear-gradient(rgba(31, 23, 19, 0.12), rgba(31, 23, 19, 0.08)),
    var(--hero-art);
  background-position: center center, var(--hero-art-position);
  background-size: auto, cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.08);
}

.page-hero > * {
  max-width: var(--text-max);
}

.eyebrow,
.meta-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 8.6rem);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  margin-bottom: 1.2rem;
}

p,
li,
label,
input,
textarea,
button {
  font-size: 1rem;
}

.page-hero p,
.section p,
.section li,
.footer-copy {
  max-width: var(--text-max);
}

.page-hero p {
  margin: 0.9rem 0 0;
  color: var(--hero-copy, rgba(31, 23, 19, 0.78));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 2rem;
}

.page-home .hero-actions {
  grid-area: actions;
  margin-top: 1.35rem;
}

.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 1rem 1.25rem;
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.page-home .button-link:first-child {
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

.button-link-secondary {
  border-color: currentColor;
}

.section {
  padding-block: clamp(4.35rem, 7.8vw, 7rem);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.section > * {
  max-width: var(--text-max);
}

.section > .simple-grid,
.section > .article-group,
.section > .article-list,
.section > form {
  max-width: none;
}

.section > * + * {
  margin-top: 1rem;
}

.page-home .site-main > section:nth-of-type(2) {
  background: #fff8ef;
  border-top: 2px solid rgba(31, 23, 19, 0.2);
}

.section-covers > p {
  max-width: 70ch;
}

.section-covers .simple-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.1rem;
  margin-top: 3rem;
}

.section-covers .link-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.75rem 2.05rem;
  border-top: 0;
  background: #fffdf8;
  box-shadow: inset 0 0 0 1px rgba(31, 23, 19, 0.08);
}

.section-covers .link-panel h3 {
  margin-bottom: 0.2rem;
}

.section-covers .link-panel h3 a {
  color: inherit;
}

.section-covers .link-panel p {
  margin-top: 0.75rem;
}

.section-covers .panel-action {
  margin-top: auto !important;
  padding-top: 1.6rem;
}

.section-covers .panel-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border: 2px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-covers .card-editorial {
  background: #fff2dc;
  color: var(--brown);
}

.section-covers .card-law {
  background: #f8d969;
  color: var(--ink);
}

.section-covers .card-retreat {
  background: #f3a164;
  color: var(--ink);
}

.section-covers .card-research {
  background: #56d2cc;
  color: var(--ink);
}

.section-covers .card-safety {
  background: #4b3021;
  color: #fff7ef;
}

.section-covers .card-faq {
  background: #efe3d3;
  color: var(--brown);
}

.page-home .site-main > section:nth-of-type(3) {
  background: var(--orange);
  color: #fffaf3;
}

.page-home .site-main > section:nth-of-type(3) .simple-grid {
  gap: 2rem 2.15rem;
  margin-top: 2.65rem;
}

.page-home .site-main > section:nth-of-type(3) .link-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 1.25rem;
}

.page-home .site-main > section:nth-of-type(3) p {
  color: rgba(255, 250, 243, 0.82);
}

.page-home .site-main > section:nth-of-type(3) .panel-action {
  margin-top: auto !important;
  padding-top: 1.4rem;
}

.page-home .site-main > section:nth-of-type(3) .panel-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border: 2px solid currentColor;
  color: #fffaf3;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-home .section-language {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(28rem, 1fr);
  gap: clamp(1.5rem, 2.8vw, 2.25rem);
  align-items: center;
  overflow: hidden;
  background: var(--teal);
  color: #fffaf3;
  --section-image-shift: 0px;
}

.page-home .section-language > * {
  grid-column: 1;
}

.page-home .section-language h2,
.page-home .section-language p {
  max-width: 44rem;
}

.page-home .section-language::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 8;
  min-height: clamp(25rem, 31vw, 30rem);
  align-self: stretch;
  background:
    linear-gradient(rgba(31, 23, 19, 0.06), rgba(31, 23, 19, 0.16)),
    url("assets/editorial-notebook.jpg") center 46% / cover no-repeat;
  transform: translate3d(0, var(--section-image-shift), 0) scale(1.05);
  transform-origin: center center;
  will-change: transform;
}

.page-home .section-language p,
.page-home .section-language .note {
  color: rgba(255, 250, 243, 0.86);
}

.page-home .site-main > section:nth-of-type(5) {
  background: var(--cream);
}

.page-home .site-main > section:nth-of-type(6) {
  background: var(--mustard);
}

.page-home .site-main > section:nth-of-type(6) .note {
  color: var(--ink);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.76fr);
  gap: clamp(2.4rem, 5vw, 4.8rem);
  align-items: start;
}

.section-split .section-main {
  max-width: 42rem;
}

.section-split .section-main > * {
  max-width: 42rem;
}

.section-split .section-main .note {
  max-width: 40rem;
}

.section-split .section-support {
  align-self: center;
  width: 100%;
  max-width: 25rem;
  padding: clamp(1.35rem, 2.2vw, 1.95rem);
  border-top: 2px solid currentColor;
}

.section-split:not(.is-reversed) .section-support {
  grid-column: 2;
  justify-self: end;
}

.section-split.is-reversed .section-main {
  grid-column: 2;
  justify-self: end;
}

.section-split.is-reversed .section-support {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.section-usage {
  grid-template-columns: minmax(0, 1.16fr) minmax(18rem, 0.84fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  padding-inline: max(var(--section-inline), clamp(2rem, 6vw, 5rem));
}

.section-usage .section-main,
.section-usage .section-main > * {
  max-width: 46rem;
}

.section-usage .section-support {
  align-self: start;
  margin: 0;
  max-width: 24rem;
  padding: clamp(1.2rem, 1.8vw, 1.55rem);
}

.section-usage figure {
  margin: 0;
  padding: 0;
}

.section-support .meta-kicker {
  display: block;
  margin-bottom: 0.65rem;
}

.support-guide {
  background: #f4e4c8;
  box-shadow: inset 0 0 0 1px rgba(31, 23, 19, 0.08);
}

.support-stack {
  display: grid;
  gap: 0.95rem;
}

.support-route {
  display: block;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(31, 23, 19, 0.12);
  color: inherit;
  text-decoration: none;
}

.support-route:first-of-type {
  padding-top: 0.2rem;
  border-top: 0;
}

.support-route-title {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.support-route-copy {
  display: block;
  margin-top: 0.38rem;
  color: rgba(31, 23, 19, 0.72);
  font-size: 0.93rem;
  line-height: 1.55;
}

.support-route:hover .support-route-title,
.support-route:focus-visible .support-route-title {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.support-boundaries {
  background: rgba(60, 38, 29, 0.96);
  border-top-color: rgba(255, 250, 243, 0.86);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 243, 0.1);
  color: #fffaf3;
}

.support-boundaries .meta-kicker {
  color: var(--mustard);
}

.boundary-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 250, 243, 0.88);
  font-size: 0.93rem;
  line-height: 1.58;
}

.boundary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 1px;
  background: var(--mustard);
}

.support-quote {
  margin: 1.2rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
  color: #fffaf3;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.65rem;
  line-height: 0.98;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-blog .section:first-of-type,
.page-research .section:first-of-type,
.page-safety .section:first-of-type,
.page-contact .section:first-of-type {
  background: var(--cream-deep);
}

.page-legality .section:first-of-type,
.page-retreats .section:first-of-type,
.page-shop .section:first-of-type {
  background: #fff2dd;
}

.page-about .section:first-of-type,
.page-faq .section:first-of-type {
  background: #fff0bc;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2.25rem;
  margin-top: 2rem;
}

.page-home .site-main > section:nth-of-type(2) .simple-grid,
.page-shop .simple-grid,
.page-about .simple-grid,
.page-legality .simple-grid,
.page-retreats .simple-grid,
.page-research .simple-grid,
.page-safety .simple-grid,
.page-faq .simple-grid,
.article-page .simple-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.link-panel,
.article-card {
  min-height: 0;
  padding-top: 1.05rem;
  border-top: 2px solid currentColor;
}

.link-panel h3 a,
.article-card h3 a {
  text-decoration: none;
}

.link-panel p,
.article-card p {
  margin: 0.55rem 0 0;
}

.page-home .site-main > section:nth-of-type(3) .link-panel,
.page-blog .article-card {
  padding-top: 0;
  border-top: 0;
}

.page-home .site-main > section:nth-of-type(3) .link-panel::before,
.page-blog .article-card::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(7rem, 14vw, 8.5rem);
  margin-bottom: 1rem;
  background:
    linear-gradient(rgba(31, 23, 19, 0.18), rgba(31, 23, 19, 0.18)),
    url("assets/library-stacks.jpg") center / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .link-panel:nth-child(3n + 1)::before,
.page-blog .article-card:nth-child(3n + 1)::before {
  background-position: center 18%;
}

.page-home .site-main > section:nth-of-type(3) .link-panel:nth-child(3n + 2)::before,
.page-blog .article-card:nth-child(3n + 2)::before {
  background-position: center 50%;
}

.page-home .site-main > section:nth-of-type(3) .link-panel:nth-child(3n + 3)::before,
.page-blog .article-card:nth-child(3n + 3)::before {
  background-position: center 82%;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-federal::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.12), rgba(31, 23, 19, 0.12)),
    url("assets/featured-federal-law.jpg") center 52% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-state::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.14), rgba(31, 23, 19, 0.14)),
    url("assets/featured-state-landscape.jpg") center 48% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-evaluate::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.14), rgba(31, 23, 19, 0.14)),
    url("assets/featured-evaluate-retreat.jpg") center 58% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-questions::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.16), rgba(31, 23, 19, 0.16)),
    url("assets/featured-retreat-questions.jpg") center 62% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-clinical::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.12), rgba(31, 23, 19, 0.12)),
    url("assets/featured-clinical-research.jpg") center 46% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .card-featured-risks::before {
  background:
    linear-gradient(rgba(31, 23, 19, 0.16), rgba(31, 23, 19, 0.16)),
    url("assets/featured-risks-screening.jpg") center 50% / cover no-repeat;
}

.page-home .site-main > section:nth-of-type(3) .meta-kicker,
.page-blog .meta-kicker {
  color: var(--mustard);
}

.page-blog .article-card {
  color: var(--ink);
}

.article-group + .article-group {
  margin-top: 2.6rem;
}

.article-group > h3 {
  margin-bottom: 1.15rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.article-group:first-of-type > h3 {
  padding-top: 0;
  border-top: 0;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.25rem;
  margin-top: 1.5rem;
}

.meta-kicker {
  margin-bottom: 0.5rem;
  color: var(--page-accent, var(--teal));
  font-size: 0.72rem;
}

.note {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 2px solid currentColor;
  font-weight: 700;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.25rem;
  margin-top: 1.75rem;
}

form > div:last-of-type,
form button {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.5;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

button {
  justify-self: start;
  background: var(--brown);
  border-color: var(--brown);
  color: #fff;
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
.button-link:focus-visible,
.nav-toggle:focus-visible,
.primary-nav a:focus-visible {
  outline: 3px solid rgba(22, 187, 180, 0.28);
  outline-offset: 2px;
}

.site-footer {
  padding: clamp(3rem, 5.4vw, 4.6rem) 0;
  background: var(--brown);
  color: rgba(255, 250, 243, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(11rem, 0.68fr) minmax(0, 0.92fr);
  gap: 1.65rem clamp(2rem, 4vw, 3.2rem);
  align-items: start;
}

.site-footer .brand {
  grid-column: 1;
  grid-row: 1;
  color: #fff;
}

.footer-links {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links::before {
  content: "Navigation";
  margin-bottom: 0.35rem;
  color: rgba(255, 250, 243, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 250, 243, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 250, 243, 0.68);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-copy:first-of-type {
  grid-column: 1;
  grid-row: 2;
  max-width: 42ch;
}

.footer-copy:last-of-type {
  grid-column: 3;
  grid-row: 1 / span 2;
  max-width: 34ch;
  color: rgba(255, 250, 243, 0.58);
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer-copy:last-of-type::before {
  content: "Editorial & legal";
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 250, 243, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-home [data-parallax-speed] {
  --parallax-y: 0px;
  --reveal-y: 22px;
  --reveal-x: 0px;
  --motion-opacity: 0;
  opacity: var(--motion-opacity);
  transform: translate3d(var(--reveal-x), calc(var(--parallax-y) + var(--reveal-y)), 0);
  will-change: transform, opacity;
  transition:
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
  transition-delay: var(--motion-delay, 0ms);
}

body.page-home [data-parallax-speed].motion-visible {
  --reveal-y: 0px;
  --reveal-x: 0px;
  --motion-opacity: 1;
}

body.page-home .page-hero [data-parallax-speed] {
  position: relative;
  z-index: 1;
  --reveal-y: 0px;
  --reveal-x: 0px;
  --motion-opacity: 1;
}

body.page-home .motion-from-left[data-parallax-speed] {
  --reveal-x: -34px;
}

body.page-home .motion-from-right[data-parallax-speed] {
  --reveal-x: 34px;
}

body.page-home.hero-intro-preview {
  --hero-intro-duration: 1200ms;
}

body.page-home.hero-intro-active .page-hero h1,
body.page-home.hero-intro-active .page-hero .hero-support,
body.page-home.hero-intro-active .page-hero .hero-actions,
body.page-home.hero-intro-active .page-hero .hero-media {
  animation-name: hero-intro-rise;
  animation-duration: var(--hero-intro-duration);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: both;
}

body.page-home.hero-intro-active .page-hero h1 {
  animation-delay: 80ms;
}

body.page-home.hero-intro-active .page-hero .hero-support {
  animation-delay: 180ms;
}

body.page-home.hero-intro-active .page-hero .hero-actions {
  animation-delay: 300ms;
}

body.page-home.hero-intro-active .page-hero .hero-media {
  animation-delay: 420ms;
}

@keyframes hero-intro-rise {
  from {
    opacity: 0;
    translate: 0 22px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.8vw, 1.9rem);
  bottom: clamp(1rem, 2.8vw, 1.9rem);
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 50% !important;
  background: rgba(60, 38, 29, 0.94);
  color: #fffaf3;
  box-shadow: 0 10px 30px rgba(31, 23, 19, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0.85rem, 0);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

body.back-to-top-visible .back-to-top {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--orange);
  border-color: rgba(255, 250, 243, 0.28);
}

.back-to-top-icon {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(0);
  animation: back-to-top-bounce 2s ease-in-out infinite;
}

@keyframes back-to-top-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-3px);
  }

  65% {
    transform: translateY(1px);
  }
}

@media (max-width: 1120px) {
  :root {
    --page-gutter: clamp(1.2rem, 4vw, 2.25rem);
  }

  .simple-grid,
  .article-list {
    grid-template-columns: 1fr;
  }

  .page-home .page-hero {
    --hero-left-nudge: clamp(0.14rem, 0.32vw, 0.34rem);
    grid-template-columns: minmax(0, 1.26fr) minmax(17.75rem, 0.74fr);
    grid-template-areas:
      "eyebrow media"
      "title media"
      "support media"
      "actions media";
    gap: clamp(0.8rem, 1.2vw, 1.05rem);
    padding-left: calc(var(--section-inline) + var(--hero-left-nudge));
    padding-right: var(--section-inline);
    padding-block: clamp(1.9rem, 3.4vh, 2.65rem);
  }

  .page-home .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.75rem, 4.45vw, 3.8rem);
  }

  .page-home .hero-support {
    max-width: 32rem;
    font-size: 0.93rem;
  }

  .page-home .hero-media {
    min-height: clamp(23rem, 30vw, 26rem);
    justify-self: end;
    width: min(100%, 20rem);
  }

  .page-home .hero-slide img {
    height: clamp(25rem, 34vw, 28rem);
    max-width: min(100%, 18.5rem);
  }

  body.page-home [data-parallax-speed] {
    --reveal-y: 18px;
  }

  body.page-home .motion-from-left[data-parallax-speed] {
    --reveal-x: -26px;
  }

  body.page-home .motion-from-right[data-parallax-speed] {
    --reveal-x: 26px;
  }

  .section-covers .simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.65rem 1.75rem;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.8fr);
    gap: 2rem 2.4rem;
  }

  .section-usage {
    gap: 1.7rem 2rem;
    padding-inline: max(var(--section-inline), clamp(1.75rem, 6vw, 3.4rem));
  }

  .section-split .section-support {
    max-width: 22rem;
    padding: 1.25rem 1.3rem;
  }

  .support-route-title {
    font-size: 0.98rem;
  }

  .support-route-copy,
  .boundary-list li {
    font-size: 0.9rem;
  }

  .support-quote {
    font-size: 1.45rem;
  }

  .page-home .section-language {
    grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.98fr);
    gap: 1.35rem;
  }

  .page-home .section-language h2,
  .page-home .section-language p {
    max-width: 38rem;
  }

  .page-home .section-language::after {
    min-height: 23rem;
  }

  body:not(.page-home) .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.58fr);
    gap: 2rem;
  }

  body:not(.page-home) .page-hero::after {
    min-height: clamp(15rem, 24vw, 18rem);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 0.78fr);
    gap: 1.4rem 2rem;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .footer-copy:last-of-type {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 52ch;
    padding-top: 0.25rem;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 4.5rem;
    --page-gutter: clamp(1.2rem, 4.4vw, 2rem);
  }

  body.page-home {
    --hero-visible-height: calc(100svh - var(--header-height));
  }

  @supports (height: 100dvh) {
    body.page-home {
      --hero-visible-height: calc(100dvh - var(--header-height));
    }
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: 4.5rem;
  }

  .brand a {
    gap: 0.55rem;
  }

  .brand-mark {
    height: clamp(1.45rem, 1.3rem + 0.9vw, 2.5rem);
    max-height: calc(4.5rem * 0.66);
  }

  body.js-ready .nav-toggle {
    display: inline-grid;
  }

  .nav-toggle {
    grid-template-columns: 1.35rem;
    padding-left: 0.75rem;
    min-width: 2.75rem;
  }

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

  .primary-nav {
    width: 100%;
    margin-left: 0;
  }

  body.js-ready .primary-nav {
    display: none;
  }

  body.js-ready.nav-open .primary-nav {
    display: block;
    padding: 0.4rem 0 0.85rem;
    border-top: 1px solid var(--line);
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.1rem 0 0;
  }

  .primary-nav a {
    min-height: 0;
    justify-content: flex-start;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid rgba(31, 23, 19, 0.08);
    font-size: 0.78rem;
  }

  .page-home .page-hero {
    --hero-left-nudge: clamp(0.1rem, 0.22vw, 0.22rem);
    grid-template-columns: minmax(0, 1.2fr) minmax(15.5rem, 0.72fr);
    grid-template-areas:
      "eyebrow media"
      "title media"
      "support media"
      "actions media";
    min-height: var(--hero-visible-height);
    gap: 0.8rem;
    padding-left: calc(var(--section-inline) + var(--hero-left-nudge));
    padding-right: var(--section-inline);
    padding-block: clamp(1.8rem, 3vh, 2.35rem);
  }

  .page-home .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.6rem, 4.85vw, 3.7rem);
  }

  .page-home .hero-support {
    max-width: 30rem;
    min-height: 0;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .page-home .hero-media {
    min-height: clamp(20rem, 28vw, 22.5rem);
    justify-self: end;
    width: min(100%, 18rem);
  }

  .page-home .hero-slide img {
    height: clamp(22rem, 31vw, 24.2rem);
    max-width: min(100%, 17.1rem);
  }

  .section-covers .simple-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .page-home .section-language {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.86fr);
    gap: 1.25rem;
    align-items: start;
  }

  .page-home .section-language h2,
  .page-home .section-language p {
    max-width: 34rem;
  }

  .page-home .section-language::after {
    min-height: 19rem;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.76fr);
    gap: 1.8rem;
  }

  .section-usage {
    grid-template-columns: 1fr;
    gap: 1.55rem;
    padding-inline: max(var(--section-inline), clamp(1.65rem, 6vw, 3rem));
  }

  .section-usage .section-main,
  .section-usage .section-main > *,
  .section-usage .section-support {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }

  .section-usage .section-main {
    grid-row: 1;
  }

  .section-usage.section-split:not(.is-reversed) .section-support {
    grid-column: 1;
    justify-self: stretch;
  }

  .section-usage .section-support {
    grid-row: 2;
    width: 100%;
    margin-inline: 0;
    padding: 1.2rem 1.2rem 1.15rem;
  }

  .section-usage [data-parallax-speed] {
    --parallax-y: 0px !important;
  }

  .section-split .section-main {
    max-width: 36rem;
  }

  .section-split .section-support {
    max-width: 20rem;
  }

  .section-usage.section-split .section-main,
  .section-usage.section-split .section-main > *,
  .section-usage.section-split .section-support {
    max-width: none;
  }

  body.page-home .section-usage [data-parallax-speed] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: clamp(1rem, 5vw, 1.35rem);
  }

  .site-main {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.8rem);
  }

  .page-home .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(9.5rem, 0.74fr);
    grid-template-areas:
      "eyebrow media"
      "title media"
      "support media"
      "actions media";
    min-height: auto;
    align-content: center;
    align-items: center;
    gap: 1rem;
    padding-left: var(--section-inline);
    padding-right: var(--section-inline);
    padding-block: 1.85rem 2.35rem;
  }

  .page-home .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.45rem, 8.9vw, 3.6rem);
  }

  .breadcrumbs ol {
    width: 100%;
    padding: 0.7rem 0 0.62rem;
    gap: 0.3rem;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .breadcrumbs li + li::before {
    margin-right: 0.3rem;
  }

  .page-home .hero-support {
    max-width: 26ch;
    font-size: 0.9rem;
    min-height: 0;
  }

  .page-home .section-language {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .page-home .section-language::after {
    grid-column: 1;
    grid-row: auto;
    min-height: 15rem;
    transform: translate3d(0, calc(var(--section-image-shift) * 0.45), 0) scale(1.03);
  }

  .page-home .hero-media {
    grid-area: media;
    min-height: 14.5rem;
    justify-self: end;
    align-self: center;
    width: min(100%, 12.5rem);
  }

  .page-home .hero-slide {
    align-items: center;
    justify-content: flex-end;
  }

  .page-home .hero-slide img {
    height: clamp(14.5rem, 33vw, 16.8rem);
    max-width: min(100%, 11.1rem);
    object-position: right center;
  }

  body:not(.page-home) .page-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body:not(.page-home) .page-hero::after {
    grid-column: 1;
    grid-row: auto;
    min-height: 13rem;
  }

  .page-home .hero-actions {
    flex-direction: row;
    gap: 0.75rem;
  }

  form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-home [data-parallax-speed] {
    --reveal-y: 12px;
    transition-duration: 620ms, 460ms;
  }

  body.page-home .motion-from-left[data-parallax-speed] {
    --reveal-x: -14px;
  }

  body.page-home .motion-from-right[data-parallax-speed] {
    --reveal-x: 14px;
  }

  .section-split,
  .section-split.is-reversed {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .section-usage {
    gap: 1.25rem;
    padding-inline: max(var(--section-inline), 1.55rem);
  }

  .section-split .section-main,
  .section-split .section-support,
  .section-split.is-reversed .section-main,
  .section-split.is-reversed .section-support {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }

  .section-split .section-main,
  .section-split.is-reversed .section-main {
    grid-row: 1;
  }

  .section-split .section-support,
  .section-split.is-reversed .section-support {
    grid-row: 2;
    padding: 1.1rem 1rem;
  }

  .section-usage.section-split:not(.is-reversed) .section-support {
    grid-column: 1;
    justify-self: stretch;
  }

  .section-usage .section-main,
  .section-usage .section-main > * {
    max-width: 100%;
  }

  .section-usage .section-support {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 1.1rem 1rem 1.05rem;
  }

  .section-usage [data-parallax-speed] {
    --parallax-y: 0px !important;
  }

  body.page-home .section-usage [data-parallax-speed] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .support-stack,
  .boundary-list {
    gap: 0.75rem;
  }

  .support-quote {
    font-size: 1.24rem;
  }

  .back-to-top {
    right: 0.85rem;
    bottom: 0.95rem;
    width: 3rem;
    height: 3rem;
  }

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

  .footer-links,
  .footer-copy:first-of-type,
  .footer-copy:last-of-type {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
  }

  .footer-links {
    gap: 0.45rem;
  }

  .footer-copy {
    font-size: 0.78rem;
  }

  .footer-copy:last-of-type {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 1rem;
  }

  .page-home .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(7.75rem, 0.65fr);
    grid-template-areas:
      "eyebrow media"
      "title media"
      "support media"
      "actions actions";
    min-height: auto;
    align-content: center;
    gap: 1rem;
    padding-left: var(--section-inline);
    padding-right: var(--section-inline);
    padding-block: 1.7rem 2rem;
  }

  .page-home .page-hero h1 {
    max-width: 18ch;
    font-size: clamp(2.25rem, 10.2vw, 3.45rem);
  }

  .page-home .hero-support {
    max-width: 25ch;
    font-size: 0.89rem;
  }

  .page-home .hero-media {
    grid-area: media;
    min-height: 12.1rem;
    justify-self: end;
    align-self: center;
    width: min(100%, 10.3rem);
  }

  .page-home .hero-slide img {
    height: clamp(12.4rem, 38vw, 15rem);
    max-width: min(100%, 9.95rem);
    object-position: right center;
  }
}

@media (max-width: 420px) {
  .page-home .page-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "support"
      "actions"
      "media";
    gap: 1.15rem;
    padding-block: 1.75rem 2.15rem;
  }

  .page-home .page-hero h1 {
    max-width: 12.5ch;
    font-size: clamp(2.2rem, 10.8vw, 3.55rem);
  }

  .page-home .hero-support {
    max-width: 31ch;
  }

  .page-home .hero-media {
    min-height: 12.2rem;
    justify-self: center;
    align-self: start;
    width: min(100%, 13rem);
  }

  .page-home .hero-slide img {
    height: clamp(13rem, 40vw, 15.3rem);
    max-width: min(100%, 10.5rem);
    object-position: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-home [data-parallax-speed] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .back-to-top {
    transition: none !important;
  }

  .back-to-top-icon {
    animation: none !important;
  }

  body.page-home.hero-intro-active .page-hero h1,
  body.page-home.hero-intro-active .page-hero .hero-support,
  body.page-home.hero-intro-active .page-hero .hero-actions,
  body.page-home.hero-intro-active .page-hero .hero-media {
    animation: none !important;
  }
}
