:root {
  --ink: #111;
  --text: #333;
  --muted: #666;
  --line: #dedede;
  --paper: #fff;
  --soft: #f6f6f4;
  --blue: #123f6b;
  --blue-dark: #0c2c4b;
  --line-green: #06c755;
  --content: 1344px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  transform: translateY(-150%);
}

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

.shell {
  width: min(var(--content), calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  min-height: 101px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 72px;
}

.brand-copy {
  color: #444;
  font-size: 11.5px;
  line-height: 1.5;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.1vw, 16px);
  margin-left: auto;
}

.primary-nav a {
  font-size: 11.5px;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}

.header-cta:hover,
.button-blue:hover,
.button-blue:focus-visible {
  background: var(--blue-dark);
}

.button-blue {
  background: var(--blue);
  color: #fff;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: #333;
}

.button-outline {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

.button-line {
  background: var(--line-green);
  color: #fff;
}

.button-line:hover,
.button-line:focus-visible {
  background: #05a948;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  cursor: pointer;
}

.hero {
  padding: 48px 0 40px;
}

.hero-kicker {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.hero h1 {
  max-width: 1300px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-lead {
  margin: 26px 0 0;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
}

.hero-offer {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.hero-price {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.hero-price strong {
  color: var(--ink);
  font-size: 46px;
  font-weight: 900;
}

.hero-offer p {
  margin: 6px 0 0;
  color: #444;
  font-size: 13.5px;
  line-height: 1.8;
}

.hero-offer .button {
  margin-left: auto;
  min-width: 310px;
  min-height: 64px;
  padding: 18px 30px;
}

.section {
  padding-top: 52px;
}

.section-first {
  padding-top: 8px;
}

.section-title,
.section-title-rule {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.45;
}

.section-title {
  font-size: 36px;
}

.section-title-large {
  font-size: 40px;
}

.section-title-rule {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  font-size: 30px;
}

.section-intro {
  max-width: 940px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.95;
}

.data-source {
  margin: 10px 0 0;
  color: #777;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
}

.headline-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #fafaf9;
}

.headline-stat {
  padding: 26px 32px;
}

.headline-stat:first-child {
  padding-left: 0;
  border-right: 1px solid #ddd;
  color: var(--blue);
}

.headline-stat-label {
  font-size: 13px;
}

.headline-stat-value {
  margin-top: 6px;
  color: inherit;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
}

.headline-stat:last-child .headline-stat-value {
  color: #8a8a8a;
}

.headline-stat-value small {
  font-size: 24px;
}

.difference {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.35;
}

.difference-copy {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
}

.difference-copy small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.bars {
  margin-top: 28px;
}

.bar-row + .bar-row {
  margin-top: 18px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  font-size: 13px;
}

.bar-row.muted .bar-label {
  color: var(--muted);
}

.bar-track {
  height: 34px;
  margin-top: 6px;
  background: #eee;
}

.bar-fill {
  height: 100%;
  background: var(--blue);
}

.bar-row.muted .bar-fill {
  background: #b9c2cc;
}

.bar-reference {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  color: #555;
  font-size: 12px;
  line-height: 1.8;
}

.notes {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--soft);
  color: #444;
  font-size: 12px;
  line-height: 1.9;
}

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

.district {
  padding: 22px 24px;
  border-right: 1px solid #ddd;
}

.district:first-child {
  padding-left: 0;
}

.district:last-child {
  padding-right: 0;
  border-right: 0;
}

.district h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
}

.district-households {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11.5px;
}

.district-label {
  margin: 16px 0 0;
  color: var(--blue);
  font-size: 12px;
}

.district-value {
  margin: 0;
  color: var(--blue);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
}

.district-value small {
  font-size: 17px;
}

.district-other-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.district-other-value {
  margin: 0;
  color: #777;
  font-size: 20px;
  font-weight: 700;
}

.district-difference {
  margin: 10px 0 0;
  padding-top: 8px;
  border-top: 1px solid #ddd;
  color: var(--ink);
  font-size: 13px;
}

.data-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid #b0b0b0;
  background: #f7f7f5;
  color: #555;
  font-size: 12.5px;
  line-height: 1.8;
}

.data-contact .button {
  flex: 0 0 auto;
  min-height: 42px;
  padding-block: 9px;
  font-size: 12px;
}

.method-layout,
.price-layout,
.profile-layout,
.voice-layout,
.fit-layout {
  display: flex;
  gap: 40px;
  margin-top: 18px;
}

.method-copy,
.price-copy,
.profile-copy,
.voice-copy,
.fit-column {
  flex: 1;
  min-width: 0;
}

.body-copy {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 2;
}

.body-copy + .body-copy {
  margin-top: 14px;
}

.method-points {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.accent-copy {
  margin: 16px 0 0;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.fine-print {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.75;
}

.method-photo {
  width: min(49%, 660px);
  height: 400px;
  margin: 0;
  overflow: hidden;
}

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

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

.feature {
  padding: 16px 20px;
  border-right: 1px solid #ddd;
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}

.feature p {
  margin: 4px 0 0;
  color: #444;
  font-size: 12.5px;
  line-height: 1.8;
}

.price-copy {
  font-size: 14px;
  line-height: 1.95;
}

.price-copy p {
  margin: 0;
}

.price-copy strong {
  display: block;
  margin-top: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
  color: var(--ink);
  font-size: 20px;
  line-height: 1.7;
}

.price-panel {
  width: min(47%, 620px);
}

.price-panel h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
}

.price-table,
.area-table,
.flow-table,
.voice-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table {
  color: #222;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e2e2e2;
}

.price-table thead th {
  border-top: 2px solid var(--ink);
  border-bottom-color: var(--ink);
  text-align: left;
}

.price-table thead th:last-child,
.price-table td:last-child {
  text-align: right;
}

.price-table tbody tr:last-child > * {
  border-bottom: 2px solid var(--ink);
}

.price-table .main-price {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.anxiety-grid,
.faq-grid {
  columns: 2;
  column-gap: 56px;
  margin-top: 6px;
}

.anxiety-item {
  break-inside: avoid;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #e2e2e2;
  font-size: 13.5px;
  line-height: 1.7;
}

.anxiety-answer {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

.support-list {
  margin-top: 22px;
  border-top: 1px solid var(--ink);
}

.support-item {
  display: grid;
  grid-template-columns: 56px 300px 1fr;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e2e2;
}

.support-item:last-child {
  border-bottom-color: var(--ink);
}

.support-number,
.step-number {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 20px;
  font-weight: 700;
}

.support-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.support-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.section-cta {
  margin-top: 14px;
}

.flyer-service-link {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.flyer-service-link h3 {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.6;
}

.flyer-service-link p {
  max-width: 860px;
  margin: 8px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.85;
}

.flyer-service-link a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.4em;
  margin-top: 6px;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.flyer-service-link a:hover,
.flyer-service-link a:focus-visible {
  color: var(--blue-dark);
  text-decoration-thickness: 2px;
}

.profile-copy {
  font-size: 13.5px;
  line-height: 1.9;
}

.profile-copy p {
  margin: 0;
}

.profile-photo {
  width: 220px;
  height: 260px;
  margin: 0;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.subheading {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 15px;
}

.improvement-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 8px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.improvement-step {
  padding: 14px 16px;
  border-right: 1px solid #e2e2e2;
}

.improvement-step:first-child {
  padding-left: 0;
}

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

.improvement-step span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.improvement-step h4 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13.5px;
}

.improvement-step p {
  margin: 4px 0 0;
  color: #444;
  font-size: 12px;
  line-height: 1.7;
}

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

.work-card {
  margin: 0;
}

.work-image {
  height: 480px;
  overflow: hidden;
  background: #f2f2f2;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-card figcaption {
  margin-top: 8px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
}

.voice-note {
  display: block;
  width: 100%;
  height: auto;
  max-width: 420px;
  margin-top: 12px;
  border: 1px solid #e2e2e2;
}

.voice-meta {
  width: 420px;
}

.voice-table {
  color: var(--text);
  font-size: 12.5px;
}

.voice-table th,
.voice-table td {
  padding: 9px 0;
  border-bottom: 1px solid #e2e2e2;
  text-align: left;
}

.voice-table th {
  width: 90px;
  color: var(--muted);
  font-weight: 400;
}

.fit-layout {
  gap: 48px;
}

.fit-column h2 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-size: 24px;
  line-height: 1.5;
}

.fit-column p {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 2;
}

.fit-column.muted p {
  color: var(--muted);
}

.fit-column .fit-note {
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
}

.area-table,
.flow-table {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.9;
}

.area-table th,
.area-table td,
.flow-table th,
.flow-table td {
  padding: 12px 10px 12px 0;
  border-bottom: 1px solid #e2e2e2;
  text-align: left;
  vertical-align: top;
}

.area-table tr:first-child > * {
  border-top: 1px solid var(--ink);
}

.area-table tr:last-child > *,
.flow-table tr:last-child > * {
  border-bottom: 2px solid var(--ink);
}

.area-table th {
  width: 200px;
  color: var(--ink);
}

.area-extra {
  max-width: 900px;
  margin: 20px 0 0;
  font-size: 13.5px;
  line-height: 1.9;
}

.flow-table .step-number {
  width: 56px;
}

.flow-table .step-title {
  width: 280px;
  color: var(--ink);
  font-weight: 700;
}

.faq-grid {
  margin-top: 8px;
}

.faq-item {
  break-inside: avoid;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}

.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.6;
}

.faq-item p {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.85;
}

.contact-section {
  margin-top: 52px;
  padding: 40px 0 0;
  border-top: 2px solid var(--ink);
}

.contact-intro {
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.9;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-point {
  padding: 14px 20px;
  border-right: 1px solid #e2e2e2;
}

.contact-point:first-child {
  padding-left: 0;
}

.contact-point:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-point h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.contact-point p {
  margin: 4px 0 0;
  color: #444;
  font-size: 12.5px;
  line-height: 1.75;
}

.contact-help {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.contact-method {
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.contact-method h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.contact-method p {
  margin: 6px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
}

.phone-number {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.contact-method .button {
  width: 100%;
  margin-top: 10px;
  padding-block: 11px;
  font-size: 13px;
}

.mail-form-wrap {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.mail-form-wrap h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.form-lead {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.8;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  margin-top: 14px;
}

.field label,
.fieldset-label {
  display: block;
  margin-bottom: 5px;
  color: #444;
  font-size: 12px;
}

.required {
  margin-left: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #999;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(18, 63, 107, 0.2);
  outline-offset: 1px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 8px;
}

.form-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #222;
  font-size: 12.5px;
}

.form-options input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.attachment-note {
  margin: 8px 0 0;
  color: #555;
  font-size: 11.5px;
  line-height: 1.8;
}

.form-submit {
  min-width: 420px;
  margin-top: 16px;
  border: 0;
}

.form-result {
  min-height: 1.8em;
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.privacy-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.privacy-note a {
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 44px;
  padding: 32px 0;
  border-top: 2px solid var(--ink);
  background: var(--soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.9;
}

.footer-inner p,
.footer-inner address {
  margin: 0;
  font-style: normal;
}

.footer-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.footer-links a {
  text-underline-offset: 3px;
}

.copyright {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

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

@media (max-width: 1180px) {
  .header-inner {
    min-height: 82px;
  }

  .brand img {
    height: 58px;
  }

  .brand-copy,
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: 8px;
  }

  .primary-nav.is-open {
    position: fixed;
    z-index: 110;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 8px 24px 24px;
    border-bottom: 2px solid var(--ink);
    background: #fff;
  }

  .primary-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }

  .support-item {
    grid-template-columns: 48px 240px 1fr;
    gap: 18px;
  }

  .work-image {
    height: 390px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .shell {
    width: min(100% - 40px, 720px);
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 54px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .district-grid,
  .feature-grid,
  .improvement-flow {
    grid-template-columns: 1fr 1fr;
  }

  .district,
  .feature,
  .improvement-step {
    border-bottom: 1px solid #ddd;
  }

  .district:nth-child(2n),
  .feature:nth-child(2n),
  .improvement-step:nth-child(2n) {
    padding-right: 0;
    border-right: 0;
  }

  .district:nth-child(2n + 1),
  .feature:nth-child(2n + 1),
  .improvement-step:nth-child(2n + 1) {
    padding-left: 0;
  }

  .district:nth-last-child(-n + 2),
  .feature:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .improvement-step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .method-layout,
  .price-layout,
  .voice-layout,
  .fit-layout {
    flex-direction: column;
  }

  .method-photo,
  .price-panel,
  .voice-meta {
    width: 100%;
  }

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

  .support-item {
    grid-template-columns: 42px 1fr;
  }

  .support-item p {
    grid-column: 2;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 73px;
  }

  .brand img {
    height: 52px;
  }

  .header-cta {
    display: none;
  }

  .primary-nav.is-open {
    inset-block-start: 73px;
    max-height: calc(100vh - 73px);
  }

  .hero {
    padding: 20px 0 0;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 10px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.35;
  }

  .hero-lead {
    margin-top: 16px;
    padding-left: 11px;
    border-left-width: 3px;
    font-size: 17px;
  }

  .hero-offer {
    display: block;
    margin-top: 18px;
    padding: 16px 0 0;
    border-bottom: 0;
  }

  .hero-price {
    font-size: 15px;
  }

  .hero-price strong {
    font-size: 32px;
  }

  .hero-offer p {
    font-size: 12.5px;
  }

  .hero-offer .button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin: 14px 0 0;
    padding: 15px;
    font-size: 14px;
  }

  .section,
  .section-first {
    padding-top: 26px;
  }

  .section-title,
  .section-title-large {
    font-size: 22px;
  }

  .section-title-rule {
    padding-bottom: 8px;
    font-size: 22px;
  }

  .section-intro,
  .body-copy,
  .price-copy,
  .anxiety-answer {
    font-size: 12.5px;
    line-height: 1.9;
  }

  .data-source {
    font-size: 11px;
  }

  .headline-stats {
    grid-template-columns: 1fr;
    margin-inline: -16px;
  }

  .headline-stat,
  .headline-stat:first-child {
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }

  .headline-stat:last-child {
    border-bottom: 0;
  }

  .headline-stat-value {
    font-size: 42px;
  }

  .headline-stat-value small {
    font-size: 16px;
  }

  .difference {
    font-size: 36px;
    line-height: 1.2;
  }

  .difference-copy {
    font-size: 16px;
  }

  .bar-track {
    height: 18px;
  }

  .notes {
    padding: 14px;
    font-size: 11.5px;
  }

  .district-grid,
  .feature-grid,
  .improvement-flow,
  .work-grid,
  .contact-points,
  .contact-methods,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .district,
  .district:first-child,
  .district:last-child,
  .feature,
  .feature:first-child,
  .feature:last-child,
  .improvement-step,
  .improvement-step:first-child,
  .improvement-step:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .district:last-child,
  .feature:last-child,
  .improvement-step:last-child {
    border-bottom: 0;
  }

  .district h3 {
    font-size: 18px;
  }

  .district-value {
    font-size: 34px;
  }

  .data-contact {
    display: block;
    padding: 14px;
  }

  .data-contact .button {
    width: 100%;
    margin-top: 10px;
  }

  .method-layout,
  .price-layout,
  .profile-layout,
  .voice-layout,
  .fit-layout {
    gap: 16px;
  }

  .method-points {
    font-size: 16px;
  }

  .accent-copy {
    font-size: 14px;
  }

  .method-photo {
    height: 280px;
  }

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

  .price-table {
    font-size: 13px;
  }

  .price-table .main-price {
    font-size: 18px;
  }

  .anxiety-grid,
  .faq-grid {
    columns: 1;
  }

  .anxiety-item {
    font-size: 12.5px;
  }

  .support-item {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 15px 0;
  }

  .support-number {
    font-size: 18px;
  }

  .support-item h3 {
    font-size: 15px;
  }

  .support-item p {
    grid-column: 2;
    font-size: 12.5px;
  }

  .section-cta,
  .section-cta .button {
    width: 100%;
  }

  .flyer-service-link {
    width: 100%;
    margin-top: 24px;
    padding-top: 18px;
  }

  .flyer-service-link a {
    width: 100%;
  }

  .profile-layout {
    align-items: flex-start;
  }

  .profile-copy {
    font-size: 12.5px;
  }

  .profile-photo {
    width: 118px;
    height: 150px;
  }

  .improvement-step:last-child {
    grid-column: auto;
  }

  .work-image {
    height: auto;
    max-height: none;
  }

  .work-image img {
    height: auto;
    aspect-ratio: auto;
  }

  .fit-layout {
    margin-top: 0;
  }

  .fit-column {
    margin-top: 26px;
  }

  .fit-column h2 {
    font-size: 20px;
  }

  .fit-column p {
    font-size: 12.5px;
  }

  .area-table,
  .area-table tbody,
  .area-table tr,
  .area-table th,
  .area-table td,
  .flow-table,
  .flow-table tbody,
  .flow-table tr,
  .flow-table th,
  .flow-table td {
    display: block;
    width: 100%;
  }

  .area-table tr,
  .flow-table tr {
    padding: 10px 0;
    border-bottom: 1px solid #e2e2e2;
  }

  .area-table tr:first-child,
  .flow-table tr:first-child {
    border-top: 1px solid var(--ink);
  }

  .area-table tr:last-child,
  .flow-table tr:last-child {
    border-bottom: 2px solid var(--ink);
  }

  .area-table th,
  .area-table td,
  .flow-table th,
  .flow-table td,
  .area-table tr:first-child > *,
  .area-table tr:last-child > *,
  .flow-table tr:last-child > * {
    padding: 2px 0;
    border: 0;
  }

  .flow-table .step-number {
    font-size: 16px;
  }

  .flow-table .step-title {
    margin-top: 2px;
    font-size: 14px;
  }

  .contact-section {
    margin-top: 26px;
    padding-top: 20px;
  }

  .contact-point,
  .contact-point:first-child,
  .contact-point:last-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #e2e2e2;
  }

  .contact-point:last-child {
    border-bottom: 0;
  }

  .contact-methods {
    gap: 0;
  }

  .contact-method {
    padding: 16px 0;
  }

  .phone-number {
    font-size: 26px;
  }

  .field-full {
    grid-column: auto;
  }

  .form-options {
    display: grid;
    gap: 9px;
  }

  .form-options label {
    min-height: 30px;
  }

  .form-submit {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    margin-top: 24px;
    padding: 20px 0;
  }

  .footer-inner {
    font-size: 11.5px;
    line-height: 1.9;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 2px solid var(--ink);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-contact-bar a:first-child {
    background: var(--blue);
  }

  .mobile-contact-bar a:last-child {
    background: var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
/* WordPress companion form: neutralize the browser fieldset box. */
.ecoriver-posting-form-wrap fieldset.field-full {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
/* Latest public posts. Kept visually separate from the service application CTA. */
.lp-blog-section {
  margin-top: 52px;
  padding: 42px 0 46px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.lp-blog-intro {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.9;
}

.lp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ecoriver-post-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8d8d5;
  background: var(--paper);
}

.ecoriver-post-card__image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e8ecef;
}

.ecoriver-post-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ecoriver-post-card__body {
  padding: 18px;
}

.ecoriver-post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.ecoriver-post-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ecoriver-post-card__categories a {
  padding: 2px 7px;
  color: var(--blue);
  background: #edf3f8;
  font-weight: 700;
  text-decoration: none;
}

.ecoriver-post-card__title {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.ecoriver-post-card__title a {
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.ecoriver-post-card__title a:hover,
.ecoriver-post-card__title a:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.ecoriver-post-card__excerpt {
  margin: 9px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.8;
}

.lp-blog-all {
  margin: 22px 0 0;
  text-align: right;
}

.lp-blog-all a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .lp-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-blog-section {
    margin-top: 26px;
    padding: 26px 0;
  }

  .lp-blog-intro {
    font-size: 12.5px;
  }

  .lp-blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .ecoriver-post-card__body {
    padding: 15px;
  }

  .ecoriver-post-card__title {
    font-size: 16px;
  }

  .lp-blog-all {
    margin-top: 14px;
    text-align: left;
  }
}
