:root {
  --color-background: #f5efe6;
  --color-surface: #fffdfa;
  --color-text: #25231f;
  --color-muted: #6f675d;
  --color-primary: #1f4738;
  --color-primary-dark: #10271f;
  --color-accent: #c7663d;
  --color-accent-dark: #a84d2a;
  --color-border: #e6dccd;
  --color-soft-green: #e8f0ea;
  --color-soft-terracotta: #f8e9df;
  --shadow-soft: 0 22px 60px rgba(35, 29, 23, 0.12);
  --shadow-small: 0 12px 28px rgba(35, 29, 23, 0.07);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background:
    linear-gradient(180deg, #fbf7ef 0%, var(--color-background) 36%, #f9f3ea 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-accent-dark);
}

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

:focus-visible {
  outline: 3px solid rgba(217, 107, 59, 0.55);
  outline-offset: 4px;
}

.noscript {
  margin: 0;
  padding: 12px 20px;
  color: #ffffff;
  background: var(--color-primary-dark);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 253, 250, 0.88);
  border-bottom: 1px solid rgba(230, 220, 205, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand__name {
  display: block;
  color: var(--color-primary-dark);
  font-weight: 800;
  line-height: 1.35;
}

.brand__note {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-primary-dark);
  font-size: 0.93rem;
  font-weight: 700;
}

.global-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-cta {
  min-width: 142px;
  justify-content: center;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
}

.nav-cta:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.menu-button {
  display: none;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 720px;
  margin: 0;
  padding: 118px max(24px, calc((100vw - var(--container)) / 2)) 74px;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-primary-dark);
}

.hero.section {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 27, 22, 0.92) 0%, rgba(18, 35, 29, 0.76) 39%, rgba(18, 35, 29, 0.3) 72%, rgba(18, 35, 29, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 27, 22, 0.72) 0%, rgba(12, 27, 22, 0.1) 52%, rgba(12, 27, 22, 0.32) 100%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: none;
}

.hero .eyebrow {
  color: #f2a27c;
}

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

h1,
h2,
h3 {
  color: var(--color-primary-dark);
  line-height: 1.35;
}

h1,
h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 1.2;
  text-wrap: balance;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 2;
}

.hero__actions,
.final-cta__box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 170px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.button--accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), #b85732);
  box-shadow: var(--shadow-small);
}

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

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-concept {
  max-width: 650px;
  margin: 20px 0 0;
  padding: 0 18px;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-left: 2px solid rgba(242, 162, 124, 0.8);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-concept[open] {
  background: rgba(255, 253, 250, 0.1);
}

.hero-concept summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
}

.hero-concept summary::-webkit-details-marker {
  display: none;
}

.hero-concept summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-concept[open] summary::after {
  border-color: #f2a27c;
  transform: translateY(4px) rotate(-135deg);
}

.hero-concept__title,
.hero-concept__hint {
  display: block;
  line-height: 1.55;
}

.hero-concept__title {
  font-size: 1rem;
  font-weight: 800;
}

.hero-concept__hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-concept__body {
  display: grid;
  gap: 12px;
  padding: 4px 0 18px;
}

.hero-concept__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.9;
}

.hero-concept__lead,
.hero-concept__closing {
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1rem !important;
  font-weight: 600;
  line-height: 1.9 !important;
}

.hero-concept__closing {
  margin-top: 4px !important;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 650px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  background: #f2a27c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 162, 124, 0.14);
}

