:root {
  color-scheme: light;
  --color-accent: #bc002d;
  --color-accent-hover: #970024;
  --color-accent-active: #7e001e;
  --color-text: #18181b;
  --color-text-secondary: #5b5b63;
  --color-text-muted: #707078;
  --color-border: #dddadd;
  --color-route: #c9c5cb;
  --color-background: #f7f6f4;
  --color-surface: #ffffff;
  --color-surface-strong: #f0edef;
  --container: 1280px;
  --font-sans: "Inter", "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-latin: "Inter", Arial, "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-sans);
  font-feature-settings: normal;
  font-kerning: normal;
  font-variant-numeric: proportional-nums;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 11px 18px;
  transform: translateY(-160%);
  border-radius: 6px;
  color: var(--color-surface);
  background: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 80px;
  border-bottom: 1px solid rgb(221 218 221 / 72%);
  background: var(--color-surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, calc(var(--container) + 64px));
  height: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}

.wordmark {
  flex: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  font-family: var(--font-latin);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.custom-logo-link {
  min-height: 44px;
}

.custom-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 44px;
}

.desktop-nav,
.desktop-nav ul {
  min-width: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.65vw, 24px);
}

.desktop-nav ul,
.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.65vw, 24px);
}

.desktop-nav a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:not(.button)::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:not(.button) {
  position: relative;
}

.desktop-nav a:not(.button)::after {
  right: 0;
  bottom: 7px;
}

.desktop-nav a:not(.button):hover::after,
.desktop-nav a:not(.button):focus-visible::after,
.desktop-nav .current-menu-item > a::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  color: var(--color-surface);
  background: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--color-accent-hover);
}

.button:active {
  background: var(--color-accent-active);
  transform: translateY(1px);
}

.button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--color-surface), 0 0 0 5px var(--color-text);
}

.button-arrow {
  flex: none;
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.button--disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button--disabled:hover,
.button--disabled:active {
  transform: none;
}

.button--header {
  min-height: 48px;
  padding: 12px 22px;
  gap: 14px;
}

.mobile-menu {
  display: none;
}

.hero {
  background: var(--color-background);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: clamp(40px, 5vw, 72px);
  row-gap: 32px;
  width: min(100%, calc(var(--container) + 64px));
  min-height: calc(100svh - 80px);
  margin-inline: auto;
  padding: clamp(44px, 7vh, 72px) 32px clamp(24px, 4vh, 40px);
}

.hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--color-text-secondary);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  flex: none;
  content: "";
  background: var(--color-text);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 5.25vw, 76px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-action {
  margin-top: 28px;
}

.hero-action-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

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

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 0.35em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--color-accent);
  text-decoration-color: currentColor;
}

