/* ======================================
   SELF-HOSTED FONTS
====================================== */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/libre-baskerville-latin-italic-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin-400-700.woff2") format("woff2");
}
/* ======================================
   VARIABLES
====================================== */
:root {
  --evergreen: #2f4f46;
  --evergreen-dark: #17372f;
  --blue: #5f7d95;
  --stone: #b8b2a7;
  --sand: #d9c7a3;
  --sky: #eaf2f6;
  --cream: #fbfaf7;
  --ink: #293632;
  --muted: #61706b;
  --serif: "Cormorant Garamond", Georgia, serif;
  --accent: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", "Avenir Next", Arial, sans-serif;
  --shadow: 0 18px 55px rgba(24, 53, 45, 0.13);
}

/* ======================================
   RESET AND BASE
====================================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
section[id] {
  scroll-margin-top: 110px;
}

.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: absolute;
  left: 1rem;
  top: -6rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--evergreen);
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1280px, calc(100% - 3rem));
  margin-inline: auto;
}
.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}
.section-sm {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
}

/* ======================================
   TYPOGRAPHY
====================================== */
.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--evergreen-dark);
  font-weight: 600;
}
h1,
h2 {
  line-height: 0.98;
}
h3 {
  line-height: 1.08;
}

.short-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 1.5rem 0;
  background: var(--sand);
}
.section-heading.centered {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}
.section-heading .short-rule {
  margin: 1.1rem auto;
}
.section-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ======================================
   HEADER
====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(47, 79, 70, 0.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.brand > img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--evergreen-dark);
}
.brand-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.4rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.brand-rule i {
  width: 23px;
  height: 1px;
  background: var(--sand);
}
.brand-copy em {
  margin-top: 0.55rem;
  color: #8d857b;
  font-family: var(--accent);
  font-size: 0.64rem;
  font-weight: 400;
  line-height: 1.3;
}
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.primary-nav a {
  position: relative;
  text-decoration: none;
  color: var(--evergreen-dark);
  font-size: 0.98rem;
  white-space: nowrap;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.5rem;
  height: 1px;
  background: var(--sand);
  transition: right 0.2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  right: 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--evergreen);
  border-radius: 2px;
  background: var(--evergreen);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--evergreen-dark);
  box-shadow: 0 12px 26px rgba(23, 55, 47, 0.18);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--evergreen);
}

/* ======================================
   HERO
====================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  background: var(--sky);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("/assets/hero-mountains-woman.webp") center 20% / cover
    no-repeat;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    #fbfaf7 0%,
    rgba(251, 250, 247, 0.98) 31%,
    rgba(251, 250, 247, 0.86) 46%,
    rgba(251, 250, 247, 0.24) 66%,
    rgba(251, 250, 247, 0) 78%
  );
}
.hero-inner {
  min-height: 650px;
  display: flex;
  align-items: center;
}
.hero-copy {
  width: min(690px, 58%);
  padding: 3.5rem 0;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.6rem, 5.8vw, 6.2rem);
  letter-spacing: -0.035em;
}
.lead {
  max-width: 620px;
  margin: 0;
  color: #3f4b47;
  font-size: 1.18rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.text-link {
  font-weight: 600;
  color: var(--evergreen-dark);
  text-underline-offset: 5px;
}
.fine-print {
  max-width: 620px;
  margin-top: 1.35rem;
  color: #6e7774;
  font-size: 0.79rem;
}

/* ======================================
   INTRO AND CONTENT SECTIONS
====================================== */
.navigator-intro {
  background: linear-gradient(90deg, var(--sky), #fff);
}
.intro-grid,
.boundary-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.intro-grid h2,
.boundary-grid h2,
.trust-grid h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.intro-grid p {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--muted);
}
.intro-grid .emphasis {
  color: var(--evergreen-dark);
  font-weight: 600;
}

.how-help {
  background: #fff;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.2rem;
}
.help-card {
  padding: 2rem;
  border: 1px solid rgba(47, 79, 70, 0.12);
  background: var(--cream);
}
.card-number {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.help-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
}
.help-card p {
  margin: 0;
  color: var(--muted);
}

