:root {
  --green: #043f32;
  --green-2: #0b6d51;
  --accent: #043f32;
  --gold: #c9973f;
  --gold-2: #e2c56e;
  --paper: #fffdf8;
  --ivory: #f5ecdf;
  --line: #dfd2be;
  --text: #102f28;
  --muted: #63736d;
  --pink: #bd5b7a;
  --blue: #2f6f9d;
  --shadow: 0 18px 46px rgba(35, 25, 12, .12);

  /* コンテンツ幅の上限。ワイドディスプレイでも左右に呼吸を残すための共通トークン。
     背景や写真はフルワイド維持したまま、内側コンテンツだけをこの幅に抑える。
     各セクションの左右paddingを --side-gutter で参照し、ワイドでは
     (100% - --container) / 2 が勝って中央寄せ、狭画面では既存の値が勝つ形。 */
  --container: 1200px;
  --side-gutter: max(clamp(18px, 4vw, 56px), calc((100% - var(--container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section,
#reserve {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 12px var(--side-gutter);
  color: #fff;
  background: rgba(4, 63, 50, .98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}

.brand img {
  width: 226px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.nav a {
  opacity: .94;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-visit-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0 0;
  color: #40534d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.hero-visit-link .hero-sub-link {
  display: block;
}

.hero-visit-link a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-price-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}

.hero-price-mini-item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.hero-price-mini-item strong {
  font-size: 22px;
  color: var(--green);
}

.hero-price-mini-item em {
  font-style: normal;
  font-size: 12px;
  color: #555;
  font-weight: 700;
}

.hero-price-mini-item .hero-price-mini-label {
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, .1);
  font-size: 12px;
  color: #555;
  font-weight: 700;
}

.hero-price-mini-best {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(0, 90, 60, .08);
}

#hero-title > span:not(.hero-x) {
  position: relative;
  padding: 0 4px;
  font-size: 1.18em;
}

#hero-title > span:not(.hero-x)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: rgba(0, 90, 60, .18);
  border-radius: 3px;
  z-index: -1;
}

#hero-title .hero-x {
  color: #1a1a1a;
  margin: 0 6px;
  font-size: .8em;
  font-weight: 800;
}

.flow-alt {
  margin: 18px auto 0;
  padding: 12px 16px;
  max-width: 620px;
  border: 1px dashed rgba(0, 0, 0, .18);
  border-radius: 10px;
  color: #40534d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.flow-alt a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
}

.icon-link {
  gap: 8px;
}

.ui-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
}

.ui-icon::before,
.ui-icon::after {
  position: absolute;
  content: "";
}

.ui-icon.calendar {
  border: 2px solid currentColor;
  border-radius: 5px;
}

.ui-icon.calendar::before {
  top: 5px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: currentColor;
}

.ui-icon.calendar::after {
  top: -4px;
  left: 5px;
  width: 8px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.ui-icon.yen::before {
  content: "¥";
  position: static;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.ui-icon.pin::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.ui-icon.pin::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.ui-icon.clock {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.ui-icon.clock::before {
  left: 9px;
  top: 4px;
  width: 2px;
  height: 7px;
  background: currentColor;
}

.ui-icon.clock::after {
  left: 9px;
  top: 10px;
  width: 6px;
  height: 2px;
  background: currentColor;
}

.ui-icon.car::before {
  left: 2px;
  right: 2px;
  top: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 5px 5px 3px 3px;
}

.ui-icon.car::after {
  left: 5px;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 9px 0 0 currentColor;
}

.ui-icon.card {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.ui-icon.card::before {
  left: 2px;
  right: 2px;
  top: 5px;
  height: 2px;
  background: currentColor;
}

.ui-icon.line::before {
  content: "LINE";
  position: static;
  width: 33px;
  height: 20px;
  margin-left: 11px;
  border-radius: 6px;
  color: #fff;
  background: #06c755;
  font-size: 8px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.ui-icon.star::before {
  content: "★";
  position: static;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.service-symbol {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-symbol::before {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.service-symbol.gym::before {
  content: "↯";
}

.service-symbol.tooth::before {
  content: "♡";
  font-size: 28px;
}

.service-symbol.beauty::before {
  content: "♙";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 4px 10px rgba(4, 63, 50, .18);
}

.btn-gold {
  color: #fff;
  background: var(--gold);
}

.btn-light {
  color: var(--green);
  background: #fff;
}

.btn-outline {
  color: var(--green);
  border-color: rgba(4, 63, 50, .26);
  background: rgba(255, 255, 255, .78);
}

.btn-dark {
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .82fr);
  gap: clamp(22px, 3vw, 42px);
  min-height: 680px;
  padding: clamp(34px, 5vw, 62px) var(--side-gutter) 40px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 253, 248, .96), rgba(245, 236, 223, .82));
}

.hero::before {
  position: absolute;
  inset: 0 40% 0 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 253, 248, .92), rgba(255, 253, 248, .35));
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 620px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 span {
  display: inline-block;
}

.lead {
  max-width: 560px;
  margin: 22px 0 26px;
  color: #183b33;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.facts > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(4, 63, 50, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 24px rgba(30, 24, 15, .08);
  font-size: 14px;
  font-weight: 900;
}

.hero-photo {
  position: absolute;
  inset: 0 34% 0 0;
  z-index: 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  filter: saturate(.85) brightness(1.26);
}

.reserve-card {
  position: relative;
  z-index: 3;
  align-self: center;
  width: 100%;
  max-width: 590px;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, .96);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  color: #8b9691;
  font-size: 12px;
  font-weight: 900;
}

.steps span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: #efebe4;
}

.steps .active {
  color: #fff;
  background: var(--accent);
}

.reserve-card h2,
.section h2,
.access h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.25;
}

.reserve-lead {
  margin: 10px 0 0;
  color: #40534d;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.65;
}

.hero-flow-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-flow-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 68, 52, .13);
  border-radius: 10px;
  background: #fff;
}

.hero-flow-steps span {
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.hero-flow-steps strong {
  color: var(--green);
  font-size: 15px;
  line-height: 1.35;
}

.reserve-sub-link {
  margin: 12px 0 0;
  color: #40534d;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.reserve-sub-link a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trial-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.trial-tabs button,
.trial-tabs a,
.calendar button,
.time-grid button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.trial-tabs button,
.trial-tabs a {
  display: grid;
  place-items: center;
  gap: 7px;
  min-height: 74px;
  padding: 8px;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}

.tab-note {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--green);
  background: #eef8f2;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.trial-tabs .active .tab-note {
  color: var(--accent);
  background: #fff;
}

.trial-tabs .active,
.calendar .selected,
.time-grid .selected {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.trial-tabs .choice-primary {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(226, 59, 91, .18);
}

.trial-tabs .choice-secondary {
  color: var(--green);
  border-color: rgba(0, 68, 52, .22);
  background: #fff;
}

.trial-tabs .service-symbol {
  width: 31px;
  height: 31px;
}

.trial-tabs .service-symbol::before {
  font-size: 18px;
}

.reserve-panel {
  display: none;
}

.reserve-panel.active {
  display: block;
}

.reserve-direct {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 68, 52, .12);
  border-radius: 10px;
  background: #fffdf8;
}

.reserve-direct p {
  margin: 0;
  color: #40534d;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.reserve-inline-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 18px;
}

.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: block;
}

