:root {
  --ink: #26322d;
  --ink-deep: #173e38;
  --paper: #f3ede1;
  --paper-light: #fffdf8;
  --paper-dark: #e4d8c6;
  --muted: #6f746c;
  --line: #bdb3a3;
  --tomato: #d96546;
  --mustard: #dfb94f;
  --leaf: #698d60;
  --blue: #51758b;
  --max: 1180px;
  --section-title-size: clamp(34px, 3vw, 44px);
  --section-copy-size: 16px;
  --sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

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

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

summary,
button {
  font: inherit;
}

::selection {
  background: var(--mustard);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--mustard);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 237, 225, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  width: max-content;
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3.5vw, 52px);
}

.header-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--tomato);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 38px;
  padding: 0 4px 0 0;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 748px;
  overflow: hidden;
  padding: clamp(54px, 5vw, 74px) 0;
  background: var(--paper);
  isolation: isolate;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(48px, 5.5vw, 76px);
  width: min(var(--max), calc(100% - 64px));
  min-height: 600px;
  margin: 0 auto;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Ccircle cx='2' cy='2' r='1' fill='%2326322d' fill-opacity='.09'/%3E%3C/svg%3E");
  background-size: 90px 90px;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: 28px 0;
}

.eyebrow,
.section-number {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
}

.eyebrow span {
  padding: 4px 8px;
  border: 1px solid var(--ink);
  background: var(--mustard);
  color: var(--ink);
}

