:root {
  --paper: #f7f4ed;
  --sheet: #fffdf8;
  --ink: #153b32;
  --muted: #59635b;
  --accent: #9b411b;
  --line: #d8d8ca;
  --sage: #e9ede4;
  --serif:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", YuGothic, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.9;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}
h2 {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.65;
  letter-spacing: 0.035em;
}
h3 {
  font-size: 22px;
  line-height: 1.6;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #d3dfc9;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.page-width {
  width: min(1280px, 90%);
  margin-inline: auto;
}
.section {
  padding-block: clamp(72px, 7.6vw, 112px);
}
.eyebrow {
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 28px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.section-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  flex-shrink: 0;
}
.section-intro > p:not(.eyebrow) {
  margin-top: 28px;
}
.small {
  font-size: 13px;
}
.quiet-note {
  font-size: 12px;
  color: #47544a;
  letter-spacing: 0.015em;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 60;
  padding: 12px 24px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  top: 12px;
}

.site-header {
  height: 104px;
  padding-inline: 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 20;
}
.brand-lockup {
  width: 160px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}
.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  white-space: nowrap;
}
.site-nav a:hover,
.footer-column a:hover {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 6px 18px;
  min-height: 44px;
  border-radius: 4px;
  font-size: 14px;
}

@media (min-width: 721px) {
  .site-nav {
    gap: 4px;
    padding: 8px;
    background: var(--sheet);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 4px 16px #153b3208;
  }
  .site-nav a {
    padding-inline: 18px;
    border-radius: 3px;
    font-weight: 600;
  }
  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--sage);
    color: var(--ink);
  }
}

