

:root {
  --paper: #f4f1e9;
  --paper-deep: #e9e4d8;
  --ink: #132720;
  --ink-soft: #365046;
  --forest: #123f34;
  --forest-2: #1c5748;
  --sage: #8ca99a;
  --mist: #dbe7e1;
  --blue: #dce8eb;
  --clay: #e8d3c0;
  --gold: #b39461;
  --white: #fffefa;
  --line: rgba(19, 39, 32, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 28px 80px rgba(16, 47, 39, 0.1);
  --mx: 50%;
  --my: 20%;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(140, 169, 154, 0.13), transparent 29rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-frame {
  min-height: 100vh;
  overflow: clip;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  height: 2px;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transition: width 120ms linear;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px clamp(18px, 3.5vw, 58px);
  transition: padding 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 233, 0.88);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(1420px, 100%);
  min-height: 62px;
  margin: 0 auto;
  padding: 0 9px 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 254, 250, 0.76);
  box-shadow: 0 12px 50px rgba(22, 57, 47, 0.06);
  backdrop-filter: blur(17px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-mark::after {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--gold);
}

.brand-name {
  display: block;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.brand-description {
  display: block;
  margin-top: -2px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.025em;
  transition: color 220ms ease, background 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--forest);
  background: rgba(140, 169, 154, 0.16);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.independence-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.independence-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4c8a6a;
  box-shadow: 0 0 0 4px rgba(76, 138, 106, 0.12);
}

.button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 740;
  letter-spacing: 0.035em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(18, 63, 52, 0.2);
}

.button-primary:hover {
  background: var(--forest-2);
  box-shadow: 0 18px 38px rgba(18, 63, 52, 0.24);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 254, 250, 0.65);
  color: var(--forest);
}

.button-light:hover {
  background: var(--white);
  box-shadow: 0 12px 28px rgba(18, 63, 52, 0.09);
}

.button-arrow {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 17px;
  height: 1px;
  margin: auto;
  background: var(--ink);
  content: "";
  transition: transform 220ms ease;
}

.menu-lines::before {
  transform: translateY(-5px);
}