.reserve-heading {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 900;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.calendar button,
.time-grid button {
  min-height: 40px;
}

.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.reserve-note {
  display: inline-flex;
  margin: 16px 0 10px;
  padding: 5px 12px;
  border: 1px solid #c9ded2;
  border-radius: 999px;
  color: var(--green-2);
  background: #eef8f2;
  font-size: 13px;
  font-weight: 900;
}

.reserve-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #c9344f);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.reserve-form {
  margin-top: 18px;
}

.reserve-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.reserve-form input[type="text"],
.reserve-form input[type="tel"],
.reserve-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.reserve-form input:focus,
.trial-tabs button:focus-visible,
.trial-tabs a:focus-visible,
.calendar button:focus-visible,
.time-grid button:focus-visible,
.btn-step:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(233, 69, 96, .28);
  outline-offset: 2px;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  color: var(--text);
}

.check-row input {
  width: 18px;
  height: 18px;
}

.form-error {
  min-height: 22px;
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.reserve-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.btn-step {
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-step.primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #c9344f);
}

.btn-step.ghost {
  border: 1px solid var(--line);
  color: var(--green);
  background: #fff;
}

.confirm-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eadfce;
}

.confirm-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.confirm-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.complete {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #c9ded2;
  border-radius: 10px;
  background: #f3fbf6;
}

.complete-mark {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-2);
  font-size: 12px;
  font-weight: 900;
}

.complete h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 22px;
}

.complete p:not(.complete-mark) {
  margin: 0 0 16px;
  color: #40534d;
  font-weight: 800;
}

.campaign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--side-gutter);
  color: #fff;
  background: linear-gradient(90deg, var(--green), #082f27);
}

.campaign strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
}

.campaign p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.campaign-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, calc(100% - 660px));
  margin: -86px 0 0 var(--side-gutter);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(14, 31, 25, .2);
  position: relative;
  z-index: 4;
}

.strip-card {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  color: #fff;
}

.strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 61, 49, .9), rgba(6, 61, 49, .34));
}

.strip-card.beauty-card::after {
  background: linear-gradient(90deg, rgba(137, 52, 82, .82), rgba(6, 61, 49, .22));
}

.strip-card.whitening-card::after {
  background: linear-gradient(90deg, rgba(47, 111, 157, .86), rgba(6, 61, 49, .2));
}

.strip-card div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  column-gap: 14px;
  height: 100%;
  padding: 28px;
}

.strip-card .service-symbol {
  grid-row: 1 / 3;
}

.strip-card strong {
  align-self: end;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .32);
}

.strip-card p {
  align-self: start;
  margin: 4px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .32);
}

.section {
  padding: clamp(52px, 7vw, 92px) var(--side-gutter);
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h2 {
  position: relative;
  padding-left: 16px;
}

.section-head h2::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 5px;
  content: "";
  background: var(--green);
  border-radius: 3px;
}

.section-head p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.equip-count {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7em;
  font-weight: 900;
  vertical-align: middle;
}

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

.service-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-item div {
  padding: 18px;
}

.service-item h3,
.flow h3,
.plan h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.25;
}

.service-item p,
.flow p,
.plan li,
.faq p,
.access p {
  margin: 0;
  color: #40534d;
  font-weight: 700;
}

.equipment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .85fr);
  gap: 18px;
}

.equipment-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.equipment-card:nth-child(3) {
  grid-column: 1 / -1;
}

.equipment-card-head {
  display: grid;
  gap: 8px;
}

.equipment-card-head span {
  color: #0d7a62;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.equipment-card-head h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
}

.equipment-card-head p {
  margin: 0;
  color: #40534d;
  font-weight: 900;
}

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

.equipment-media-beauty {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-media-other {
  grid-template-columns: repeat(3, minmax(0, 180px));
}

.equipment-media figure {
  display: grid;
  gap: 8px;
  margin: 0;
  min-width: 0;
}

.equipment-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(0, 68, 52, .12);
  border-radius: 4px;
  background: #f8f1e5;
}

.equipment-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(0, 68, 52, .12);
  border-radius: 4px;
  background: #f8f1e5;
}

.equipment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.equipment-photo .equipment-img-crop {
  transform: scale(1.62);
}

.equipment-media figcaption {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-list li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 68, 52, .16);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.equipment-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: #40534d;
  background: #f8f1e5;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.equipment-all {
  overflow: hidden;
  border: 1px solid rgba(4, 63, 50, .14);
  border-radius: 10px;
  background: #fffdf8;
}

.equipment-all summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  color: var(--green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

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

.equipment-all summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.equipment-all[open] summary::after {
  content: "−";
}

.equipment-all ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0 18px 16px 34px;
  color: #40534d;
  font-size: 13px;
  line-height: 1.5;
}

.equipment-detail-link {
  margin: 16px auto 0;
  text-align: center;
}

.equipment-detail-link .btn {
  min-width: min(100%, 320px);
}

.section-note {
  max-width: 980px;
  margin: 16px 0 0;
  color: #40534d;
  font-size: 14px;
  font-weight: 900;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(4, 63, 50, .18);
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 28px rgba(4, 63, 50, .13);
}

.section-cta > span {
  min-width: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

.section-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section-cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
}

.section-cta .btn-primary {
  box-shadow: none;
}

.access-cta {
  margin-top: 18px;
}

.decision {
  background: var(--ivory);
}

.feature-flow {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(197, 151, 29, .2), transparent 30%),
    linear-gradient(135deg, #033b2f, #075743);
}

.feature-flow::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 32px 32px;
}

.feature-flow > * {
  position: relative;
  z-index: 1;
}

.why-compact {
  display: grid;
  gap: 24px;
}

.why-head {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.why-head h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.why-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-reasons article {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 24, 18, .22);
}

.why-media {
  display: grid;
  place-items: center;
  min-height: 134px;
  overflow: hidden;
  margin: 0;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(135deg, #f7f1e6, #eef7f1);
}

.why-media img {
  display: block;
  width: 100%;
  height: 134px;
  object-fit: cover;
}

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

.why-media-phone img {
  width: 158px;
  height: 98px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(4, 63, 50, .16);
}

.why-card-copy {
  padding: 20px 18px 22px;
}

.why-reasons span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}

.why-reasons h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.4;
}

.why-reasons p {
  margin: 0;
  color: #53635e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.why-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: -6px;
}

.why-proof-row span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 68, 52, .16);
  border-radius: 8px;
  color: var(--green);
  background: #f8f1e5;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.32fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
}

.why-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.why-copy h2 {
  max-width: 520px;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.18;
}

