:root {
  --ink: #111310;
  --ink-2: #1b211d;
  --paper: #f4f2ed;
  --paper-2: #e8e5de;
  --white: #fbfaf7;
  --mist: #cfd6d2;
  --muted: #66706a;
  --cyan: #86d9e8;
  --green: #315c4d;
  --red: #d65438;
  --gold: #c7a35b;
  --line: rgba(17, 19, 16, 0.18);
  --line-light: rgba(255, 255, 255, 0.24);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --max: 1440px;
  --gutter: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.char {
  display: inline-block;
  will-change: transform, opacity;
}

.split-line {
  display: block;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-size: 5px 5px;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, #000 3px);
  mix-blend-mode: multiply;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--ink);
  transition: transform 1s var(--ease), visibility 1s;
}

.preloader.is-done {
  visibility: hidden;
  transform: translateY(-100%);
}

.preloader-mark {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  text-align: center;
}

.preloader-line {
  width: 220px;
  height: 1px;
  margin: 28px auto 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: translateX(-100%);
  animation: loader 1.25s var(--ease) forwards;
}

.preloader p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-align: center;
}

@keyframes loader {
  to { transform: translateX(0); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.45s var(--ease), background 0.45s var(--ease), min-height 0.45s var(--ease), border-color 0.45s var(--ease);
}

.site-header.is-scrolled {
  min-height: 68px;
  color: var(--ink);
  background: rgba(244, 242, 237, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand img {
  width: 36px;
  height: 31px;
  object-fit: contain;
  filter: none;
  transition: filter 0.4s var(--ease);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

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

.brand b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand small {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  min-height: 44px;
  padding: 0 16px 0 20px;
  font-size: 13px;
  border: 1px solid currentColor;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
}

.header-cta:hover {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.header-cta svg,
.button svg,
.text-link svg,
.journey-copy button svg,
.footer-callout a svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: #1d2528;
}

.hero-media,
.hero-media img,
.hero-wash,
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.03);
  will-change: transform;
}

#heroCanvas {
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-wash {
  z-index: 3;
  background: rgba(7, 13, 15, 0.42);
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: var(--max);
  min-height: 92svh;
  margin: 0 auto;
  padding: 128px var(--gutter) 112px;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 54px;
  height: 1px;
  background: var(--cyan);
}

.hero-kicker b {
  margin-left: 4px;
  font-size: 9px;
  font-weight: 500;
  opacity: 0.68;
}

.hero h1 {
  width: 100%;
  margin: 34px 0 30px;
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
}

.hero-line-offset {
  padding-left: 124px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  align-items: end;
  gap: 56px;
  padding-left: 128px;
}

.hero-bottom > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 54px;
  padding: 0 20px 0 24px;
  font-size: 14px;
  font-weight: 700;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-index {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 22px;
  display: flex;
  gap: 20px;
  font-size: 8px;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.hero-stamp {
  position: absolute;
  z-index: 5;
  right: 6%;
  bottom: 22%;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  transform: rotate(9deg);
}

.hero-stamp b {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 0.8;
}

.hero-stamp span {
  font-size: 7px;
  letter-spacing: 0.16em;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.hero-scroll svg {
  width: 16px;
  animation: scrollHint 1.7s ease-in-out infinite;
}

@keyframes scrollHint {
  50% { transform: translateY(5px); }
}

.manifesto {
  position: relative;
  min-height: 1260px;
  overflow: hidden;
  padding: 150px var(--gutter) 120px;
  background: var(--paper);
}

.manifesto-counter {
  position: absolute;
  top: 58px;
  right: var(--gutter);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.manifesto-head {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  color: var(--muted);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.56);
}

.manifesto h2 {
  max-width: 900px;
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 94px;
  font-weight: 500;
  line-height: 1.08;
}

.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
}

.manifesto-object {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.manifesto-object p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.photo-frame {
  position: relative;
  width: 300px;
  aspect-ratio: 4 / 3;
  padding: 11px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(17, 19, 16, 0.16);
  transform: rotate(-4deg);
}

.photo-frame.vertical {
  width: 230px;
  aspect-ratio: 3 / 4;
  transform: rotate(5deg);
}

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

.object-one {
  top: 415px;
  right: 9%;
}

.object-two {
  top: 630px;
  left: 18%;
}

.object-three {
  right: 27%;
  bottom: 180px;
}

.route-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  min-height: 300px;
  padding: 24px;
  background: var(--cyan);
  box-shadow: 0 28px 70px rgba(17, 19, 16, 0.13);
  transform: rotate(3deg);
}

.route-note span,
.route-note small {
  font-size: 9px;
  letter-spacing: 0.12em;
}

.route-note strong {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.35;
}

.manifesto-copy {
  position: absolute;
  right: 8%;
  bottom: 520px;
  width: 360px;
}

.manifesto-rule {
  display: block;
  width: 86px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--red);
}

.manifesto-copy p {
  margin: 0;
  color: #46504a;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.9;
}

.manifesto-marquee {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  overflow: hidden;
  color: rgba(17, 19, 16, 0.08);
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.manifesto-marquee span {
  display: block;
  width: max-content;
}

.journeys {
  color: var(--white);
  background: var(--ink);
}

.journey-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 132px var(--gutter) 76px;
}

.journey-intro h2,
.destination-head h2,
.route-finder-head h2,
.about-copy h2,
.consult h2,
.faq h2 {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
}

.journey-intro > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.journey-stage {
  position: relative;
  height: 820px;
  overflow: hidden;
}

.journey-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-stage.has-swiper .journey-track {
  position: relative;
  inset: auto;
}

.journey-stage.has-swiper .journey-panel {
  position: relative;
  inset: auto;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.journey-stage.has-swiper .journey-panel:not(.swiper-slide-active) .journey-copy,
.journey-stage.has-swiper .journey-panel:not(.swiper-slide-active) .journey-number {
  opacity: 0;
  transform: translateY(24px);
}

.journey-stage.has-swiper .journey-copy,
.journey-stage.has-swiper .journey-number {
  transition: opacity 0.75s var(--ease), transform 0.9s var(--ease);
}

.journey-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.journey-panel.is-active {
  visibility: visible;
  opacity: 1;
}

.journey-image,
.journey-shade,
.journey-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-image img {
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.8s var(--ease);
}

.journey-panel.is-active .journey-image img {
  transform: scale(1);
}

.journey-shade {
  background: rgba(7, 12, 10, 0.38);
}

.journey-copy {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: 108px;
  max-width: 660px;
}

.journey-copy > p {
  margin: 0 0 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.journey-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 500;
  line-height: 1.12;
}

.journey-copy ul {
  display: flex;
  gap: 22px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.journey-copy li {
  font-size: 12px;
}

.journey-copy li::before {
  content: "/";
  margin-right: 8px;
  color: var(--cyan);
}

.journey-copy button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.journey-number {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: var(--gutter);
  color: rgba(255, 255, 255, 0.2);
  font-size: 156px;
  font-weight: 300;
  line-height: 1;
}

.journey-nav {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 52px;
  display: flex;
  gap: 11px;
}

.journey-nav button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 38px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  background: transparent;
}

.journey-nav span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}

.journey-nav button.is-active {
  color: var(--white);
}

.journey-nav button.is-active span {
  width: 48px;
  background: var(--cyan);
}

.destinations {
  position: relative;
  padding: 140px var(--gutter);
  background: var(--paper);
}

.destination-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto 76px;
}

.destination-head .eyebrow {
  grid-column: 1 / -1;
}

.destination-head span {
  align-self: end;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.destination-list {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.destination-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1fr 40px;
  align-items: center;
  width: 100%;
  min-height: 132px;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.destination-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}

.destination-row:hover::before,
.destination-row:focus-visible::before {
  transform: scaleY(1);
}

.destination-row > span {
  color: var(--muted);
  font-size: 10px;
}

.destination-row strong {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
}

.destination-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.destination-row svg {
  width: 22px;
  justify-self: end;
}

.destination-preview {
  position: fixed;
  z-index: 20;
  width: 260px;
  aspect-ratio: 4 / 3;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 60px rgba(17, 19, 16, 0.2);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
}

.destination-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  padding: 148px var(--gutter);
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.method-lead {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-lead .eyebrow {
  color: rgba(255, 255, 255, 0.54);
}

.method-lead h2 {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 500;
  line-height: 1.23;
}

.method-lead h2 span {
  color: var(--cyan);
}

.method-steps {
  border-top: 1px solid var(--line-light);
}

.method-steps article {
  display: grid;
  grid-template-columns: 56px 1fr 34px;
  gap: 24px;
  min-height: 228px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-light);
}

.method-steps article > span {
  color: var(--cyan);
  font-size: 11px;
}

.method-steps h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.method-steps p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.method-steps svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.4;
}

.route-finder {
  padding: 140px var(--gutter) 150px;
  color: var(--white);
  background: var(--ink);
}

.route-finder-head {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
  max-width: var(--max);
  margin: 0 auto 60px;
}

.route-finder-head > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.route-search-shell {
  display: grid;
  grid-template-columns: 32px 1fr 56px;
  align-items: center;
  max-width: var(--max);
  min-height: 82px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.route-search-shell > svg {
  width: 19px;
}

.route-search-shell input {
  width: 100%;
  height: 80px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  background: transparent;
  border: 0;
  outline: none;
}

.route-search-shell input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.route-search-shell button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: var(--cyan);
}

.destination-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: var(--max);
  margin: 25px auto 54px;
}