.hero-action p {
  margin: 12px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.visual-board {
  position: relative;
  align-self: center;
  min-width: 0;
  min-height: 426px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: var(--color-surface);
  background-image: radial-gradient(circle, #dedbe0 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 0 8px 30px rgb(24 24 27 / 6%);
}

.board-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: var(--color-surface);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.board-heading span:last-child {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.route-map {
  position: relative;
  height: 252px;
  margin-inline: -6px;
  background: rgb(255 255 255 / 70%);
}

.route-map svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.route-path {
  fill: none;
  stroke: var(--color-route);
  stroke-linecap: round;
  stroke-width: 3;
}

.route-node {
  fill: var(--color-surface);
  stroke: var(--color-route);
  stroke-width: 3;
}

.route-node--current {
  fill: var(--color-accent);
  stroke: var(--color-surface);
  stroke-width: 5;
}

.route-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}

.route-label--plan {
  top: 61%;
  left: 2%;
}

.route-label--run {
  top: 69%;
  left: 54%;
}

.route-label--refine {
  top: 31%;
  right: 0;
}

.media-chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.media-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-secondary);
  background: var(--color-surface-strong);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.fact-region {
  grid-column: 1 / -1;
  min-width: 0;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
}

.fact-strip > div {
  position: relative;
  min-width: 0;
  padding: 17px 24px 18px;
}

.fact-strip > div + div {
  border-left: 1px solid var(--color-border);
}

.fact-strip dt {
  margin: 0 0 7px;
  color: var(--color-text-muted);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.fact-strip dd {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.fee-note {
  margin: 7px 4px 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: right;
}

.section-shell {
  padding-block: clamp(96px, 10vw, 144px);
}

.section-inner,
.closing-inner,
.footer-inner {
  width: min(100%, calc(var(--container) + 64px));
  margin-inline: auto;
  padding-inline: 32px;
}

.section-intro h2,
.closing-cta h2 {
  margin: 0;
  scroll-margin-top: 112px;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.24;
  text-wrap: balance;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--color-text-secondary);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  flex: none;
  content: "";
  background: currentColor;
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: end;
  gap: clamp(36px, 6vw, 88px);
}

.section-description {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.25vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.9;
  text-wrap: pretty;
}

.section-intro--split > .section-description {
  margin-top: 0;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.text-link span:last-child,
.card-link span:last-child {
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link:hover span:last-child,
.card-link:hover span:last-child {
  transform: translateX(4px);
}

.issues {
  background: var(--color-surface);
}

.issue-list {
  margin: clamp(56px, 7vw, 88px) 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  list-style: none;
}

.issues h2 span {
  display: block;
}

.issue-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  min-height: 118px;
  padding: 26px clamp(8px, 2vw, 28px);
}

.issue-list li + li {
  border-top: 1px solid var(--color-border);
}

.issue-number {
  color: var(--color-accent);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.issue-list p {
  margin: 0;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.65;
}

.approach {
  color: var(--color-surface);
  background-color: var(--color-text);
  background-image: radial-gradient(circle, rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: 28px 28px;
}

.section-intro--inverse {
  max-width: 850px;
}

.section-intro--inverse .section-kicker,
.closing-cta .section-kicker {
  color: var(--color-surface);
}

.section-intro--inverse .section-description {
  color: #cac8cd;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 84px);
  border-top: 1px solid rgb(255 255 255 / 22%);
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.approach-card {
  min-width: 0;
  padding: clamp(30px, 3vw, 44px);
}

.approach-card + .approach-card {
  border-left: 1px solid rgb(255 255 255 / 22%);
}

.approach-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 42px;
  color: #e1dfe3;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.approach-index::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgb(188 0 45 / 22%);
}

.approach-card h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.approach-card > p:last-child {
  margin: 28px 0 0;
  color: #cac8cd;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.85;
}

.text-link--inverse {
  margin-top: 34px;
  color: var(--color-surface);
}

.text-link--inverse:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--color-surface);
}

.services {
  background: var(--color-background);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(56px, 7vw, 88px);
}

.service-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  min-width: 0;
  padding: clamp(26px, 2.8vw, 38px);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgb(24 24 27 / 3%);
}

.service-card--primary {
  grid-column: 1 / -1;
  min-height: 330px;
  border-top: 4px solid var(--color-accent);
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-number,
.service-role,
.service-en,
.price-label {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.service-number,
.service-en,
.price-label {
  color: var(--color-text-muted);
}

.service-role {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--color-accent);
  background: #f8edef;
}

.service-card-body {
  margin-top: 54px;
}

.service-card--primary .service-card-body {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(300px, 4fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}

.service-en,
.price-label {
  margin: 0 0 10px;
}

.service-card h3,
.price-row h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.service-card--primary h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.service-card-body > p {
  margin: 24px 0 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.85;
}

.service-card--primary .service-card-body > p {
  margin: 0;
  font-size: 16px;
}

.card-link {
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.service-card--primary .card-link {
  width: min(100%, 360px);
  margin-top: 44px;
}

.pricing,
.faq {
  background: var(--color-surface);
}

.pricing-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(56px, 9vw, 130px);
}

.pricing-intro,
.faq-intro {
  position: sticky;
  top: 128px;
}

.pricing-intro .text-link {
  margin-top: 28px;
}

.price-list {
  border-top: 1px solid var(--color-text);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 136px;
  padding: 26px 8px;
  border-bottom: 1px solid var(--color-border);
}

.price-row--featured {
  margin-top: 16px;
  padding-inline: 24px;
  border: 1px solid #e5c5cc;
  border-radius: 16px;
  background: #f8edef;
}

.price-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  text-align: right;
}

.price-value strong {
  color: var(--color-text);
  font-family: var(--font-latin);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}

.price-row--featured .price-value strong {
  color: var(--color-accent);
}

.price-value span {
  margin-top: 5px;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.price-disclaimer {
  margin: 18px 0 0;
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.7;
  text-align: right;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 22px 8px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.65;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--color-text);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 640px;
  padding: 0 52px 30px 8px;
}

.faq-answer p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.9;
}

.closing-cta {
  padding-block: clamp(88px, 9vw, 128px);
  color: var(--color-surface);
  background-color: var(--color-accent);
  background-image: radial-gradient(circle, rgb(255 255 255 / 18%) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mobile-break {
  display: none;
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  align-items: end;
  gap: clamp(48px, 8vw, 112px);
}

.closing-cta h2 {
  font-size: clamp(38px, 3.6vw, 52px);
}

.closing-action p {
  margin: 0 0 24px;
  color: rgb(255 255 255 / 86%);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.button--light {
  min-width: 290px;
  color: var(--color-accent);
  background: var(--color-surface);
}

.button--light:hover,
.button--light:active {
  color: var(--color-accent-hover);
  background: #f5f2f3;
}

.button--light:focus-visible {
  box-shadow: 0 0 0 3px var(--color-accent), 0 0 0 5px var(--color-surface);
}

.button--disabled:hover,
.button--disabled:active {
  color: var(--color-surface);
  background: var(--color-accent);
  transform: none;
}

.button--disabled.button--light:hover,
.button--disabled.button--light:active {
  color: var(--color-accent);
  background: var(--color-surface);
}

.site-footer {
  color: var(--color-surface);
  background: var(--color-text);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 28px;
}

.wordmark--footer {
  color: var(--color-surface);
}

.footer-brand > p {
  max-width: 290px;
  margin: 24px 0 0;
  color: #bbb9bf;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-nav > div > p {
  margin: 0 0 22px;
  color: #bbb9bf;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 12px;
}

.footer-nav a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--color-surface);
  font-size: 14px;
  line-height: 1.6;
  text-decoration-color: rgb(255 255 255 / 36%);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.footer-bottom p {
  margin: 0;
  color: #bbb9bf;
  font-family: var(--font-latin);
}

@media (max-width: 1139px) {
  body.menu-open,
  body:has(.mobile-menu[open]) {
    overflow: hidden;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: static;
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 112px;
    min-height: 44px;
    padding: 9px 14px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-surface);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-label--close {
    display: none;
  }

  .mobile-menu[open] .menu-label--open {
    display: none;
  }

  .mobile-menu[open] .menu-label--close {
    display: inline;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 14px;
  }

  .menu-icon span {
    position: absolute;
    left: 0;
    display: block;
    width: 18px;
    height: 1px;
    background: var(--color-text);
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-icon span:first-child {
    top: 4px;
  }

  .menu-icon span:last-child {
    top: 10px;
  }

  .mobile-menu[open] .menu-icon span:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .mobile-menu[open] .menu-icon span:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    height: calc(100svh - 80px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 32px 28px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 16px 32px rgb(24 24 27 / 8%);
  }

  .mobile-nav ul {
    width: min(100%, var(--container));
    margin-inline: auto;
  }

  .mobile-nav li + li {
    border-top: 1px solid var(--color-border);
  }

  .mobile-nav a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 52px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
  }

  .button--mobile-menu {
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 1023px) {
  .header-inner,
  .hero-inner {
    width: 100%;
    padding-inline: 24px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
    column-gap: 32px;
  }

  .visual-board {
    min-height: 390px;
    padding: 22px;
  }

  .route-map {
    height: 226px;
  }

  .board-heading span:last-child {
    display: none;
  }

  .fact-strip > div {
    padding-inline: 18px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    padding-inline: 20px;
  }

  .wordmark {
    font-size: 21px;
  }

  .mobile-nav {
    top: 64px;
    height: calc(100svh - 64px);
    padding: 12px 20px max(24px, env(safe-area-inset-bottom));
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 64px);
    padding: 52px 20px 40px;
    gap: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(34px, 9.75vw, 40px);
    line-height: 1.2;
  }

  .hero-lead {
    max-width: none;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-action {
    margin-top: 28px;
  }

  .button--primary {
    width: 100%;
    min-width: 0;
  }

  .hero-action-links {
    display: grid;
    gap: 6px;
  }

  .secondary-link {
    justify-content: center;
  }

  .hero-action p {
    max-width: 34em;
    margin-top: 11px;
  }

  .fact-region {
    order: 2;
    width: 100%;
    margin-top: 36px;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip > div {
    padding: 17px 18px 18px;
  }

  .fact-strip > div + div {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .fee-note {
    margin-top: 8px;
    text-align: left;
  }

  .visual-board {
    order: 3;
    width: 100%;
    min-height: 0;
    margin-top: 32px;
    padding: 20px;
    border-radius: 20px;
  }

  .board-heading {
    min-height: 38px;
    padding-bottom: 10px;
  }

  .route-map {
    height: 176px;
  }

  .route-label {
    min-height: 28px;
    padding: 4px 9px;
    font-size: 11px;
  }

  .route-label--plan {
    left: 0;
  }

  .route-label--run {
    left: 50%;
  }

  .media-chips {
    padding-top: 14px;
  }
}

@media (max-width: 359px) {
  .header-inner,
  .hero-inner {
    padding-inline: 16px;
  }

  .mobile-menu summary {
    min-width: 104px;
    padding-inline: 12px;
  }

  .mobile-nav {
    padding-inline: 16px;
  }

  .hero-inner {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button {
    padding-inline: 20px;
  }

  .visual-board {
    padding-inline: 16px;
  }
}

@media (max-height: 719px) and (min-width: 768px) {
  .hero-inner {
    min-height: auto;
    padding-block: 64px 32px;
  }
}

@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;
  }

  .button:active,
  .button:hover .button-arrow {
    transform: none;
  }
}

@media (max-width: 1023px) {
  .section-inner,
  .closing-inner,
  .footer-inner {
    padding-inline: 24px;
  }

  .section-intro--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .section-intro--split > .section-description {
    margin: 0;
  }

  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pricing-intro,
  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 46px;
  }

  .closing-action {
    max-width: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding-block: 82px;
  }

  .section-inner,
  .closing-inner,
  .footer-inner {
    padding-inline: 20px;
  }

  .section-intro h2,
  .closing-cta h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.3;
  }

  .section-kicker {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .section-kicker::before {
    width: 22px;
  }

  .section-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.85;
  }

  .issue-list {
    margin-top: 48px;
  }

  .issue-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 0;
  }

  .issue-list p {
    font-size: 18px;
    line-height: 1.65;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .approach-card {
    padding: 30px 0;
  }

  .approach-card + .approach-card {
    border-top: 1px solid rgb(255 255 255 / 22%);
    border-left: 0;
  }

  .approach-index {
    margin-bottom: 28px;
  }

  .approach-card h3 {
    font-size: 23px;
  }

  .approach-card > p:last-child {
    margin-top: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .service-card,
  .service-card--primary {
    grid-column: auto;
    min-height: 0;
    padding: 26px 22px;
    border-radius: 18px;
  }

  .service-card-body,
  .service-card--primary .service-card-body {
    display: block;
    margin-top: 40px;
  }

  .service-card h3,
  .service-card--primary h3 {
    font-size: 27px;
  }

  .service-card-body > p,
  .service-card--primary .service-card-body > p {
    margin-top: 20px;
    font-size: 15px;
  }

  .service-card .card-link,
  .service-card--primary .card-link {
    width: 100%;
    margin-top: 34px;
    padding-top: 22px;
  }

  .pricing-layout,
  .faq-layout {
    gap: 48px;
  }

  .price-row,
  .price-row--featured {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 24px 4px;
  }

  .price-row--featured {
    padding-inline: 20px;
  }

  .price-row h3 {
    font-size: 20px;
  }

  .price-value {
    align-items: flex-start;
    text-align: left;
  }

  .price-value strong {
    font-size: 25px;
  }

  .price-disclaimer {
    text-align: left;
  }

  .faq-list summary {
    min-height: 80px;
    padding-block: 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 40px 26px 0;
  }

  .closing-cta {
    padding-block: 78px;
  }

  .closing-inner {
    gap: 38px;
  }

  .mobile-break {
    display: inline;
  }

  .closing-action p {
    margin-bottom: 20px;
  }

  .button--light {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    gap: 46px;
    padding-top: 64px;
    padding-bottom: 24px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-top: 12px;
  }
}

@media (max-width: 359px) {
  .section-inner,
  .closing-inner,
  .footer-inner {
    padding-inline: 16px;
  }

  .section-intro h2,
  .closing-cta h2 {
    font-size: 31px;
  }

  .service-card,
  .service-card--primary {
    padding-inline: 18px;
  }

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

  .footer-nav > div:last-child {
    grid-column: auto;
  }
}

/* WordPress integration and lower-page foundations. */

.card-link--disabled {
  color: var(--color-text-muted);
  cursor: default;
}

.footer-nav > div:not(:has(li)) {
  display: none;
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .mobile-nav {
  height: calc(100svh - 80px - 32px);
}

.page-container,
.content-container {
  width: min(100%, calc(var(--container) + 64px));
  margin-inline: auto;
  padding-inline: 32px;
}

.content-container {
  width: min(100%, 844px);
}

.page-hero {
  padding-block: clamp(76px, 9vw, 128px);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-hero h1,
.error-section h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-wrap: balance;
}

.page-lead,
.archive-description,
.error-section > .content-container > p:not(.section-kicker) {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--color-text-secondary);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.85;
}

.page-content,
.listing-section {
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--color-background);
}

.entry-content {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.9;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content h2 {
  margin: 2.6em 0 0.9em;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
}

.entry-content h3 {
  margin: 2.2em 0 0.8em;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.5;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content table,
.entry-content figure {
  margin-block: 1.4em;
}

.entry-content a {
  color: var(--color-accent);
  font-weight: 600;
}

.entry-content blockquote {
  padding: 20px 24px;
  border-left: 4px solid var(--color-accent);
  background: var(--color-surface);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  background: var(--color-surface-strong);
}

.page-links {
  margin-top: 40px;
}

.html-page-document > .alignfull,
.html-page-document > .wp-block-group.alignfull {
  width: 100%;
}

.contact-page-content {
  min-height: 420px;
}

.contact-introduction {
  margin-bottom: 44px;
}

.contact-unavailable {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.contact-unavailable > p {
  margin: 0 0 16px;
  line-height: 1.8;
}

.listing-section {
  min-height: 420px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
}

.post-card-meta,
.post-date {
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-latin);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.post-card h2 {
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.55;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card-excerpt {
  margin-top: 18px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.post-card-excerpt > :first-child {
  margin-top: 0;
}

.post-card-excerpt > :last-child {
  margin-bottom: 0;
}

.post-card .card-link {
  margin-top: auto;
}

.navigation.pagination {
  margin-top: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--color-text);
  color: var(--color-surface);
  background: var(--color-text);
}

.empty-state {
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
}

.empty-state h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.5;
}

.empty-state p {
  margin: 18px 0 0;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.post-document .page-hero .content-container {
  width: min(100%, 844px);
}

.post-date {
  margin-top: 24px;
}

.error-main {
  background: var(--color-background);
}

.error-section {
  display: flex;
  align-items: center;
  min-height: max(620px, calc(100svh - 80px));
  padding-block: 88px;
}

.error-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 36px;
}

.thanks-section .button {
  margin-top: 36px;
}

@media (max-width: 1023px) {
  .page-container,
  .content-container {
    padding-inline: 24px;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .mobile-nav {
    height: calc(100svh - 64px - 46px);
  }
}

@media (max-width: 767px) {
  .page-container,
  .content-container {
    padding-inline: 20px;
  }

  .page-hero {
    padding-block: 66px;
  }

  .page-hero h1,
  .error-section h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .page-content,
  .listing-section {
    padding-block: 66px;
  }

  .entry-content {
    font-size: 16px;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .error-section {
    min-height: calc(100svh - 64px);
    padding-block: 66px;
  }

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

  .error-actions .button,
  .error-actions .secondary-link {
    width: 100%;
  }

  .error-actions .secondary-link {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 0;
  }

  body.admin-bar .mobile-nav {
    height: calc(100svh - 64px);
  }
}

@media (max-width: 359px) {
  .page-container,
  .content-container {
    padding-inline: 16px;
  }
}