.why-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: #40534d;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 900;
  line-height: 1.55;
}

.why-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.why-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid rgba(0, 68, 52, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(30, 24, 15, .05);
}

.why-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 16px 32px rgba(231, 58, 91, .2);
  font-size: 15px;
  font-weight: 900;
}

.why-visuals {
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: center;
}

.why-visual-column {
  display: grid;
  gap: 18px;
}

.why-phone {
  width: min(300px, 100%);
  margin-inline: auto;
  padding: 14px;
  border-radius: 42px;
  background: #052f27;
  box-shadow: 0 28px 58px rgba(4, 63, 50, .24);
}

.why-phone-screen {
  display: grid;
  gap: 12px;
  min-height: 500px;
  padding: 22px 18px;
  border-radius: 30px;
  background: #fffaf3;
}

.why-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.why-phone-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #006b52;
  background: #dff3eb;
  font-size: 12px;
}

.why-phone-title {
  margin: 8px 0 2px;
  color: var(--green);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.12;
}

.why-phone-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.why-phone-item strong {
  color: var(--green);
  font-size: 17px;
  line-height: 1.2;
}

.why-phone-item span {
  color: #596a65;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.why-unlock {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin-top: 6px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-size: 17px;
  font-weight: 900;
}

.why-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .06);
}

.why-steps li {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.why-steps li:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: -10px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #9c8f75;
  border-right: 2px solid #9c8f75;
  transform: rotate(45deg);
  content: "";
}

.why-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 13px;
}

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

.why-benefits-main {
  grid-template-columns: minmax(0, 1fr);
}

.why-benefits div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .06);
}

.why-benefits-main div {
  min-height: 132px;
  padding: 22px;
}

.why-benefits span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.why-benefits strong {
  color: var(--green);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  word-break: keep-all;
}

.why-benefits small {
  color: #40534d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

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

.proof-grid div {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 132px;
  padding: 22px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 12px 28px rgba(30, 24, 15, .08);
}

.proof-grid strong {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1;
}

.proof-grid span {
  font-weight: 900;
}

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

.convenience-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.problem-grid h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 22px;
}

.problem-grid p {
  margin: 0;
  color: #40534d;
  font-weight: 800;
}

.convenience-flow div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .06);
}

.convenience-flow span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.convenience-flow strong {
  color: var(--green);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
}

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

.decision-grid div {
  display: grid;
  justify-items: center;
  text-align: center;
  min-height: 118px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
}

.info-icon .ui-icon {
  width: 22px;
  height: 22px;
}

.decision-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.decision-grid .info-icon {
  display: grid;
  color: var(--green);
}

.decision-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.join-check {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 151, 63, .11), transparent 25%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e6 100%);
}

.join-check::before {
  position: absolute;
  top: 44px;
  right: max(18px, calc((100% - var(--container)) / 2));
  width: 118px;
  height: 118px;
  border: 1px solid rgba(201, 151, 63, .22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.content-flow .section-head.join-check-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  max-width: 1040px;
  margin: 0 auto 36px;
  text-align: left;
}

.content-flow .join-check-head h2 {
  padding-left: 0;
}

.content-flow .section-head.join-check-head > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  padding: 0 0 2px 24px;
  border-left: 1px solid rgba(4, 63, 50, .22);
  color: #52645e;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.join-check-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.7fr);
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(4, 63, 50, .14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(35, 25, 12, .13);
}

.join-check-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 418px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(226, 197, 110, .22), transparent 38%),
    linear-gradient(145deg, #043f32, #075844);
}

.join-check-summary::after {
  position: absolute;
  right: -50px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.join-check-summary-label {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #e2c56e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}

.join-check-count {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0 0 18px;
  line-height: .8;
}

.join-check-count strong {
  color: #fff;
  font-size: clamp(70px, 7vw, 94px);
  font-weight: 900;
  letter-spacing: -.06em;
}

.join-check-count span {
  padding-bottom: 8px;
  color: #e2c56e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.join-check-summary h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.35;
}

.join-check-summary > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.join-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-check-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
  background: #fff;
}

.join-check-list li:nth-child(odd) {
  border-right: 1px solid #e5ddcf;
}

.join-check-list li:nth-child(-n + 2) {
  border-bottom: 1px solid #e5ddcf;
}

.join-check-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201, 151, 63, .5);
  border-radius: 16px;
  color: var(--green);
  background: linear-gradient(145deg, #fffdf8, #f6ecdc);
  box-shadow: 0 8px 18px rgba(35, 25, 12, .07);
}

.join-check-icon svg {
  width: 29px;
  height: 29px;
}

.join-check-copy {
  min-width: 0;
}

.join-check-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #75817d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.join-check-meta span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 10px;
  letter-spacing: .04em;
}

.join-check-copy h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.45;
}

.join-check-copy > p:last-child {
  margin: 0;
  color: #687670;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.join-check-support {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 4px;
}

.join-check-support p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #596b65;
  font-size: 13px;
  font-weight: 800;
}

.join-check-support p span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
}

.join-check-support a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.join-check-support a span {
  transition: transform .2s ease;
}

.join-check-support a:hover span,
.join-check-support a:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 920px) {
  .join-check-board {
    grid-template-columns: minmax(0, 1fr);
  }

  .join-check-summary {
    min-height: 0;
  }

  .join-check-summary h3 br {
    display: none;
  }
}

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

.flow-grid.flow-grid-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.feature-flow .section-head {
  margin-inline: auto;
  text-align: center;
}

.feature-flow .section-head h2 {
  padding-left: 0;
  color: #fff;
}

.feature-flow .section-head h2::before {
  display: none;
}

.feature-flow .section-head .eyebrow {
  color: #e4c25f;
}

.feature-flow .section-head p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .8);
}

.content-flow .section-head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.content-flow .section-head h2 {
  padding-left: 0;
}

.content-flow .section-head h2::before {
  display: none;
}

.content-flow .section-head .eyebrow {
  color: var(--gold);
}

.content-flow .section-head p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.join-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.join-flow-step {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 24, 18, .22);
}

.join-flow-step:not(:last-child)::after {
  position: absolute;
  top: 58px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  content: "\2192";
  border: 3px solid #075743;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  z-index: 2;
}