.hero-panel {
  align-self: end;
  max-width: 640px;
  margin-top: 52px;
  padding: 18px;
  background: rgba(255, 253, 250, 0.88);
  border: 1px solid rgba(255, 253, 250, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-panel__label,
.hero-panel__copy {
  margin: 0;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.hero-panel__copy {
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-panel__group {
  margin-top: 12px;
  padding: 12px;
  background: rgba(31, 71, 56, 0.06);
  border: 1px solid rgba(31, 71, 56, 0.1);
  border-radius: var(--radius);
}

.hero-panel__group--route {
  margin-top: 0;
  background: #fff7f0;
  border-color: rgba(199, 102, 61, 0.24);
}

.hero-panel__group-title {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel__connector {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 8px auto;
  color: #ffffff;
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

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

.channel-grid span,
.hero-panel__path span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--color-primary-dark);
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(31, 71, 56, 0.08);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.hero-panel__path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.hero-panel__path span {
  color: var(--color-primary-dark);
  background: #fffdfa;
  border-color: rgba(199, 102, 61, 0.32);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.case-note h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: 2.12rem;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-heading p,
.case-note p,
.final-cta p {
  color: var(--color-muted);
  text-wrap: pretty;
}

.problems {
  padding-top: 96px;
}

.path-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.path-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.path-card::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -86px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(31, 71, 56, 0.1);
  border-radius: 50%;
}

.path-card--leak {
  background: #f8f1e9;
  border-color: #e5d8c9;
  box-shadow: 0 8px 22px rgba(35, 29, 23, 0.04);
}

.path-card--leak::before {
  border-color: rgba(111, 103, 93, 0.16);
  background: rgba(111, 103, 93, 0.05);
}

.path-card--connect {
  color: #ffffff;
  background: linear-gradient(135deg, #10271f, #244c3d 72%, #315946);
  border-color: rgba(31, 71, 56, 0.32);
  box-shadow: var(--shadow-soft);
}

.path-card--connect::before {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.path-card__label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  padding: 4px 12px;
  color: var(--color-primary-dark);
  background: var(--color-soft-green);
  border: 1px solid rgba(31, 71, 56, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.path-card--leak .path-card__label {
  color: #6f675d;
  background: #eee4d8;
  border-color: rgba(111, 103, 93, 0.14);
}

.path-card--connect .path-card__label {
  color: var(--color-primary-dark);
  background: #f6b28f;
  border-color: rgba(246, 178, 143, 0.22);
}

.path-card h3 {
  position: relative;
  margin-bottom: 18px;
  font-size: 1.34rem;
}

.path-card--connect h3 {
  color: #ffffff;
}

.path-chain {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-chain li {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 12px;
  color: var(--color-primary-dark);
  background: rgba(255, 253, 250, 0.9);
  border: 1px solid rgba(31, 71, 56, 0.12);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.45;
}

.path-chain li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(31, 71, 56, 0.4);
  border-right: 2px solid rgba(31, 71, 56, 0.4);
  transform: translateY(-50%) rotate(45deg);
}

.path-chain--broken li {
  color: #6f675d;
  background: rgba(255, 253, 250, 0.66);
  border-color: rgba(111, 103, 93, 0.14);
}

.path-chain--broken li:not(:last-child)::after {
  border-color: rgba(111, 103, 93, 0.28);
}

.path-chain--broken li:last-child {
  color: #ffffff;
  background: #6f675d;
  border-color: #6f675d;
}

.path-card--connect .path-chain li {
  color: var(--color-primary-dark);
  background: #fffdfa;
  border-color: rgba(246, 178, 143, 0.24);
}

.path-card--connect .path-chain li:not(:last-child)::after {
  border-color: rgba(246, 178, 143, 0.82);
}

.path-card--connect .path-chain li:last-child {
  color: #ffffff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.path-summary {
  max-width: 860px;
  margin: 22px 0 0;
  padding: 18px 0 0 18px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  font-weight: 700;
  line-height: 1.85;
}

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

.problem-card,
.service-item,
.support-card,
.route-step,
.timeline li,
.faq details,
.case-note,
.final-cta {
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.problem-card {
  position: relative;
  min-height: 184px;
  padding: 22px 20px 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(35, 29, 23, 0.055);
}

.problem-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 104px;
  height: 104px;
  background: rgba(199, 102, 61, 0.08);
  border: 1px solid rgba(199, 102, 61, 0.18);
  border-radius: 50%;
}

.problem-card__number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.problem-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.problem-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.solution,
.running-cost {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: #fffaf3;
}

.web-hub {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.web-hub__sources,
.web-hub__center,
.web-hub__answers article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.web-hub__sources {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
  background: #fffdfa;
}

.web-hub__sources p {
  margin: 0 0 4px;
  color: var(--color-primary-dark);
  font-weight: 900;
}

.web-hub__sources span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--color-primary-dark);
  background: var(--color-soft-green);
  border-radius: var(--radius);
  font-weight: 850;
}

.web-hub__center {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary-dark), #234838);
  overflow: hidden;
}

.web-hub__center::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.web-hub__center span,
.web-hub__center strong,
.web-hub__center p {
  position: relative;
  z-index: 1;
}

.web-hub__center span {
  color: #f6b28f;
  font-size: 0.84rem;
  font-weight: 900;
}

.web-hub__center strong {
  display: block;
  margin: 8px 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 2rem;
  line-height: 1.25;
}

.web-hub__center p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.web-hub__answers {
  display: grid;
  gap: 10px;
}

.web-hub__answers article {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: rgba(255, 253, 250, 0.94);
}

.web-hub__answers article::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 4px;
  height: 34px;
  background: var(--color-accent);
  border-radius: 0 999px 999px 0;
}

.web-hub__answers span {
  display: block;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.web-hub__answers strong {
  display: block;
  margin: 2px 0 4px;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
}

.web-hub__answers p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.route-infographic {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.route-infographic__entry,
.cost-grid {
  display: grid;
  gap: 10px;
}

.route-infographic__entry {
  align-content: start;
  padding: 24px;
  background: linear-gradient(135deg, #fffdfa, #f8e9df);
  border: 1px solid #efd6ca;
  border-radius: var(--radius);
}

.route-infographic__entry p {
  margin: 0 0 8px;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
  font-weight: 900;
}

.route-tags,
.cost-grid {
  display: grid;
  gap: 10px;
}

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

.route-tags span,
.cost-grid span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 14px;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 800;
}

.route-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-step {
  position: relative;
  min-height: 250px;
  padding: 24px 18px 22px;
  border-radius: 0;
  box-shadow: none;
}

.route-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.route-step:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.route-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -7px;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(199, 102, 61, 0.55);
  border-right: 2px solid rgba(199, 102, 61, 0.55);
  transform: rotate(45deg);
  background: #fffaf3;
}

.route-step__number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  font-weight: 900;
}

.route-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
}

.route-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
  padding: 24px;
  background: linear-gradient(135deg, #10271f, #214436);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-overview p {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1.44rem;
  font-weight: 600;
  line-height: 1.55;
}

.service-overview__line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.service-overview__line span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 54px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-weight: 900;
}

.service-overview__line span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  width: 8px;
  border-top: 2px dotted rgba(246, 178, 143, 0.82);
}

.relationship-infographic {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #10271f, #244c3d 72%, #315946);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.relationship-infographic__heading {
  display: grid;
  gap: 4px;
  max-width: 760px;
}

.relationship-infographic__heading .eyebrow {
  margin: 0;
  color: #f6b28f;
}

.relationship-infographic__heading h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1.7rem;
  line-height: 1.42;
}

.relationship-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.relationship-flow article {
  position: relative;
  min-height: 214px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.relationship-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -7px;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(246, 178, 143, 0.8);
  border-right: 2px solid rgba(246, 178, 143, 0.8);
  transform: rotate(45deg);
  background: #244c3d;
}

.relationship-flow span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 9px;
  color: #f6b28f;
  background: rgba(246, 178, 143, 0.12);
  border: 1px solid rgba(246, 178, 143, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.relationship-flow strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.14rem;
}

.relationship-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.72;
}