.boundaries {
  background: var(--evergreen-dark);
  color: #fff;
}
.boundaries .eyebrow {
  color: var(--sand);
}
.boundaries h2 {
  color: #fff;
}
.boundaries p {
  color: rgba(255, 255, 255, 0.72);
}
.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.do-dont-grid article {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.do-dont-grid h3 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.7rem;
}
.do-dont-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.do-dont-grid li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.3rem;
  color: rgba(255, 255, 255, 0.78);
}
.do-dont-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sand);
}

/* ======================================
   PROCESS
====================================== */
.process {
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.steps li {
  position: relative;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 46px);
  width: calc(100% - 92px);
  height: 1px;
  background: rgba(47, 79, 70, 0.17);
}
.steps b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sky);
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--evergreen);
}
.steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.95rem;
}
.steps p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--muted);
}

/* ======================================
   ABOUT
====================================== */
.about {
  background: linear-gradient(90deg, #fbfaf7 0%, #fff 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}
.about-copy p {
  max-width: 650px;
}
.about-copy blockquote {
  margin: 1.5rem 0;
  max-width: 540px;
  padding: 1.1rem 0 1.1rem 1.4rem;
  border-left: 3px solid var(--sand);
  color: var(--evergreen-dark);
  font-family: var(--accent);
  font-size: 1.15rem;
  font-style: italic;
}
.about-photo {
  border-radius: 18px;
  overflow: hidden;
  max-width: 420px;
  margin-left: auto;
  box-shadow: var(--shadow);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
}

/* ======================================
   TRUST
====================================== */
.trust {
  background: var(--sky);
}
.trust-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-grid li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.7rem;
  border-bottom: 1px solid rgba(47, 79, 70, 0.12);
  font-weight: 600;
}
.trust-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--evergreen);
}

/* ======================================
   CONTACT
====================================== */
.contact {
  background: linear-gradient(110deg, var(--evergreen-dark), var(--evergreen));
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact h2 {
  margin: 0 0 1.2rem;
  color: #fff;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}
.contact .eyebrow {
  color: var(--sand);
}
.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}
.contact-note {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}
.contact-form {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form > label,
.field-row label {
  display: block;
  margin-bottom: 1rem;
  color: var(--evergreen-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.contact-form small {
  color: var(--muted);
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid #c8d0cc;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  padding: 0.75rem;
}
.contact-form input {
  min-height: 48px;
}
.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}
.consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.82rem !important;
}
.consent input {
  width: 18px !important;
  height: 18px;
  min-height: auto;
  margin-top: 0.2rem;
}
.hidden-field {
  position: absolute;
  left: -9999px;
}

/* ======================================
   FOCUS STATES
====================================== */
.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(217, 199, 163, 0.9);
  outline-offset: 3px;
}

/* ======================================
   FOOTER
====================================== */
.site-footer {
  padding: 2.8rem 0 1.5rem;
  background: #102b24;
  color: #fff;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.footer-brand span {
  display: grid;
}
.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-brand small {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.footer-grid > div:last-child {
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}
.footer-grid p {
  margin: 0.2rem 0;
}
.legal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1080px) {
  .header-inner {
    min-height: 94px;
  }
  .brand > img {
    width: 62px;
    height: 62px;
  }
  .brand-copy strong {
    font-size: 1.45rem;
  }
  .brand-copy em {
    display: none;
  }
  .primary-nav {
    gap: 0.9rem;
  }
  .primary-nav a {
    font-size: 0.9rem;
  }
  .nav-cta {
    padding: 0.7rem 1rem;
  }
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 2rem, 1280px);
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(47, 79, 70, 0.12);
    box-shadow: var(--shadow);
  }
  .primary-nav.open {
    display: flex;
  }
  .primary-nav a {
    padding: 0.85rem 1rem;
    min-height: 48px;
  }
  .primary-nav a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 0.5rem;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }
  .hero-photo {
    background-position: 68% center;
  }
  .hero-wash {
    background: linear-gradient(
      90deg,
      #fbfaf7 0%,
      rgba(251, 250, 247, 0.98) 48%,
      rgba(251, 250, 247, 0.42) 78%,
      rgba(251, 250, 247, 0) 100%
    );
  }
  .hero-copy {
    width: 70%;
  }

  .intro-grid,
  .boundary-grid,
  .trust-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .do-dont-grid,
  .trust-grid ul {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .steps li:not(:last-child)::after {
    display: none;
  }
  .about-photo img {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.25rem, 1280px);
  }
  .header-inner {
    min-height: 76px;
  }
  .brand > img {
    width: 50px;
    height: 50px;
  }
  .brand-copy strong {
    font-size: 1.12rem;
  }
  .brand-rule {
    font-size: 0.5rem;
    letter-spacing: 0.17em;
  }
  .brand-rule i {
    width: 12px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }
  .hero {
    padding-bottom: 18rem;
    background: var(--cream);
  }
  .hero-photo {
    inset: auto 0 0;
    height: 19rem;
    background-position: 72% center;
  }
  .hero-wash {
    background: linear-gradient(
      180deg,
      #fbfaf7 0%,
      rgba(251, 250, 247, 0.98) 54%,
      rgba(251, 250, 247, 0.45) 78%,
      rgba(251, 250, 247, 0) 100%
    );
  }
  .hero-inner {
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    padding: 3.6rem 0 2rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.96;
  }
  .lead {
    font-size: 1.02rem;
  }
  .hero-actions {
    display: grid;
    gap: 1rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-actions .text-link {
    text-align: center;
  }

  .section {
    padding: 3.7rem 0;
  }
  .section-sm {
    padding: 3.2rem 0;
  }
  .help-grid,
  .do-dont-grid,
  .trust-grid ul,
  .field-row {
    grid-template-columns: 1fr;
  }
  .help-card {
    padding: 1.5rem;
  }
  .about-photo img {
    height: auto;
    min-height: 0;
  }
  .about-photo {
    width: 70%;
    margin-inline: auto;
  }
  .contact-form {
    padding: 1.2rem;
  }
  .footer-grid {
    display: grid;
    align-items: start;
  }
  .footer-grid > div:last-child {
    text-align: left;
  }
}

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