.hero {
  position: relative;
  min-height: clamp(680px, 68vw, 970px);
  padding: clamp(48px, 5.2vw, 80px) 5% 140px;
}
.hero-art {
  position: absolute;
  z-index: 0;
  top: -104px;
  left: 0;
  width: 100%;
  height: calc(100% + 104px);
  overflow: hidden;
  pointer-events: none;
}
.hero-landscape {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  transform-origin: 72% 65%;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0 -15%;
  background: linear-gradient(112deg, transparent 48%, #fff9db70 60%, transparent 72%);
  opacity: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-route {
  position: absolute;
  z-index: 1;
  right: 5%;
  bottom: 46px;
  width: min(430px, 42%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 22px 20px;
  border-top: 1px solid #788977;
  background: #f7f4edf2;
  font-size: 13px;
}
.hero-route li {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
.route-index {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #a8b2a1;
  border-radius: 50%;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.route-index::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
}
.hero .eyebrow {
  margin-bottom: 24px;
  font-size: clamp(15px, 1.6vw, 20px);
}
.hero h1 {
  font-size: clamp(40px, 4.7vw, 68px);
  letter-spacing: 0.04em;
  line-height: 1.58;
  font-weight: 600;
}
.keep-together {
  display: inline-block;
  white-space: nowrap;
  font-style: normal;
}
.hero h1 > span {
  display: block;
}
.hero-lead {
  margin-block: 26px 42px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 2;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 62px;
  max-width: 100%;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 500;
  line-height: 1.6;
  transition:
    background-color 160ms,
    transform 160ms;
}
.primary {
  background: var(--ink);
  color: var(--sheet);
}
.primary img {
  filter: invert(1);
  flex-shrink: 0;
}
.primary:hover {
  background: #285449;
  transform: translateY(-2px);
}
.hero .button {
  min-width: 300px;
  font-size: 18px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block: 20px 22px;
  font-size: 18px;
}
.status-label {
  display: inline-block;
  border: 1px solid #c9cbbd;
  border-radius: 7px;
  padding: 2px 12px;
  font-size: 12px;
  white-space: nowrap;
  color: #4b5548;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  margin-top: 30px;
}
.text-link:hover {
  color: var(--accent);
}

.benefits {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr 1fr;
  padding-block: 60px;
}
.benefits h2 {
  font-size: clamp(23px, 2.4vw, 30px);
}
.benefits article {
  border-left: 1px solid var(--line);
  padding-inline: 26px 10px;
  display: flex;
  align-items: start;
  gap: 16px;
}
.benefits .icon-disc {
  width: 48px;
  height: 48px;
}
.benefits .icon-disc img {
  width: 32px;
  height: 32px;
}
.benefits h3 {
  font-size: clamp(17px, 1.7vw, 22px);
  white-space: nowrap;
}
.benefits p {
  font-size: 13px;
  line-height: 2;
  margin-top: 12px;
}
.icon-disc {
  background: #eaeadd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.case-intro {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 4%;
}
.case-intro h2 {
  font-size: clamp(27px, 2.8vw, 38px);
}
.report-spread {
  align-self: center;
  padding: 48px 24px 22px;
  background: var(--sheet);
  border: 1px solid #c9c9b7;
  box-shadow: 0 12px 19px -17px #504e36;
  border-radius: 3px;
}
.spread-columns {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  text-align: center;
  align-items: start;
  gap: 4px;
}
.spread-columns h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.spread-columns .icon-disc {
  width: 74px;
  height: 74px;
}
.spread-columns p {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 16px;
}
.spread-arrow {
  margin-top: 78px;
}
.spread-caption {
  font-size: 10px;
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
}

.sample-section {
  background: var(--sage);
}
.sample-reader {
  background: var(--sheet);
}
.sample-tabs {
  display: none;
  border-bottom: 1px solid #cbd3c4;
}
.js .sample-tabs {
  display: flex;
}
.sample-tabs button {
  flex: 1;
  min-height: 64px;
  padding: 14px 10px;
  border: 0;
  background: transparent;
  border-bottom: 3px solid transparent;
}
.sample-tabs button[aria-selected="true"] {
  border-bottom-color: var(--ink);
  font-weight: 700;
  background: #f1f3eb;
}
.sample-tabs button:hover {
  background: var(--sage);
}
.sample-panel {
  padding: clamp(30px, 5vw, 72px);
  min-height: 630px;
}
.sample-label {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.sample-panel h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.65;
  margin-bottom: 28px;
}
.reading-lead {
  font-size: 18px;
  max-width: 48em;
  margin-bottom: 28px;
}
.reading-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  font-size: 15px;
  line-height: 2.1;
}
.reading-note {
  border-left: 2px solid #75836a;
  margin-top: 36px;
  padding: 10px 24px;
}
.reading-note strong {
  font-size: 14px;
}
.reading-note p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.sample-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  text-align: right;
}
.comparison-table {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
caption {
  text-align: left;
  font-size: 12px;
  margin-bottom: 16px;
}
th,
td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
thead th {
  background: #f0f2e9;
  font-weight: 600;
}
th[scope="row"] {
  width: 24%;
}
.action-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.action-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.action-list li > span {
  font-size: 13px;
  color: var(--accent);
}
.action-list h4 {
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 8px;
}
.action-list p {
  font-size: 14px;
  color: var(--muted);
}

.case-list article {
  display: grid;
  grid-template-columns: 60px 1fr 52px;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-block: 36px;
}
.case-list article:last-child {
  border-bottom: 1px solid var(--line);
}
.case-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 22px;
}
.case-list p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 55em;
}
.case-list a {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-list a:hover {
  background: var(--sage);
}
.method-section {
  background: #edeedf;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.method-grid li {
  border-top: 1px solid #aeb5a2;
  padding-top: 24px;
}
.method-grid span {
  color: var(--accent);
  font-size: 12px;
}
.method-grid h3 {
  margin-block: 24px;
  font-size: 26px;
}
.method-grid p {
  color: #49594b;
  font-size: 14px;
  line-height: 2.1;
}
.method-footnote {
  border-top: 1px solid #cbd0bc;
  margin-top: 60px;
  padding-top: 28px;
  font-family: var(--serif);
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.method-footnote span {
  font:
    12px/1.7 "Hiragino Sans",
    sans-serif;
}
.offer,
.faq {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 8%;
}
.offer-details {
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.offer-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.offer-title-row h3 {
  font-size: 22px;
}
.price {
  font-family: var(--serif);
  font-size: 76px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.price span {
  font-size: 30px;
  margin-left: 8px;
}
.price-note {
  color: var(--muted);
  font-size: 12px;
  margin-block: 12px 28px;
}
.included-list {
  padding: 0;
  list-style: none;
  margin: 0;
  border-top: 1px solid var(--line);
}
.included-list li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  background: url("./images/icons/check-circle.svg") no-repeat left center /
    20px;
}
.offer-boundary {
  font-size: 13px;
  margin-block: 24px;
}
.offer-details .button {
  display: flex;
  width: 100%;
}
.offer-details .quiet-note {
  margin-top: 16px;
}
.offer-disclosure {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.7;
}
.offer-disclosure a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary img {
  flex-shrink: 0;
  transition: transform 150ms;
}
.faq-list details[open] summary img {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted);
  font-size: 14px;
  padding: 0 36px 28px 0;
}
.closing {
  text-align: center;
  background: #e7ecdf;
}
.closing h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}
.closing p:not(.eyebrow) {
  margin-block: 24px 36px;
  font-size: 14px;
}
.closing .button {
  min-width: 300px;
}
.boundary {
  padding-block: 42px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.boundary h2 {
  font-family: inherit;
  font-size: 13px;
}
.boundary p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}
.site-footer {
  padding-block: 60px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand > p {
  font-family: var(--serif);
  font-size: 15px;
  margin-top: 18px;
}
.footer-brand .brand-lockup {
  mix-blend-mode: normal;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}
.footer-column h2 {
  font-family: inherit;
  font-size: 12px;
  margin: 12px 0 16px;
  color: var(--muted);
}
.footer-column a {
  font-size: 13px;
  padding-block: 5px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

@media (min-width: 1600px) {
  .hero {
    padding-left: max(5%, calc((100vw - 1280px) / 2));
  }
  .hero-landscape {
    object-position: center 62%;
  }
}
@media (max-width: 1100px) {
  .benefits article {
    flex-direction: row;
    padding-left: 22px;
    gap: 14px;
  }
  .benefits {
    padding-block: 48px;
  }
  .case-intro {
    grid-template-columns: 31% 1fr;
  }
  .case-intro h2 {
    font-size: 28px;
  }
  .spread-columns p {
    font-size: 13px;
  }
  .report-spread {
    padding-inline: 16px;
  }
  .section-heading {
    gap: 24px;
  }
  .section-note {
    max-width: 30%;
    flex-shrink: 1;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 28px;
  }
  body {
    font-size: 15px;
  }
  h2 {
    font-size: clamp(24px, 6.6vw, 28px);
  }
  .page-width {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .site-header {
    min-height: 82px;
    height: auto;
    padding: 6px 20px;
    flex-wrap: wrap;
  }
  .brand-lockup {
    width: 128px;
    height: 58px;
  }
  .site-nav {
    width: 100%;
    gap: 24px;
    padding-block: 8px;
  }
  .site-nav a {
    font-size: 13px;
  }
  .js .menu-toggle {
    display: block;
  }
  .js .site-nav {
    display: none;
  }
  .js .menu-toggle[aria-expanded="true"] + .site-nav {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    padding: 14px 20px;
    width: 100%;
    background: var(--paper);
    border-block: 1px solid var(--line);
  }
  .hero {
    min-height: 840px;
    padding: 34px 20px 290px;
  }
  .hero-art {
    top: auto;
    bottom: 0;
    height: 450px;
  }
  .hero-landscape {
    object-fit: cover;
    object-position: 68% bottom;
  }
  .hero-route {
    right: 20px;
    bottom: 28px;
    width: min(380px, calc(100% - 40px));
    padding: 16px 10px;
    gap: 6px;
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(30px, 7.8vw, 46px);
    line-height: 1.65;
    letter-spacing: 0.015em;
  }
  .hero h1 > span:last-child {
    max-width: 12em;
  }
  .hero-lead {
    font-size: 14px;
    margin-block: 22px 28px;
    max-width: 28em;
  }
  .hero-lead br {
    display: none;
  }
  .hero .button {
    min-width: 0;
    width: min(320px, 100%);
  }
  .hero-meta {
    font-size: 16px;
    margin-block: 16px;
    gap: 14px;
  }
  .hero .quiet-note {
    font-size: 11px;
  }
  .button {
    padding: 16px 22px;
    font-size: 15px;
    min-height: 58px;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding-block: 40px;
  }
  .benefits h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .benefits h2 br {
    display: none;
  }
  .benefits article {
    border-left: 0;
    border-top: 1px solid var(--line);
    flex-direction: row;
    padding: 20px 0;
    gap: 20px;
    align-items: center;
  }
  .benefits h3 {
    font-size: 20px;
  }
  .benefits p {
    margin-top: 4px;
    font-size: 13px;
  }
  .benefits p br {
    display: none;
  }
  .case-intro,
  .offer,
  .faq {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-intro > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .section-intro .text-link {
    margin-top: 14px;
  }
  .report-spread {
    padding: 30px 12px 20px;
  }
  .spread-columns {
    grid-template-columns: 1fr 16px 1fr 16px 1fr;
    gap: 0;
  }
  .spread-columns h3 {
    font-size: 16px;
  }
  .spread-columns .icon-disc {
    width: 52px;
    height: 52px;
  }
  .spread-columns .icon-disc img {
    width: 30px;
    height: 30px;
  }
  .spread-columns p {
    font-size: 11px;
    margin-top: 14px;
  }
  .spread-arrow {
    margin-top: 62px;
    width: 16px;
  }
  .spread-caption {
    font-size: 9px;
    margin-top: 24px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading .section-note {
    margin-top: 24px;
    max-width: none;
  }
  .eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }
  .sample-panel {
    padding: 28px 22px;
    min-height: 0;
  }
  .sample-tabs button {
    font-size: 13px;
    padding-inline: 4px;
    min-height: 56px;
  }
  .sample-panel h3 {
    font-size: 28px;
  }
  .reading-lead {
    font-size: 16px;
  }
  .reading-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    font-size: 14px;
  }
  .reading-note {
    padding: 4px 16px;
    margin-top: 26px;
  }
  .sample-disclaimer {
    text-align: left;
    font-size: 11px;
  }
  table {
    font-size: 12px;
    table-layout: fixed;
  }
  th,
  td {
    padding: 14px 8px;
    overflow-wrap: anywhere;
  }
  th[scope="row"] {
    width: 25%;
  }
  .action-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .case-list article {
    grid-template-columns: 28px 1fr 36px;
    gap: 12px;
    padding-block: 28px;
  }
  .case-number {
    font-size: 17px;
    align-self: start;
  }
  .case-list h3 {
    font-size: 20px;
  }
  .case-list p {
    font-size: 13px;
  }
  .case-list a {
    width: 44px;
    height: 44px;
    margin-left: -8px;
  }
  .case-list a img {
    width: 25px;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .method-grid h3 {
    font-size: 26px;
    margin-block: 16px;
  }
  .method-footnote {
    display: block;
    margin-top: 36px;
    font-size: 18px;
  }
  .method-footnote span {
    display: block;
    margin-top: 14px;
  }
  .price {
    font-size: 64px;
  }
  .faq-list summary {
    font-size: 14px;
    gap: 14px;
  }
  .closing h2 {
    font-size: 32px;
  }
  .closing .button {
    min-width: 0;
    width: min(320px, 100%);
  }
  .boundary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 32px;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    align-items: start;
    gap: 6px;
  }
  .footer-bottom p {
    width: 100%;
  }
  .footer-column a {
    min-height: 44px;
  }
}
/* Motion is progressive: no JS, no observer, or reduced motion stays static.
   Only decorative layers loop; all text and links remain visible and usable. */
@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-landscape {
    animation: garden-drift 18s ease-in-out infinite alternate;
    animation-play-state: paused;
  }
  .motion-ready .hero-art::after {
    animation: garden-light 18s ease-in-out infinite alternate;
    animation-play-state: paused;
  }
  .motion-ready .route-index::before {
    animation: route-focus 9s ease-in-out infinite;
    animation-play-state: paused;
  }
  .hero-route li:nth-child(2) .route-index::before {
    animation-delay: 3s;
  }
  .hero-route li:nth-child(3) .route-index::before {
    animation-delay: 6s;
  }
  .motion-running .hero-landscape,
  .motion-running .hero-art::after,
  .motion-running .route-index::before {
    animation-play-state: running;
  }
  .motion-enabled .is-revealed {
    animation: page-arrive 700ms cubic-bezier(0.2, 0.65, 0.3, 1) both;
  }
  @keyframes garden-drift {
    from { transform: scale(1); }
    to { transform: scale(1.045) translate3d(-0.6%, -0.3%, 0); }
  }
  @keyframes garden-light {
    from { opacity: 0.12; transform: translate3d(-5%, 0, 0); }
    to { opacity: 0.55; transform: translate3d(7%, 0, 0); }
  }
  @keyframes route-focus {
    0%, 34%, 100% { opacity: 0; transform: scale(0.86); }
    12%, 22% { opacity: 0.8; transform: scale(1); }
  }
  @keyframes page-arrive {
    from { opacity: 0.4; transform: translate3d(0, 18px, 0); }
    to { opacity: 1; transform: none; }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .primary:hover {
    transform: none;
  }
}