.relationship-flow__result {
  background: linear-gradient(135deg, rgba(199, 102, 61, 0.82), rgba(168, 77, 42, 0.9)) !important;
  border-color: rgba(246, 178, 143, 0.46) !important;
}

.relationship-flow__result span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.service-extra {
  margin-top: 18px;
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.service-extra strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary-dark);
  font-size: 1.04rem;
}

.service-extra p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
}

.service-item {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 22px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -56px;
  right: -44px;
  width: 132px;
  height: 132px;
  background: rgba(31, 71, 56, 0.06);
  border: 1px solid rgba(31, 71, 56, 0.12);
  border-radius: 50%;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(35, 29, 23, 0.1);
}

.service-item__tag {
  position: relative;
  z-index: 1;
  justify-self: start;
  padding: 4px 10px;
  color: var(--color-primary-dark);
  background: var(--color-soft-green);
  border: 1px solid rgba(31, 71, 56, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-item h3,
.support-card h3,
.timeline h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  text-wrap: balance;
}

.service-item h3,
.service-item p,
.service-item ul,
.service-item__price {
  position: relative;
  z-index: 1;
}

.service-item__price,
.support-card__price,
.plan__price {
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.service-item__price,
.support-card__price {
  font-size: 1.16rem;
}

.note,
.section-note {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  border-radius: 50%;
}

.pricing {
  padding-top: 0;
}

.plan {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, #10271f, #244c3d 72%, #315946);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.plan h2,
.plan p,
.plan li {
  color: #ffffff;
}

.plan .eyebrow {
  color: #f6b28f;
}

.plan__price {
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.25;
}

.plan__details {
  padding: 22px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

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

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

.support-card {
  padding: 28px;
}

.support-card--highlight {
  border-color: rgba(199, 102, 61, 0.35);
  background: #fff8f3;
}

.cost-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-note {
  width: min(var(--container), 100%);
  margin: 20px auto 0;
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 240px;
  padding: 22px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.case-note {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  padding: 34px;
  background: linear-gradient(135deg, #e8f0ea, #fff8ef);
  box-shadow: none;
}

.faq {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  position: relative;
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  color: var(--color-primary-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 900;
}

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

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-muted);
}

.privacy-page {
  max-width: 920px;
}

.privacy-page h1 {
  margin-bottom: 18px;
  font-size: 2.4rem;
}

.privacy-page__lead {
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content section {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.privacy-content h2 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.privacy-content p,
.privacy-content ul {
  margin-bottom: 0;
  color: var(--color-muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--color-primary-dark), #203f33);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta .eyebrow {
  color: #f6b28f;
}

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

.final-cta__box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 46px max(20px, calc((100vw - var(--container)) / 2)) 94px;
  color: rgba(255, 255, 255, 0.84);
  background: #111f19;
}

.site-footer .brand__name {
  color: #ffffff;
}

.site-footer p {
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 253, 250, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  color: var(--color-primary-dark);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.mobile-cta__line {
  color: #ffffff !important;
  background: var(--color-accent);
}

.floating-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 172px;
  padding: 12px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent), #b85732);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.floating-line:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

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

  .path-compare,
  .route-infographic,
  .web-hub,
  .service-overview,
  .plan,
  .case-note,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .route-steps,
  .relationship-flow,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .route-step,
  .route-step:first-child,
  .route-step:last-child {
    border-radius: var(--radius);
  }

  .route-step:not(:last-child)::after {
    display: none;
  }

  .relationship-flow article:not(:last-child)::after {
    display: none;
  }

  .web-hub__center {
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 20px;
  }

  .brand__note {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 12px;
    color: var(--color-primary-dark);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 900;
  }

  .menu-button__line {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-button__line::before,
  .menu-button__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .menu-button__line::before {
    top: -6px;
  }

  .menu-button__line::after {
    top: 6px;
  }

  .global-nav {
    position: fixed;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: rgba(247, 244, 238, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

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

  .privacy-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  .privacy-nav a {
    min-height: 44px;
    border-bottom: 0;
  }

  .privacy-nav a:first-child {
    display: none;
  }

  .global-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--color-border);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    margin-top: 14px;
    border-bottom: 0;
  }

  .privacy-nav .nav-cta {
    margin-top: 0;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding: 66px 0;
  }

  .hero {
    min-height: 690px;
    padding: 88px 20px 46px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 20, 18, 0.94) 0%, rgba(17, 20, 18, 0.78) 58%, rgba(17, 20, 18, 0.5) 100%),
      linear-gradient(0deg, rgba(17, 20, 18, 0.82) 0%, rgba(17, 20, 18, 0.28) 60%, rgba(17, 20, 18, 0.38) 100%);
  }

  .hero__image {
    object-position: 68% center;
  }

  .hero h1 {
    font-size: 2.34rem;
    line-height: 1.28;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-concept {
    margin-top: 16px;
    padding: 0 14px;
  }

  .hero-concept__body p {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .hero-panel {
    margin-top: 42px;
    padding: 14px;
  }

  .problems {
    padding-top: 54px;
  }

  .problems .section-heading {
    margin-bottom: 20px;
  }

  .problems .section-heading h2 {
    max-width: 11em;
    margin-bottom: 10px;
    font-size: 1.48rem;
    line-height: 1.45;
  }

  .problems .section-heading p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .path-compare {
    gap: 12px;
    margin-bottom: 18px;
  }

  .path-card {
    padding: 18px;
  }

  .path-card h3 {
    margin-bottom: 14px;
    font-size: 1.1rem;
    line-height: 1.45;
  }

  .path-chain {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .path-chain li {
    min-height: 54px;
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .path-chain li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -9px;
    width: 9px;
    height: 9px;
    border-top: 0;
    border-right: 2px solid rgba(31, 71, 56, 0.42);
    border-bottom: 2px solid rgba(31, 71, 56, 0.42);
    transform: translateX(50%) rotate(45deg);
  }

  .path-chain--broken li:not(:last-child)::after {
    border-right-color: rgba(111, 103, 93, 0.34);
    border-bottom-color: rgba(111, 103, 93, 0.34);
  }

  .path-card--connect .path-chain li:not(:last-child)::after {
    border-right-color: rgba(246, 178, 143, 0.86);
    border-bottom-color: rgba(246, 178, 143, 0.86);
  }

  .path-summary {
    margin-top: 18px;
    padding: 14px 0 0 14px;
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .problem-card {
    min-height: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 6px 14px;
    padding: 16px;
    background: rgba(255, 253, 250, 0.72);
    border-color: rgba(31, 71, 56, 0.12);
    border-radius: 6px;
    box-shadow: none;
  }

  .problem-card::before {
    display: none;
  }

  .problem-card__number {
    grid-row: span 2;
    width: 32px;
    height: 32px;
    margin: 2px 0 0;
    font-size: 0.76rem;
  }

  .problem-card h3 {
    margin: 0;
    font-size: 1rem;
  }

  .problem-card p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .channel-grid,
  .hero-panel__path,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .check-list--columns,
  .route-steps,
  .relationship-flow,
  .service-list {
    grid-template-columns: 1fr;
  }

  .web-hub {
    gap: 12px;
  }

  .web-hub__sources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .web-hub__sources p {
    grid-column: 1 / -1;
  }

  .web-hub__center {
    min-height: 180px;
    padding: 24px;
  }

  .web-hub__center strong {
    font-size: 1.62rem;
  }

  .web-hub__answers {
    gap: 8px;
  }

  .web-hub__answers article {
    padding: 15px 15px 15px 18px;
  }

  .route-infographic__entry {
    padding: 18px;
  }

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

  .route-step {
    min-height: 0;
    padding: 18px;
  }

  .route-step__number {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .route-step strong {
    margin-bottom: 6px;
    font-size: 1.08rem;
  }

  .service-overview {
    padding: 18px;
  }

  .service-overview p {
    font-size: 1.15rem;
  }

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

  .service-overview__line span:not(:last-child)::after {
    display: none;
  }

  .relationship-infographic {
    gap: 14px;
    padding: 20px;
  }

  .relationship-infographic__heading h3 {
    font-size: 1.28rem;
    line-height: 1.52;
  }

  .relationship-flow {
    gap: 12px;
  }

  .relationship-flow article {
    min-height: 0;
    padding: 16px;
  }

  .relationship-flow article:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -9px;
    width: 10px;
    height: 10px;
    border-top: 0;
    border-right: 2px solid rgba(246, 178, 143, 0.86);
    border-bottom: 2px solid rgba(246, 178, 143, 0.86);
    transform: translateX(50%) rotate(45deg);
    background: transparent;
  }

  .relationship-flow span {
    margin-bottom: 10px;
  }

  .service-item {
    min-height: 0;
    gap: 12px;
    padding: 22px;
  }

  .service-item h3,
  .support-card h3,
  .timeline h3 {
    font-size: 1.16rem;
    line-height: 1.48;
  }

  .service-item p,
  .support-card p,
  .timeline p,
  .check-list {
    line-height: 1.72;
  }

  .service-list {
    gap: 14px;
  }

  .service-extra {
    margin-top: 16px;
    padding: 16px 0 0 16px;
  }

  .section-heading h2,
  .case-note h2,
  .final-cta h2,
  .privacy-page h1 {
    font-size: 1.72rem;
  }

  .plan {
    padding: 24px;
  }

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

  .timeline li {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: grid;
  }

  .floating-line {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand__name {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .section {
    width: min(100% - 28px, var(--container));
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding: 78px 16px 36px;
  }

  .hero__image {
    object-position: 72% center;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 1.84rem;
    line-height: 1.34;
  }

  .hero__lead {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .button,
  .hero__actions,
  .final-cta__box {
    width: 100%;
  }

  .button {
    min-width: 0;
    min-height: 46px;
  }

  .hero-concept {
    padding: 0 12px;
  }

  .hero-concept summary {
    min-height: 52px;
    gap: 12px;
  }

  .hero-concept__title {
    font-size: 0.94rem;
  }

  .hero-concept__hint {
    font-size: 0.74rem;
  }

  .hero-concept__body {
    gap: 10px;
    padding-bottom: 16px;
  }

  .hero-concept__body p,
  .hero-concept__lead,
  .hero-concept__closing {
    font-size: 0.88rem !important;
    line-height: 1.82 !important;
  }

  .benefit-list {
    gap: 5px;
    margin-top: 14px;
  }

  .benefit-list li {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero-panel {
    margin-top: 36px;
    padding: 12px;
  }

  .hero-panel__group {
    padding: 10px;
  }

  .channel-grid span,
  .hero-panel__path span,
  .route-tags span,
  .cost-grid span {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .case-note h2,
  .final-cta h2,
  .privacy-page h1 {
    font-size: 1.44rem;
    line-height: 1.48;
  }

  .section-heading p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .service-item {
    gap: 14px;
    padding: 18px 16px;
  }

  .path-card__label {
    min-height: 28px;
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .web-hub__sources {
    grid-template-columns: 1fr;
  }

  .web-hub__sources span {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .web-hub__center {
    min-height: 166px;
  }

  .web-hub__center strong {
    font-size: 1.5rem;
  }

  .web-hub__answers strong {
    font-size: 1rem;
  }

  .relationship-infographic {
    padding: 18px 16px;
  }

  .route-tags,
  .service-overview__line {
    grid-template-columns: 1fr;
  }

  .route-infographic__entry p {
    font-size: 0.98rem;
  }

  .service-item__price {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .service-item h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
  }

  .check-list {
    gap: 6px;
    font-size: 0.92rem;
  }

  .service-extra {
    padding-left: 14px;
  }

  .service-extra strong {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .service-extra p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

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

  .final-cta {
    padding: 26px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