.join-flow-media {
  display: grid;
  place-items: center;
  min-height: 134px;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
  background: linear-gradient(135deg, #f7f1e6, #eef7f1);
}

.join-flow-media img {
  width: 158px;
  height: 98px;
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(4, 63, 50, .16);
}

.join-flow-copy {
  padding: 20px 22px 24px;
}

.join-flow-num {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.join-flow .join-flow-step h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 20px;
}

.join-flow .join-flow-step p {
  color: #53635e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.join-flow-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.join-flow-actions .btn {
  min-width: 280px;
  min-height: 52px;
}

.join-flow-actions p {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
}

.join-flow-actions p a {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.flow article {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 22px;
  border: 1px solid #d5e2d8;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f2faf5);
}

.phone-ui {
  position: relative;
  display: block;
  width: 100%;
  max-width: 168px;
  height: 94px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #d8e0da;
  border-radius: 8px;
  background: linear-gradient(145deg, #edf4ef, #fff);
}

.phone-ui::before {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 58px;
  height: 76px;
  transform: translateX(-50%);
  border: 5px solid #263530;
  border-radius: 13px;
  background: #fff;
  content: "";
}

.phone-ui::after {
  position: absolute;
  left: 50%;
  top: 26px;
  width: 36px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: #bfd0c8;
  box-shadow: 0 16px 0 #bfd0c8, 0 32px 0 #bfd0c8;
  content: "";
}

.phone-ui.lock-ui::after {
  width: 28px;
  height: 28px;
  top: 32px;
  border: 4px solid var(--green-2);
  border-radius: 50% 50% 8px 8px;
  background: transparent;
  box-shadow: none;
}

.phone-ui.calendar-ui::after {
  width: 40px;
  height: 34px;
  top: 28px;
  border: 3px solid var(--green-2);
  border-radius: 7px;
  background: linear-gradient(var(--green-2) 0 8px, transparent 8px);
  box-shadow: none;
}

.trust {
  background: #fff;
}

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

.trust-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff9ee);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 19px;
}

.trust-grid p {
  margin: 0;
  color: #40534d;
  font-weight: 700;
}

.flow-num {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.plans {
  background: #fbf7ef;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 18px;
  align-items: stretch;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(30, 24, 15, .09);
}

.plan.best {
  border-color: rgba(201, 151, 63, .7);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 12px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.badge-outline {
  color: var(--green);
  border: 1.5px solid var(--green);
  background: transparent;
}

.price {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 16px;
}

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

.plan li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-2);
  font-weight: 900;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.plan-note {
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.value-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(233, 69, 96, .22);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.value-proof h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.value-proof p {
  margin: 0;
  color: #40534d;
  font-weight: 800;
}

.value-proof ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-proof li {
  min-height: 76px;
  padding: 13px;
  border-radius: 8px;
  background: #f7f2e8;
}

.value-proof span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.value-proof strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-check-grid {
  margin-bottom: 18px;
}

#faq .faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 24, 15, .06);
}

#faq .faq-list summary {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--green);
  font-weight: 900;
  list-style: none;
}

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

#faq .faq-list summary::before {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  content: "Q";
  border-radius: 50%;
  color: #fff;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

#faq .faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

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

#faq .faq-list details p {
  margin: 0;
  padding: 0 48px 18px 60px;
}

.faq {
  background: #fbf7ef;
}

.faq-support {
  max-width: 960px;
  margin: 22px auto 0;
}

.faq-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-support-actions .btn {
  min-width: 180px;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 960px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 92px) var(--side-gutter) 112px;
  background: var(--ivory);
}

.access-copy {
  display: grid;
  gap: 12px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.access-media {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.access img,
.map-card {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.access img {
  height: 100%;
  object-fit: cover;
}

.map-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(4, 63, 50, .08), rgba(208, 151, 31, .1)),
    #fffdf8;
  text-align: center;
  text-decoration: none;
}

.map-card .ui-icon {
  width: 40px;
  height: 40px;
}

.map-card strong {
  font-size: 22px;
  line-height: 1.35;
}

.map-card small {
  color: #40534d;
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 64px;
  padding: 10px 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .18);
  font-weight: 900;
}