.hero h1 {
  margin: 28px 0 14px;
  font-size: clamp(36px, 3.55vw, 48px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:last-child {
  margin-top: 5px;
  margin-left: 0;
  color: var(--tomato);
}

.hero-subtitle {
  max-width: 29em;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.65;
  text-wrap: balance;
}

.hero-lead {
  max-width: 33em;
  margin: 0;
  color: #505952;
  font-size: 15px;
  line-height: 2;
}

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

.primary-action,
.community-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--tomato);
  color: var(--paper-light);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.primary-action:hover,
.community-cta:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.text-action {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-action span {
  margin-left: 7px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 7px 10px;
  border: 1px dashed var(--line);
  background: rgba(255, 253, 248, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.hero-facts span {
  margin-right: 7px;
  color: var(--tomato);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  padding: clamp(28px, 3.1vw, 42px);
  border: 1px solid rgba(38, 50, 45, 0.42);
  background: var(--paper-dark);
}

.hero-visual::before {
  position: absolute;
  top: 22px;
  right: -18px;
  bottom: -18px;
  left: 22px;
  z-index: -1;
  border: 1px solid var(--ink);
  content: "";
}

.room-map {
  position: relative;
  width: min(650px, 100%);
  margin: 0 auto;
  padding: 28px 28px 22px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 12px 12px 0 rgba(38, 50, 45, 0.16);
}

.room-map::before,
.room-map::after {
  position: absolute;
  width: 66px;
  height: 14px;
  background: rgba(223, 185, 79, 0.72);
  content: "";
  transform: rotate(-4deg);
}

.room-map::before {
  top: -8px;
  left: 34px;
}

.room-map::after {
  right: 34px;
  bottom: -8px;
  transform: rotate(3deg);
}

.map-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.map-heading p {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.map-heading span {
  color: var(--muted);
  font-size: 12px;
}

.doors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: end;
  min-height: 430px;
  padding: 34px 0 0;
}

.door {
  --door-color: var(--tomato);
  position: relative;
  display: grid;
  height: 350px;
  align-content: space-between;
  padding: 18px 16px 14px;
  border: 3px solid var(--ink);
  background: var(--door-color);
  color: var(--paper-light);
  transition: transform 160ms ease;
}

.door:hover {
  transform: translateY(-8px);
}

.door-line {
  --door-color: var(--leaf);
  height: 390px;
}

.door-threads {
  --door-color: var(--blue);
  height: 325px;
}

.door-number,
.door-use,
.door small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.door-use {
  margin-top: -46px;
  writing-mode: vertical-rl;
}

.door strong {
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.1;
  word-break: break-all;
}

.door i {
  position: absolute;
  top: 52%;
  right: 11px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper-light);
  background: var(--mustard);
  content: "";
}

.door small {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 253, 248, 0.7);
}

.map-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.map-footer span {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.manifesto {
  display: grid;
  grid-template-columns: 180px minmax(420px, 1fr) minmax(220px, 0.55fr);
  gap: 56px;
  align-items: start;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0;
  border-bottom: 1px dashed var(--line);
}

.section-number {
  padding-top: 12px;
  color: var(--muted);
}

.manifesto-copy {
  display: contents;
}

.manifesto-copy p {
  margin: 0;
}

.manifesto-lead {
  grid-column: 2;
  font-size: var(--section-title-size);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.manifesto-lead span {
  display: block;
}

.manifesto-copy p:last-child {
  grid-column: 3;
  margin-top: 4px;
  color: #4f5851;
  font-size: var(--section-copy-size);
  line-height: 2;
}

.chooser {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(420px, 1fr) minmax(220px, 0.55fr);
  gap: 56px;
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: var(--section-title-size);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.policy-heading h2,
.faq-heading h2,
.final-heading h2 {
  margin: 0;
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.section-heading > p:last-child {
  margin: 4px 0 0;
  color: #4f5851;
  font-size: var(--section-copy-size);
  line-height: 2;
}

.route-list {
  margin: 60px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.route-item {
  border-bottom: 1px dashed var(--line);
}

.route-item a {
  display: grid;
  grid-template-columns: 54px 78px minmax(260px, 1fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 18px 14px;
  transition: background 160ms ease, padding 160ms ease;
}

.route-item:nth-child(1) a:hover {
  background: #f8ded4;
}

.route-item:nth-child(2) a:hover {
  background: #e1ebdc;
}

.route-item:nth-child(3) a:hover {
  background: #dde7ed;
}

.route-number,
.route-mode {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
}

.route-number {
  color: var(--muted);
}

.route-mode {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.route-title {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.route-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.community {
  --accent: var(--tomato);
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(290px, 0.52fr);
  gap: clamp(38px, 5vw, 72px);
  min-height: 590px;
  align-items: center;
  padding: 104px max(32px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--ink);
}

.community::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: var(--accent);
  content: "";
}

.community-youtube {
  background: #fff8ef;
}

.community-line {
  --accent: var(--leaf);
  background: #edf3e9;
}

.community-threads {
  --accent: var(--blue);
  background: #eaf0f3;
}

.community-rail {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  padding: 22px 0;
  border-right: 1px dashed var(--line);
}

.community-rail span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--paper-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}

.community-rail b {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.community-main {
  max-width: 700px;
}

.community-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.community-heading img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.community-heading p {
  margin: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.community-main h2 {
  margin: 24px 0 24px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.community-lead {
  margin: 0;
  color: #4c5650;
  font-size: 16px;
  line-height: 2.05;
}

.community-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

.community-cta {
  min-width: 280px;
  justify-content: center;
  background: var(--accent);
}

.community-actions > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.community-fit {
  position: relative;
  margin: 0;
  padding: 34px 28px 28px;
  border: 1px dashed var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.community-fit::before {
  position: absolute;
  top: -8px;
  left: 32px;
  width: 54px;
  height: 15px;
  background: var(--mustard);
  content: "";
  transform: rotate(-3deg);
}

.fit-label {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.community-fit ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-fit li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.community-fit li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--accent);
  content: "";
}

.fit-note {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.policy {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(520px, 1.25fr);
  column-gap: clamp(60px, 8vw, 120px);
  row-gap: 48px;
  padding: 104px max(32px, calc((100vw - var(--max)) / 2)) 82px;
  background: #3f6468;
  color: var(--paper-light);
}

.policy-heading .section-number {
  margin-bottom: 28px;
  color: #f0d88d;
}

.policy-heading h2 {
  font-size: clamp(38px, 3.5vw, 48px);
}

.policy-heading h2 span {
  display: block;
  white-space: nowrap;
}

.policy-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  border: 1px solid rgba(255, 253, 248, 0.55);
  background: rgba(255, 253, 248, 0.06);
}

.policy-column {
  padding: 34px 30px 38px;
}

.policy-column + .policy-column {
  border-left: 1px dashed rgba(255, 253, 248, 0.48);
}

.policy-column > p {
  margin: 0 0 24px;
  color: #f0d88d;
  font-size: 13px;
  font-weight: 900;
}

.policy-column ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-column li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.8;
}

.policy-no li::before,
.policy-yes li::before {
  position: absolute;
  left: 0;
  content: "×";
  color: #cad3ce;
  font-weight: 900;
}

.policy-yes li::before {
  content: "○";
  color: #f0d88d;
}

.host {
  padding: 112px max(32px, calc((100vw - var(--max)) / 2));
  background: #eadfcd;
}

.host-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(58px, 8vw, 112px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.host-visual {
  position: relative;
  padding: 0 24px 24px 0;
}

.host-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid var(--ink);
  content: "";
}

.host-video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #26322d;
}

.host-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.22) brightness(0.78);
  pointer-events: none;
}

.host-copy {
  max-width: 660px;
}

.host-copy h2 {
  margin: 20px 0 4px;
  font-size: clamp(42px, 4.8vw, 62px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.host-role {
  margin: 0 0 26px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.host-copy > p:not(.section-number):not(.host-role) {
  margin: 0;
  color: #4d5750;
  font-size: 16px;
  line-height: 2.05;
}

.host-links {
  display: flex;
  gap: 26px;
  margin-top: 30px;
}

.host-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1.3fr);
  gap: clamp(60px, 8vw, 120px);
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 112px 0;
}

.faq-heading .section-number {
  margin-bottom: 26px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq-list summary {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 84px;
  padding: 16px 44px 16px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--tomato);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.faq-list summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  font-size: 23px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 0;
  padding: 0 42px 26px 42px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.final-cta {
  padding: 102px max(32px, calc((100vw - var(--max)) / 2)) 108px;
  background: #d57555;
  color: var(--ink);
}

.final-cta > .section-number {
  color: #442d25;
}

.final-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 24px;
}

.final-heading p {
  max-width: 320px;
  margin: 0 0 8px;
  color: #55392f;
  font-size: 14px;
  line-height: 1.9;
}

.final-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.final-links a {
  position: relative;
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 24px 26px 28px;
  transition: background 160ms ease;
}

.final-links a + a {
  border-left: 1px solid var(--ink);
}

.final-links a:hover {
  background: var(--paper-light);
}

.final-links span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.final-links strong {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 128px;
  padding: 28px max(32px, calc((100vw - var(--max)) / 2));
  background: var(--ink-deep);
  color: var(--paper-light);
}

.site-footer p {
  margin: 0;
  color: #bccac3;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.site-footer strong {
  color: var(--paper-light);
  font-family: var(--sans);
  font-size: 13px;
}

.mobile-sticky {
  display: none;
}

.reveal.is-visible {
  animation: reveal-up 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes reveal-up {
  from {
    transform: translateY(14px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .header-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
    width: calc(100% - 48px);
  }

  .hero-copy {
    width: auto;
    margin: 0;
  }

  .manifesto,
  .section-heading {
    grid-template-columns: 150px minmax(0, 1fr);
    row-gap: 22px;
  }

  .manifesto-lead {
    grid-column: 2;
    grid-row: 1;
  }

  .manifesto-copy p:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .section-heading > p:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .route-item a {
    grid-template-columns: 46px 64px minmax(240px, 1fr) minmax(190px, 0.65fr);
    gap: 16px;
  }

  .community {
    grid-template-columns: 100px minmax(0, 1fr) minmax(260px, 0.46fr);
    gap: 38px;
  }

  .community-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy {
    column-gap: 52px;
    row-gap: 42px;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: 0;
    padding: 68px 0;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 680px);
    justify-content: center;
    gap: 58px;
    width: calc(100% - 48px);
    min-height: 0;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual {
    padding: 38px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
    padding: 0 22px;
  }

  .hero {
    padding: 62px 0 68px;
  }

  .hero-shell {
    width: min(680px, calc(100% - 48px));
    gap: 50px;
  }

  .hero-copy {
    width: auto;
    margin: 0;
    padding: 0;
  }

  .hero-visual {
    padding: 32px;
  }

  .room-map {
    width: min(620px, 100%);
  }

  .manifesto,
  .chooser,
  .faq {
    width: calc(100% - 48px);
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 60px 0;
  }

  .manifesto-lead,
  .manifesto-copy p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .manifesto-lead span {
    display: inline;
  }

  .chooser {
    padding: 60px 0 76px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .section-number {
    padding-top: 0;
  }

  .route-list {
    margin-top: 46px;
  }

  .route-item a {
    grid-template-columns: 38px 54px 1fr;
    min-height: 108px;
  }

  .route-copy {
    display: none;
  }

  .community {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 38px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .community-main {
    max-width: none;
  }

  .community-fit {
    grid-column: 2;
  }

  .policy {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 88px 30px;
  }

  .host {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .host-inner {
    grid-template-columns: minmax(0, 440px);
    justify-content: center;
    gap: 52px;
  }

  .host-copy {
    max-width: 100%;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 90px 0;
  }

  .desktop-break {
    display: none;
  }

  .final-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-links {
    grid-template-columns: 1fr;
  }

  .final-links a {
    min-height: 126px;
  }

  .final-links a + a {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --section-title-size: 32px;
    --section-copy-size: 15px;
  }

  body {
    padding-bottom: 58px;
  }

  .site-header {
    padding: 0 16px;
  }

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

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

  .header-link {
    display: none;
  }

  .hero-copy {
    width: auto;
    padding: 0;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .hero-shell {
    width: calc(100% - 36px);
    gap: 42px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(31px, 9vw, 36px);
  }

  .hero-subtitle {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action {
    width: 100%;
  }

  .text-action {
    align-self: flex-start;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .hero-facts li {
    padding: 6px;
    font-size: 11px;
  }

  .hero-facts span {
    display: block;
    margin: 0 0 2px;
  }

  .hero-visual {
    margin-right: 8px;
    padding: 18px 12px 24px;
  }

  .room-map {
    padding: 22px 14px 18px;
    box-shadow: 7px 7px 0 rgba(38, 50, 45, 0.16);
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .doors {
    gap: 8px;
    min-height: 330px;
    padding-top: 24px;
  }

  .door {
    height: 270px;
    padding: 12px 5px 10px;
    border-width: 2px;
  }

  .door-line {
    height: 310px;
  }

  .door-threads {
    height: 246px;
  }

  .door-use {
    margin-top: -26px;
  }

  .door strong {
    font-size: clamp(13px, 3.5vw, 14px);
    word-break: normal;
    white-space: nowrap;
  }

  .door i {
    right: 7px;
    width: 7px;
    height: 7px;
  }

  .map-footer {
    gap: 6px;
  }

  .map-footer span {
    font-size: 11px;
    line-height: 1.5;
  }

  .manifesto,
  .chooser,
  .faq {
    width: calc(100% - 36px);
  }

  .manifesto {
    padding: 52px 0;
  }

  .manifesto-lead {
    font-size: var(--section-title-size);
  }

  .manifesto-copy p:last-child {
    font-size: var(--section-copy-size);
  }

  .chooser {
    padding: 52px 0 64px;
  }

  .policy-heading h2,
  .faq-heading h2,
  .final-heading h2 {
    font-size: 35px;
  }

  .route-item a {
    grid-template-columns: 28px 44px 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .route-mode {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .route-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .community {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 18px 70px;
  }

  .community-rail {
    grid-row: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 58px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }

  .community-rail span {
    width: 52px;
    height: 52px;
    font-size: 16px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .community-rail b {
    justify-self: end;
    writing-mode: initial;
  }

  .community-main h2 {
    font-size: 36px;
  }

  .community-lead {
    font-size: 15px;
    line-height: 1.95;
  }

  .community-cta {
    width: 100%;
    min-width: 0;
    font-size: 13px;
  }

  .community-fit {
    grid-column: auto;
    padding: 30px 24px 26px;
  }

  .policy {
    gap: 42px;
    padding: 72px 18px;
  }

  .policy-heading h2 span {
    white-space: normal;
  }

  .policy-compare {
    grid-template-columns: 1fr;
  }

  .policy-column + .policy-column {
    border-top: 1px dashed rgba(255, 253, 248, 0.48);
    border-left: 0;
  }

  .policy-column {
    padding: 30px 20px;
  }

  .host {
    padding: 72px 18px 76px;
  }

  .host-inner {
    gap: 40px;
  }

  .host-visual {
    padding: 0 14px 14px 0;
  }

  .host-visual::after {
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }

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

  .host-copy > p:not(.section-number):not(.host-role) {
    font-size: 15px;
  }

  .host-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .faq-list summary {
    min-height: 78px;
    padding-right: 34px;
    font-size: 15px;
    line-height: 1.6;
  }

  .faq-list details p {
    padding: 0 28px 24px 0;
    font-size: 14px;
  }

  .final-cta {
    padding: 72px 18px 78px;
  }

  .final-links {
    margin-top: 42px;
  }

  .final-links a {
    min-height: 116px;
    padding: 20px 18px 22px;
  }

  .site-footer {
    min-height: 118px;
    padding: 24px 18px;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-top: 1px solid var(--ink);
    background: var(--mustard);
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