.destination-filters button {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.destination-filters button:hover,
.destination-filters button.is-active {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.public-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.16);
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 30px;
  background: var(--ink);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
}

.route-card:hover {
  color: var(--ink);
  background: var(--paper);
}

.route-card-index {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.route-card:hover .route-card-index,
.route-card:hover .route-card-desc {
  color: var(--muted);
}

.route-card h3 {
  margin: 54px 0 17px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
}

.route-card-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.route-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 22px;
  font-size: 10px;
}

.route-card-tags span::before {
  content: "+";
  margin-right: 4px;
  color: var(--cyan);
}

.route-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 15px 0 0;
  color: inherit;
  font-size: 12px;
  background: transparent;
  border-top: 1px solid currentColor;
}

.route-card button svg {
  width: 17px;
}

.route-empty {
  grid-column: 1 / -1;
  padding: 70px 30px;
  text-align: center;
  background: var(--ink);
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 880px;
  background: var(--paper);
}

.about-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-7%);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--gutter);
}

.about-copy h2 {
  font-size: 48px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 32px 0 46px;
  color: #4d5751;
  font-size: 15px;
}

.about-copy dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.about-copy dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.about-copy dt {
  color: var(--muted);
  font-size: 11px;
}

.about-copy dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.about-type {
  position: absolute;
  bottom: 20px;
  left: calc(54% - 20px);
  color: rgba(17, 19, 16, 0.07);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.88;
  pointer-events: none;
}

