:root {
  --ink: #18302b;
  --muted: #56655f;
  --forest: #185347;
  --forest-dark: #103f36;
  --sage: #dfeae2;
  --sage-light: #f0f5ef;
  --cream: #fbf8f0;
  --paper: #ffffff;
  --terracotta: #ae513c;
  --sand: #efe0d4;
  --line: #d7ddd7;
  --error: #a2261b;
  --shadow: 0 18px 46px rgba(24, 48, 43, 0.11);
  --radius: 24px;
  --content: 1255px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--terracotta);
  z-index: 60;
}

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

:focus-visible {
  outline: 3px solid #ed8f72;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.operator-bar {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 5px 20px;
  color: #fff;
  background: var(--forest-dark);
  font-size: 13px;
  letter-spacing: .025em;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.section-inner,
.hero-inner,
.footer-inner,
.strength-line {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.domain-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--ink);
  text-decoration: none;
  font-size: 25px;
  line-height: 1;
  white-space: nowrap;
}

.domain-mark strong { font-weight: 750; letter-spacing: -.045em; }
.domain-mark small { color: var(--terracotta); font-size: .72em; font-weight: 750; }

.domain-circle {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border: 5px solid var(--forest);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.2vw, 31px);
}

.main-nav a {
  color: #3d4f49;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--forest); border-color: var(--terracotta); }

.header-logo { display: block; width: 82px; }
.header-logo img { width: 82px; height: auto; }

.menu-button {
  display: none;
  min-height: 46px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.menu-button i {
  width: 20px;
  height: 12px;
  margin-left: 7px;
  display: inline-block;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.hero {
  padding: 54px 0 45px;
  background:
    radial-gradient(circle at 9% 18%, rgba(174,81,60,.10) 0 82px, transparent 83px),
    linear-gradient(105deg, var(--cream) 0 47%, #fff 47% 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr);
  grid-template-areas:
    "intro image"
    "primary image"
    "secondary image";
  gap: 20px 55px;
  align-items: start;
}

.hero-intro { grid-area: intro; padding-top: 28px; }
.hero-media { grid-area: image; height: 610px; }
.hero-primary { grid-area: primary; }
.hero-secondary { grid-area: secondary; }

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span {
  width: 12px;
  height: 12px;
  border: 3px solid var(--forest);
  border-radius: 50%;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(44px, 4vw, 54px);
  font-weight: 760;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.1vw, 40px);
  font-weight: 740;
}

h3 { margin-bottom: 12px; font-size: 23px; }

.hero-copy { max-width: 660px; margin-bottom: 0; color: #43564f; font-size: 18px; }

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.media img { width: 100%; height: 100%; object-fit: cover; }

.hero-media {
  border-radius: 48% 24px 48% 24px;
  border: 8px solid #fff;
}
.hero-media img { object-position: 52% center; }

.symbol-label {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: #fff;
  background: rgba(16, 40, 35, .82);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 8px 22px 8px 22px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, color .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); }
.button-primary:hover { background: var(--forest-dark); }
.button-large { min-height: 58px; padding-inline: 28px; font-size: 18px; }
.button-secondary { color: var(--forest-dark); background: #fff; border-color: var(--forest); }
.button-secondary:hover { color: #fff; background: var(--forest); }
.button-light { color: var(--forest-dark); background: #fff; }
.button-light:hover { background: var(--cream); }

.text-link {
  color: var(--forest-dark);
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-primary p {
  max-width: 500px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.hero-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
}
.hero-secondary .button { min-height: 46px; padding: 10px 17px; font-size: 16px; }
.hero-secondary .text-link { font-size: 16px; }

.strength-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.strength-line p {
  display: flex;
  gap: 17px;
  margin: 0;
  padding: 28px 25px;
  border-left: 1px solid var(--line);
}
.strength-line p:last-child { border-right: 1px solid var(--line); }
.strength-line b { color: var(--terracotta); font-size: 14px; }
.strength-line span { display: flex; flex-direction: column; color: var(--muted); font-size: 15px; line-height: 1.4; }
.strength-line strong { color: var(--ink); font-size: 18px; }

.experience-section,
.activity-section,
.attention-section,
.support-section,
.property-section,
.trust-section,
.contact-section { padding: 105px 0; }

.experience-section { background: #fff; }
.editorial-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  column-gap: 65px;
  align-items: start;
}
.editorial-heading .section-kicker { grid-column: 1 / -1; }
.editorial-heading h2 { max-width: 500px; }
.editorial-heading > p:last-child { color: var(--muted); }

.experience-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 2px solid var(--forest);
}
.experience-points article { padding: 30px 30px 4px 0; }
.experience-points article + article { padding-left: 30px; border-left: 1px solid var(--line); }
.experience-points span { color: var(--terracotta); font-size: 14px; font-weight: 800; }
.experience-points h3 { margin-top: 20px; }
.experience-points p { margin-bottom: 0; color: var(--muted); }

.activity-section { background: var(--sage-light); }
.activity-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 72px;
  align-items: center;
}
.activity-media { min-height: 640px; border-radius: 18px 90px 18px 18px; }
.activity-media img { object-position: 50% center; }
.activity-copy > p:not(.section-kicker) { color: var(--muted); }

.activity-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: task;
  border-top: 1px solid #b9cbc0;
}
.activity-list li {
  counter-increment: task;
  position: relative;
  padding: 18px 0 18px 48px;
  border-bottom: 1px solid #b9cbc0;
}
.activity-list li::before {
  content: counter(task, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
}
.activity-list b, .activity-list span { display: block; }
.activity-list b { color: var(--ink); }
.activity-list span { color: var(--muted); font-size: 15px; }

.attention-section { background: var(--cream); }
.attention-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  gap: 72px;
  align-items: center;
}
.attention-copy > p:not(.section-kicker) { color: var(--muted); }
.attention-note {
  margin-top: 32px;
  padding: 23px 26px;
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
}
.attention-note p { margin: 6px 0 0; color: #4f554f; }
.attention-media { min-height: 530px; border-radius: 90px 18px 18px 18px; }
.attention-media img { object-position: 44% center; }

.support-section { color: #fff; background: var(--forest-dark); }
.support-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.support-section .section-kicker { color: #efad98; }
.support-copy p { color: #dce9e4; }
.support-copy .button { margin-top: 10px; }

.property-section { background: #fff; }
.property-heading { max-width: 760px; }
.property-ways {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  margin-top: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.property-way { padding: 42px; }
.property-way--sell { background: var(--cream); }
.property-way--buy { border-left: 1px solid var(--line); }
.property-way > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.property-way p { color: var(--muted); }

.trust-section { padding: 82px 0; background: var(--sage); }
.trust-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 65px;
  align-items: end;
}
.trust-copy p:last-child { margin-bottom: 0; color: var(--muted); }
.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid #a7b9ae;
}
.trust-facts div { padding: 24px 18px 0 0; }
.trust-facts div + div { padding-left: 18px; border-left: 1px solid #a7b9ae; }
.trust-facts dt { color: var(--forest-dark); font-size: 26px; font-weight: 800; line-height: 1.1; }
.trust-facts dd { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.35; }

.contact-section { background: var(--cream); }
.contact-inner { max-width: 980px; }
.form-intro { margin-bottom: 34px; text-align: center; }
.form-intro h2 { margin-bottom: 0; }

form {
  padding: clamp(24px, 5vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px 10px 30px 10px;
  box-shadow: var(--shadow);
}

.intent-fieldset { margin: 0 0 36px; padding: 0; border: 0; }
.intent-options { display: grid; grid-template-columns: 1.25fr .75fr; gap: 15px; }
.intent-secondary { display: grid; grid-template-columns: 1fr; gap: 12px; }
.intent-option {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid #cbd5ce;
  border-radius: 10px;
  cursor: pointer;
}
.intent-option--primary { min-height: 164px; background: var(--sage-light); border: 2px solid var(--forest); }
.intent-option:has(input:checked) { border-color: var(--forest); box-shadow: inset 0 0 0 2px var(--forest); }
.intent-option input { width: 21px; height: 21px; margin: 0; accent-color: var(--forest); flex: 0 0 auto; }
.intent-option span, .intent-option strong, .intent-option small { display: block; }
.intent-option strong { line-height: 1.3; }
.intent-option small { margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.field-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-weight: 720; }
.field input, .field textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #aebcb4;
  border-radius: 9px;
}
.field input { min-height: 52px; padding: 10px 13px; }
.field textarea { min-height: 170px; padding: 13px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(24,83,71,.14); outline: none; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { min-height: 0; margin: 4px 0 0; color: var(--error); font-size: 14px; font-weight: 650; }
.field-error:empty { display: none; }

.optional-toggle {
  width: 100%;
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 26px 0 0;
  padding: 13px 15px;
  color: var(--forest-dark);
  background: var(--sage-light);
  border: 1px solid #c8d8cd;
  border-radius: 9px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.optional-toggle [aria-hidden] { font-size: 24px; line-height: 1; transition: transform .2s ease; }
.optional-toggle[aria-expanded="true"] [aria-hidden] { transform: rotate(45deg); }
.optional-fields { padding-top: 22px; }

.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 12px; margin-top: 25px; align-items: flex-start; cursor: pointer; }
.consent input { width: 21px; height: 21px; margin: 4px 0 0; accent-color: var(--forest); flex: 0 0 auto; }
.consent a { color: var(--forest-dark); font-weight: 730; }
.privacy-note { margin: 20px 0 0; padding-left: 15px; color: var(--muted); border-left: 3px solid var(--terracotta); font-size: 15px; }
.form-status { margin-top: 14px; padding: 0; font-weight: 720; }
.form-status.is-error { padding: 13px 15px; color: #73190f; background: #fff0ec; border: 1px solid #e0aa9e; border-radius: 8px; }
.button-submit { width: 100%; margin-top: 22px; font-size: 18px; }

.personal-contact {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 34px;
  text-align: center;
  background: var(--forest-dark);
  color: #fff;
  border-radius: 10px 30px 10px 30px;
}
.personal-contact h2 { margin-bottom: 14px; font-size: 31px; }
.personal-contact p { margin-bottom: 7px; }
.contact-label { color: #efad98; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-name { font-weight: 800; }
.personal-contact a { display: block; width: fit-content; margin: 5px auto 0; color: #fff; font-size: 19px; font-weight: 750; }

.site-footer { color: #dce8e3; background: #0d3029; }
.footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
}
.footer-inner p { margin: 0; font-size: 14px; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-inner a { font-size: 14px; }

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

@media (max-width: 1050px) {
  .header-inner, .section-inner, .hero-inner, .footer-inner, .strength-line { width: min(100% - 36px, var(--content)); }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 14px; }
  .hero-inner { gap: 18px 34px; }
  .hero-media { height: 560px; }
  .activity-grid, .attention-grid { gap: 44px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 80px; grid-template-columns: 1fr auto auto; gap: 14px; }
  .menu-button { display: inline-flex; align-items: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 44px; display: flex; align-items: center; padding: 7px 10px; font-size: 16px; }
  .header-logo { width: 72px; }
  .header-logo img { width: 72px; }

  .hero { padding-top: 34px; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "image" "primary" "secondary";
    gap: 20px;
  }
  .hero-intro { padding-top: 0; }
  .hero-media { height: auto; aspect-ratio: 16 / 9; border-radius: 60px 14px 60px 14px; }
  .hero-primary { margin-top: 0; }
  .hero-secondary { padding-bottom: 0; }

  .editorial-heading { grid-template-columns: 1fr; }
  .editorial-heading .section-kicker { grid-column: auto; }
  .experience-points { grid-template-columns: 1fr; }
  .experience-points article { padding: 26px 0; border-bottom: 1px solid var(--line); }
  .experience-points article + article { padding-left: 0; border-left: 0; }
  .activity-grid, .attention-grid, .support-grid, .trust-grid { grid-template-columns: 1fr; }
  .activity-media, .attention-media { min-height: 0; aspect-ratio: 16 / 10; }
  .activity-copy { order: -1; }
  .trust-grid { gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  body::before { width: 3px; }
  .operator-bar { min-height: 29px; padding-inline: 12px; font-size: 12px; }
  .header-inner, .section-inner, .hero-inner, .footer-inner, .strength-line { width: calc(100% - 32px); }
  .domain-mark { font-size: 22px; }
  .domain-circle { width: 15px; height: 15px; border-width: 4px; }
  .menu-button { min-height: 44px; padding: 7px 10px; }
  .menu-button > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-button i { margin-left: 0; }
  .header-logo, .header-logo img { width: 62px; }

  .hero { padding: 24px 0 32px; }
  .hero-inner { gap: 16px; }
  .eyebrow { margin-bottom: 10px; font-size: 11px; letter-spacing: .065em; }
  h1 { margin-bottom: 14px; font-size: clamp(33px, 9.2vw, 38px); }
  h2 { font-size: clamp(28px, 7.5vw, 33px); }
  .hero-copy { font-size: 16px; line-height: 1.48; }
  .hero-media { aspect-ratio: 16 / 8.7; border-width: 5px; border-radius: 42px 10px 42px 10px; }
  .hero-media img { object-position: 50% 45%; }
  .symbol-label { right: 8px; bottom: 8px; padding: 4px 7px; font-size: 10px; }
  .button-large { width: 100%; min-height: 55px; padding-inline: 15px; font-size: 17px; }
  .hero-primary p { margin-top: 8px; font-size: 13px; }
  .hero-secondary { flex-wrap: wrap; gap: 13px 17px; }
  .hero-secondary .button { min-height: 44px; padding-inline: 14px; }

  .strength-line { grid-template-columns: 1fr; padding: 10px 0; border-top: 1px solid var(--line); }
  .strength-line p { min-height: 62px; padding: 12px 3px; border-left: 0; border-bottom: 1px solid var(--line); }
  .strength-line p:last-child { border-right: 0; border-bottom: 0; }

  .experience-section, .activity-section, .attention-section, .support-section, .property-section, .contact-section { padding: 72px 0; }
  .trust-section { padding: 65px 0; }
  .activity-grid, .attention-grid, .support-grid { gap: 36px; }
  .activity-media, .attention-media { aspect-ratio: 4 / 3; border-radius: 14px 48px 14px 14px; }
  .attention-media { border-radius: 48px 14px 14px 14px; }
  .activity-media img { object-position: 50% center; }
  .attention-media img { object-position: 42% center; }
  .attention-note { padding: 20px; }

  .property-ways { grid-template-columns: 1fr; }
  .property-way { padding: 30px 24px; }
  .property-way--buy { border-left: 0; border-top: 1px solid var(--line); }
  .property-way > span { margin-bottom: 20px; }

  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts div { padding: 18px 0; }
  .trust-facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid #a7b9ae; }

  .form-intro { text-align: left; }
  form { padding: 23px 18px; border-radius: 20px 8px 20px 8px; }
  .intent-options { grid-template-columns: 1fr; }
  .intent-option--primary { min-height: 96px; }
  .intent-secondary { grid-template-columns: 1fr 1fr; }
  .intent-option { min-height: 92px; align-items: flex-start; padding: 14px 12px; }
  .intent-option input { margin-top: 2px; }
  .intent-option strong { font-size: 15px; }
  .intent-option small { font-size: 12px; }
  .field-grid--two { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .optional-toggle { font-size: 15px; }
  .consent { font-size: 15px; }
  .personal-contact { padding: 28px 18px; }
  .personal-contact h2 { font-size: 28px; }
  .personal-contact a { font-size: 18px; }

  .footer-inner { flex-direction: column; align-items: flex-start; min-height: 0; padding-block: 28px; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 390px) {
  .header-inner, .section-inner, .hero-inner, .footer-inner, .strength-line { width: calc(100% - 28px); }
  .domain-mark { font-size: 20px; }
  .domain-circle { margin-right: 5px; }
  .header-inner { gap: 10px; }
  .header-logo, .header-logo img { width: 56px; }
  .hero { padding-top: 20px; }
  .hero-copy { font-size: 15.5px; line-height: 1.42; }
  .hero-media { aspect-ratio: 16 / 7.9; }
  .hero-primary p { font-size: 12.5px; }
  .intent-secondary { grid-template-columns: 1fr; }
  .intent-option { min-height: 74px; align-items: center; }
}

@media (max-width: 340px) {
  .domain-mark { font-size: 18px; }
  .header-logo, .header-logo img { width: 52px; }
  .menu-button { padding-inline: 8px; }
  h1 { font-size: 31px; }
  .hero-secondary { align-items: flex-start; flex-direction: column; }
  .hero-secondary .button { width: 100%; }
  .button { padding-inline: 14px; }
  .symbol-label { font-size: 9px; }
  form { padding-inline: 14px; }
}

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

@media (forced-colors: active) {
  .button, .intent-option, .optional-toggle { border: 2px solid currentColor; }
}