.sticky-cta .btn {
  min-width: 0;
  flex: 1 1 0;
  max-width: 260px;
}

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

  .nav {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo {
    inset: 0;
  }

  .reserve-card {
    align-self: auto;
  }

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

  .flow-grid,
  .trust-grid,
  .service-grid,
  .equipment-grid,
  .why-layout,
  .convenience-flow,
  .single-use-branch,
  .single-use-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-card-wide {
    grid-row: auto;
  }

  .equipment-card:nth-child(3) {
    grid-column: auto;
  }

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

  .why-visuals {
    grid-template-columns: minmax(160px, 230px) minmax(0, 1fr);
  }

  .why-steps {
    padding: 14px;
  }

  .why-steps span {
    width: 32px;
    height: 32px;
  }

  .why-benefits {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .hero-service-strip,
  .campaign,
  .section,
  .access,
  .sticky-cta {
    width: 100%;
    max-width: 100vw;
  }

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand img {
    width: 176px;
  }

  .header-actions {
    display: none;
  }

  .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero {
    padding: 34px 14px 22px;
  }

  .hero h1 {
    font-size: 41px;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .campaign,
  .sticky-cta {
    align-items: stretch;
    flex-direction: row;
    gap: 10px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .section-cta > div {
    justify-content: stretch;
  }

  .section-cta .btn {
    flex: 1 1 100%;
  }

  .facts > span {
    flex: 1 1 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero .facts > span:first-child {
    display: none;
  }

  .hero-service-strip {
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .strip-card {
    min-height: 92px;
  }

  .strip-card div {
    padding: 18px;
  }

  .strip-card .service-symbol {
    width: 38px;
    height: 38px;
  }

  .strip-card strong {
    font-size: 20px;
  }

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

  .trial-tabs,
  .reserve-grid,
  .service-grid,
  .equipment-grid,
  .decision-grid,
  .flow-grid,
  .trust-grid,
  .plan-grid,
  .proof-grid,
  .problem-grid,
  .why-head,
  .why-reasons,
  .why-layout,
  .why-visuals,
  .convenience-flow,
  .why-proof-row,
  .single-use-branch,
  .single-use-grid,
  .value-proof,
  .access {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-use-branch article {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .single-use-branch img {
    min-height: 148px;
  }

  .single-use-branch div {
    gap: 7px;
    padding: 14px;
  }

  .single-use-branch h3 {
    font-size: 18px;
  }

  .single-use-branch p {
    font-size: 13px;
    line-height: 1.45;
  }

  .single-use-branch .btn {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

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

  .why-copy h2 {
    font-size: 38px;
  }

  .why-head {
    align-items: center;
  }

  .why-head h2 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .why-reasons {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    max-width: 430px;
  }

  .why-reasons article {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    overflow: visible;
  }

  .why-media {
    min-height: 100%;
    border-radius: 11px 0 0 11px;
  }

  .why-media img {
    height: 100%;
    min-height: 170px;
  }

  .why-media-phone img {
    width: 92px;
    height: auto;
    min-height: 0;
  }

  .why-card-copy {
    padding: 17px 16px 18px;
  }

  .why-reasons span {
    font-size: 10px;
  }

  .why-reasons h3 {
    font-size: 17px;
    line-height: 1.4;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .why-reasons p {
    font-size: 12px;
    line-height: 1.55;
  }

  .equipment-media,
  .equipment-media-beauty,
  .equipment-media-other {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-phone {
    justify-self: center;
    max-width: 260px;
  }

  .why-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .why-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(0, 68, 52, .1);
    border-radius: 10px;
    font-size: 13px;
    text-align: left;
  }

  .why-steps li:not(:last-child)::after {
    display: none;
  }

  .why-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-benefits div {
    min-height: 96px;
    padding: 16px;
  }

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

  .reserve-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    overflow: hidden;
  }

  .reserve-card h2 {
    font-size: 25px;
  }

  .trial-tabs button,
  .trial-tabs a {
    min-height: 70px;
    overflow-wrap: anywhere;
  }

  .reserve-direct {
    padding: 12px 14px;
  }

  .reserve-direct p {
    font-size: 13px;
    line-height: 1.55;
  }

  .phone-ui {
    max-width: 100%;
  }

  .calendar,
  .time-grid,
  .trial-tabs,
  .steps {
    min-width: 0;
  }

  .calendar button,
  .time-grid button {
    min-width: 0;
  }

  .reserve-actions,
  .confirm-list div,
  .value-proof ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-flow .section-head.join-check-head {
    display: block;
    margin-bottom: 26px;
    text-align: left;
  }

  .content-flow .section-head.join-check-head > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 16px;
    padding-left: 16px;
    overflow-wrap: anywhere;
  }

  .join-check-summary {
    padding: 32px;
  }

  .join-check-count strong {
    font-size: 72px;
  }

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

  .join-check-list li:nth-child(odd) {
    border-right: 0;
  }

  .join-check-list li:nth-child(-n + 3) {
    border-bottom: 1px solid #e5ddcf;
  }

  .join-check-list li {
    padding: 24px 22px;
  }

  .join-check-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .equipment-all ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-cta {
    align-items: stretch;
    flex-direction: column;
  }

  #faq .faq-list summary {
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
  }

  #faq .faq-list summary::before {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  #faq .faq-list details p {
    padding: 0 14px 16px 50px;
  }

  .faq-support-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-support-actions .btn {
    width: 100%;
  }

  .map-actions,
  .access-media {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-actions {
    display: grid;
  }

  .access iframe {
    min-height: 320px;
  }

  .section,
  .access {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sticky-cta .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* Comp-faithful layout */
@media (min-width: 921px) {
  .site-header {
    min-height: 60px;
    padding: 8px 30px;
    grid-template-columns: 300px 1fr 330px;
  }

  .brand img {
    width: 250px;
  }

  .btn {
    min-height: 42px;
    padding: 0 20px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(470px, 520px) 220px;
    gap: 18px;
    min-height: 520px;
    padding: 38px 30px 0;
    background: linear-gradient(90deg, #fffdf8 0%, #f7f1e8 72%, #fffdf8 72%);
  }

  .hero::before {
    inset: 0 42% 0 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .88) 54%, rgba(255, 253, 248, .28));
  }

  .hero-photo {
    inset: 0 38% 0 0;
  }

  .hero-copy {
    align-self: start;
    max-width: 650px;
    padding: 44px 0 0 26px;
  }

  .hero h1 {
    font-size: clamp(46px, 4.6vw, 68px);
    line-height: 1.08;
  }

  .lead {
    max-width: 600px;
    margin: 20px 0 18px;
    font-size: clamp(20px, 1.7vw, 25px);
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .facts {
    display: inline-grid;
    grid-template-columns: repeat(3, auto);
    overflow: hidden;
    gap: 0;
    margin-top: 18px;
    border: 1px solid rgba(6, 61, 49, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 26px rgba(23, 30, 24, .12);
  }

  .facts > span {
    min-width: 148px;
    justify-content: center;
    border: 0;
    border-right: 1px solid rgba(6, 61, 49, .13);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .facts > span:last-child {
    border-right: 0;
  }

  .reserve-card {
    align-self: center;
    max-width: none;
    padding: 22px 26px;
    border-radius: 10px;
  }

  .reserve-card h2 {
    font-size: 30px;
  }

  .steps {
    margin-bottom: 14px;
  }

  .trial-tabs {
    margin: 14px 0 16px;
  }

  .reserve-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 16px;
  }

  .photo-rail {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    align-self: stretch;
    margin: -38px -30px 0 0;
    background: #fff;
  }

  .photo-rail img {
    width: 100%;
    height: 100%;
    min-height: 170px;
    object-fit: cover;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .hero-service-strip {
    grid-column: 1 / 2;
    align-self: end;
    width: calc(100% - 28px);
    margin: 0 0 0 0;
    border-radius: 8px 8px 0 0;
  }

  .strip-card {
    min-height: 122px;
  }

  .strip-card div {
    padding: 20px 18px;
  }

  .strip-card strong {
    font-size: 24px;
  }

  .campaign {
    min-height: 80px;
    padding: 18px 38px;
  }

  .comp-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(520px, .95fr);
    gap: 18px;
    padding: 18px 38px 20px;
    background: linear-gradient(180deg, #fffdf8 0%, #f5ecdf 100%);
  }

  .comp-left,
  .comp-right {
    display: grid;
    gap: 14px;
  }

  .comp-panel {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 253, 248, .96);
    box-shadow: 0 10px 26px rgba(28, 25, 18, .08);
  }

  .comp-panel h2 {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 22px;
    line-height: 1.25;
    text-align: center;
  }

  .decision-panel,
  .smart-panel,
  .plan-table-panel,
  .faq-mini {
    padding: 16px 20px;
  }

  .decision-grid.compact {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .decision-grid.compact div {
    min-height: 112px;
    padding: 12px 8px;
  }

  .decision-grid.compact .info-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .decision-grid.compact span {
    font-size: 12px;
  }

  .decision-grid.compact strong {
    font-size: 14px;
  }

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

  .flow-grid.compact article {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .flow-grid.compact h3 {
    margin: 8px 0 0;
    font-size: 14px;
  }

  .flow-grid.compact .phone-ui {
    height: 78px;
    margin-bottom: 0;
  }

  .plan-table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
  }

  .plan-table th,
  .plan-table td {
    border: 1px solid #d8d1c4;
    padding: 8px 10px;
    text-align: center;
  }

  .plan-table th {
    color: #fff;
    background: var(--green);
  }

  .plan-table th.best {
    background: linear-gradient(90deg, var(--gold), var(--green));
  }

  .plan-table td:first-child {
    text-align: left;
    font-weight: 900;
  }

  .value-mini {
    margin: 10px 0 0;
    color: var(--accent);
    font-weight: 900;
    text-align: center;
  }

  .faq-mini div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 10px;
    border-top: 1px solid #e5ddcf;
    font-size: 14px;
    font-weight: 900;
  }

  .lower-section {
    display: none;
  }
}

/* Conventional website layout from the comp base */
@media (min-width: 921px) {
  .site-header {
    min-height: 72px;
    padding: 12px var(--side-gutter);
    grid-template-columns: 280px 1fr auto;
  }

  .hero {
    grid-template-columns: minmax(0, .9fr) minmax(480px, .72fr);
    gap: clamp(28px, 4vw, 56px);
    min-height: 680px;
    padding: clamp(52px, 7vw, 90px) var(--side-gutter) 44px;
    background: linear-gradient(120deg, rgba(255, 253, 248, .96), rgba(245, 236, 223, .82));
  }

  .hero::before {
    inset: 0 46% 0 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .7));
  }

  .hero-photo {
    inset: 0 34% 0 0;
  }

  .hero-copy {
    align-self: center;
    max-width: 650px;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 5vw, 76px);
  }

  .lead {
    max-width: 620px;
    font-size: clamp(20px, 2vw, 26px);
  }

  .reserve-card {
    align-self: center;
    max-width: 600px;
  }

  .photo-rail {
    display: none;
  }

  .hero-service-strip {
    grid-column: 1 / -1;
    width: min(1120px, 100%);
    margin: 26px 0 0;
    border-radius: 8px;
  }

  .strip-card {
    min-height: 132px;
  }

  .campaign {
    min-height: 96px;
    padding: 24px var(--side-gutter);
  }

  .comp-dashboard {
    display: none;
  }

  .lower-section {
    display: block;
  }

  .section {
    padding: clamp(62px, 8vw, 104px) var(--side-gutter);
  }

  .section-head {
    max-width: 920px;
    margin-bottom: 32px;
  }

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

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

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

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

  .plans {
    background: #fbf7ef;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 430px));
  }
}

@media (max-width: 920px) {
  .comp-dashboard {
    display: none;
  }

  .lower-section {
    display: block;
  }
}

/* Cropped comp assets */
.hero-service-strip {
  display: block;
  background: transparent;
}

.strip-full {
  display: block;
  width: 100%;
  height: auto;
}

.strip-card {
  display: none;
  min-height: 0;
  background: transparent;
}

.strip-card img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.strip-card::after,
.strip-card.beauty-card::after,
.strip-card.whitening-card::after {
  content: none;
}

@media (max-width: 760px) {
  .strip-full {
    display: none;
  }

  .hero-service-strip {
    display: grid;
    gap: 0;
    overflow: hidden;
  }

  .strip-card {
    display: block;
  }
}

@media (max-width: 920px) {
  .photo-rail {
    display: none;
  }

  .comp-dashboard {
    display: grid;
    gap: 14px;
    padding: 18px 14px 24px;
    background: var(--ivory);
  }

  .comp-left,
  .comp-right {
    display: grid;
    gap: 14px;
  }

  .comp-panel {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 253, 248, .96);
  }

  .comp-panel h2 {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 22px;
  }

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

  .plan-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
  }

  .plan-table th,
  .plan-table td {
    border: 1px solid #d8d1c4;
    padding: 8px;
    text-align: center;
  }

  .plan-table th {
    color: #fff;
    background: var(--green);
  }

  .plan-table th.best {
    background: linear-gradient(90deg, var(--gold), var(--green));
  }

  .value-mini {
    margin: 10px 0 0;
    color: var(--accent);
    font-weight: 900;
  }

  .faq-mini div {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-top: 1px solid #e5ddcf;
    font-weight: 900;
  }

  .lower-section {
    display: none;
  }
}

/* Final renewal layout: keep the single-page website sections active on every viewport. */
.comp-dashboard {
  display: none;
}

.lower-section {
  display: block;
}

/* Service strip: render Japanese labels in HTML instead of using baked-in comp text. */
.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.strip-full {
  display: none;
}

.strip-card {
  position: relative;
  display: block;
  min-height: 132px;
  overflow: hidden;
  background: var(--green);
}

.strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-card::after,
.strip-card.beauty-card::after,
.strip-card.whitening-card::after {
  position: absolute;
  inset: 0;
  content: "";
}

.strip-card::after {
  background: linear-gradient(90deg, rgba(6, 61, 49, .9), rgba(6, 61, 49, .42));
}

.strip-card.beauty-card::after {
  background: linear-gradient(90deg, rgba(151, 63, 98, .86), rgba(151, 63, 98, .46));
}

.strip-card.whitening-card::after {
  background: linear-gradient(90deg, rgba(43, 103, 152, .9), rgba(43, 103, 152, .5));
}

.strip-card div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  align-content: center;
  align-items: center;
  height: 100%;
  padding: 24px 28px;
}

.strip-card .service-symbol {
  grid-row: 1 / 3;
}

.strip-card strong,
.strip-card p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .34);
}

.strip-card strong {
  align-self: end;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
}

.strip-card p {
  align-self: start;
  margin: 6px 0 0;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .hero-service-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .strip-card {
    min-height: 122px;
  }

  .strip-card div {
    padding: 22px;
  }
}

/* Final hero image treatment: use the facility photo across the full hero width. */
.hero-photo {
  inset: 0;
}

.hero-photo img {
  object-position: center;
  filter: saturate(.98) brightness(1.08);
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .82) 34%, rgba(255, 253, 248, .44) 58%, rgba(255, 253, 248, .68) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, .08), rgba(255, 253, 248, .28));
}