.consult {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding: 140px var(--gutter);
  color: var(--white);
  background: var(--red);
}

.consult-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.74);
}

.consult .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.direct-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

.direct-contact img {
  width: 112px;
  height: 112px;
  padding: 7px;
  background: var(--white);
}

.direct-contact div {
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.direct-contact strong {
  font-size: 14px;
}

.consult-form-shell {
  align-self: center;
  padding: 44px;
  color: var(--ink);
  background: var(--paper);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 44px;
  background: var(--line);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
  background: var(--paper);
  border-bottom: 2px solid transparent;
}

.wizard-step span {
  font-size: 9px;
}

.wizard-step.is-active {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.consult-form .form-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 20px;
}

.consult-form .form-step[hidden] {
  display: none;
}

.consult-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
}

.consult-form label > span {
  color: var(--red);
}

.consult-form label.full {
  grid-column: 1 / -1;
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s;
}

.consult-form input:focus,
.consult-form textarea:focus {
  border-bottom-color: var(--red);
}

.consult-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 18px;
}

.form-next,
.form-submit {
  color: var(--white);
  background: var(--ink);
}

.form-prev {
  background: transparent;
  border: 1px solid var(--line);
}

.form-actions svg {
  width: 17px;
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-message.is-success { color: var(--green); }
.form-message.is-error { color: #a83232; }

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
  padding: 140px var(--gutter);
  background: var(--paper);
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  align-items: center;
  min-height: 92px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 18px;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--muted); font-family: var(--sans); font-size: 10px; }