/* ======================================
   PRIVACY, TERMS AND DISCLOSURES
====================================== */
.legal-hero {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(110deg, rgba(234, 242, 246, 0.95), rgba(251, 250, 247, 0.98)),
    var(--sky);
}
.legal-hero-inner {
  max-width: 940px;
  text-align: center;
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  letter-spacing: -0.035em;
}
.legal-hero .short-rule {
  margin-inline: auto;
}
.legal-hero .lead {
  margin-inline: auto;
}
.legal-updated {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.legal-jump-nav {
  position: sticky;
  top: 118px;
  z-index: 20;
  border-top: 1px solid rgba(47, 79, 70, 0.08);
  border-bottom: 1px solid rgba(47, 79, 70, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}
.legal-jump-nav .container {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  overflow-x: auto;
}
.legal-jump-nav a {
  padding: 1rem 0;
  color: var(--evergreen-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.legal-jump-nav a:hover {
  text-decoration: underline;
  text-decoration-color: var(--sand);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.legal-content {
  background: #fff;
}
.legal-alt {
  background: var(--cream);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.legal-heading {
  position: sticky;
  top: 205px;
}
.legal-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}
.legal-copy {
  max-width: 800px;
}
.legal-copy > p:first-child {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.legal-copy h3 {
  margin: 2.35rem 0 0.65rem;
  font-size: 1.75rem;
}
.legal-copy p {
  margin: 0.7rem 0;
}
.legal-copy ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
}
.legal-copy li {
  margin: 0.65rem 0;
}
.disclosure-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-left: 4px solid var(--sand);
  background: var(--sky);
}
.disclosure-panel > p:first-child {
  margin-top: 0;
  color: var(--evergreen-dark);
  font-size: 1.08rem;
}
.disclosure-panel ul {
  margin-bottom: 0;
}
.site-footer a {
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .legal-jump-nav {
    top: 94px;
  }
  .legal-heading {
    top: 178px;
  }
}

@media (max-width: 860px) {
  .legal-jump-nav {
    position: static;
  }
  .legal-jump-nav .container {
    justify-content: flex-start;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-heading {
    position: static;
  }
  .legal-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 3.7rem 0;
  }
  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .legal-jump-nav .container {
    gap: 1.25rem;
  }
  .legal-jump-nav a {
    font-size: 0.82rem;
  }
  .legal-copy h3 {
    font-size: 1.55rem;
  }
}