.menu-lines::after {
  transform: translateY(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 85;
  inset: 0;
  padding: 110px 24px 30px;
  display: flex;
  flex-direction: column;
  background: rgba(244, 241, 233, 0.98);
  transform: translateY(-105%);
  transition: transform 420ms cubic-bezier(0.75, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a:not(.button) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 2px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(30px, 9vw, 48px);
  letter-spacing: -0.035em;
}

.mobile-menu a:not(.button)::after {
  content: "↗";
  font-family: var(--sans);
  font-size: 16px;
}

.mobile-menu .button {
  margin-top: auto;
}

.page-main {
  min-height: 80vh;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow-container {
  width: min(940px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 155px 0 80px;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(18, 63, 52, 0.1);
  border-radius: 50%;
  content: "";
  animation: orbital 18s linear infinite;
}

.hero::before {
  width: 530px;
  height: 530px;
  top: 120px;
  right: -190px;
}

.hero::after {
  width: 360px;
  height: 360px;
  top: 205px;
  right: -105px;
  animation-direction: reverse;
  animation-duration: 13s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-2);
  font-size: 10px;
  font-weight: 770;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title {
  max-width: 850px;
  margin: 27px 0 26px;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.89;
}

.display-title em {
  color: var(--forest-2);
  font-weight: 400;
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-note {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.hero-note .seal {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
}

.route-card {
  position: relative;
  min-height: 548px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 36px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.route-card::before {
  position: absolute;
  inset: -20%;
  content: "";
  opacity: 0.55;
  background:
    radial-gradient(circle at 18% 25%, rgba(232, 211, 192, 0.34), transparent 20%),
    radial-gradient(circle at 85% 70%, rgba(220, 232, 235, 0.23), transparent 28%);
  animation: breathe 8s ease-in-out infinite;
}

.route-head,
.route-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.route-head span,
.route-foot span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.route-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a7d1b5;
  box-shadow: 0 0 0 6px rgba(167, 209, 181, 0.08);
  animation: pulse 2s ease-in-out infinite;
}

.route-map {
  position: relative;
  z-index: 2;
  min-height: 420px;
  padding: 31px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-map::before {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 25px;
  width: 1px;
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
}

.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 13px;
  align-items: center;
  animation: float-step 7s ease-in-out infinite;
}

.route-step:nth-child(2) { animation-delay: -1.2s; }
.route-step:nth-child(3) { animation-delay: -2.6s; }
.route-step:nth-child(4) { animation-delay: -3.9s; }

.route-node {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(9px);
  font-family: var(--serif);
  font-size: 19px;
}

.route-step strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.1;
}

.route-step small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.route-status {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.truth-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 250, 0.46);
}

.truth-track {
  width: max-content;
  display: flex;
  animation: ticker 29s linear infinite;
}

.truth-set {
  padding: 17px 0;
  display: flex;
  align-items: center;
}

.truth-set span {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: 26px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
}

.truth-set span::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.section {
  position: relative;
  padding: clamp(90px, 11vw, 155px) 0;
}

.section-small {
  padding: 80px 0;
}

.section-tint {
  background: rgba(219, 231, 225, 0.46);
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: clamp(35px, 8vw, 110px);
  align-items: start;
  margin-bottom: 62px;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.section-title em {
  color: var(--forest-2);
  font-weight: 400;
}

.section-dark .section-title em {
  color: #bed4c8;
}

.section-copy {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.75;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

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

.gap-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 254, 250, 0.64);
  transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease;
}

.gap-card:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(-0.5deg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.gap-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(0.5deg);
}

.card-index {
  display: inline-flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-2);
  font-family: var(--serif);
  font-size: 13px;
}

.gap-card h3,
.service-preview h3,
.principle h3 {
  margin: 54px 0 12px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.gap-card p,
.service-preview p,
.principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.raycare-answer {
  margin-top: 14px;
  padding: 29px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: 25px;
  background: var(--forest);
  color: var(--white);
}

.raycare-answer strong {
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.raycare-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

.lens-shell {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 31px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lens-menu {
  padding: 34px;
  border-right: 1px solid var(--line);
  background: rgba(219, 231, 225, 0.42);
}

.lens-menu p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lens-tab {
  width: 100%;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 31px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease, padding 220ms ease;
}

.lens-tab:hover,
.lens-tab.active {
  padding-left: 6px;
  color: var(--forest);
}

.lens-tab span:first-child {
  font-family: var(--serif);
  font-size: 12px;
}

.lens-tab strong {
  font-size: 14px;
}

.lens-tab .tab-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.lens-tab.active .tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.lens-content {
  position: relative;
  padding: clamp(34px, 5vw, 66px);
}

.lens-panel {
  animation: panel-in 420ms ease both;
}

.lens-panel .eyebrow {
  margin-bottom: 25px;
}

.lens-panel h3 {
  max-width: 630px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 59px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.lens-panel > p {
  max-width: 610px;
  margin: 20px 0 32px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.lens-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.lens-point {
  min-height: 90px;
  padding: 16px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.lens-point i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 9px;
  font-style: normal;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.method-step {
  position: relative;
  min-height: 245px;
  padding: 27px 19px;
  border-right: 1px solid var(--line-light);
}

.method-step:last-child {
  border-right: 0;
}

.method-step span {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--serif);
  font-size: 13px;
}

.method-step h3 {
  margin: 79px 0 10px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  line-height: 1.6;
}

.method-step::after {
  position: absolute;
  top: 35px;
  left: 50px;
  right: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.04));
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-preview {
  position: relative;
  min-height: 330px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.64);
  transition: transform 260ms ease, background 260ms ease;
}

.service-preview:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.service-preview::after {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transition: transform 500ms ease;
}

.service-preview:hover::after {
  transform: scale(1.25);
}

.service-preview .service-tag {
  color: var(--forest-2);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-preview h3 {
  margin-top: 80px;
}

.service-preview a {
  position: absolute;
  left: 25px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.principle {
  min-height: 275px;
  padding: 28px;
  background: var(--paper);
}

.principle h3 {
  margin-top: 62px;
}

.cta-panel {
  position: relative;
  padding: clamp(48px, 7vw, 90px);
  overflow: hidden;
  border-radius: 38px;
  background: var(--clay);
}

.cta-panel::before,
.cta-panel::after {
  position: absolute;
  border: 1px solid rgba(18, 63, 52, 0.16);
  border-radius: 50%;
  content: "";
}

.cta-panel::before {
  width: 370px;
  height: 370px;
  top: -190px;
  right: -40px;
}

.cta-panel::after {
  width: 270px;
  height: 270px;
  top: -130px;
  right: 10px;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: end;
}

.cta-content h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cta-side p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  padding: 54px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 50px;
}

.footer-statement {
  max-width: 580px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.15;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  margin: 8px 0;
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  line-height: 1.6;
}

.page-hero {
  padding: 180px 0 90px;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.page-title {
  max-width: 950px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.8vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.page-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.starter-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.7);
}

.starter-card span {
  color: var(--forest-2);
  font-family: var(--serif);
  font-size: 13px;
}

.starter-card h2 {
  margin: 82px 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.starter-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.mobile-quick-contact {
  display: none;
}

.reveal {
  animation: reveal-up 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.72); }
}

@keyframes orbital {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, -2%, 0) scale(1.08); }
}

@keyframes float-step {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: grid; place-items: center; }
  .independence-chip { display: none; }
  .nav-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr 0.82fr; gap: 45px; }
  .gap-grid { grid-template-columns: repeat(3, 1fr); }
  .service-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .starter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container,
  .narrow-container { width: min(100% - 30px, 1320px); }
  .site-header { padding: 10px 12px; }
  .nav-shell { min-height: 56px; padding-left: 10px; }
  .brand-description { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: auto; padding: 130px 0 65px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .display-title { font-size: clamp(58px, 18vw, 82px); }
  .hero-copy { font-size: 16px; }
  .route-card { min-height: 490px; border-radius: 27px; }
  .route-map { min-height: 365px; }
  .section { padding: 86px 0; }
  .section-small { padding: 64px 0; }
  .section-heading,
  .page-hero-grid { grid-template-columns: 1fr; gap: 27px; }
  .section-heading { margin-bottom: 40px; }
  .section-title { font-size: clamp(43px, 13vw, 64px); }
  .gap-grid { grid-template-columns: 1fr; }
  .gap-card { min-height: 250px; }
  .gap-card h3 { margin-top: 40px; }
  .raycare-answer { grid-template-columns: 1fr; gap: 10px; }
  .raycare-answer strong { font-size: 31px; }
  .lens-shell { grid-template-columns: 1fr; }
  .lens-menu { border-right: 0; border-bottom: 1px solid var(--line); padding: 23px; }
  .lens-menu p { margin-bottom: 12px; }
  .lens-tabs { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 4px; scrollbar-width: none; }
  .lens-tab { min-width: max-content; width: auto; padding: 9px 12px; display: flex; border: 1px solid var(--line); border-radius: 999px; }
  .lens-tab span:first-child,
  .lens-tab .tab-arrow { display: none; }
  .lens-tab:hover,
  .lens-tab.active { padding-left: 12px; background: var(--forest); color: var(--white); }
  .lens-content { padding: 31px 23px 28px; }
  .lens-panel h3 { font-size: 43px; }
  .method-strip { grid-template-columns: 1fr; }
  .method-step { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .method-step h3 { margin-top: 36px; }
  .method-step::after { display: none; }
  .service-preview-grid,
  .principle-grid,
  .starter-grid { grid-template-columns: 1fr; }
  .service-preview { min-height: 285px; }
  .cta-panel { padding: 39px 25px; border-radius: 27px; }
  .cta-content { grid-template-columns: 1fr; gap: 33px; }
  .cta-content h2 { font-size: 49px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 140px 0 70px; }
  .page-title { font-size: clamp(58px, 17vw, 85px); }
  .mobile-quick-contact {
    position: fixed;
    z-index: 80;
    right: 13px;
    bottom: 13px;
    min-width: 137px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(18,63,52,.28);
    font-size: 10px;
    font-weight: 760;
    letter-spacing: .04em;
  }
}

@media (max-width: 540px) {
  .display-title { letter-spacing: -0.065em; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .route-card { padding: 19px; }
  .route-step { grid-template-columns: 46px 1fr; }
  .route-node { width: 46px; height: 46px; }
  .route-status { display: none; }
  .route-map::before { left: 22px; }
  .lens-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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

/* Method page */
.method-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 31px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.method-explorer-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(219, 231, 225, 0.35);
}

.method-explorer-nav button {
  min-height: 92px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  transition: background 220ms ease, color 220ms ease;
}

.method-explorer-nav button:last-child { border-right: 0; }
.method-explorer-nav button.active { background: var(--forest); color: var(--white); }
.method-explorer-nav button span { font-family: var(--serif); font-size: 12px; opacity: 0.65; }
.method-explorer-nav button strong { font-size: 13px; }

.method-explorer-panel {
  min-height: 460px;
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
  animation: panel-in 420ms ease both;
}

.method-panel-copy h2 {
  max-width: 670px;
  margin: 26px 0 20px;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 69px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.method-panel-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.micro-label {
  display: block;
  color: var(--forest-2);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-deliverables { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.method-deliverables .micro-label { margin-bottom: 14px; }
.deliverable { min-height: 57px; display: grid; grid-template-columns: 27px 1fr auto; gap: 10px; align-items: center; border-top: 1px solid var(--line); font-size: 12px; }
.deliverable i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--forest); font-family: var(--serif); font-size: 10px; font-style: normal; }
.deliverable b { color: var(--forest-2); font-size: 10px; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-light); border-radius: 27px; overflow: hidden; }
.city-grid article { min-height: 330px; padding: 30px; border-right: 1px solid var(--line-light); background: rgba(255,255,255,.03); }
.city-grid article:last-child { border-right: 0; }
.city-grid span { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.city-grid h3 { margin: 104px 0 13px; font-family: var(--serif); font-size: 31px; font-weight: 400; line-height: 1; }
.city-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.7; }

.compare-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.compare-grid article { min-height: 235px; padding: 23px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,254,250,.56); transition: transform 250ms ease, background 250ms ease; }
.compare-grid article:hover { transform: translateY(-5px); background: var(--white); }
.compare-grid article > span { color: var(--forest-2); font-family: var(--serif); font-size: 12px; }
.compare-grid h3 { margin: 57px 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.compare-grid p { margin: 0; color: var(--ink-soft); font-size: 11px; line-height: 1.65; }

.boundary-panel { padding: clamp(35px, 6vw, 75px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); border: 1px solid var(--line); border-radius: 30px; background: var(--white); }
.boundary-panel h2 { max-width: 500px; margin: 27px 0 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 68px); font-weight: 400; letter-spacing: -.05em; line-height: .98; }
.boundary-list p { margin: 0; padding: 20px 0; display: grid; grid-template-columns: .55fr 1.45fr; gap: 25px; border-top: 1px solid var(--line); }
.boundary-list p:first-child { border-top: 0; }
.boundary-list strong { color: var(--forest); font-size: 11px; }
.boundary-list span { color: var(--ink-soft); font-size: 12px; line-height: 1.7; }

/* Services */
.service-accordion { border-top: 1px solid var(--line); }
.service-row { border-bottom: 1px solid var(--line); }
.service-row > button { width: 100%; min-height: 112px; padding: 21px 0; display: grid; grid-template-columns: 115px .65fr 1fr 40px; gap: 20px; align-items: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; }
.service-code { color: var(--forest-2); font-size: 9px; font-weight: 750; letter-spacing: .13em; }
.service-name { font-family: var(--serif); font-size: clamp(29px, 3vw, 42px); letter-spacing: -.04em; }
.service-line { max-width: 520px; color: var(--ink-soft); font-size: 12px; }
.service-toggle { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-family: var(--serif); font-size: 20px; transition: background 220ms ease, color 220ms ease; }
.service-row.open .service-toggle { background: var(--forest); color: var(--white); }
.service-detail { padding: 6px 60px 36px 135px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; animation: panel-in 350ms ease both; }
.service-detail p { max-width: 430px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.service-detail ul { margin: 14px 0 0; padding: 0; list-style: none; }
.service-detail li { padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.service-detail li::before { margin-right: 9px; color: var(--forest-2); content: "✓"; }

.payment-map { padding: clamp(30px, 5vw, 65px); display: grid; grid-template-columns: .55fr .7fr 1fr; gap: 25px; align-items: center; border: 1px solid var(--line); border-radius: 30px; background: var(--white); }
.payment-patient { min-height: 180px; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 22px; background: var(--forest); color: var(--white); }
.payment-patient span, .payment-destinations span { color: rgba(255,255,255,.56); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.payment-patient strong { margin-top: 5px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.payment-lines { display: grid; gap: 35px; }
.payment-lines div { display: flex; align-items: center; gap: 10px; }
.payment-lines span { width: 100%; color: var(--ink-soft); font-size: 9px; text-align: right; text-transform: uppercase; }
.payment-lines i { font-size: 18px; font-style: normal; }
.payment-destinations { display: grid; gap: 8px; }
.payment-destinations div { min-height: 91px; padding: 16px 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); }
.payment-destinations span { grid-column: 1 / -1; color: var(--forest-2); }
.payment-destinations strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.payment-destinations small { color: var(--ink-soft); font-size: 9px; }
.zero-commission { grid-column: 1 / -1; margin-top: 15px; padding: 20px 24px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 16px; }
.zero-commission span { font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.zero-commission strong { color: var(--forest); font-family: var(--serif); font-size: 35px; font-weight: 400; }
.zero-commission small { color: var(--ink-soft); font-size: 10px; text-align: right; }

.scope-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line-light); border-radius: 25px; overflow: hidden; }
.scope-grid article { min-height: 285px; padding: 23px; border-right: 1px solid var(--line-light); }
.scope-grid article:last-child { border-right: 0; }
.scope-grid span { color: rgba(255,255,255,.38); font-family: var(--serif); font-size: 12px; }
.scope-grid h3 { margin: 83px 0 11px; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1; }
.scope-grid p { margin: 0; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.6; }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 35px 23px 0; cursor: pointer; color: var(--ink); font-family: var(--serif); font-size: 25px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { float: right; content: "+"; font-family: var(--sans); font-size: 16px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: -4px 0 24px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }

/* Intake */
.start-intro span { display: inline-block; margin-top: 18px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest-2); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.intake-shell { display: grid; grid-template-columns: 1.3fr .7fr; overflow: hidden; border: 1px solid var(--line); border-radius: 31px; background: var(--white); box-shadow: var(--shadow); }
.case-form { padding: clamp(30px, 5vw, 65px); border-right: 1px solid var(--line); }
.form-head { display: flex; justify-content: space-between; gap: 25px; align-items: flex-start; }
.form-head h2 { max-width: 670px; margin: 17px 0 0; font-family: var(--serif); font-size: clamp(42px, 4.6vw, 64px); font-weight: 400; letter-spacing: -.05em; line-height: .98; }
.form-seal { flex: 0 0 auto; width: 84px; height: 84px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest-2); font-size: 9px; font-weight: 750; line-height: 1.25; text-align: center; text-transform: uppercase; transform: rotate(7deg); }
.form-intro { max-width: 650px; margin: 25px 0 44px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.form-section-label { margin: 36px 0 17px; padding-bottom: 9px; display: flex; gap: 12px; border-bottom: 1px solid var(--line); color: var(--forest); font-size: 10px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.form-section-label span { font-family: var(--serif); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field-wide { grid-column: 1 / -1; }
.field-grid label > span { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 9px; font-weight: 720; letter-spacing: .05em; text-transform: uppercase; }
.field-grid input, .field-grid select { width: 100%; height: 55px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: var(--paper); color: var(--ink); font-size: 12px; transition: border 200ms ease, box-shadow 200ms ease; }
.field-grid input:focus, .field-grid select:focus { border-color: var(--forest-2); box-shadow: 0 0 0 4px rgba(28,87,72,.08); }
.check-row { margin-top: 14px; padding: 15px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--line); border-radius: 12px; color: var(--ink-soft); font-size: 10px; line-height: 1.55; cursor: pointer; }
.check-row input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--forest); }
.check-row strong { color: var(--ink); }
.form-submit { width: 100%; margin-top: 19px; }
.intake-aside { position: relative; padding: 35px; display: flex; flex-direction: column; gap: 30px; background: var(--forest); color: var(--white); }
.privacy-orbit { position: relative; min-height: 290px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; }
.privacy-orbit::before, .privacy-orbit::after { position: absolute; border: 1px solid var(--line-light); border-radius: 50%; content: ""; }
.privacy-orbit::before { width: 72%; height: 72%; }
.privacy-orbit::after { width: 43%; height: 43%; }
.privacy-orbit i { position: relative; z-index: 2; width: 65px; height: 65px; display: grid; place-items: center; border-radius: 50%; background: var(--clay); color: var(--forest); font-family: var(--serif); font-size: 29px; font-style: normal; }
.privacy-orbit span, .privacy-orbit small { position: absolute; z-index: 2; color: rgba(255,255,255,.56); font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.privacy-orbit span { top: 31px; }
.privacy-orbit small { bottom: 31px; }
.intake-rules .micro-label { color: #bed4c8; }
.intake-rules ul { margin: 15px 0 0; padding: 0; list-style: none; }
.intake-rules li { padding: 11px 0; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.66); font-size: 10px; }
.intake-rules li::before { margin-right: 8px; color: #bed4c8; content: "✓"; }
.prepared-card { margin-top: auto; padding: 22px; border-radius: 18px; background: var(--clay); color: var(--ink); animation: panel-in 420ms ease both; }
.prepared-card h3 { margin: 11px 0 8px; font-family: var(--serif); font-size: 27px; font-weight: 400; line-height: 1; }
.prepared-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: 10px; line-height: 1.65; }
.prepared-card .button { width: 100%; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fit-card { min-height: 370px; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.fit-card > span { display: inline-block; padding: 6px 10px; border-radius: 999px; color: var(--forest); font-size: 9px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.fit-yes > span { background: var(--mist); }
.fit-no > span { background: var(--clay); }
.fit-card ul { margin: 70px 0 0; padding: 0; list-style: none; }
.fit-card li { padding: 12px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.fit-card li::before { margin-right: 9px; color: var(--forest-2); content: "○"; }
.emergency-note { padding: 26px; display: grid; grid-template-columns: .35fr 1.65fr; gap: 40px; border: 1px solid #cdaea5; border-radius: 19px; background: #f1dfda; }
.emergency-note span { color: #72483e; font-size: 9px; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.emergency-note p { margin: 0; color: #694c44; font-size: 12px; line-height: 1.7; }

@media (max-width: 900px) {
  .method-explorer-nav { display: flex; overflow-x: auto; scrollbar-width: none; }
  .method-explorer-nav button { min-width: 135px; min-height: 70px; }
  .method-explorer-panel { grid-template-columns: 1fr; }
  .city-grid, .compare-grid { grid-template-columns: 1fr 1fr; }
  .city-grid article:nth-child(2) { border-right: 0; }
  .city-grid article:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line-light); }
  .boundary-panel, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .service-row > button { grid-template-columns: 78px 1fr 35px; }
  .service-line { grid-column: 2; }
  .service-toggle { grid-column: 3; grid-row: 1 / span 2; }
  .service-detail { padding-left: 98px; grid-template-columns: 1fr; gap: 20px; }
  .payment-map { grid-template-columns: 1fr; }
  .payment-lines { display: none; }
  .zero-commission { grid-column: auto; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid article { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .scope-grid article:last-child { border-bottom: 0; }
  .scope-grid h3 { margin-top: 45px; }
  .intake-shell { grid-template-columns: 1fr; }
  .case-form { border-right: 0; border-bottom: 1px solid var(--line); }
  .privacy-orbit { min-height: 260px; max-width: 330px; width: 100%; margin: auto; }
}

@media (max-width: 620px) {
  .method-explorer-panel { padding: 31px 22px; }
  .method-panel-copy h2 { font-size: 43px; }
  .city-grid, .compare-grid, .fit-grid { grid-template-columns: 1fr; }
  .city-grid article, .city-grid article:nth-child(2), .city-grid article:last-child { grid-column: auto; border-right: 0; border-bottom: 1px solid var(--line-light); border-top: 0; }
  .city-grid h3 { margin-top: 70px; }
  .boundary-list p { grid-template-columns: 1fr; gap: 6px; }
  .service-row > button { grid-template-columns: 1fr 37px; gap: 8px; }
  .service-code { grid-column: 1; }
  .service-name { grid-column: 1; }
  .service-line { grid-column: 1; }
  .service-toggle { grid-column: 2; grid-row: 1 / span 3; }
  .service-detail { padding: 8px 0 30px; }
  .zero-commission { grid-template-columns: 1fr auto; }
  .zero-commission small { grid-column: 1 / -1; text-align: left; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .form-seal { display: none; }
  .intake-aside { padding: 24px; }
  .fit-card { min-height: 330px; }
  .emergency-note { grid-template-columns: 1fr; gap: 10px; }
}