@media (max-width: 760px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, .92) 0%, rgba(255, 253, 248, .76) 48%, rgba(255, 253, 248, .5) 100%),
      linear-gradient(90deg, rgba(255, 253, 248, .82), rgba(255, 253, 248, .42));
  }
}

/* Access photo should show the full exterior, not a cropped detail. */
.access img {
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #fff;
}

/* Renewal IA improvements */
.complete-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.comparison-wrap {
  max-width: 980px;
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7dccb;
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  color: #fff;
  background: var(--green);
}

.comparison-table thead th:nth-child(2) {
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.comparison-table tbody th {
  width: 25%;
  color: var(--green);
  background: #fbf7ef;
  font-weight: 900;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.flow-grid.flow-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.support-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1080px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(4, 63, 50, .18);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.support-banner h3,
.support-banner p {
  margin: 0;
}

.support-banner h3 {
  color: var(--green);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
}

.support-banner p:not(.eyebrow) {
  margin-top: 6px;
  color: #40534d;
  font-weight: 800;
}

.single-use {
  background: #fffdf8;
}

.single-use-branch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.single-use-branch article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(30, 24, 15, .09);
}

.single-use-branch img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.single-use-branch div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}

.single-use-branch h3 {
  margin: 0;
  color: var(--green);
  font-size: 22px;
}

.single-use-label {
  display: inline-flex;
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.single-use-branch p {
  margin: 0;
  color: #40534d;
  font-weight: 800;
}

.single-use-branch .btn {
  width: 100%;
  justify-self: stretch;
}

.single-use .section-head {
  max-width: 720px;
}

.single-use .section-cta {
  margin-top: 16px;
}

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

.single-use-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.single-use-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.single-use-grid div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.single-use-grid h3 {
  margin: 0;
  color: var(--green);
  font-size: 22px;
}

.single-use-grid p {
  margin: 0;
  color: #40534d;
  font-weight: 800;
}

.single-use-grid .btn {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.2fr);
  gap: 28px;
  padding: 44px var(--side-gutter) 96px;
  color: #fff;
  background: #032f26;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 900;
}

