:root {
  color-scheme: light;
  --forest-950: #071c17;
  --forest-900: #0b2a22;
  --forest-800: #123a2f;
  --forest-700: #225844;
  --sage-paper: #e7eee4;
  --sage-deep: #d9e4da;
  --warm-paper: #f6f3ea;
  --white: #fffef9;
  --ink: #0b241d;
  --muted: #52655e;
  --line: rgba(11, 36, 29, 0.18);
  --light-line: rgba(255, 254, 249, 0.2);
  --yellow: #f2c84b;
  --yellow-deep: #d9aa19;
  --content: min(1240px, calc(100% - 56px));
  --display: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --body: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--sage-paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 4px;
}

.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: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--forest-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 86px;
  color: var(--forest-950);
  background: rgba(231, 238, 228, 0.88);
  border-bottom: 1px solid rgba(11, 36, 29, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--white);
  background: rgba(7, 28, 23, 0.96);
  border-color: var(--light-line);
}

.nav-shell {
  width: min(1340px, calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 52px;
  background: transparent;
}

.brand-mark-wrap img {
  width: 56px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(9%) sepia(25%) saturate(1120%) hue-rotate(114deg) brightness(82%) contrast(99%);
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand-mark-wrap img,
.site-header.menu-active .brand-mark-wrap img {
  filter: none;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 9px;
  letter-spacing: 0.19em;
  opacity: 0.68;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  transition: right 220ms var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  right: 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 22px;
  background: var(--yellow);
  color: var(--forest-950);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  background: var(--sage-paper);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-right: -58px;
  background: var(--sage-paper);
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}

.hero-copy-inner {
  width: min(620px, calc(100% - 76px));
  height: 100%;
  margin: 0 auto;
  padding: 138px 48px 54px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--forest-700);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(64px, 5.1vw, 80px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lede {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 580;
  letter-spacing: 0.01em;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  color: var(--forest-800);
  font-size: 14px;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
}

.hero-trust span:not(:last-child)::after {
  content: "/";
  margin: 0 16px;
  color: var(--forest-700);
  opacity: 0.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button-primary {
  min-width: 170px;
  background: var(--yellow);
  color: var(--forest-950);
}

.button-primary:hover {
  background: #f5d367;
}

.button-text {
  min-height: 42px;
  padding: 0 0 3px;
  border-bottom-color: var(--forest-950);
}

.hero-media {
  min-width: 0;
  height: 100%;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  transform: scale(1.01);
}

.connect-section {
  background: var(--warm-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.connect-shell {
  width: var(--content);
  min-height: 360px;
  margin: 0 auto;
  padding: 66px 0;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(560px, 1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.connect-intro h2,
.section-heading h2,
.destination-copy h2,
.challenge-copy h2,
.about-statement h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.connect-intro h2 {
  font-size: clamp(36px, 2.9vw, 44px);
  white-space: nowrap;
}

.connect-intro > p:last-child {
  max-width: 490px;
  margin: 26px 0 0;
  color: var(--muted);
}

.qr-actions {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.qr-entry + .qr-entry {
  border-left: 1px solid var(--line);
}

.qr-button {
  width: 100%;
  margin: 0;
  padding: 8px 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.qr-image-wrap {
  width: 216px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(11, 36, 29, 0.1);
  box-shadow: 0 16px 40px rgba(7, 28, 23, 0.08);
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.qr-image-wrap-secondary {
  width: 178px;
}

.qr-button:hover .qr-image-wrap {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(7, 28, 23, 0.13);
}

.qr-image-wrap img {
  width: 100%;
  height: auto;
}

.qr-label {
  display: grid;
  gap: 4px;
}

.qr-label strong {
  font-size: 18px;
  font-weight: 750;
}

.qr-label small {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(104px, 11vw, 164px) 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.service-section {
  color: var(--white);
  background: var(--forest-950);
}

.service-section .section-kicker {
  color: #9fb9aa;
}

.service-section .section-heading > p:last-child {
  color: #b7c6bd;
}

.service-list {
  margin-top: 88px;
  border-top: 1px solid var(--light-line);
}

.service-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 90px minmax(190px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid var(--light-line);
}

.feature-number {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-row p {
  max-width: 620px;
  margin: 0;
  color: #b7c6bd;
}

.service-photo {
  margin: 96px 0 0;
}

.service-photo img {
  width: 100%;
  height: min(56vw, 650px);
  object-fit: cover;
  object-position: center 56%;
}

.service-photo figcaption,
.destination-photo figcaption {
  margin-top: 14px;
  color: #9fb9aa;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.destinations-section {
  background: var(--warm-paper);
}

.destination-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(72px, 10vw, 150px);
}

.destination-photo {
  margin: 0;
}

.destination-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.destination-photo figcaption {
  color: var(--muted);
}

.destination-copy > p:not(.section-kicker):not(.safety-note) {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.destination-list {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.destination-list > div {
  min-height: 92px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}

.destination-list strong {
  font-size: 18px;
}

.destination-list span {
  color: var(--muted);
}

.safety-note {
  margin: 36px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--yellow-deep);
  color: var(--muted);
  font-size: 14px;
}

.challenge-section {
  background: var(--sage-deep);
}

.challenge-layout {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(72px, 10vw, 156px);
}

.challenge-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.challenge-points {
  margin: 46px 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.challenge-points li {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.challenge-points span {
  color: var(--forest-700);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.text-link,
.social-links a {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.challenge-visual {
  margin: 0;
}

.challenge-visual img {
  width: 100%;
  box-shadow: 22px 24px 0 rgba(11, 36, 29, 0.12);
}

.about-section {
  color: var(--white);
  background: var(--forest-800);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(400px, 0.82fr);
  gap: clamp(70px, 10vw, 160px);
}

.about-section .section-kicker {
  color: #b5c9bd;
}

.about-body {
  padding-top: 42px;
}

.about-body p {
  margin: 0 0 26px;
  color: #d4dfd7;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 28px;
  margin-top: 42px;
}

.site-footer {
  padding: 72px 0 34px;
  color: var(--white);
  background: var(--forest-950);
  border-top: 1px solid var(--light-line);
}

.footer-shell {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(360px, 1.1fr) minmax(180px, 0.45fr);
  gap: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 64px;
}

.footer-brand div {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand span,
.footer-notice,
.footer-meta {
  color: #9fb0a6;
  font-size: 12px;
}

.footer-notice p {
  margin: 0 0 10px;
}

.footer-meta {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-meta a:hover {
  color: var(--white);
}

.qr-dialog {
  width: min(430px, calc(100% - 32px));
  padding: 38px;
  border: 0;
  color: var(--ink);
  background: var(--warm-paper);
  box-shadow: 0 30px 90px rgba(7, 28, 23, 0.35);
}

.qr-dialog::backdrop {
  background: rgba(7, 28, 23, 0.82);
  backdrop-filter: blur(8px);
}

.qr-dialog h2 {
  margin: 0 0 22px;
  font-size: 26px;
}

.qr-dialog img {
  width: 100%;
  padding: 14px;
  background: var(--white);
}

.qr-dialog p {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 52px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  background: var(--sage-paper);
}

.legal-header {
  width: var(--content);
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-header .brand-mark-wrap img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(25%) saturate(1120%) hue-rotate(114deg) brightness(82%) contrast(99%);
}

.legal-main {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 130px;
}

.legal-main h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-intro {
  margin: 34px 0 70px;
  color: var(--muted);
  font-size: 20px;
}

.legal-main section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-main h2 {
  margin: 0 0 16px;
  font-size: 25px;
}

.legal-main section p {
  margin: 10px 0;
  color: var(--muted);
}

.legal-footer {
  padding: 30px 0;
}

.legal-footer .footer-meta {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 1100px) {
  :root {
    --content: min(100% - 44px, 1000px);
  }

  .hero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .hero-copy-inner {
    padding-right: 70px;
  }

  .connect-shell {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .qr-button {
    padding-inline: 18px;
  }

  .qr-image-wrap {
    width: 180px;
  }

  .qr-image-wrap-secondary {
    width: 156px;
  }
}

@media (max-width: 920px) {
  :root {
    --content: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    min-height: calc(100dvh - 76px);
    padding: 44px 24px 60px;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    color: var(--white);
    background: var(--forest-950);
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 20px 2px;
    border-bottom: 1px solid var(--light-line);
    font-size: 22px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 30px;
    min-height: 54px;
  }

  .hero {
    min-height: 0;
    display: block;
  }

  .hero-copy {
    margin-right: 0;
    clip-path: none;
  }

  .hero-copy-inner {
    width: var(--content);
    min-height: 630px;
    padding: 136px 0 72px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(62px, 10.5vw, 86px);
  }

  .hero-media {
    min-height: 0;
    height: min(78vw, 650px);
  }

  .hero-media img {
    object-position: 61% center;
  }

  .connect-shell {
    padding: 82px 0;
    display: block;
  }

  .connect-intro h2 {
    white-space: normal;
  }

  .qr-actions {
    margin-top: 64px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-kicker {
    margin-bottom: 24px;
  }

  .section-heading > p:last-child {
    max-width: 620px;
    margin-top: 30px;
  }

  .service-row {
    grid-template-columns: 64px minmax(180px, 0.55fr) minmax(0, 1fr);
    gap: 24px;
  }

  .destination-layout,
  .challenge-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .destination-photo {
    width: min(620px, 82%);
  }

  .challenge-visual {
    width: min(520px, 76%);
    justify-self: end;
  }

  .about-body {
    padding-top: 0;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --content: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark-wrap {
    width: 48px;
    height: 44px;
  }

  .brand-mark-wrap img {
    width: 47px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero-copy-inner {
    min-height: 590px;
    padding-top: 118px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(58px, 17vw, 74px);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 19px;
  }

  .hero-trust {
    margin-top: 28px;
    font-size: 12px;
  }

  .hero-trust span:not(:last-child)::after {
    margin-inline: 10px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 22px;
    margin-top: 34px;
  }

  .button-primary {
    min-width: 148px;
  }

  .hero-media {
    height: 80vw;
    min-height: 330px;
  }

  .connect-section {
    border-top: 0;
  }

  .connect-intro h2,
  .section-heading h2,
  .destination-copy h2,
  .challenge-copy h2,
  .about-statement h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .qr-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }

  .qr-button {
    padding: 4px 10px;
  }

  .qr-image-wrap,
  .qr-image-wrap-secondary {
    width: min(38vw, 168px);
    padding: 8px;
  }

  .qr-label strong {
    font-size: 15px;
  }

  .qr-label small {
    font-size: 10px;
    line-height: 1.45;
  }

  .section {
    padding: 96px 0;
  }

  .service-list {
    margin-top: 58px;
  }

  .service-row {
    min-height: 0;
    padding: 30px 0;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 8px 14px;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-photo {
    margin-top: 68px;
  }

  .service-photo img {
    height: 74vw;
  }

  .destination-layout,
  .challenge-layout,
  .about-layout {
    gap: 70px;
  }

  .destination-photo,
  .challenge-visual {
    width: 100%;
  }

  .destination-copy > p:not(.section-kicker):not(.safety-note),
  .challenge-copy > p:not(.section-kicker),
  .about-body p {
    font-size: 16px;
  }

  .destination-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .challenge-visual img {
    box-shadow: 12px 14px 0 rgba(11, 36, 29, 0.12);
  }

  .footer-shell {
    display: block;
  }

  .footer-notice {
    margin: 40px 0;
  }

  .footer-meta {
    display: grid;
  }

  .qr-dialog {
    padding: 30px 22px 24px;
  }

  .legal-header {
    height: 86px;
  }

  .legal-header .brand-copy {
    display: none;
  }

  .legal-main {
    width: var(--content);
    padding: 74px 0 100px;
  }
}

@media (max-width: 360px) {
  .brand-copy small {
    display: none;
  }

  .hero-copy-inner {
    min-height: 560px;
  }

  .hero-actions {
    gap: 16px;
  }

  .button {
    padding-inline: 18px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--sage-paper);
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .site-header.menu-active {
    background: var(--forest-950);
  }
}
