:root {
  --ink: #0b1d1a;
  --ink-soft: #263b37;
  --jade: #0d6b57;
  --jade-deep: #064b3e;
  --cobalt: #214f9b;
  --red: #c53e30;
  --paper: #ffffff;
  --mist: #edf1ef;
  --stone: #d8dedb;
  --warm-white: #f7f6f2;
  --muted: #66736f;
  --line: rgba(11, 29, 26, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  color: var(--paper);
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

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

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

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

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

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-button,
.nav-toggle {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.header-cta {
  display: inline-grid;
  height: 42px;
  padding: 0 18px;
  place-items: center;
  border: 1px solid var(--paper);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

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

.hero-image {
  object-fit: cover;
  object-position: center 48%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 14, 0.9) 0%, rgba(3, 16, 14, 0.61) 47%, rgba(3, 16, 14, 0.15) 78%),
    linear-gradient(0deg, rgba(3, 16, 14, 0.62) 0%, rgba(3, 16, 14, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  padding-top: 146px;
  padding-bottom: 76px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow,
.section-index {
  margin-bottom: 18px;
  color: var(--jade-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 84px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.mode-switch {
  display: inline-flex;
  min-height: 50px;
  margin-bottom: 26px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(5, 24, 21, 0.58);
  backdrop-filter: blur(10px);
}

.mode-button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
}

.mode-button.is-active {
  color: var(--ink);
  background: var(--paper);
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 750;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: var(--paper);
}

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

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--paper);
  background: rgba(4, 21, 18, 0.34);
  backdrop-filter: blur(8px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--jade-deep);
  font-size: 14px;
  font-weight: 800;
}

.text-link-light {
  color: var(--paper);
}

.evidence-rail {
  position: relative;
  z-index: 3;
  min-height: 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(4, 21, 18, 0.7);
  backdrop-filter: blur(10px);
}

.evidence-grid {
  display: grid;
  min-height: 110px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.evidence-grid p {
  display: grid;
  margin: 0;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.evidence-grid p:first-child {
  padding-left: 0;
  border-left: 0;
}

.evidence-grid strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.evidence-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.planner-section,
.compare-section,
.resources-section {
  padding: 104px 0;
}

.planner-section {
  background: var(--warm-white);
}

.section-heading h2,
.route-copy h2,
.trust-intro h2,
.partner-layout h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 400;
  line-height: 1.05;
}

.section-heading > p:last-child,
.route-copy > p,
.trust-intro > p,
.partner-layout > p,
.compare-intro > p,
.resource-topline > p {
  color: var(--muted);
}

.planner-heading {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 80px;
}

.planner-heading .section-index {
  grid-column: 1 / -1;
}

.planner-heading h2,
.planner-heading > p:last-child {
  margin-bottom: 0;
}

.planner-heading > p:last-child {
  align-self: end;
}

.planner-tool {
  display: grid;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: 0.9fr 1.2fr 1fr 1.25fr auto;
  align-items: end;
  gap: 12px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(11, 29, 26, 0.08);
}

.field,
.resource-filters label {
  display: grid;
  gap: 7px;
}

.field label,
.resource-filters label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.resource-filters select {
  width: 100%;
  height: 52px;
  padding: 0 13px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.field input:focus,
.field select:focus,
.resource-filters select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(13, 107, 87, 0.12);
}

.planner-submit {
  min-width: 160px;
  height: 52px;
}

.fit-result {
  display: grid;
  min-height: 88px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1.55fr auto;
  align-items: center;
  gap: 28px;
  background: #f3f7f5;
}

.fit-result > div {
  display: grid;
}

.result-label,
.column-kicker,
.cost-heading-row span,
.itinerary-topline span {
  color: var(--jade);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.fit-result p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.decision-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.decision-heading h2 {
  font-size: 54px;
}

.decision-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: decision;
}

.decision-list li {
  display: grid;
  min-height: 102px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  align-items: start;
}

.decision-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.decision-list li > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
}

.decision-list strong {
  font-size: 17px;
}

.decision-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.compare-section {
  background: var(--mist);
}

.compare-intro,
.resource-topline {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.compare-intro h2,
.resource-topline h2 {
  margin-bottom: 0;
}

.compare-intro > p,
.resource-topline > p {
  margin-bottom: 4px;
}

.comparison-tool {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(11, 29, 26, 0.1);
}

.tool-toolbar {
  display: flex;
  min-height: 66px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.country-tabs {
  display: flex;
  gap: 4px;
}

.tool-tab,
.service-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tool-tab {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.tool-tab.is-active {
  color: var(--paper);
  background: var(--ink);
}

.prototype-badge {
  padding: 6px 9px;
  border: 1px solid rgba(197, 62, 48, 0.26);
  border-radius: 3px;
  color: var(--red);
  background: rgba(197, 62, 48, 0.06);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-body {
  display: grid;
  grid-template-columns: 225px 1fr;
}

.service-menu {
  padding: 30px 16px;
  border-right: 1px solid var(--line);
  background: #f7f8f7;
}

.service-menu > p {
  margin: 0 12px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-left: 2px solid transparent;
  text-align: left;
  color: var(--muted);
  font-size: 13px;
}

.service-button.is-active {
  border-left-color: var(--red);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
}

.cost-canvas {
  padding: 34px;
}

.cost-heading-row {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
}

.cost-heading-row h3 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.outline-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.cost-columns {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.cost-columns article {
  min-height: 228px;
  padding: 26px 24px;
  border-left: 1px solid var(--line);
}

.cost-columns article:first-child {
  border-left: 0;
}

.cost-columns article.china-column {
  background: #f2f7f5;
}

.cost-columns h4 {
  min-height: 48px;
  margin: 5px 0 22px;
  font-size: 16px;
}

.empty-price {
  display: block;
  min-height: 52px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
}

.cost-columns p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.source-strip {
  display: grid;
  padding-top: 20px;
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.source-strip strong {
  color: var(--ink-soft);
}

.route-section {
  padding: 112px 0;
  color: var(--paper);
  background: var(--jade-deep);
}

.route-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 100px;
}

.route-copy .section-index,
.trust-intro .section-index {
  color: #91d1be;
}

.route-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.route-copy .text-link {
  color: var(--paper);
}

.itinerary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.itinerary-topline {
  display: flex;
  min-height: 62px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: space-between;
}

.itinerary-topline span {
  color: rgba(255, 255, 255, 0.8);
}

.itinerary ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.itinerary li {
  display: grid;
  min-height: 116px;
  padding: 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 95px 1fr auto;
  align-items: center;
  gap: 22px;
}

.itinerary li:first-child {
  border-top: 0;
}

.itinerary li.care-day {
  color: var(--ink);
  background: #d9ece6;
}

.day {
  font-family: var(--serif);
  font-size: 19px;
}

.itinerary li p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.itinerary li.care-day p {
  color: var(--ink-soft);
}

.route-status {
  padding: 6px 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.resource-filters {
  display: grid;
  margin-bottom: 28px;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--warm-white);
}

.city-table {
  border-top: 1px solid var(--ink);
}

.city-row {
  display: grid;
  min-height: 84px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1.2fr 1.8fr 1fr;
  align-items: center;
  gap: 20px;
  transition: background 160ms ease;
}

a.city-row:hover,
a.city-row:focus-visible {
  background: #f1f6f4;
}

.city-header {
  min-height: 48px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-row > span:not(.status-pill) {
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  justify-self: start;
  padding: 6px 9px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  color: var(--ink-soft);
  background: var(--warm-white);
  font-size: 10px;
  font-weight: 800;
}

.status-pill-active {
  border-color: rgba(13, 107, 87, 0.3);
  color: var(--jade-deep);
  background: rgba(13, 107, 87, 0.08);
}

.table-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.trust-section {
  padding: 108px 0;
  color: var(--paper);
  background: var(--ink);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 92px;
}

.trust-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

.verification-scale {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.verification-scale > div {
  display: grid;
  min-height: 86px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 60px 1fr 1.25fr;
  align-items: center;
  gap: 20px;
}

.verification-scale span {
  color: #77b8a6;
  font-family: var(--serif);
  font-size: 21px;
}

.verification-scale p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.partner-section {
  padding: 78px 0;
  background: #dbe7f3;
}

.partner-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr auto;
  align-items: center;
  gap: 60px;
}

.partner-layout h2 {
  margin-bottom: 0;
  font-size: 48px;
}

.partner-layout > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  padding: 60px 0;
  color: var(--paper);
  background: #06110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  align-items: start;
  gap: 64px;
}

.footer-brand p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 13px;
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a:nth-child(4),
  .primary-nav a:nth-child(5),
  .primary-nav a:nth-child(6) {
    display: none;
  }

  .planner-tool {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-submit {
    grid-column: 1 / -1;
  }

  .route-layout,
  .trust-layout {
    gap: 52px;
  }

  .partner-layout {
    grid-template-columns: 1fr 1fr;
  }

  .partner-layout .button {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 72px;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .brand-copy small,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    place-items: center;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 24, 21, 0.97);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a:nth-child(4),
  .primary-nav a:nth-child(5),
  .primary-nav a:nth-child(6) {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: 610px;
    padding-top: 116px;
    justify-content: flex-start;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 64px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .evidence-grid p:nth-child(3) {
    display: none;
  }

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

  .planner-heading,
  .decision-layout,
  .compare-intro,
  .resource-topline,
  .route-layout,
  .trust-layout,
  .partner-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .planner-heading,
  .compare-intro,
  .resource-topline,
  .decision-layout,
  .route-layout,
  .trust-layout,
  .partner-layout,
  .footer-grid {
    gap: 38px;
  }

  .comparison-body {
    grid-template-columns: 1fr;
  }

  .service-menu {
    display: grid;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
  }

  .service-menu > p {
    display: none;
  }

  .service-button {
    border-bottom: 2px solid transparent;
    border-left: 0;
    text-align: center;
  }

  .service-button.is-active {
    border-bottom-color: var(--red);
    border-left: 0;
  }

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

  .cost-columns article {
    min-height: 170px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cost-columns article:first-child {
    border-top: 0;
  }

  .cost-columns h4,
  .empty-price {
    min-height: auto;
  }

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

  .resource-filters {
    grid-template-columns: 1fr;
  }

  .city-row {
    grid-template-columns: 1fr 1fr;
  }

  .city-header {
    display: none;
  }

  .partner-layout .button {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 810px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 16, 14, 0.9) 0%, rgba(3, 16, 14, 0.32) 100%);
  }

  .hero-content {
    min-height: 682px;
    padding-top: 106px;
    padding-bottom: 38px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 44px;
    line-height: 1.02;
  }

  .eyebrow {
    max-width: 300px;
    align-items: flex-start;
  }

  .mode-switch {
    width: 100%;
    flex-direction: column;
  }

  .mode-button {
    width: 100%;
    text-align: left;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .text-link {
    display: none;
  }

  .evidence-rail,
  .evidence-grid {
    min-height: 128px;
  }

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

  .evidence-grid p {
    padding: 0 12px;
  }

  .evidence-grid p:first-child {
    padding-left: 0;
  }

  .planner-section,
  .compare-section,
  .resources-section,
  .route-section,
  .trust-section {
    padding: 72px 0;
  }

  .section-heading h2,
  .route-copy h2,
  .trust-intro h2,
  .partner-layout h2 {
    font-size: 38px;
  }

  .planner-tool {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .planner-submit {
    grid-column: auto;
  }

  .fit-result {
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .decision-section {
    padding: 72px 0;
  }

  .tool-toolbar {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .country-tabs {
    width: 100%;
  }

  .tool-tab {
    min-width: 0;
    padding: 0 8px;
    flex: 1;
  }

  .service-menu {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(108px, 1fr));
  }

  .cost-canvas {
    padding: 24px 18px;
  }

  .cost-heading-row {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .itinerary li {
    padding: 22px 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-status {
    justify-self: start;
  }

  .city-row {
    min-height: 138px;
    padding: 20px 10px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .verification-scale > div {
    grid-template-columns: 48px 1fr;
  }

  .verification-scale p {
    grid-column: 2;
  }

  .partner-section {
    padding: 64px 0;
  }
}

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

/* Knowledge base and evidence-backed planning */

[hidden] {
  display: none !important;
}

.knowledge-proof-band {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  background: var(--cobalt);
}

.home-knowledge-proof {
  border-top: 0;
}

.knowledge-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.knowledge-proof-grid > div {
  display: grid;
  min-height: 104px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  align-content: center;
}

.knowledge-proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.knowledge-proof-grid strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.knowledge-proof-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-path-section {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.search-path-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 72px;
}

.search-path-intro h2 {
  max-width: 560px;
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.02;
}

.search-path-intro > p:last-child {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.search-path-list {
  border-top: 1px solid var(--ink);
}

.search-path-list a {
  display: grid;
  min-height: 116px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 124px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 20px;
  transition: background 180ms ease, padding 180ms ease;
}

.search-path-list a:hover,
.search-path-list a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--paper);
}

.search-path-list span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-path-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.search-path-list p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.search-path-list i {
  grid-column: 3;
  grid-row: 1 / 3;
  color: var(--jade-deep);
  font-style: normal;
  font-size: 24px;
}

.tool-jump-nav {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.tool-jump-nav > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.tool-jump-nav a {
  display: grid;
  min-height: 96px;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
  grid-template-columns: 38px 1fr;
  align-content: center;
  column-gap: 10px;
}

.tool-jump-nav a:last-child {
  border-right: 1px solid var(--line);
}

.tool-jump-nav span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.tool-jump-nav strong {
  color: var(--ink);
  font-size: 14px;
}

.tool-jump-nav small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.price-explorer-section,
.journey-budget-section,
.city-fare-evidence-section,
.cost-faq-section,
.city-evidence-coverage-section,
.city-cost-evidence-section,
.city-provider-section,
.city-travel-cost-section,
.service-price-evidence-section,
.price-method-section {
  padding: 104px 0;
}

.price-explorer-section,
.city-provider-section,
.service-price-evidence-section,
.price-method-section {
  background: var(--warm-white);
}

.journey-budget-section,
.city-cost-evidence-section {
  background: var(--mist);
}

.city-travel-cost-section,
.city-fare-evidence-section {
  color: var(--paper);
  background: var(--ink);
}

.city-travel-cost-section .section-index,
.city-fare-evidence-section .section-index,
.city-travel-cost-section .resource-topline > p,
.city-fare-evidence-section .resource-topline > p {
  color: rgba(255, 255, 255, 0.7);
}

.price-explorer-heading,
.journey-budget-layout,
.price-method-layout,
.cost-faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 74px;
}

.price-boundary-note,
.budget-source-status {
  padding: 22px 24px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}

.price-boundary-note p,
.budget-source-status p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-explorer-controls {
  display: grid;
  margin-top: 42px;
  margin-bottom: 28px;
  padding: 18px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 1fr 1.4fr 0.55fr;
  align-items: end;
  gap: 12px;
  background: var(--paper);
}

.price-explorer-controls label,
.fare-city-selector label,
.budget-input-grid label,
.budget-context-grid label {
  display: grid;
  gap: 7px;
}

.price-explorer-controls label > span,
.fare-city-selector label > span,
.budget-input-grid label > span,
.budget-context-grid label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-explorer-controls input,
.price-explorer-controls select,
.fare-city-selector select,
.budget-input-grid input,
.budget-input-grid select,
.budget-context-grid input,
.budget-context-grid select {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
}

.price-explorer-controls input:focus,
.price-explorer-controls select:focus,
.fare-city-selector select:focus,
.budget-input-grid input:focus,
.budget-input-grid select:focus,
.budget-context-grid input:focus,
.budget-context-grid select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(13, 107, 87, 0.12);
}

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

.price-record {
  display: flex;
  min-width: 0;
  min-height: 470px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  flex-direction: column;
  background: var(--paper);
}

.price-record-topline,
.provider-card-topline {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-record-topline span:first-child,
.provider-card-topline span:first-child {
  color: var(--cobalt);
}

.price-record h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
}

.price-record-value {
  display: flex;
  min-height: 72px;
  padding: 14px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.price-record-value strong {
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.price-record-value span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.price-record-scope {
  min-height: 62px;
  margin: 16px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.price-record summary {
  padding: 12px 0;
  color: var(--jade);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.price-boundary {
  display: grid;
  padding: 2px 0 14px;
  gap: 12px;
}

.price-boundary strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
}

.price-boundary ul {
  margin: 0;
  padding-left: 17px;
  color: var(--muted);
  font-size: 11px;
}

.price-record-note {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.price-record-actions {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-record-actions a,
.price-record-actions button,
.fare-snapshot a {
  padding: 0;
  border: 0;
  color: var(--jade);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.price-record-actions button {
  color: var(--red);
}

.empty-filter-state {
  padding: 44px;
  border: 1px solid var(--line);
  text-align: center;
  background: var(--paper);
}

.journey-budget-intro {
  position: sticky;
  top: 28px;
}

.budget-source-status {
  margin-top: 18px;
}

.budget-source-status > span {
  display: block;
  margin-bottom: 4px;
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-budget-form {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(11, 29, 26, 0.1);
}

.budget-form-toolbar {
  display: flex;
  min-height: 68px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.budget-form-toolbar > div {
  display: grid;
}

.budget-form-toolbar span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-input-grid {
  display: grid;
  padding: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.budget-review-context {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
  background: #f7f1ef;
}

.budget-review-heading {
  display: grid;
  gap: 5px;
  padding: 20px 0 14px;
}

.budget-review-heading > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-review-heading > strong {
  font-size: 13px;
}

.budget-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.budget-context-wide {
  grid-column: 1 / -1;
}

.budget-reference-field {
  grid-column: 1 / -1;
}

.budget-output {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.budget-output > div {
  min-height: 128px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.budget-output > div:nth-child(2n) {
  border-right: 0;
}

.budget-output > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.budget-output > div.is-emphasis {
  color: var(--paper);
  background: var(--jade-deep);
}

.budget-output span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.budget-output .is-emphasis span,
.budget-output .is-emphasis p {
  color: rgba(255, 255, 255, 0.7);
}

.budget-output strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.budget-output p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.budget-actions {
  display: flex;
  padding: 20px 24px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.result-export-tools {
  display: grid;
  min-height: 112px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f7f6;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  gap: 10px 24px;
}

.result-export-tools > div:first-child span {
  display: block;
  margin-bottom: 5px;
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-export-tools > div:first-child strong {
  font-size: 13px;
}

.result-export-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.result-export-actions .outline-button {
  min-width: 96px;
}

.result-export-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.result-export-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  grid-column: 1 / -1;
}

.print-sheet {
  display: none;
}

.fare-city-selector {
  display: flex;
  margin-top: 34px;
  margin-bottom: 18px;
  justify-content: flex-end;
}

.fare-city-selector label {
  width: min(320px, 100%);
}

.fare-snapshot {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: repeat(3, 1fr);
}

.fare-snapshot > div {
  min-height: 220px;
  padding: 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fare-snapshot > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fare-snapshot span {
  display: block;
  margin-bottom: 24px;
  color: #9fc2ed;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.fare-snapshot strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}

.fare-snapshot p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.fare-snapshot a {
  color: #b8d4fa;
}

.fare-input-boundary {
  background: var(--cobalt);
}

.city-travel-cost-section .section-action {
  justify-content: flex-start;
}

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

.cost-faq-list details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cost-faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
}

.cost-faq-list p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

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

.provider-research-card {
  display: flex;
  min-height: 500px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  flex-direction: column;
  background: var(--paper);
}

.provider-research-card h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
}

.provider-research-card > p:not(.provider-local-name) {
  color: var(--muted);
  font-size: 13px;
}

.provider-local-name {
  margin-bottom: 22px;
  color: var(--cobalt);
  font-size: 12px;
}

.provider-focus {
  display: flex;
  margin: 10px 0 22px;
  flex-wrap: wrap;
  gap: 6px;
}

.provider-focus span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
}

.provider-claim {
  margin-bottom: 22px;
  padding: 16px;
  border-left: 3px solid var(--cobalt);
  background: var(--mist);
}

.provider-claim strong {
  font-size: 12px;
}

.provider-claim p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.provider-research-card .text-link {
  margin-top: auto;
}

.city-evidence-table {
  border-top: 1px solid var(--ink);
}

.city-evidence-row {
  display: grid;
  min-height: 76px;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.2fr 1fr 1fr 1fr 30px;
  align-items: center;
  gap: 16px;
}

.city-evidence-row:not(.city-evidence-header):hover {
  background: var(--mist);
}

.city-evidence-header {
  min-height: 52px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-type-table {
  border-top: 1px solid var(--ink);
}

.price-type-table > div {
  display: grid;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.7fr 1fr 1.2fr;
  align-items: center;
  gap: 20px;
}

.price-type-table span {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-type-table p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.knowledge-ledger {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 0.7fr) 1.5fr;
}

.knowledge-ledger > div,
.knowledge-ledger > a {
  display: grid;
  min-height: 104px;
  padding: 20px;
  border-left: 1px solid var(--line);
  align-content: center;
}

.knowledge-ledger > a {
  border-right: 1px solid var(--line);
  color: var(--paper);
  background: var(--cobalt);
  font-weight: 800;
}

.knowledge-ledger strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.knowledge-ledger span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.catalog-source-list {
  display: grid;
  margin-top: 24px;
}

.catalog-source-list > a {
  display: grid;
  min-height: 86px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.5fr 1.6fr 1.2fr 24px;
  align-items: center;
  gap: 18px;
}

.catalog-source-list span {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-source-list p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.catalog-source-list i {
  font-style: normal;
}

.evidence-plan-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-plan-form .planner-submit {
  grid-column: 1 / -1;
  justify-self: end;
}

.evidence-plan-result {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.plan-result-heading {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.plan-result-heading > strong {
  display: block;
  margin: 5px 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.plan-result-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.plan-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.plan-evidence-grid > div {
  min-height: 112px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-evidence-grid > div:last-child {
  border-right: 0;
}

.plan-evidence-grid span,
.plan-brief-body > div > span {
  display: block;
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-evidence-grid strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.plan-evidence-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.plan-brief-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.plan-brief-body > div {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.plan-brief-body > div:last-child {
  border-right: 0;
}

.plan-brief-body ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.plan-brief-body li + li {
  margin-top: 8px;
}

.plan-price-list {
  display: grid;
  margin-top: 12px;
}

.plan-price-list > a {
  display: grid;
  min-height: 56px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.plan-price-list span {
  color: var(--muted);
  font-size: 11px;
}

.plan-price-list strong {
  color: var(--jade-deep);
  font-size: 12px;
}

.plan-result-actions {
  display: flex;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1040px) {
  .price-record-grid,
  .provider-research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-explorer-controls {
    grid-template-columns: 1fr 1fr;
  }

  .price-search {
    grid-column: 1 / 2;
  }

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

@media (max-width: 760px) {
  .knowledge-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .knowledge-proof-grid > div:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .search-path-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .price-explorer-heading,
  .journey-budget-layout,
  .price-method-layout,
  .cost-faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-budget-intro {
    position: static;
  }

  .fare-snapshot,
  .plan-brief-body {
    grid-template-columns: 1fr;
  }

  .fare-snapshot > div,
  .fare-snapshot > div:last-child {
    min-height: 170px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plan-brief-body > div,
  .plan-brief-body > div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .city-evidence-table {
    overflow-x: auto;
  }

  .city-evidence-row {
    min-width: 760px;
  }

  .knowledge-ledger {
    grid-template-columns: repeat(3, 1fr);
  }

  .knowledge-ledger > a {
    grid-column: 1 / -1;
  }

  .catalog-source-list > a {
    grid-template-columns: 0.6fr 1.4fr 24px;
  }

  .catalog-source-list p {
    display: none;
  }
}

@media (max-width: 560px) {
  .search-path-section,
  .price-explorer-section,
  .journey-budget-section,
  .city-fare-evidence-section,
  .cost-faq-section,
  .city-evidence-coverage-section,
  .city-cost-evidence-section,
  .city-provider-section,
  .city-travel-cost-section,
  .service-price-evidence-section,
  .price-method-section {
    padding: 72px 0;
  }

  .knowledge-proof-grid > div {
    min-height: 86px;
    padding: 16px;
  }

  .knowledge-proof-grid strong {
    font-size: 28px;
  }

  .tool-jump-nav > div {
    grid-template-columns: 1fr;
  }

  .tool-jump-nav a,
  .tool-jump-nav a:last-child {
    min-height: 78px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .price-explorer-controls,
  .price-record-grid,
  .provider-research-grid,
  .budget-input-grid,
  .budget-context-grid,
  .budget-output,
  .plan-evidence-grid,
  .evidence-plan-form {
    grid-template-columns: 1fr;
  }

  .price-search,
  .budget-reference-field,
  .budget-context-wide,
  .evidence-plan-form .planner-submit {
    grid-column: auto;
  }

  .search-path-list a {
    min-height: 132px;
    padding: 20px 4px;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: start;
    column-gap: 14px;
  }

  .search-path-list span,
  .search-path-list strong,
  .search-path-list p {
    grid-column: 1;
  }

  .search-path-list strong {
    font-size: 22px;
  }

  .search-path-list i {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .price-record,
  .provider-research-card {
    min-height: 0;
  }

  .price-record-scope {
    min-height: 0;
  }

  .budget-output > div,
  .budget-output > div:nth-child(2n),
  .budget-output > div:nth-last-child(-n + 2) {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .budget-output > div:last-child {
    border-bottom: 0;
  }

  .budget-actions,
  .plan-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .budget-actions .button,
  .plan-result-actions .button {
    width: 100%;
  }

  .plan-evidence-grid > div,
  .plan-evidence-grid > div:last-child {
    border-right: 0;
  }

  .price-type-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .knowledge-ledger {
    grid-template-columns: 1fr;
  }

  .knowledge-ledger > a {
    grid-column: auto;
  }

  .catalog-source-list > a {
    grid-template-columns: 1fr 24px;
  }

  .catalog-source-list span {
    grid-column: 1 / -1;
  }
}

/* V2 shared page system */

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(197, 62, 48, 0.55);
  outline-offset: 3px;
}

.hero-media {
  --motion-x: 0px;
  --motion-y: 0px;
  position: absolute;
  inset: -14px;
  overflow: hidden;
  transform: translate3d(var(--motion-x), var(--motion-y), 0);
  transition: transform 500ms ease-out;
}

.hero-media .hero-image {
  inset: -3%;
  width: 106%;
  height: 106%;
  animation: hero-image-drift 20s ease-in-out infinite alternate;
}

@keyframes hero-image-drift {
  0% {
    transform: scale(1.02) translate3d(-0.5%, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(1.5%, -1%, 0);
  }
}

.route-trace {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 150px;
  width: 340px;
  height: 110px;
  opacity: 0.62;
  pointer-events: none;
}

.route-trace::before,
.route-trace::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-top: 0;
  border-left: 0;
  border-radius: 50%;
}

.route-trace::before {
  inset: 4px 0 20px 70px;
  transform: rotate(-9deg);
}

.route-trace::after {
  right: 0;
  bottom: 19px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper);
  background: var(--red);
}

.route-trace span,
.route-trace i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.route-trace span {
  top: 17px;
  left: 68px;
}

.route-trace i {
  top: 49px;
  left: 190px;
  animation: route-pulse 2.8s ease-in-out infinite;
}

@keyframes route-pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.04);
  }
}

.evidence-rail-page {
  color: var(--paper);
  background: #061915;
}

.page-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero-media,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

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

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 16, 14, 0.92) 0%, rgba(3, 16, 14, 0.7) 48%, rgba(3, 16, 14, 0.2) 82%),
    linear-gradient(0deg, rgba(3, 16, 14, 0.58) 0%, rgba(3, 16, 14, 0) 48%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  padding-top: 142px;
  padding-bottom: 68px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.page-hero-meta {
  display: flex;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  gap: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.page-hero-meta strong {
  color: var(--paper);
}

.breadcrumbs {
  padding-top: 24px;
  padding-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: var(--stone);
}

.breadcrumbs a:hover {
  color: var(--jade);
}

.answer-card {
  position: relative;
  padding: 34px 38px 34px 76px;
  border: 1px solid rgba(13, 107, 87, 0.28);
  border-radius: 8px;
  background: #f2f7f5;
}

.answer-card::before {
  position: absolute;
  top: 38px;
  left: 36px;
  width: 18px;
  height: 3px;
  content: "";
  background: var(--red);
}

.answer-card > span {
  display: block;
  margin-bottom: 8px;
  color: var(--jade-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-card p {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.35;
}

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

.footer-contact > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact > a {
  font-size: 15px;
  font-weight: 750;
}

.footer-contact p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.contact-cta {
  padding: 78px 0;
  background: #dbe7f3;
}

.contact-cta-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr auto;
  align-items: center;
  gap: 58px;
}

.contact-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-cta-layout > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.sources-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.sources-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.sources-layout h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}

.sources-layout > div > p:last-child {
  color: var(--muted);
}

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

.source-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.source-list a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.source-list a:hover strong {
  color: var(--jade);
}

.source-list li > p {
  margin: 7px 0 5px;
  color: var(--muted);
  font-size: 11px;
}

.source-list li > span {
  color: var(--ink-soft);
  font-size: 13px;
}

.city-directory {
  border-top: 1px solid var(--ink);
}

.city-directory-row {
  display: grid;
  min-height: 92px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1.05fr 1.3fr 0.9fr 28px;
  align-items: center;
  gap: 20px;
  transition: color 180ms ease, background 180ms ease;
}

.city-directory-row:hover,
.city-directory-row:focus-visible {
  color: var(--jade-deep);
  background: #f2f7f5;
}

.city-number {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
}

.city-directory-row > div {
  display: grid;
}

.city-directory-row > div > span,
.city-directory-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.row-arrow {
  justify-self: end;
  font-size: 18px;
}

.service-directory {
  border-top: 1px solid var(--ink);
}

.service-directory > a {
  display: grid;
  min-height: 160px;
  padding: 28px 16px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr 30px;
  align-items: start;
  gap: 22px;
  transition: background 180ms ease;
}

.service-directory > a:hover,
.service-directory > a:focus-visible {
  background: #f2f7f5;
}

.service-directory > a > span:first-child {
  color: var(--red);
  font-family: var(--serif);
  font-size: 22px;
}

.service-directory strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.service-directory p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.guide-card {
  display: flex;
  min-height: 370px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-direction: column;
  background: var(--paper);
}

.guide-card > span {
  color: var(--jade);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 24px 0 16px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}

.guide-card h3 a:hover {
  color: var(--jade);
}

.guide-card > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.guide-card .text-link {
  margin-top: auto;
}

.section-action {
  display: flex;
  margin-top: 34px;
  justify-content: flex-start;
}

/* Home and planning */

.cost-preview {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: repeat(3, 1fr) 68px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(11, 29, 26, 0.09);
}

.cost-preview > div {
  min-height: 180px;
  padding: 30px 26px;
  border-left: 1px solid var(--line);
}

.cost-preview > div:first-child {
  border-left: 0;
}

.cost-preview .is-emphasis {
  background: #f2f7f5;
}

.cost-preview span,
.trip-fit-band span,
.travel-check-grid article > span,
.method-steps span,
.partner-levels article > span,
.partner-type-list span {
  color: var(--jade);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-preview strong {
  display: block;
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.cost-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cost-preview > a {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  font-size: 24px;
}

.home-resources,
.guides-band,
.related-reading,
.service-section,
.process-section,
.comparison-method-section,
.readiness-section,
.city-profile-section,
.city-check-section,
.connections-section,
.scope-section,
.service-detail-section,
.not-for-section,
.travel-checks,
.journey-section,
.trust-principles,
.boundaries-section,
.data-use-section,
.partner-model,
.roles-section,
.partner-types,
.guide-library,
.editorial-policy,
.contact-section,
.next-step-section {
  padding: 104px 0;
}

.guides-band,
.related-reading,
.service-section,
.comparison-method-section,
.city-check-section,
.service-detail-section,
.journey-section,
.trust-principles,
.data-use-section,
.partner-model,
.guide-library,
.contact-section {
  background: var(--warm-white);
}

.guides-band-heading,
.guide-library-heading {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.guides-band-heading > p {
  color: var(--muted);
}

.page-tool-section {
  scroll-margin-top: 20px;
}

.planner-tool-page {
  grid-template-columns: 0.9fr 1.3fr 1.1fr 1.2fr auto;
}

.fit-result-page {
  min-height: 112px;
}

.planner-checks {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.planner-checks > div {
  min-height: 175px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.planner-checks > div:first-child {
  border-left: 1px solid var(--line);
}

.planner-checks span,
.process-timeline > li > span,
.journey-flow > li > span,
.article-section > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
}

.planner-checks strong {
  display: block;
  margin: 20px 0 8px;
}

.planner-checks p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.process-layout,
.comparison-method-layout,
.readiness-layout,
.connections-layout,
.scope-layout,
.not-for-layout,
.journey-layout,
.trust-principles-layout,
.boundaries-layout,
.partner-types-layout,
.editorial-policy-layout,
.next-step-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.process-timeline,
.journey-flow,
.next-step-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-timeline li,
.journey-flow li,
.next-step-layout li {
  display: grid;
  min-height: 92px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 62px 1fr;
  gap: 18px;
}

.process-timeline p,
.journey-flow p,
.next-step-layout li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Cost calculator */

.calculator-section {
  padding: 104px 0;
  background: var(--mist);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  align-items: start;
  gap: 70px;
}

.calculator-intro {
  position: sticky;
  top: 28px;
}

.calculator-note {
  margin-top: 32px;
  padding: 20px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}

.calculator-note p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cost-calculator {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(11, 29, 26, 0.1);
}

.calculator-toolbar {
  display: flex;
  min-height: 68px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.calculator-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-toolbar select {
  height: 40px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

.cost-input-grid {
  display: grid;
  padding: 26px;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cost-input-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-input-grid input {
  width: 100%;
  height: 50px;
  padding: 0 13px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

.cost-input-grid input:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(13, 107, 87, 0.12);
  outline: 0;
}

.cost-output {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.cost-output > div {
  min-height: 175px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.cost-output > div:first-child {
  border-left: 0;
}

.cost-output .is-emphasis {
  background: #f2f7f5;
}

.cost-output span {
  color: var(--jade);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cost-output strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--cobalt);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.cost-output p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.cost-calculator > .button {
  margin: 22px 26px 26px;
}

.status-table {
  border-top: 1px solid var(--ink);
}

.status-table > div {
  display: grid;
  min-height: 86px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.8fr 1.2fr 1.5fr;
  align-items: center;
  gap: 20px;
}

.status-table span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-table p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Resource and city pages */

.resource-index {
  padding-top: 92px;
}

.filter-summary {
  display: grid;
  align-self: end;
  height: 52px;
  padding: 7px 16px;
  border-left: 3px solid var(--red);
  background: var(--paper);
}

.filter-summary span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-summary strong {
  font-size: 17px;
}

.resource-index .resource-filters {
  grid-template-columns: 1fr 1fr 0.55fr;
}

.verification-scale-light {
  border-top-color: var(--ink);
}

.verification-scale-light > div {
  border-bottom-color: var(--line);
}

.verification-scale-light span {
  color: var(--red);
}

.verification-scale-light p {
  color: var(--muted);
}

.city-answer-section,
.service-answer-section {
  padding: 72px 0 90px;
}

.city-profile-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0 90px;
}

.city-profile-title {
  grid-row: 1 / span 3;
}

.city-story {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.city-story:last-child {
  border-bottom: 1px solid var(--line);
}

.city-story h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.city-story p {
  margin: 0;
  color: var(--muted);
}

.two-column-editorial,
.service-detail-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.check-list,
.numbered-check-list,
.boundary-list,
.verification-panel ul,
.scope-columns ul,
.boundary-columns ul,
.contact-boundary ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.check-list li,
.numbered-check-list li,
.boundary-list li,
.verification-panel li,
.scope-columns li,
.boundary-columns li,
.contact-boundary li {
  position: relative;
  padding: 17px 8px 17px 28px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.verification-panel li::before,
.scope-columns li::before,
.boundary-columns li::before,
.contact-boundary li::before {
  position: absolute;
  top: 24px;
  left: 5px;
  width: 8px;
  height: 2px;
  content: "";
  background: var(--red);
}

.numbered-check-list {
  counter-reset: question;
}

.numbered-check-list li {
  counter-increment: question;
}

.numbered-check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  content: counter(question, decimal-leading-zero);
  color: var(--red);
  font-family: var(--serif);
}

.verification-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--jade-deep);
}

.verification-panel > span {
  color: #8ac7b6;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.verification-panel ul {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.verification-panel li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.verification-panel .text-link {
  margin-top: 24px;
  color: var(--paper);
}

.connections-section {
  background: #dbe7f3;
}

.connection-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.connection-links a {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(33, 79, 155, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.connection-links span {
  color: var(--cobalt);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.connection-links strong {
  display: block;
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.connection-links p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

/* Service, travel, trust and partner pages */

.service-index {
  padding-top: 92px;
}

.scope-columns,
.boundary-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.scope-columns > div,
.boundary-columns > article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.scope-columns > div:last-child,
.boundary-columns > article:first-child {
  background: #f7f1ef;
}

.scope-columns span,
.boundary-columns article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.scope-columns ul,
.boundary-columns ul {
  margin-top: 20px;
}

.data-use-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 80px;
}

.data-use-copy > p {
  margin: 0;
  color: var(--ink-soft);
}

.data-use-copy > p + p {
  margin-top: 22px;
}

.data-use-grid {
  display: grid;
  margin: 28px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.data-use-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.data-use-grid article:last-child {
  background: #f4f7f6;
}

.data-use-grid span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-use-grid ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.data-use-grid li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.data-use-grid li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  content: "";
}

.trip-fit-band {
  color: var(--paper);
  background: var(--jade-deep);
}

.trip-fit-layout {
  display: grid;
  min-height: 180px;
  grid-template-columns: 0.4fr 1.6fr;
  align-items: center;
  gap: 70px;
}

.trip-fit-band span {
  color: #8ac7b6;
}

.trip-fit-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
}

.boundary-list {
  margin-top: 0;
}

.boundary-list li {
  padding-left: 36px;
  font-family: var(--serif);
  font-size: 22px;
}

.boundary-list li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  content: "Not";
  color: var(--red);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.compact-resources {
  padding-top: 92px;
}

.travel-checks {
  background: var(--warm-white);
}

.travel-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.travel-check-grid article {
  min-height: 340px;
  padding: 36px;
  background: var(--paper);
}

.travel-check-grid h2 {
  margin: 36px 0 16px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
}

.travel-check-grid article > p {
  margin-bottom: 28px;
  color: var(--muted);
}

.journey-flow li {
  min-height: 80px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.method-steps > div {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.method-steps strong {
  display: block;
  margin: 26px 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.operator-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.operator-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 72px;
}

.operator-copy > p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.operator-facts {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operator-facts span {
  display: grid;
  min-height: 110px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  align-content: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.operator-facts span:first-child {
  border-left: 1px solid var(--line);
}

.operator-facts strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
}

.trust-section-page {
  padding: 104px 0;
}

.boundaries-section {
  background: #dbe7f3;
}

.boundary-columns > article {
  background: rgba(255, 255, 255, 0.62);
}

.partner-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-levels article {
  min-height: 285px;
  padding: 28px;
  background: var(--paper);
}

.partner-levels h3 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.partner-levels p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.role-table {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.role-row {
  display: grid;
  min-height: 76px;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.role-row > span {
  color: var(--muted);
}

.role-header {
  min-height: 46px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-types {
  background: #dbe7f3;
}

.partner-type-list {
  border-top: 1px solid var(--ink);
}

.partner-type-list > div {
  display: grid;
  min-height: 90px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 29, 26, 0.18);
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 24px;
}

.partner-type-list span {
  color: var(--cobalt);
}

.partner-type-list p {
  margin: 0;
  color: var(--ink-soft);
}

/* Guides, articles and contact */

.guide-search {
  display: grid;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: end;
  gap: 12px;
  background: var(--paper);
}

.guide-search label,
.form-grid label {
  display: grid;
  gap: 7px;
}

.guide-search label > span,
.form-grid label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-search input,
.guide-search select,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1px solid var(--stone);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

.form-grid textarea {
  min-height: 150px;
  padding-top: 13px;
  resize: vertical;
}

.guide-search input:focus,
.guide-search select:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 3px rgba(13, 107, 87, 0.12);
  outline: 0;
}

.guide-search > p {
  display: grid;
  min-width: 82px;
  min-height: 50px;
  margin: 0;
  padding: 7px 12px;
  border-left: 3px solid var(--red);
  align-content: center;
  color: var(--muted);
  font-size: 10px;
}

.guide-search > p strong {
  color: var(--ink);
  font-size: 17px;
}

.guide-library .guide-grid {
  grid-template-columns: repeat(3, 1fr);
}

.editorial-policy {
  background: #dbe7f3;
}

.editorial-policy-layout > p {
  margin: 0;
  color: var(--ink-soft);
}

.editorial-policy-layout .text-link {
  align-self: start;
}

.guide-article {
  padding: 86px 0 104px;
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  justify-content: center;
  gap: 78px;
}

.article-aside {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 24px;
  border-left: 2px solid var(--red);
  background: var(--warm-white);
}

.article-aside > span {
  color: var(--jade);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-aside ol {
  display: grid;
  margin: 18px 0;
  padding: 0;
  gap: 10px;
  list-style: none;
  font-size: 12px;
}

.article-aside a:hover {
  color: var(--jade);
}

.article-aside p {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.article-key-points {
  margin: 42px 0 58px;
}

.article-key-points h2,
.article-section h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}

.article-section {
  position: relative;
  padding: 42px 0 46px 64px;
  border-top: 1px solid var(--line);
}

.article-section > span {
  position: absolute;
  top: 47px;
  left: 0;
}

.article-section p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.article-section ul {
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.article-section li {
  margin-bottom: 11px;
}

.medical-note {
  margin-top: 44px;
  padding: 26px;
  border: 1px solid rgba(197, 62, 48, 0.3);
  border-radius: 8px;
  background: #f7f1ef;
}

.medical-note p {
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 80px;
}

.contact-boundary {
  margin-top: 32px;
  padding: 24px;
  border-left: 3px solid var(--red);
  background: #f7f1ef;
}

.contact-boundary ul {
  margin-top: 14px;
}

.official-email {
  display: grid;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 5px;
}

.official-email > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.official-email > a {
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 24px;
}

.official-email p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-form-wrap {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(11, 29, 26, 0.09);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-row {
  display: grid;
  margin: 20px 0;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--jade);
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 13px;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: var(--jade-deep);
  background: #e1f0ea;
}

.form-status.is-error {
  color: #7e231b;
  background: #f7e6e2;
}

.inquiry-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.not-found-section {
  display: grid;
  min-height: 760px;
  padding-top: 120px;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(rgba(3, 16, 14, 0.82), rgba(3, 16, 14, 0.82)),
    url("/assets/hero-medical-travel.webp") center / cover;
}

.not-found-section > div {
  max-width: 760px;
}

.not-found-section > div > span {
  color: #8ac7b6;
  font-family: var(--serif);
  font-size: 44px;
}

.not-found-section h1 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.not-found-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .page-hero h1 {
    font-size: 62px;
  }

  .contact-cta-layout,
  .partner-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cta-layout .button,
  .partner-layout .button {
    justify-self: start;
  }

  .planner-tool-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-tool-page .planner-submit {
    grid-column: 1 / -1;
  }

  .guide-grid,
  .guide-library .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-intro {
    position: static;
  }

  .partner-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-directory-row {
    grid-template-columns: 50px 1fr 1.15fr 0.8fr 24px;
  }
}

@media (max-width: 820px) {
  .section-heading h2,
  .route-copy h2,
  .trust-intro h2,
  .partner-layout h2 {
    font-size: 48px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 610px;
  }

  .page-hero-content {
    padding-top: 116px;
  }

  .page-hero h1 {
    font-size: 54px;
  }

  .page-hero-content > p:not(.eyebrow) {
    font-size: 16px;
  }

  .route-trace {
    display: none;
  }

  .contact-cta-layout,
  .operator-layout,
  .sources-layout,
  .guides-band-heading,
  .guide-library-heading,
  .process-layout,
  .comparison-method-layout,
  .readiness-layout,
  .connections-layout,
  .scope-layout,
  .not-for-layout,
  .journey-layout,
  .trust-principles-layout,
  .boundaries-layout,
  .data-use-layout,
  .partner-types-layout,
  .editorial-policy-layout,
  .next-step-layout,
  .city-profile-layout,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .operator-facts {
    grid-template-columns: 1fr;
  }

  .operator-facts span,
  .operator-facts span:first-child {
    min-height: 86px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .city-profile-title {
    grid-row: auto;
  }

  .answer-card p {
    font-size: 24px;
  }

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

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

  .planner-checks {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-checks > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .cost-preview {
    grid-template-columns: 1fr 1fr;
  }

  .cost-preview > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cost-preview > a {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .city-directory-row {
    grid-template-columns: 46px 1fr auto 24px;
  }

  .city-directory-row > p {
    display: none;
  }

  .service-directory > a {
    min-height: 150px;
  }

  .cost-output {
    grid-template-columns: 1fr;
  }

  .cost-output > div {
    min-height: 130px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cost-output > div:first-child {
    border-top: 0;
  }

  .status-table > div {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .status-table p {
    grid-column: 2;
  }

  .two-column-editorial,
  .service-detail-layout,
  .scope-columns,
  .boundary-columns {
    grid-template-columns: 1fr;
  }

  .trip-fit-layout {
    min-height: 220px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
  }

  .travel-check-grid,
  .method-steps {
    grid-template-columns: 1fr;
  }

  .partner-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-table {
    overflow-x: auto;
  }

  .role-row {
    min-width: 720px;
  }

  .guide-search {
    grid-template-columns: 1fr 1fr;
  }

  .guide-search > p {
    grid-column: 1 / -1;
  }

  .article-aside {
    position: static;
  }

  .article-aside ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .page-hero,
  .page-hero-content {
    min-height: 620px;
  }

  .page-hero-content {
    padding-top: 104px;
    padding-bottom: 42px;
    justify-content: flex-start;
  }

  .page-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .page-hero-content .hero-actions {
    width: 100%;
    align-items: stretch;
  }

  .page-hero-content .hero-actions .text-link {
    display: none;
  }

  .page-hero-meta {
    margin-top: 18px;
  }

  .home-resources,
  .operator-section,
  .guides-band,
  .related-reading,
  .service-section,
  .process-section,
  .comparison-method-section,
  .readiness-section,
  .city-profile-section,
  .city-check-section,
  .connections-section,
  .scope-section,
  .service-detail-section,
  .not-for-section,
  .travel-checks,
  .journey-section,
  .trust-principles,
  .boundaries-section,
  .data-use-section,
  .partner-model,
  .roles-section,
  .partner-types,
  .guide-library,
  .editorial-policy,
  .contact-section,
  .next-step-section,
  .calculator-section,
  .sources-section {
    padding: 72px 0;
  }

  .contact-cta {
    padding: 64px 0;
  }

  .contact-cta h2,
  .sources-layout h2 {
    font-size: 36px;
  }

  .answer-card {
    padding: 28px 22px 28px 52px;
  }

  .answer-card::before {
    top: 33px;
    left: 22px;
  }

  .answer-card p {
    font-size: 21px;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .planner-tool-page,
  .planner-checks,
  .cost-input-grid,
  .cost-preview,
  .guide-grid,
  .guide-library .guide-grid,
  .partner-levels,
  .connection-links,
  .form-grid,
  .guide-search {
    grid-template-columns: 1fr;
  }

  .data-use-grid,
  .result-export-tools {
    grid-template-columns: 1fr;
  }

  .result-export-actions {
    justify-content: flex-start;
  }

  .result-export-actions .outline-button {
    min-width: 0;
    flex: 1 1 96px;
  }

  .planner-tool-page .planner-submit,
  .form-wide {
    grid-column: auto;
  }

  .planner-checks > div {
    min-height: 140px;
    border-left: 1px solid var(--line);
  }

  .cost-preview > div,
  .cost-preview > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cost-preview > div:first-child {
    border-top: 0;
  }

  .cost-preview > a {
    min-height: 58px;
  }

  .cost-input-grid {
    padding: 18px;
  }

  .cost-calculator > .button {
    width: calc(100% - 36px);
    margin: 18px;
  }

  .city-directory-row {
    min-height: 138px;
    padding: 18px 10px;
    grid-template-columns: 38px 1fr 22px;
    gap: 12px;
  }

  .city-directory-row .status-pill {
    display: none;
  }

  .service-directory > a {
    min-height: 190px;
    grid-template-columns: 42px 1fr;
  }

  .service-directory > a > span:last-child {
    display: none;
  }

  .service-directory strong {
    font-size: 28px;
  }

  .guide-card {
    min-height: 330px;
  }

  .guide-search > p {
    grid-column: auto;
  }

  .article-aside ol {
    grid-template-columns: 1fr;
  }

  .article-section {
    padding: 34px 0;
  }

  .article-section > span {
    position: static;
    display: block;
    margin-bottom: 14px;
  }

  .article-key-points h2,
  .article-section h2 {
    font-size: 32px;
  }

  .article-section p {
    font-size: 16px;
  }

  .contact-form-wrap {
    padding: 20px 16px;
  }

  .official-email > a {
    overflow-wrap: anywhere;
  }

  .role-table {
    margin-right: -16px;
  }

  .not-found-section h1 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-image,
  .route-trace i {
    animation: none !important;
  }

  .hero-media {
    transform: none !important;
  }
}

@media print {
  @page {
    margin: 18mm;
  }

  body > *:not(.print-sheet) {
    display: none !important;
  }

  .print-sheet {
    display: block !important;
    color: #17201e;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .print-sheet h1 {
    margin: 0 0 8px;
    font-size: 26px;
  }

  .print-sheet > p {
    margin: 0 0 22px;
    color: #4f5d59;
    font-size: 11px;
  }

  .print-sheet pre {
    padding: 18px 0;
    border-top: 1px solid #c9d1cf;
    border-bottom: 1px solid #c9d1cf;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font: 13px/1.6 Arial, sans-serif;
  }

  .print-sheet pre + p {
    margin-top: 20px;
  }
}

/* Partner care network */

[hidden] {
  display: none !important;
}

.network-proof-band {
  color: var(--paper);
  background: var(--ink);
}

.network-proof-grid,
.network-card-counts,
.network-card-status,
.partner-price-topline,
.partner-price-links {
  display: grid;
}

.network-proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.network-proof-grid > div {
  min-height: 132px;
  padding: 28px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.network-proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.network-proof-grid strong {
  display: block;
  color: #f0b64e;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}

.network-proof-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.network-boundary-section,
.network-directory-section,
.home-network-section,
.city-partner-coverage-section,
.city-network-section,
.hospital-overview-section,
.hospital-team-section,
.partner-price-section,
.procedure-hospitals-section,
.procedure-clinicians-section,
.doctor-procedure-section,
.related-clinicians-section {
  padding: 104px 0;
}

.network-directory-section,
.hospital-team-section,
.procedure-clinicians-section,
.related-clinicians-section {
  background: var(--warm-white);
}

.home-network-section,
.city-partner-coverage-section {
  background: #e9f0ee;
}

.network-boundary-layout,
.hospital-overview-layout,
.procedure-answer-layout,
.doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.network-boundary-columns,
.doctor-inquiry-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.network-boundary-columns article,
.doctor-inquiry-layout > div {
  min-height: 310px;
  padding: 34px;
  background: var(--paper);
}

.network-boundary-columns article:last-child {
  color: var(--paper);
  background: var(--cobalt);
}

.network-boundary-columns article > span,
.doctor-inquiry-layout > div > span,
.doctor-verification-card > span,
.journey-type-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.network-boundary-columns article:last-child > span {
  color: #f5c468;
}

.network-boundary-columns ul,
.doctor-inquiry-layout ul {
  margin: 0;
  padding-left: 18px;
}

.network-boundary-columns li,
.doctor-inquiry-layout li {
  margin-top: 12px;
}

.network-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  margin-bottom: 42px;
  align-items: end;
}

.network-filter {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.network-filter label {
  display: grid;
  gap: 7px;
}

.network-filter label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.network-filter input,
.network-filter select {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

.network-filter > p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.network-hospital-card,
.clinician-card,
.partner-price-card,
.hospital-procedure-grid article,
.procedure-hospital-grid article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.network-hospital-card {
  display: flex;
  min-width: 0;
  min-height: 490px;
  padding: 28px;
  flex-direction: column;
}

.network-card-topline,
.provider-local-name,
.network-card-status,
.partner-price-topline {
  color: var(--muted);
  font-size: 12px;
}

.network-card-topline {
  display: flex;
  min-height: 22px;
  justify-content: space-between;
  gap: 12px;
  text-transform: uppercase;
}

.network-hospital-card h3,
.clinician-card h3,
.partner-price-card h3,
.hospital-procedure-grid h3,
.procedure-hospital-grid h3 {
  overflow-wrap: anywhere;
}

.network-hospital-card h3 {
  margin: 28px 0 4px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.12;
}

.network-hospital-card h3 a:hover,
.clinician-card h3 a:hover,
.hospital-procedure-grid h3 a:hover,
.procedure-hospital-grid h3 a:hover {
  color: var(--jade);
}

.network-department {
  display: block;
  margin: 22px 0 10px;
  color: var(--cobalt);
  font-size: 14px;
  line-height: 1.4;
}

.network-hospital-card > p:not(.provider-local-name) {
  color: var(--ink-soft);
  font-size: 14px;
}

.network-card-counts {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.network-card-counts span {
  padding: 12px;
  background: var(--mist);
  font-size: 11px;
}

.network-card-counts strong {
  display: block;
  font-size: 20px;
}

.network-card-status {
  gap: 5px;
  margin: 14px 0 18px;
}

.network-card-status span {
  position: relative;
  padding-left: 15px;
}

.network-card-status span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--jade);
}

.network-card-status span:last-child::before {
  background: #d19321;
}

.network-empty {
  margin: 28px 0 0;
  padding: 26px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

.procedure-directory-section,
.hospital-pathway-section,
.hospital-procedure-section,
.procedure-questions-section,
.doctor-inquiry-section {
  padding: 104px 0;
  color: var(--paper);
  background: var(--ink);
}

.procedure-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.procedure-directory > a {
  display: grid;
  min-height: 132px;
  padding: 24px;
  grid-template-columns: 42px 1fr 24px;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.procedure-directory > a:nth-child(2n) {
  border-right: 0;
}

.procedure-directory > a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.procedure-directory > a > span,
.procedure-directory p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.procedure-directory strong {
  font-family: var(--serif);
  font-size: 22px;
}

.procedure-directory p {
  margin: 7px 0 0;
}

.hospital-status-section {
  padding: 54px 0;
  background: var(--mist);
}

.relationship-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}

.relationship-panel > div {
  min-height: 220px;
  padding: 34px;
}

.relationship-panel > div + div {
  border-left: 1px solid var(--line);
}

.relationship-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.relationship-panel strong {
  display: block;
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
}

.relationship-panel > div:last-child strong {
  color: #9a6611;
}

.relationship-panel p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.hospital-overview-layout .answer-card {
  margin-top: 28px;
}

.hospital-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hospital-facts > div {
  display: grid;
  min-height: 82px;
  padding: 18px 0;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hospital-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hospital-facts dd {
  margin: 0;
  font-weight: 700;
}

.hospital-pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hospital-pathway li {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hospital-pathway li:last-child {
  border-right: 0;
}

.hospital-pathway span {
  color: #f0b64e;
  font-size: 12px;
  font-weight: 800;
}

.hospital-pathway strong {
  display: block;
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 24px;
}

.hospital-pathway p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.clinician-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.clinician-card {
  display: grid;
  min-width: 0;
  min-height: 320px;
  padding: 26px;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}

.clinician-monogram {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--paper);
  background: var(--cobalt);
  font-family: var(--serif);
  font-size: 18px;
}

.clinician-card-copy {
  min-width: 0;
}

.clinician-card-copy > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.clinician-card h3 {
  margin: 8px 0 2px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.12;
}

.clinician-card-copy > p:not(.provider-local-name) {
  margin: 17px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.clinician-card .provider-focus {
  margin-bottom: 18px;
}

.hospital-procedure-grid,
.procedure-hospital-grid,
.doctor-procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.hospital-procedure-grid article,
.procedure-hospital-grid article {
  min-height: 390px;
  padding: 28px;
}

.hospital-procedure-grid article > span {
  color: #f0b64e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hospital-procedure-grid h3,
.procedure-hospital-grid h3 {
  margin: 20px 0 5px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.hospital-procedure-grid ul,
.procedure-hospital-grid ul {
  margin: 20px 0 24px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hospital-procedure-grid li,
.procedure-hospital-grid li {
  margin-top: 8px;
}

.partner-price-section {
  background: #edf2f6;
}

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

.partner-price-card {
  min-width: 0;
  padding: 26px;
}

.partner-price-topline {
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-price-topline span:first-child {
  color: var(--cobalt);
}

.partner-price-card h3 {
  margin: 22px 0 3px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}

.partner-price-value {
  display: grid;
  gap: 5px;
  margin: 24px 0 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-price-value strong {
  color: var(--jade-deep);
  font-family: var(--serif);
  font-size: 29px;
}

.partner-price-value span,
.partner-price-card > p,
.partner-price-card details {
  color: var(--ink-soft);
  font-size: 13px;
}

.partner-price-card summary {
  min-height: 44px;
  padding: 11px 0;
  color: var(--cobalt);
  font-weight: 800;
  cursor: pointer;
}

.partner-price-card .price-boundary {
  grid-template-columns: 1fr;
}

.partner-price-card .price-boundary > div {
  padding: 14px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.partner-price-card .price-boundary ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.partner-price-note {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.partner-price-source {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 11px !important;
}

.partner-price-source strong {
  color: var(--ink);
  font-size: 10px;
  text-transform: uppercase;
}

.partner-price-links {
  gap: 6px;
  margin-top: 18px;
}

.partner-price-links a {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 800;
}

.price-confirmation-section {
  padding: 84px 0;
  background: var(--mist);
}

.price-confirmation-section .page-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.city-network-price-note {
  display: grid;
  margin-top: 20px;
  padding: 24px 28px;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  color: var(--paper);
  background: var(--cobalt);
}

.city-network-price-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.procedure-answer-section,
.doctor-profile-section {
  padding: 104px 0;
}

.journey-type-card,
.doctor-verification-card {
  min-height: 290px;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.journey-type-card.is-dedicated {
  color: var(--paper);
  background: var(--cobalt);
}

.journey-type-card.is-dedicated > span {
  color: #f5c468;
}

.journey-type-card strong,
.doctor-verification-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.15;
}

.journey-type-card p,
.doctor-verification-card p {
  margin: 18px 0 0;
}

.journey-type-card.is-dedicated p {
  color: rgba(255, 255, 255, 0.74);
}

.procedure-questions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
}

.procedure-questions-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.procedure-questions-layout li {
  display: grid;
  min-height: 90px;
  padding: 20px 0;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.procedure-questions-layout li span {
  color: #f0b64e;
  font-size: 12px;
  font-weight: 800;
}

.procedure-questions-layout li p {
  margin: 0;
  font-size: 18px;
}

.procedure-hospital-grid article {
  min-height: 470px;
}

.procedure-hospital-grid .button {
  margin-top: 16px;
}

.doctor-summary {
  max-width: 680px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.doctor-focus {
  margin-top: 24px;
}

.doctor-verification-card a {
  display: inline-block;
  margin-top: 22px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 800;
}

.doctor-procedure-grid > a {
  display: flex;
  min-height: 270px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.doctor-procedure-grid > a > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.doctor-procedure-grid > a > strong {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.doctor-procedure-grid > a > p {
  color: var(--ink-soft);
  font-size: 14px;
}

.doctor-procedure-grid > a > i {
  margin-top: auto;
  font-style: normal;
}

.doctor-inquiry-layout {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.doctor-inquiry-layout > div {
  color: var(--ink);
}

.doctor-inquiry-layout > div:last-child {
  color: var(--paper);
  background: var(--cobalt);
}

.doctor-inquiry-layout > div:last-child > span {
  color: #f5c468;
}

.doctor-inquiry-layout .button {
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .network-hospital-grid,
  .partner-price-grid,
  .hospital-procedure-grid,
  .procedure-hospital-grid,
  .doctor-procedure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-filter {
    grid-template-columns: 1fr 1fr;
  }

  .network-filter label:first-child {
    grid-column: 1 / -1;
  }

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

  .hospital-pathway li:nth-child(2) {
    border-right: 0;
  }

  .hospital-pathway li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 820px) {
  .network-boundary-layout,
  .network-directory-heading,
  .hospital-overview-layout,
  .procedure-answer-layout,
  .doctor-profile-layout,
  .procedure-questions-layout,
  .price-confirmation-section .page-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .network-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-proof-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .network-proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .relationship-panel {
    grid-template-columns: 1fr;
  }

  .relationship-panel > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .network-boundary-section,
  .network-directory-section,
  .home-network-section,
  .city-partner-coverage-section,
  .city-network-section,
  .hospital-overview-section,
  .hospital-team-section,
  .partner-price-section,
  .procedure-hospitals-section,
  .procedure-clinicians-section,
  .doctor-procedure-section,
  .related-clinicians-section,
  .procedure-directory-section,
  .hospital-pathway-section,
  .hospital-procedure-section,
  .procedure-questions-section,
  .doctor-inquiry-section,
  .procedure-answer-section,
  .doctor-profile-section {
    padding: 72px 0;
  }

  .network-hospital-grid,
  .partner-price-grid,
  .hospital-procedure-grid,
  .procedure-hospital-grid,
  .doctor-procedure-grid,
  .network-boundary-columns,
  .doctor-inquiry-layout,
  .procedure-directory,
  .network-filter {
    grid-template-columns: 1fr;
  }

  .network-filter label:first-child {
    grid-column: auto;
  }

  .network-hospital-card {
    min-height: 0;
    padding: 22px;
  }

  .network-hospital-card h3 {
    font-size: 26px;
  }

  .procedure-directory > a,
  .procedure-directory > a:nth-child(2n) {
    border-right: 0;
  }

  .relationship-panel > div {
    min-height: 0;
    padding: 26px 22px;
  }

  .hospital-pathway {
    grid-template-columns: 1fr;
  }

  .hospital-pathway li,
  .hospital-pathway li:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .clinician-card {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 46px 1fr;
    gap: 15px;
  }

  .clinician-monogram {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .clinician-card h3 {
    font-size: 24px;
  }

  .partner-price-card,
  .hospital-procedure-grid article,
  .procedure-hospital-grid article {
    min-height: 0;
    padding: 22px;
  }

  .partner-price-topline {
    grid-template-columns: 1fr;
  }

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

  .hospital-facts > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .network-proof-grid strong {
    font-size: 34px;
  }

  .network-proof-grid > div {
    min-height: 112px;
    padding: 22px 16px;
  }

  .city-network-price-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .procedure-questions-layout li p {
    font-size: 16px;
  }
}