.footer-links a {
  color: rgba(255, 255, 255, .92);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .flow-grid.flow-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .flow-grid.flow-grid-five,
  .support-banner,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-table {
    min-width: 640px;
  }

  .support-banner .btn {
    width: 100%;
  }

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

/* Image comp cutouts */
.cutout-icon,
.tab-cutout-icon,
.info-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cutout-icon {
  width: 22px;
  height: 22px;
}

.tab-cutout-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

.trial-tabs button.active .tab-cutout-icon {
  filter: brightness(0) invert(1);
}

.facts > span {
  min-height: 46px;
}

@media (max-width: 760px) {
  .hero .facts {
    display: none !important;
  }
}

.info-icon img {
  padding: 4px;
}

.flow-grid.flow-grid-five article {
  display: grid;
  align-content: start;
  justify-items: start;
  text-align: left;
}

.flow-grid.flow-grid-five .flow-num {
  margin-bottom: 10px;
}

.flow-grid.flow-grid-five h3,
.flow-grid.flow-grid-five p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 760px) {
  .tab-cutout-icon {
    width: 32px;
    height: 32px;
  }
}

/* Lower pages */
.lower-page .site-header {
  grid-template-columns: 260px 1fr auto;
}

.subpage-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: 430px;
  padding: clamp(44px, 6vw, 76px) var(--side-gutter);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255, 253, 248, .98), rgba(245, 236, 223, .88));
}

.subpage-hero::before {
  position: absolute;
  inset: 0 42% 0 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 253, 248, .98), rgba(255, 253, 248, .58));
  pointer-events: none;
  z-index: 1;
}

.subpage-hero-copy,
.subpage-hero-media {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.subpage-hero h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.08;
}

.subpage-hero .lead {
  margin-bottom: 24px;
}

.subpage-hero-media {
  display: grid;
  gap: 12px;
}

.subpage-hero-media img {
  width: 100%;
  min-height: 300px;
  max-height: 460px;
  object-fit: cover;
  border: 1px solid rgba(0, 68, 52, .12);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-band {
  background: var(--ivory);
}

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

.page-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.page-card.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, var(--green), #082f27);
}

.page-card h3,
.page-card h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.25;
}

.page-card.dark h3,
.page-card.dark h2 {
  color: #fff;
}

.page-card p,
.page-card li {
  margin: 0;
  color: #40534d;
  font-weight: 800;
}

.page-card.dark p,
.page-card.dark li {
  color: rgba(255, 255, 255, .84);
}

.page-card ul,
.page-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

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

.photo-grid figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(0, 68, 52, .12);
  border-radius: 10px;
  background: #f8f1e5;
}

.photo-grid figcaption {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.map-panel iframe,
.map-placeholder {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 12px;
  background: #e8e0d3;
  box-shadow: var(--shadow);
}

.map-placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .06);
}

.faq-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 999px;
  color: var(--green);
  background: #f8f1e5;
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.faq-section h2 {
  margin: 0 0 4px;
  color: var(--green);
  font-size: clamp(24px, 2.8vw, 34px);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(30, 24, 15, .04);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 20px 18px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
}

.service-detail img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(4, 63, 50, .18);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff, #f8f1e5);
  box-shadow: 0 12px 28px rgba(30, 24, 15, .07);
}

.page-cta h2,
.page-cta p {
  margin: 0;
}

.page-cta h2 {
  color: var(--green);
  font-size: clamp(22px, 2.8vw, 34px);
}

.page-cta p {
  margin-top: 6px;
  color: #40534d;
  font-weight: 800;
}

.lower-page .plan-grid {
  max-width: 920px;
}

.lower-page .plan h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: clamp(22px, 2.8vw, 32px);
}

.badge-muted {
  background: var(--green-2);
}

.page-cta-spaced {
  margin-top: 22px;
}

.flow-grid article {
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 24, 15, .06);
}

.flow-grid .flow-cutout {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  object-fit: contain;
}

.flow-grid h3,
.flow-grid p {
  margin: 0;
}

.flow-grid h3 {
  color: var(--green);
  font-size: 20px;
}

.flow-grid p {
  color: #40534d;
  font-weight: 800;
}

.faq-list-wide {
  max-width: 1080px;
}

