/* 温浴施設・サウナ向け業界ページ */
.bath-sauna-page .bsa-page {
  --bsa-blue: #00529f;
  --bsa-blue-dark: #003f7a;
  --bsa-blue-pale: #a8cce9;
  --bsa-navy: #1c2539;
  --bsa-ink: #20282d;
  --bsa-text: #4f5f6f;
  --bsa-muted: #6e7984;
  --bsa-stone: #f3efe9;
  --bsa-stone-deep: #e5ded4;
  --bsa-mist: #edf2f1;
  --bsa-line: #d7ddd9;
  --bsa-white: #fff;
  --bsa-content: 1200px;
  --bsa-hero: 1600px;
  background: var(--bsa-white);
  color: var(--bsa-ink);
  font-family: var(--font-body--family);
  line-break: strict;
  word-break: normal;
  overflow-wrap: break-word;
}

.bath-sauna-page .bsa-page *,
.bath-sauna-page .bsa-page *::before,
.bath-sauna-page .bsa-page *::after { box-sizing: border-box; }

.bath-sauna-page .bsa-container {
  width: min(var(--bsa-content), calc(100% - 96px));
  margin-inline: auto;
}

.bath-sauna-page .bsa-section { padding: clamp(80px, 8vw, 128px) 0; }
.bath-sauna-page .bsa-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 16px;
  padding-left: 44px;
  color: var(--bsa-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bath-sauna-page .bsa-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.bath-sauna-page .bsa-heading {
  margin: 0;
  color: var(--bsa-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: wrap;
}
.bath-sauna-page .bsa-phrase { display: inline-block; max-width: 100%; }
.bath-sauna-page .bsa-body,
.bath-sauna-page .bsa-lead {
  color: var(--bsa-text);
  font-size: 17px;
  line-height: 1.95;
}
.bath-sauna-page .bsa-body p { margin: 0; }
.bath-sauna-page .bsa-body p + p { margin-top: 18px; }
.bath-sauna-page .bsa-lead { margin: 28px 0 0; }
.bath-sauna-page .bsa-note {
  margin: 36px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--bsa-blue);
  color: var(--bsa-text);
  font-size: 15px;
  line-height: 1.85;
}
.bath-sauna-page .bsa-figure { margin: 0; }
.bath-sauna-page .bsa-figure img { display: block; width: 100%; height: auto; object-fit: cover; }
.bath-sauna-page .bsa-figure figcaption {
  margin-top: 10px;
  color: var(--bsa-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Buttons */
.bath-sauna-page .bsa-actions,
.bath-sauna-page .bsa-final-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.bath-sauna-page .bsa-button {
  display: inline-flex;
  min-width: 0;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.bath-sauna-page .bsa-button span { flex: 0 0 auto; }
.bath-sauna-page .bsa-button--primary { border-color: #00529f; background: #00529f; color: #fff; }
.bath-sauna-page .bsa-button--primary:hover { border-color: #003f7a; background: #003f7a; color: #fff; }
.bath-sauna-page .bsa-button--secondary { border-color: #1c2539; background: transparent; color: #1c2539; }
.bath-sauna-page .bsa-button--secondary:hover { border-color: #1c2539; background: #1c2539; color: #fff; }
.bath-sauna-page .bsa-button--light { border-color: #fff; background: #fff; color: #1c2539; }
.bath-sauna-page .bsa-button--light:hover { border-color: #fff; background: transparent; color: #fff; }
.bath-sauna-page .bsa-button--outline-light { border-color: rgba(255,255,255,.75); background: transparent; color: #fff; }
.bath-sauna-page .bsa-button--outline-light:hover { border-color: #fff; background: #fff; color: #1c2539; }
.bath-sauna-page .bsa-link-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.bath-sauna-page .bsa-link-button span { flex: 0 0 auto; }
.bath-sauna-page .bsa-link-button--dark { border-color: rgba(255,255,255,.7); color: var(--bsa-white); }
.bath-sauna-page .bsa-link-button--dark:hover { border-color: var(--bsa-white); background: var(--bsa-white); color: var(--bsa-navy); }
.bath-sauna-page .bsa-link-button--light { border-color: var(--bsa-line); background: var(--bsa-white); color: var(--bsa-blue-dark); }
.bath-sauna-page .bsa-link-button--light:hover { border-color: var(--bsa-navy); background: var(--bsa-navy); color: var(--bsa-white); }
.bath-sauna-page .bsa-page a:focus-visible,
.bath-sauna-page .bsa-page summary:focus-visible {
  outline: 3px solid var(--bsa-blue-pale);
  outline-offset: 4px;
}

/* Hero */
.bath-sauna-page .bsa-hero { background: var(--bsa-stone); }
.bath-sauna-page .bsa-hero__inner {
  display: grid;
  width: min(var(--bsa-hero), 100%);
  min-height: 720px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
}
.bath-sauna-page .bsa-hero__content {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(64px, 7vw, 104px);
  padding-inline: clamp(28px, 4.5vw, 72px);
}
.bath-sauna-page .bsa-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 28px; padding: 0; color: #6e7984; font-size: 13px; line-height: 1.5; list-style: none; }
.bath-sauna-page .bsa-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; min-width: 0; white-space: normal; word-break: normal; line-break: strict; overflow-wrap: break-word; }
.bath-sauna-page .bsa-breadcrumb li:not(:last-child)::after { content: "/"; color: #6e7984; }
.bath-sauna-page .bsa-breadcrumb li[aria-current="page"] { color: #1c2539; }
.bath-sauna-page .bsa-breadcrumb a { color: #6e7984; text-decoration: none; }
.bath-sauna-page .bsa-breadcrumb a:hover, .bath-sauna-page .bsa-breadcrumb a:focus-visible { color: #00529f; text-decoration: underline; text-underline-offset: 3px; }
.bath-sauna-page .bsa-hero__title {
  margin: 0;
  color: var(--bsa-navy);
  font-family: var(--font-heading--family);
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.22;
  white-space: normal;
  word-break: normal;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: wrap;
}
.bath-sauna-page .bsa-hero__lead { margin-top: 30px; font-size: 16px; line-height: 1.85; }
.bath-sauna-page .bsa-hero .bsa-actions { margin-top: 34px; }
.bath-sauna-page .bsa-hero__media { min-width: 0; min-height: 720px; }
.bath-sauna-page .bsa-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }

/* Section 01 */
.bath-sauna-page .bsa-experience { background: var(--bsa-white); }
.bath-sauna-page .bsa-experience__layout { display: grid; grid-template-columns: minmax(0, 43%) minmax(0, 57%); gap: clamp(56px, 7vw, 100px); }
.bath-sauna-page .bsa-experience__intro .bsa-body { margin-top: 28px; }
.bath-sauna-page .bsa-topic-list { border-top: 1px solid var(--bsa-line); }
.bath-sauna-page .bsa-topic { padding: 25px 0; border-bottom: 1px solid var(--bsa-line); }
.bath-sauna-page .bsa-topic h3 { margin: 0 0 8px; color: var(--bsa-navy); font-size: 20px; line-height: 1.5; }
.bath-sauna-page .bsa-topic p { margin: 0; color: var(--bsa-text); font-size: 16px; line-height: 1.8; }

/* Section 02 */
.bath-sauna-page .bsa-touchpoint { background: var(--bsa-mist); }
.bath-sauna-page .bsa-split-intro { display: grid; grid-template-columns: minmax(0, 48fr) minmax(0, 52fr); gap: clamp(40px, 5vw, 64px); align-items: start; }
.bath-sauna-page .bsa-touchpoint__layout { display: grid; grid-template-columns: minmax(0, 58%) minmax(0, 42%); gap: clamp(32px, 5vw, 68px); margin-top: 64px; align-items: start; }
.bath-sauna-page .bsa-touchpoint__main-image img,
.bath-sauna-page .bsa-touchpoint__retail-image img { aspect-ratio: 4 / 3; border-radius: 20px; }
.bath-sauna-page .bsa-touchpoint__main-image img { object-position: center center; }
.bath-sauna-page .bsa-touchpoint__retail-image { width: 82%; margin: 34px 0 0 auto; }
.bath-sauna-page .bsa-touchpoint__retail-image img { object-position: center center; }
.bath-sauna-page .bsa-flow { margin: 0; padding: 0; border-top: 1px solid var(--bsa-line); list-style: none; }
.bath-sauna-page .bsa-flow li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--bsa-line); }
.bath-sauna-page .bsa-flow__num { color: var(--bsa-blue); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.bath-sauna-page .bsa-flow h3 { margin: -3px 0 5px; color: var(--bsa-navy); font-size: 19px; line-height: 1.5; }
.bath-sauna-page .bsa-flow p { margin: 0; color: var(--bsa-text); font-size: 15px; line-height: 1.7; }

/* Section 03 */
.bath-sauna-page .bsa-choice { background: var(--bsa-white); }
.bath-sauna-page .bsa-choice > .bsa-container > .bsa-heading { width: 100%; max-width: none; }
.bath-sauna-page .bsa-choice__compare { margin-top: 48px; }
.bath-sauna-page .bsa-choice__compare table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.bath-sauna-page .bsa-choice__compare th,
.bath-sauna-page .bsa-choice__compare td { padding: 20px 22px; border: 1px solid var(--bsa-line); text-align: left; vertical-align: top; }
.bath-sauna-page .bsa-choice__compare thead th { background: var(--bsa-mist); color: var(--bsa-navy); font-size: 18px; line-height: 1.5; }
.bath-sauna-page .bsa-choice__compare thead th:first-child { width: 19%; font-size: 14px; }
.bath-sauna-page .bsa-choice__compare tbody th { width: 19%; background: var(--bsa-stone); color: var(--bsa-blue-dark); font-size: 14px; line-height: 1.6; }
.bath-sauna-page .bsa-choice__compare td { color: var(--bsa-text); font-size: 16px; line-height: 1.8; }

/* Section 04 */
.bath-sauna-page .bsa-scenes { background: var(--bsa-navy); color: rgba(255,255,255,.78); }
.bath-sauna-page .bsa-scenes__layout { display: block; }
.bath-sauna-page .bsa-scenes__intro { width: 100%; max-width: none; }
.bath-sauna-page .bsa-scenes .bsa-eyebrow { color: #9fc9ea; }
.bath-sauna-page .bsa-scenes .bsa-heading { color: var(--bsa-white); }
.bath-sauna-page .bsa-scenes__intro > p:last-child { width: 100%; max-width: none; margin: 28px 0 0; font-size: 17px; line-height: 1.9; }
.bath-sauna-page .bsa-scenes__rows { width: 100%; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.25); }
.bath-sauna-page .bsa-scene-row { width: 100%; padding: 34px 0 40px; border-bottom: 1px solid rgba(255,255,255,.25); }
.bath-sauna-page .bsa-scene-row h3 { margin: 0 0 14px; color: var(--bsa-white); font-size: 26px; line-height: 1.45; }
.bath-sauna-page .bsa-scene-row p { margin: 0; font-size: 16px; line-height: 1.85; }
.bath-sauna-page .bsa-scene-row__note { margin-top: 15px !important; color: rgba(255,255,255,.62); font-size: 14px !important; }
.bath-sauna-page .bsa-link-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }

/* Section 05 */
.bath-sauna-page .bsa-purpose { background: var(--bsa-stone); }
.bath-sauna-page .bsa-purpose__layout { display: grid; grid-template-columns: minmax(0, 44%) minmax(0, 56%); gap: clamp(48px, 7vw, 96px); align-items: start; }
.bath-sauna-page .bsa-purpose__media img { aspect-ratio: 4 / 3; border-radius: 20px; object-position: center center; }
.bath-sauna-page .bsa-purpose__content .bsa-body { margin-top: 26px; }
.bath-sauna-page .bsa-purpose__compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 38px; }
.bath-sauna-page .bsa-purpose__compare article { padding-top: 23px; border-top: 2px solid var(--bsa-navy); }
.bath-sauna-page .bsa-purpose__compare h3 { margin: 0 0 22px; color: var(--bsa-navy); font-size: 21px; line-height: 1.5; }
.bath-sauna-page .bsa-purpose__compare dl { margin: 0; }
.bath-sauna-page .bsa-purpose__compare dl div { padding: 12px 0; border-top: 1px solid var(--bsa-stone-deep); }
.bath-sauna-page .bsa-purpose__compare dt { color: var(--bsa-blue); font-size: 12px; font-weight: 700; }
.bath-sauna-page .bsa-purpose__compare dd { margin: 4px 0 0; color: var(--bsa-text); font-size: 14px; line-height: 1.7; }

/* Section 06 */
.bath-sauna-page .bsa-planning { overflow: visible; background: var(--bsa-white); }
.bath-sauna-page .bsa-planning__layout { display: grid; grid-template-columns: minmax(0, 56%) minmax(0, 40%); gap: 4%; align-items: start; }
.bath-sauna-page .bsa-planning__content .bsa-body { margin-top: 28px; }
.bath-sauna-page .bsa-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 38px 0 0; padding: 0; border-top: 1px solid var(--bsa-line); list-style: none; }
.bath-sauna-page .bsa-checklist li { position: relative; padding: 17px 0 17px 22px; border-bottom: 1px solid var(--bsa-line); color: var(--bsa-navy); font-size: 15px; font-weight: 700; line-height: 1.6; }
.bath-sauna-page .bsa-checklist li::before { position: absolute; top: 1.6em; left: 0; width: 11px; height: 2px; background: var(--bsa-blue); content: ""; }
.bath-sauna-page .bsa-planning__callout { margin-top: 36px; padding: 28px; background: #edf5fb; }
.bath-sauna-page .bsa-planning__callout p { margin: 0 0 18px; color: var(--bsa-navy); font-weight: 700; line-height: 1.7; }
.bath-sauna-page .bsa-planning__media { position: sticky; top: 132px; }
.bath-sauna-page .bsa-planning__media img { aspect-ratio: 4 / 3; border-radius: 20px; object-position: center center; }

/* Section 07 */
.bath-sauna-page .bsa-process { background: var(--bsa-mist); }
.bath-sauna-page .bsa-process > .bsa-container > .bsa-heading { width: 100%; max-width: none; }
.bath-sauna-page .bsa-process__steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin: 58px 0 0; padding: 0; list-style: none; }
.bath-sauna-page .bsa-process__steps::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: var(--bsa-line); content: ""; }
.bath-sauna-page .bsa-process__steps li { padding-top: 25px; }
.bath-sauna-page .bsa-process__steps li > span { display: block; margin-bottom: 14px; color: rgba(0,82,159,.22); font-family: var(--font-heading--family); font-size: clamp(46px, 5vw, 72px); font-weight: 700; line-height: 1; }
.bath-sauna-page .bsa-process__steps h3 { margin: 0 0 12px; color: var(--bsa-navy); font-size: 19px; line-height: 1.55; }
.bath-sauna-page .bsa-process__steps p { margin: 0; color: var(--bsa-text); font-size: 15px; line-height: 1.8; }
.bath-sauna-page .bsa-related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--bsa-line); }

/* Section 08 */
.bath-sauna-page .bsa-cases { background: var(--bsa-white); }
.bath-sauna-page .bsa-cases__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px 56px; margin-top: 54px; }
.bath-sauna-page .bsa-cases__grid article { padding-top: 22px; border-top: 1px solid var(--bsa-line); }
.bath-sauna-page .bsa-case-label { margin: 0 0 10px; color: var(--bsa-blue); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.bath-sauna-page .bsa-cases__grid h3 { margin: 0 0 10px; color: var(--bsa-navy); font-size: 21px; line-height: 1.55; text-wrap: balance; }
.bath-sauna-page .bsa-cases__grid article > p:last-child { margin: 0; color: var(--bsa-text); font-size: 16px; line-height: 1.8; }

/* FAQ */
.bath-sauna-page .bsa-faq { background: var(--bsa-stone); }
.bath-sauna-page .bsa-faq .bsa-heading { margin-bottom: 24px; }
.bath-sauna-page .bsa-faq__list { width: 100%; max-width: none; margin: 0; }

/* Final CTA */
.bath-sauna-page .bsa-final-cta { background: var(--bsa-navy); color: var(--bsa-white); }
.bath-sauna-page .bsa-final-cta__inner { display: grid; grid-template-columns: minmax(0, 62%) minmax(280px, 38%); gap: clamp(48px, 7vw, 96px); align-items: center; }
.bath-sauna-page .bsa-final-cta .bsa-eyebrow { color: #9fc9ea; }
.bath-sauna-page .bsa-final-cta .bsa-heading { color: var(--bsa-white); font-size: clamp(28px, 2.4vw, 38px); }
.bath-sauna-page .bsa-final-cta__body { margin-top: 26px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.85; }
.bath-sauna-page .bsa-final-cta__body p { margin: 0; }
.bath-sauna-page .bsa-final-cta__body p + p { margin-top: 14px; }
.bath-sauna-page .bsa-final-cta__actions { flex-direction: column; align-items: stretch; }

@media (max-width: 1099px) {
  .bath-sauna-page .bsa-container { width: min(var(--bsa-content), calc(100% - 48px)); }
  .bath-sauna-page .bsa-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .bath-sauna-page .bsa-hero__content { width: min(var(--bsa-content), calc(100% - 48px)); margin-inline: auto; padding: 96px 0 48px; }
  .bath-sauna-page .bsa-hero__media { min-height: 0; }
  .bath-sauna-page .bsa-hero__media img { height: auto; aspect-ratio: 4 / 3; object-position: center center; }
  .bath-sauna-page .bsa-experience__layout,
  .bath-sauna-page .bsa-split-intro { grid-template-columns: 1fr; }
  .bath-sauna-page .bsa-experience__layout { gap: 48px; }
  .bath-sauna-page .bsa-split-intro { gap: 30px; }
  .bath-sauna-page .bsa-process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .bath-sauna-page .bsa-process__steps::before { display: none; }
  .bath-sauna-page .bsa-process__steps li { border-top: 1px solid var(--bsa-line); }
}

@media (min-width: 992px) {
  .bath-sauna-page .bsa-touchpoint__main-image,
  .bath-sauna-page .bsa-purpose__media,
  .bath-sauna-page .bsa-planning__media { position: sticky; top: 120px; align-self: start; }
}

@media (min-width: 1100px) {
  .bath-sauna-page .bsa-touchpoint__title { font-size: clamp(30px, 2.3vw, 36px); }
}

@media (max-width: 991px) {
  .bath-sauna-page .bsa-touchpoint__layout,
  .bath-sauna-page .bsa-purpose__layout,
  .bath-sauna-page .bsa-planning__layout { grid-template-columns: 1fr; gap: 48px; }
  .bath-sauna-page .bsa-touchpoint__layout { gap: 44px; }
  .bath-sauna-page .bsa-touchpoint__main-image,
  .bath-sauna-page .bsa-purpose__media,
  .bath-sauna-page .bsa-planning__media { position: static; max-width: 760px; }
  .bath-sauna-page .bsa-touchpoint__side { display: grid; grid-template-columns: minmax(0, 58%) minmax(0, 42%); gap: 34px; align-items: end; }
  .bath-sauna-page .bsa-touchpoint__retail-image { width: 100%; margin: 0; }
}

@media (max-width: 767px) {
  .bath-sauna-page .bsa-container { width: calc(100% - 40px); }
  .bath-sauna-page .bsa-section { padding: 72px 0; }
  .bath-sauna-page .bsa-eyebrow { margin-bottom: 12px; padding-left: 30px; font-size: 11px; line-height: 1.4; letter-spacing: .11em; }
  .bath-sauna-page .bsa-eyebrow::before { width: 22px; }
  .bath-sauna-page .bsa-heading { font-size: clamp(25px, 7vw, 29px); line-height: 1.4; }
  .bath-sauna-page .bsa-body,
  .bath-sauna-page .bsa-lead { font-size: 16px; line-height: 1.9; }
  .bath-sauna-page .bsa-hero__content { width: calc(100% - 40px); padding: 90px 0 44px; }
  .bath-sauna-page .bsa-breadcrumb { flex-wrap: wrap; gap: 4px 6px; margin-bottom: 20px; font-size: 11px; line-height: 1.5; }
  .bath-sauna-page .bsa-hero__title { font-size: clamp(26px, 7.5vw, 31px); line-height: 1.34; }
  .bath-sauna-page .bsa-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .bath-sauna-page .bsa-button { width: 100%; min-height: 52px; gap: 8px; padding: 13px 18px; font-size: 14px; line-height: 1.5; }
  .bath-sauna-page .bsa-topic { padding: 22px 0; }
  .bath-sauna-page .bsa-touchpoint__layout { margin-top: 44px; }
  .bath-sauna-page .bsa-touchpoint__side { display: block; }
  .bath-sauna-page .bsa-touchpoint__retail-image { width: min(86%, 420px); margin: 32px 0 0 auto; }
  .bath-sauna-page .bsa-touchpoint__main-image img,
  .bath-sauna-page .bsa-touchpoint__retail-image img,
  .bath-sauna-page .bsa-purpose__media img,
  .bath-sauna-page .bsa-planning__media img { border-radius: 14px; }
  .bath-sauna-page .bsa-choice__compare { margin-top: 38px; }
  .bath-sauna-page .bsa-choice__compare table,
  .bath-sauna-page .bsa-choice__compare tbody,
  .bath-sauna-page .bsa-choice__compare tr,
  .bath-sauna-page .bsa-choice__compare th,
  .bath-sauna-page .bsa-choice__compare td { display: block; width: 100%; }
  .bath-sauna-page .bsa-choice__compare table { table-layout: auto; }
  .bath-sauna-page .bsa-choice__compare thead { display: none; }
  .bath-sauna-page .bsa-choice__compare tbody tr { width: 100%; margin-top: 18px; border: 1px solid var(--bsa-line); }
  .bath-sauna-page .bsa-choice__compare tbody tr:first-child { margin-top: 0; }
  .bath-sauna-page .bsa-choice__compare tbody th,
  .bath-sauna-page .bsa-choice__compare td { border: 0; }
  .bath-sauna-page .bsa-choice__compare tbody th { width: 100%; padding: 13px 16px; border-bottom: 1px solid var(--bsa-line); background: var(--bsa-stone); font-size: 15px; }
  .bath-sauna-page .bsa-choice__compare tbody td { width: 100%; padding: 15px 16px; font-size: 15px; line-height: 1.7; }
  .bath-sauna-page .bsa-choice__compare td + td { border-top: 1px solid var(--bsa-line); }
  .bath-sauna-page .bsa-choice__compare td::before { display: block; margin-bottom: 5px; color: var(--bsa-blue-dark); content: attr(data-label); font-size: 12px; font-weight: 700; }
  .bath-sauna-page .bsa-scene-row { padding: 28px 0 32px; }
  .bath-sauna-page .bsa-scene-row h3 { font-size: 23px; }
  .bath-sauna-page .bsa-link-list { gap: 10px; }
  .bath-sauna-page .bsa-purpose__compare,
  .bath-sauna-page .bsa-checklist,
  .bath-sauna-page .bsa-process__steps,
  .bath-sauna-page .bsa-cases__grid,
  .bath-sauna-page .bsa-final-cta__inner { grid-template-columns: 1fr; }
  .bath-sauna-page .bsa-purpose__compare { gap: 28px; }
  .bath-sauna-page .bsa-checklist { gap: 0; }
  .bath-sauna-page .bsa-planning__callout { padding: 22px 18px; }
  .bath-sauna-page .bsa-process__steps { gap: 28px; margin-top: 42px; }
  .bath-sauna-page .bsa-process__steps li > span { font-size: 48px; }
  .bath-sauna-page .bsa-related-links { flex-direction: column; align-items: flex-start; }
  .bath-sauna-page .bsa-cases__grid { gap: 30px; margin-top: 42px; }
  .bath-sauna-page .bsa-final-cta__inner { gap: 38px; }
  .bath-sauna-page .bsa-final-cta .bsa-heading { font-size: clamp(24px, 6.8vw, 28px); }
  .bath-sauna-page .bsa-related-links { flex-direction: column; }
  .bath-sauna-page .bsa-related-links .bsa-link-button { width: 100%; }
}

@media (max-width: 374px) {
  .bath-sauna-page .bsa-container,
  .bath-sauna-page .bsa-hero__content { width: calc(100% - 32px); }
  .bath-sauna-page .bsa-hero__title { font-size: 26px; }
  .bath-sauna-page .bsa-heading { font-size: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .bath-sauna-page .bsa-button { transition: none; }
  .bath-sauna-page .bsa-page { scroll-behavior: auto; }
}

.bath-sauna-page footer .footer-main.mt-100 { margin-top: 0 !important; }