.faq summary svg { width: 20px; transition: transform 0.3s var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { max-width: 650px; margin: -8px 0 30px 48px; color: var(--muted); font-size: 14px; }

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-callout {
  position: relative;
  min-height: 600px;
  padding: 120px var(--gutter);
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.footer-callout::after {
  content: "宸臻";
  position: absolute;
  right: -20px;
  bottom: -94px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-size: 330px;
  line-height: 1;
}

.footer-callout p {
  margin: 0 0 38px;
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.footer-callout h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: 84px;
  font-weight: 500;
  line-height: 1.12;
}

.footer-callout a {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 96px;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding-bottom: 10px;
  font-size: 13px;
  border-bottom: 1px solid var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 56px var(--gutter) 34px;
}

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

.footer-brand img {
  filter: none;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 18px;
}

.footer-brand span,
.footer-license,
.footer-links,
.copyright {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.footer-license p,
.copyright { margin: 0; }
.footer-license { color: rgba(255, 255, 255, 0.52); }
.footer-links { display: grid; gap: 5px; justify-items: end; }
.footer-links a { display: inline-flex; align-items: center; gap: 6px; }
.copyright { grid-column: 1 / -1; margin-top: 30px; color: rgba(255, 255, 255, 0.32); }

.mobile-actions {
  display: none;
}

[data-reveal] {
  will-change: transform, opacity;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (max-width: 1200px) {
  :root { --gutter: 40px; }
  .hero h1 { font-size: 74px; }
  .hero-line-offset { padding-left: 92px; }
  .hero-bottom { padding-left: 96px; }
  .manifesto h2 { font-size: 80px; }
  .journey-copy h3 { font-size: 65px; }
  .method { gap: 70px; }
  .method-lead h2 { font-size: 58px; }
}

@media (max-width: 960px) {
  :root { --gutter: 28px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; justify-self: end; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 110px var(--gutter) 60px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 34px;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .site-header.menu-open { color: var(--ink); }
  .site-header.menu-open .brand img { filter: none; }
  .site-header.menu-open .nav-links { visibility: visible; opacity: 1; transform: none; }
  .hero h1 { font-size: 62px; }
  .hero-line-offset { padding-left: 0; }
  .hero-bottom { grid-template-columns: 1fr; gap: 28px; padding-left: 0; }
  .manifesto { min-height: 1240px; }
  .manifesto h2 { font-size: 66px; }
  .object-one { right: 5%; }
  .object-two { left: 10%; }
  .object-three { right: 16%; }
  .manifesto-copy { right: 5%; }
  .journey-intro,
  .route-finder-head { grid-template-columns: 1fr; gap: 32px; }
  .journey-stage { height: 720px; }
  .journey-copy h3 { font-size: 54px; }
  .journey-number { font-size: 120px; }
  .method { grid-template-columns: 1fr; }
  .method-lead { position: static; }
  .public-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { grid-template-columns: 1fr; }
  .about-media { min-height: 65svh; }
  .about-copy { padding: 90px var(--gutter); }
  .about-type { left: auto; right: var(--gutter); bottom: 28px; }
  .consult { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; gap: 50px; }
  .footer-callout h2 { font-size: 66px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-items: start; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }
  body { font-size: 15px; padding-bottom: 62px; }
  .site-grain { display: none; }
  .preloader-mark { font-size: 54px; }
  .brand small { display: none; }
  .hero { min-height: 90svh; }
  .hero-content { min-height: 90svh; padding: 106px var(--gutter) 94px; }
  .hero-media img { object-position: 58% center; }
  .hero-kicker { font-size: 9px; }
  .hero-kicker span { width: 28px; }
  .hero-kicker b { display: none; }
  .hero h1 { margin-top: 25px; font-size: 45px; line-height: 1.16; }
  .hero-bottom > p { max-width: 310px; font-size: 13px; }
  .hero-actions { gap: 18px; }
  .button { min-height: 50px; gap: 20px; padding: 0 16px; }
  .hero-index, .hero-stamp { display: none; }
  .hero-scroll { right: var(--gutter); bottom: 20px; }
  .hero-scroll span { display: none; }
  .manifesto { min-height: 0; padding-top: 100px; padding-bottom: 84px; }
  .manifesto-counter { top: 34px; }
  .manifesto h2 { font-size: 48px; }
  .photo-frame { width: 190px; padding: 7px; }
  .photo-frame.vertical { width: 145px; }
  .manifesto-object { position: relative; top: auto; right: auto; bottom: auto; left: auto; }
  .object-one { width: 190px; margin: 62px -8px 0 auto; }
  .object-two { width: 180px; margin: -28px auto 0 0; }
  .object-three { width: 145px; margin: -26px 12% 0 auto; }
  .route-note { width: 180px; min-height: 220px; padding: 18px; }
  .route-note strong { font-size: 21px; }
  .manifesto-copy { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 54px; }
  .manifesto-copy p { font-size: 15px; }
  .manifesto-marquee { position: relative; right: auto; bottom: auto; left: auto; width: calc(100% + 40px); margin: 72px -20px 0; font-size: 48px; }
  .journey-intro { padding: 90px var(--gutter) 52px; }
  .journey-intro h2,
  .destination-head h2,
  .route-finder-head h2,
  .about-copy h2,
  .consult h2,
  .faq h2 { font-size: 42px; }
  .journey-stage { height: 690px; }
  .journey-copy { left: var(--gutter); right: var(--gutter); bottom: 112px; }
  .journey-copy h3 { font-size: 43px; }
  .journey-copy ul { flex-wrap: wrap; gap: 6px 12px; }
  .journey-number { top: 26px; right: var(--gutter); font-size: 82px; }
  .journey-nav { right: auto; left: var(--gutter); bottom: 40px; }
  .journey-nav button.is-active span { width: 28px; }
  .destinations { padding-top: 96px; padding-bottom: 96px; }
  .destination-head { margin-bottom: 42px; }
  .destination-row { grid-template-columns: 34px 1fr 28px; min-height: 96px; }
  .destination-row strong { font-size: 31px; }
  .destination-row em { display: none; }
  .destination-preview { display: none; }
  .method { gap: 48px; padding-top: 96px; padding-bottom: 96px; }
  .method-lead h2 { font-size: 46px; }
  .method-steps article { grid-template-columns: 38px 1fr 26px; min-height: 190px; gap: 12px; }
  .method-steps h3 { font-size: 30px; }
  .route-finder { padding-top: 96px; padding-bottom: 96px; }
  .route-search-shell { grid-template-columns: 28px 1fr 46px; min-height: 68px; }
  .route-search-shell input { height: 66px; font-size: 16px; }
  .route-search-shell button { width: 42px; height: 42px; }
  .public-route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 340px; }
  .about-media { min-height: 58svh; }
  .about-copy { padding-top: 78px; padding-bottom: 120px; }
  .about-copy dl div { grid-template-columns: 1fr; gap: 3px; }
  .about-type { font-size: 54px; }
  .consult { gap: 56px; padding-top: 96px; padding-bottom: 96px; }
  .direct-contact img { width: 96px; height: 96px; }
  .consult-form-shell { padding: 24px 18px; }
  .wizard-step { display: grid; gap: 3px; padding: 10px 7px; font-size: 9px; }
  .consult-form .form-step { grid-template-columns: 1fr; }
  .consult-form label.full, .form-actions, .form-message { grid-column: 1; }
  .faq { padding-top: 96px; padding-bottom: 96px; }
  .faq summary { grid-template-columns: 32px 1fr 24px; min-height: 84px; font-size: 15px; }
  .faq details p { margin-left: 32px; }
  .footer-callout { min-height: 480px; padding-top: 90px; }
  .footer-callout h2 { font-size: 47px; }
  .footer-callout::after { right: -10px; bottom: -34px; font-size: 160px; }
  .footer-callout a { right: auto; left: var(--gutter); bottom: 72px; }
  .footer-bottom { grid-template-columns: 1fr; padding-bottom: 40px; }
  .footer-links { justify-items: start; }
  .copyright { grid-column: 1; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 900;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: 62px;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 12px; }
  .mobile-actions a:last-child { color: var(--ink); background: var(--cyan); }
  .mobile-actions svg { width: 17px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 39px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .manifesto h2 { font-size: 42px; }
  .journey-copy h3 { font-size: 38px; }
  .footer-callout h2 { font-size: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .preloader { display: none; }
  .hero-media img, .about-media img, [data-float] { transform: none !important; }
}