.text-link {
  color: var(--green-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage-hero-compact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  min-height: 330px;
}

.subpage-hero-mark {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: end;
  color: rgba(4, 63, 50, .08);
  font-size: clamp(60px, 9vw, 126px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  writing-mode: vertical-rl;
}

/* 法務ページ用のシンプルなヘッダー。subpage-hero は他ページで大々的に使う想定なので
   別クラスとして分離し、法務ページだけこちらを使う。 */
.legal-header {
  padding: 32px var(--side-gutter) 20px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.legal-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-header .eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-header h1 {
  margin: 0;
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.legal-header .lead {
  margin: 10px 0 0;
  color: #40534d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.document-card,
.legal-table {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(30, 24, 15, .08);
}

.document-card > section {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 3.5vw, 34px);
  border-bottom: 1px solid #e7dccb;
}

.document-card > section:last-child {
  border-bottom: 0;
}

.document-index {
  margin: 2px 0 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.document-card h2,
.document-card p {
  margin: 0;
}

.document-card h2 {
  color: var(--green);
  font-size: clamp(21px, 2.6vw, 28px);
}

.document-card section div p {
  margin-top: 10px;
  color: #40534d;
  font-weight: 700;
}

.legal-table > div {
  display: grid;
  /* ラベルは最低13em（「返品・キャンセルについて」12文字を1行に収める）。 */
  grid-template-columns: minmax(13em, .38fr) minmax(0, 1fr);
  border-bottom: 1px solid #e7dccb;
}

.legal-table > div:last-child {
  border-bottom: 0;
}

.legal-table dt,
.legal-table dd {
  margin: 0;
  padding: 18px 20px;
}

.legal-table dt {
  color: var(--green);
  background: #f8f1e5;
  font-weight: 900;
}

.legal-table dd {
  color: #40534d;
  font-weight: 700;
}

.document-version {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-copy {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(30, 24, 15, .08);
}

.legal-copy > p,
.legal-copy > div {
  margin: 0;
  padding: clamp(22px, 3.5vw, 34px);
}

.legal-copy > p {
  color: #40534d;
  background: #fbf7ef;
  font-weight: 700;
}

.legal-copy > div {
  border-top: 1px solid #e7dccb;
}

.legal-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.45;
}

.legal-copy p,
.legal-copy li {
  color: #40534d;
  font-weight: 700;
}

.legal-copy div > p,
.legal-copy div > ol,
.legal-copy div > ul {
  margin-top: 12px;
}

.legal-copy ol,
.legal-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 1.5em;
}

@media (max-width: 1100px) {
  .lower-page .site-header,
  .subpage-hero,
  .map-panel,
  .service-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .lower-page .site-header {
    gap: 12px;
  }

  .lower-page .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .subpage-hero::before {
    inset: 0;
  }

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

@media (max-width: 760px) {
  .subpage-hero,
  .section {
    padding-inline: 16px;
  }

  .page-grid,
  .page-grid.three,
  .faq-category-grid,
  .page-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-nav {
    position: relative;
    top: auto;
  }

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

  .page-cta .btn {
    width: 100%;
  }

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

  .subpage-hero-compact {
    grid-template-columns: minmax(0, 1fr);
    min-height: 280px;
  }

  .subpage-hero-mark {
    display: none;
  }

  .document-card > section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .legal-table > div {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .flow-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .services .section-head p:not(.eyebrow) {
    display: none;
  }

  .equipment-list {
    display: none;
  }

  .equipment-card,
  .equipment-card.equipment-card-wide {
    gap: 14px;
  }

  .equipment-card-head p {
    margin-top: 4px;
  }

  .hero {
    padding-bottom: 38px;
  }

  .hero .reserve-card,
  .hero .photo-rail {
    display: none;
  }

  .hero-visit-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0 0;
    color: #40534d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.55;
  }

  .hero-visit-link a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .equipment-note {
    padding: 10px 12px;
    font-size: 12px;
  }

  .appeal .why-service-link {
    display: none;
  }

  .appeal .section-cta {
    display: none;
  }

  .services .section-cta,
  .flow .section-cta,
  .single-use .section-cta {
    display: none;
  }

  .plans .comparison-wrap {
    display: none;
  }

  .single-use-branch {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-use-branch article {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .single-use-branch img {
    min-height: 148px;
  }

  .single-use-branch div {
    gap: 7px;
    padding: 14px;
  }

  .single-use-branch h3 {
    font-size: 18px;
  }

  .single-use-branch p {
    font-size: 13px;
    line-height: 1.45;
  }

  .single-use-branch .btn {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

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

  .flow-grid.flow-grid-five article {
    min-height: auto;
    padding: 12px;
  }

  .flow-grid.flow-grid-five h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .flow-grid.flow-grid-five p {
    font-size: 12px;
    line-height: 1.4;
  }

  .flow-grid.flow-grid-five article:last-child {
    grid-column: 1 / -1;
  }

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

  .flow-grid.flow-grid-three article {
    padding: 14px 16px;
  }

  .join-flow-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    max-width: 430px;
  }

  .join-flow-step {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    overflow: visible;
  }

  .join-flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -22px;
    width: 30px;
    height: 30px;
    content: "\2193";
    border-width: 2px;
    transform: translateX(50%);
  }

  .join-flow-media {
    min-height: 100%;
    border-radius: 11px 0 0 11px;
  }

  .join-flow-media img {
    width: 92px;
    height: auto;
  }

  .join-flow-copy {
    padding: 17px 16px 18px;
  }

  .join-flow .join-flow-step h3 {
    font-size: 17px;
  }

  .join-flow .join-flow-step p {
    font-size: 12px;
    line-height: 1.55;
  }

  .join-flow-actions {
    margin-top: 26px;
  }

  .join-flow-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-price-mini {
    gap: 8px;
    margin: 14px 0 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-price-mini-item {
    flex: 0 0 auto;
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .hero-price-mini-item strong {
    font-size: 20px;
  }

  .hero-price-mini-item .hero-price-mini-label {
    margin-left: auto;
    padding-left: 8px;
    font-size: 12px;
  }

  .flow-alt {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ================================================================
   v100: デザイン総合レビュー反映
   - 強調セクションと情報セクションの背景を整理
   - ボタン統合（sticky除く体験CTA を outline に統一）
   - タイポ軽量化（キャプション・注記のウェイト削減）
   - ヒーロー写真の暗調整＋緑タイント
   ================================================================ */

/* 「選ばれる理由」と入会フローを強調するため、設備は情報セクションの明るい背景にする。 */
.section.services {
  background: var(--paper);
  color: var(--text);
}

.section.services .section-head h2 {
  color: var(--green);
}

.section.services .section-head h2::before {
  background: var(--green);
}

.section.services .equipment-card {
  background: var(--paper);
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(30, 24, 15, .09);
}

.section.services .equipment-card-head span {
  display: inline-flex;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-size: 11px;
  letter-spacing: .08em;
}

.section.services .equipment-card-head h3 {
  color: var(--green);
}

.section.services .equipment-card-head p {
  color: #40534d;
}

.section.services .equipment-note {
  background: rgba(4, 63, 50, .05);
  color: #40534d;
  border-color: rgba(4, 63, 50, .12);
}

.section.services .equipment-note-line {
  max-width: 900px;
  margin: 18px auto 0;
  color: #40534d;
  font-weight: 500;
  text-align: center;
}

/* タイポ軽量化 */
.equipment-media figcaption {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(52px, 4.5vw, 66px);
}

.lead {
  font-weight: 700;
}

.section-head h2,
.why-head h2 {
  font-weight: 800;
}

.equipment-card-head h3,
.plan h3 {
  font-weight: 700;
}

.price {
  font-variant-numeric: tabular-nums;
}

.plan-value {
  margin: -4px 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

/* 設備カードを同幅にし、写真枚数の違いをレイアウトの意図として見せる。 */
.equipment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.equipment-media,
.equipment-media-beauty {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-media-fitness figure:last-child {
  grid-column: 1 / -1;
}

.equipment-media-fitness figure:last-child img {
  aspect-ratio: 16 / 5;
  object-position: center 58%;
}

.equipment-media-beauty figure > img,
.equipment-media-beauty figure > .equipment-photo {
  aspect-ratio: 4 / 3;
}

.equipment-media img,
.equipment-photo {
  filter: saturate(.86) contrast(1.03) brightness(.97);
}

.plan ul li,
.hero-visit-link,
.flow-alt,
.plan-note,
.access-copy p,
.faq-list summary,
.equipment-note {
  font-weight: 500;
}

.faq-list summary {
  font-weight: 600;
}

/* 4. ヒーロー写真の暗調整＋緑タイント */
.hero-photo img {
  filter: saturate(.92) brightness(.88);
}

.hero::before {
  background: linear-gradient(90deg, rgba(255, 253, 248, .88), rgba(4, 63, 50, .12)) !important;
}

.btn-gold {
  color: var(--text);
}

.sticky-cta .btn {
  min-height: 44px;
}

/* 5. SPの情報密度・設備レイアウトを最適化 */
@media (max-width: 760px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .btn {
    min-height: 48px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.5vw, 38px);
  }
  .section.services {
    padding-left: var(--side-gutter);
    padding-right: var(--side-gutter);
  }
  .equipment-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .equipment-media,
  .equipment-media-beauty {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .equipment-media figcaption {
    font-size: 11px;
  }
  .equipment-card {
    padding: 18px;
  }
  .sticky-cta {
    min-height: 68px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .sticky-cta .btn {
    min-height: 48px;
  }
}
