/* ==========================================
   TOTONOI CUBE — Scoped Styles
   All rules scoped to #sauna-LP to prevent
   collision with W2 Repeat template CSS.
   ========================================== */

/* ---------- Variables ---------- */
#sauna-LP {
  --color-bg: #FDFDFB;
  --color-bg-warm: #EAE8E4;
  --color-bg-dark: #2c2c2c;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-on-dark: #ededed;
  --color-accent: #8b7355;
  --color-border: #e0dcd7;
  --font-base: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --font-heading: "Shippori Mincho", "Yu Mincho", serif;
  --container-lg: 1200px;
  --container-md: 1000px;
  --container-sm: 800px;
  --section-pad: 80px;
  --gap: 24px;
  --radius: 0;
}

/* ---------- Base / Reset ---------- */
#sauna-LP {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  min-height: 0;
  height: auto !important;
  max-height: none !important;
  overflow: hidden;
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#sauna-LP *,
#sauna-LP *::before,
#sauna-LP *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#sauna-LP img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
#sauna-LP a { text-decoration: none; color: inherit; }
#sauna-LP ul, #sauna-LP ol { list-style: none; }

/* ---------- Containers ---------- */
#sauna-LP .c-lg { max-width: var(--container-lg); margin: 0 auto; padding: 0 var(--gap); }
#sauna-LP .c-md { max-width: var(--container-md); margin: 0 auto; padding: 0 var(--gap); }
#sauna-LP .c-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--gap); }

/* ---------- Section base ---------- */
#sauna-LP .sec { padding: var(--section-pad) 0; }
#sauna-LP .sec--dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
#sauna-LP .sec--warm { background: var(--color-bg-warm); }

#sauna-LP .sec--pro-grade {
  background-image: url("/Sauna-LP/assets/images/PROFESSIONAL_GRADE_bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  overflow: hidden;
}
#sauna-LP .sec--features {
  background-image: url("/Sauna-LP/assets/images/FEATURES_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  overflow: hidden;
}

/* ---------- Center heading ---------- */
#sauna-LP .sec__heading { text-align: center; margin-bottom: 48px; }
#sauna-LP .sec__heading * { text-align: center; }
#sauna-LP .sec__heading h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
}
#sauna-LP .sec__heading h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#sauna-LP .sec__heading h5::before,
#sauna-LP .sec__heading h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-text);
  flex-shrink: 0;
}
#sauna-LP .sec__heading p {
  margin-top: 8px;
  color: var(--color-text-light);
  font-size: .95rem;
}

/* ---------- Buttons ---------- */
#sauna-LP .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .25s, transform .25s;
  border: 1.5px solid transparent;
  font-family: var(--font-base);
  min-width: 200px;
  min-height: 48px;
}
#sauna-LP .btn:hover { opacity: .85; transform: translateY(-1px); }
#sauna-LP .btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  border-color: var(--color-bg-dark);
}
#sauna-LP .btn--outline {
  background: transparent;
  color: var(--color-text-on-dark);
  border-color: rgba(255,255,255,.6);
}
#sauna-LP .btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
#sauna-LP .btn svg { width: 12px; height: 13px; flex-shrink: 0; }

/* ==========================================
   1. HERO SECTION
   ========================================== */
#sauna-LP .hero {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#sauna-LP .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
#sauna-LP .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
#sauna-LP .hero__logo {
  position: absolute;
  top: clamp(14px, 1.8vw, 24px);
  left: clamp(16px, 2.4vw, 32px);
  z-index: 3;
}
#sauna-LP .hero__logo img { height: clamp(28px, 3vw, 42px); width: auto; }
#sauna-LP .hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: var(--gap);
  align-items: end;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 72px) var(--gap) clamp(18px, 2.5vw, 32px);
  color: #fff;
  width: min(calc(100% - clamp(48px, 6vw, 88px)), 1040px);
  height: 100%;
}
#sauna-LP .hero__left h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 300;
  letter-spacing: clamp(.08em, .12vw, .15em);
  line-height: 1.22;
  margin-bottom: 16px;
}
#sauna-LP .hero__left p {
  font-family: var(--font-heading);
  font-size: clamp(.78rem, .82vw, .9rem);
  line-height: 1.5;
  opacity: .9;
  margin-bottom: clamp(20px, 2vw, 30px);
}
#sauna-LP .hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
#sauna-LP .hero__btns .btn {
  min-width: 112px;
  min-height: 30px;
  padding: 6px 14px;
  font-size: .72rem;
}

#sauna-LP .hero__right {
  display: flex;
  justify-content: flex-end;
  align-self: end;
  padding-bottom: 8px;
}
#sauna-LP .hero__right-inner {
  width: clamp(150px, 66%, 240px);
  max-width: 100%;
  margin-left: auto;
  text-align: center;
}
#sauna-LP .hero__right-sub { margin-bottom: 6px; width: 100%; }
#sauna-LP .hero__right-sub img { width: 100%; height: auto; }
#sauna-LP .hero__right-main { font-family: var(--font-base); font-size: clamp(.78rem, .82vw, .9rem); font-weight: 300; line-height: 1.45; text-align: center; }
#sauna-LP .hero__right-note { font-size: clamp(.66rem, .7vw, .76rem); opacity: .7; margin-top: 8px; letter-spacing: .05em; text-align: center; }

/* ==========================================
   2. CONTENT BAR
   ========================================== */
#sauna-LP .content-bar {
  background: #EAE8E4;
  color: var(--color-text);
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#sauna-LP .content-bar::-webkit-scrollbar { display: none; }
#sauna-LP .content-bar__inner {
  display: flex;
  justify-content: center;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
  min-width: max-content;
}
#sauna-LP .content-bar__inner p {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .05em;
  padding: 20px 32px;
  position: relative;
  flex-shrink: 0;
}
#sauna-LP .content-bar__inner p:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: var(--color-border);
}

/* ==========================================
   3. REVITALIZE SAUNA (3-col icons)
   ========================================== */
#sauna-LP .revitalize .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
#sauna-LP .revitalize__card { text-align: center; padding: 32px 24px; }
#sauna-LP .revitalize__card * { text-align: center; }
#sauna-LP .revitalize__card--border-r { border-right: 1px solid var(--color-border); }
#sauna-LP .revitalize__card--border-l { border-left: 1px solid var(--color-border); }
#sauna-LP .revitalize__card img { width: 48px; height: 48px; margin: 0 auto 16px; }
#sauna-LP .revitalize__card p { font-size: .9rem; font-weight: 400; color: var(--color-text); }
#sauna-LP .revitalize .sec__heading h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: .3em;
  font-weight: 400;
  margin-bottom: 16px;
}

/* ==========================================
   4. CYPRESS SECTION
   ========================================== */
#sauna-LP .cypress { background: var(--color-bg); }
#sauna-LP .cypress__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}
#sauna-LP .cypress__images { position: relative; min-height: 500px; }
#sauna-LP .cypress__images img:first-child {
  width: 75%;
  aspect-ratio: 578/628;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
#sauna-LP .cypress__images img:nth-child(2) {
  width: 65%;
  aspect-ratio: 290/377;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
#sauna-LP .cypress__content {
  padding: 40px 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#sauna-LP .cypress__points { display: flex; flex-direction: column; gap: 0; margin-bottom: auto; }
#sauna-LP .cypress__points p {
  padding: 20px 0;
  font-size: .9rem;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border);
}
#sauna-LP .cypress__points p:first-child { padding-top: 0; }
#sauna-LP .cypress__content-img {
  width: 55%;
  margin-left: auto;
  margin-top: 32px;
  aspect-ratio: 310/199;
  object-fit: cover;
}

/* ==========================================
   5. PROFESSIONAL GRADE
   ========================================== */
#sauna-LP .pro-grade__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
#sauna-LP .pro-grade__sidebar { display: flex; align-items: start; justify-content: center; }
#sauna-LP .pro-grade__sidebar p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  writing-mode: vertical-rl;
  letter-spacing: .15em;
}
#sauna-LP .pro-grade__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
#sauna-LP .grade-card { overflow: hidden; }
#sauna-LP .grade-card img { width: 100%; aspect-ratio: 457/224; object-fit: cover; }
#sauna-LP .grade-card p { padding: 16px 4px; font-size: .7rem; font-weight: 400; text-align: center; color: var(--color-text); }

/* ==========================================
   6. FEATURES (9 points + image)
   ========================================== */
#sauna-LP .features__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: start;
}
#sauna-LP .features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding-right: 40px;
}
#sauna-LP .feature-point {
  padding: 16px 0 0 0;
  background: none;
  border-top: 1px solid var(--color-border);
}
#sauna-LP .feature-point h6 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}
#sauna-LP .feature-point p { font-size: .65rem; color: var(--color-text-light); line-height: 1.7; }
#sauna-LP .features__images { position: relative; min-height: 500px; }
#sauna-LP .features__images img:first-child {
  width: 90%;
  aspect-ratio: 401/540;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
#sauna-LP .features__images img:nth-child(2) {
  width: 60%;
  aspect-ratio: 282/314;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* ==========================================
   7. BANNERS (2 col images)
   ========================================== */
#sauna-LP .banners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
#sauna-LP .banners__grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
#sauna-LP .banners__grid img:first-child { margin-top: 48px; }

/* ==========================================
   8. ULTIMATE LUXURY (3-col staggered)
   ========================================== */
#sauna-LP .luxury__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}
#sauna-LP .luxury__col { display: flex; flex-direction: column; gap: var(--gap); }
#sauna-LP .luxury__col:nth-child(1) { padding-top: 80px; }
#sauna-LP .luxury__col:nth-child(2) { padding-top: 32px; }
#sauna-LP .luxury__col:nth-child(3) { padding-top: 0; }
#sauna-LP .luxury-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-warm);
  isolation: isolate;
}
#sauna-LP .luxury-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
#sauna-LP .luxury-card p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  font-size: .85rem;
  font-weight: 400;
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.45) 0%, transparent 100%);
  text-align: left;
  margin: 0;
  z-index: 1;
}

/* ==========================================
   9. COMPARISON TABLE
   ========================================== */
#sauna-LP .comparison .sec__heading h5 { color: var(--color-text); }
#sauna-LP .comparison .sec__heading p { color: var(--color-text-light); }
#sauna-LP .comparison__card {
  background: var(--color-bg-dark);
  border-radius: 12px;
  padding: 20px 20px;
  color: var(--color-text-on-dark);
  overflow: hidden;
}
#sauna-LP .comparison__table { width: 100%; overflow-x: visible; }
#sauna-LP .comparison__table table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: .85rem;
  table-layout: fixed;
  border: 1px solid rgba(255,255,255,.15);
}
#sauna-LP .comparison__table th,
#sauna-LP .comparison__table td {
  padding: 8px 6px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.4;
}
#sauna-LP .comparison__table thead th {
  font-weight: 700;
  font-size: .90rem;
  padding-top: 10px;
  padding-bottom: 10px;
}
#sauna-LP .comparison__table th:first-child,
#sauna-LP .comparison__table td:first-child { width: 20%; }
#sauna-LP .comparison__table .hl {
  background: var(--color-bg);
  color: var(--color-text);
  width: 40%;
  border-left: 1px solid rgba(255,255,255,.15);
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid var(--color-border);
}
#sauna-LP .comparison__table thead th.hl {
  color: var(--color-text);
  font-weight: 700;
  border-bottom: 1px solid var(--color-border);
}
#sauna-LP .comparison__table .other { width: 40%; }
#sauna-LP .comparison__table .hl img.circle-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  margin-right: 3px;
}

/* ==========================================
   10. COMPLETE SET
   ========================================== */
#sauna-LP .complete-set__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: start;
}
#sauna-LP .complete-set__images { position: relative; min-height: 460px; }
#sauna-LP .complete-set__images img:first-child {
  width: 65%;
  aspect-ratio: 328/452;
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
#sauna-LP .complete-set__images img:nth-child(2) {
  width: 55%;
  aspect-ratio: 280/320;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#sauna-LP .complete-set__list {
  padding: 60px 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
#sauna-LP .complete-set__label {
  margin-bottom: 24px;
  display: block;
  align-self: flex-start;
}
#sauna-LP .complete-set__label img { height: auto; width: auto; }
#sauna-LP .complete-set__list p {
  font-size: .9rem;
  font-weight: 400;
  padding: 10px 0;
}

/* ==========================================
   11. NO CONSTRUCTION REQUIRED
   ========================================== */
#sauna-LP .no-construction__images { position: relative; min-height: 250px; margin-bottom: 64px; }
#sauna-LP .no-construction__images img:first-child {
  width: 55%;
  aspect-ratio: 727 / 291;
  object-fit: cover;
  position: relative;
  top: 28px;
  z-index: 1;
}
#sauna-LP .no-construction__images img:nth-child(2) {
  width: 55%;
  aspect-ratio: 711 / 239;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
#sauna-LP .specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  column-gap: var(--gap);
}
#sauna-LP .spec-card { text-align: center; padding: 10px 10px; background: none; }
#sauna-LP .spec-card * { text-align: center; }
#sauna-LP .spec-card img { width: 40px; height: 40px; margin: 0 auto 14px; }
#sauna-LP .spec-card__title { font-size: .65rem; font-weight: 400; margin-bottom: 0; color: var(--color-text); }
#sauna-LP .spec-card small { font-size: .65rem; color: var(--color-text); }

/* ==========================================
   12. FEEDBACK CAROUSEL
   ========================================== */
#sauna-LP .feedback__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}
#sauna-LP .feedback__track.is-auto-scroll {
  scroll-snap-type: none;
}
#sauna-LP .feedback__track::-webkit-scrollbar { display: none; }
#sauna-LP .feedback-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  background: #1E201F;
  box-shadow: none;
}
#sauna-LP .feedback-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
#sauna-LP .feedback-card__body { padding: 20px; background: #1E201F; }
#sauna-LP .feedback-card__body p { font-size: .9rem; line-height: 1.7; color: #FDFDFB; }

/* ==========================================
   13. PRICING
   ========================================== */
#sauna-LP .pricing { text-align: center; }
#sauna-LP .pricing .sec__heading p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--color-text-light);
  font-size: .9rem;
}
#sauna-LP .pricing .sec__heading p::before,
#sauna-LP .pricing .sec__heading p::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-text-light);
  flex-shrink: 0;
}
#sauna-LP .pricing__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#sauna-LP .pricing__inner img {
  max-width: 380px;
  margin: 0 auto 32px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
#sauna-LP .pricing__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .15em;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
}
#sauna-LP .pricing__inner .btn {
  align-self: center;
}

/* ==========================================
   14. PURCHASE FLOW (8 steps)
   ========================================== */
#sauna-LP .flow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
#sauna-LP .step-card { text-align: center; }
#sauna-LP .step-card * { text-align: center; }
#sauna-LP .step-card__header { margin-bottom: 16px; }
#sauna-LP .step-card__step {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
#sauna-LP .step-card__num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
#sauna-LP .step-card__subtitle {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-accent);
}
#sauna-LP .step-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
}
#sauna-LP .step-card__body p { font-size: .65rem; color: var(--color-text-light); }
#sauna-LP .flow__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 98px;
  flex-wrap: wrap;
}

/* ==========================================
   15. FOOTER
   ========================================== */
#sauna-LP .lp-footer {
  aspect-ratio: 1440 / 411;
  min-height: clamp(180px, 28.55vw, 411px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: #FDFDFB;
  padding: clamp(24px, 4vw, 60px) var(--gap);
  background: url('/Sauna-LP/assets/images/footer.png') center/cover no-repeat;
}
#sauna-LP .lp-footer * { text-align: center; }
#sauna-LP .lp-footer p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==========================================
   RESPONSIVE — Tablet (max 1024px)
   ========================================== */
@media (max-width: 1024px) {
  #sauna-LP { font-size: 14px; }
  #sauna-LP .sec { padding: 60px 0; }

  #sauna-LP .hero {
    aspect-ratio: 10 / 4;
  }
  #sauna-LP .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, .72fr);
    gap: 12px;
    padding: 42px 18px 18px;
  }
  #sauna-LP .hero__logo {
    top: 14px;
    left: 18px;
  }
  #sauna-LP .hero__logo img { height: 28px; }
  #sauna-LP .hero__left h1 { font-size: 1rem; margin-bottom: 10px; line-height: 1.18; }
  #sauna-LP .hero__left p { font-size: .72rem; margin-bottom: 16px; line-height: 1.4; }
  #sauna-LP .hero__right { margin-top: 0; }
  #sauna-LP .hero__right-inner {
    width: clamp(130px, 66%, 180px);
  }
  #sauna-LP .hero__right-main { font-size: .76rem; line-height: 1.3; }
  #sauna-LP .hero__right-note { font-size: .58rem; margin-top: 6px; }
  #sauna-LP .hero__btns { gap: 6px; }
  #sauna-LP .hero__btns .btn {
    min-width: 118px;
    min-height: 32px;
    padding: 6px 12px;
    font-size: .72rem;
  }
  #sauna-LP .hero__btns { justify-content: flex-start; }

  #sauna-LP .cypress__grid { grid-template-columns: 1fr; }
  #sauna-LP .cypress__images { min-height: 400px; }
  #sauna-LP .cypress__content { padding: 32px 0 0 0; }

  #sauna-LP .pro-grade__grid { grid-template-columns: 1fr; }
  #sauna-LP .pro-grade__sidebar { order: -1; }
  #sauna-LP .pro-grade__sidebar p { writing-mode: horizontal-tb; letter-spacing: normal; }
  #sauna-LP .pro-grade__sidebar br { display: none; }

  #sauna-LP .features__grid { grid-template-columns: 1fr; }
  #sauna-LP .features__list { padding-right: 0; }
  #sauna-LP .features__images { margin-top: 48px; min-height: 400px; }
  #sauna-LP .features__images img:first-child { width: 70%; }
  #sauna-LP .features__images img:nth-child(2) { width: 55%; }

  #sauna-LP .luxury__grid { display: flex; flex-wrap: wrap; gap: var(--gap); }
  #sauna-LP .luxury__col { display: contents; }
  #sauna-LP .luxury__col:nth-child(1),
  #sauna-LP .luxury__col:nth-child(2),
  #sauna-LP .luxury__col:nth-child(3) { padding-top: 0; }
  #sauna-LP .luxury-card { width: calc(50% - var(--gap) / 2); }

  #sauna-LP .complete-set__grid { grid-template-columns: 1fr; }
  #sauna-LP .complete-set__images { min-height: 360px; }
  #sauna-LP .complete-set__list { padding: 32px 0 0 0; align-items: flex-end; text-align: right; }

  #sauna-LP .flow__grid { grid-template-columns: repeat(2, 1fr); }
  #sauna-LP .feedback-card { flex: 0 0 calc(50% - 12px); }
}

/* ==========================================
   RESPONSIVE — Mobile (max 768px)
   ========================================== */
@media (max-width: 768px) {
  #sauna-LP { --section-pad: 48px; --gap: 16px; }
  #sauna-LP .sec__heading { margin-bottom: 32px; }
  #sauna-LP .sec__heading h4 { font-size: 1.25rem; }

  /* Hero */
  #sauna-LP .hero {
    aspect-ratio: auto;
    min-height: 620px;
  }
  #sauna-LP .hero__video {
    /* top: 50%; */
    position: absolute;
    inset: 0;
    margin: auto;
    width: auto;
    height: 133%;
    min-width: 0;
    min-height: 0;
    max-width: none;
    max-height: none;
    /* transform: translateX(-50%); */
  }
  #sauna-LP .hero__content {
    grid-template-columns: 1fr;
    height: 100%;
    min-height: 0;
    align-content: end;
    width: 100%;
    max-width: none;
    padding: 0 8px 24px;
    align-items: end;
  }
  #sauna-LP .hero__left { text-align: center; }
  #sauna-LP .hero__left h1 { font-size: 1.6rem; }
  #sauna-LP .hero__left p {
    font-size: .65rem;
    text-align: center;
  }
  #sauna-LP .hero__right { justify-content: center; margin-top: 16px; }
  #sauna-LP .hero__right-inner {
    width: 70%;
    max-width: 182px;
    margin-left: auto;
    margin-right: auto;
  }
  #sauna-LP .hero__right-main {
    font-size: .65rem;
    line-height: 1.35;
  }
  #sauna-LP .hero__btns {
    flex-direction: column;
    align-items: center;
  }
  #sauna-LP .hero__btns .btn {
    width: 50%;
    max-width: 160px;
    min-width: 0;
  }
  #sauna-LP .hero__logo { left: 50%; transform: translateX(-50%); }
  #sauna-LP .hero__logo img { height: 42px; }

  /* Content bar — smaller padding */
  #sauna-LP .content-bar__inner p { padding: 14px 20px; font-size: .8rem; }

  /* Revitalize 3-col → remains 3 on tablet-ish, handled at 480 */
  #sauna-LP .revitalize__card { padding: 20px 10px; }
  #sauna-LP .revitalize__card p { font-size: .8rem; }

  /* Grids */
  #sauna-LP .pro-grade__cards { grid-template-columns: 1fr; }
  #sauna-LP .features__list { grid-template-columns: 1fr; }
  #sauna-LP .features__images { min-height: 300px; margin-top: 40px; }
  #sauna-LP .features__images img:first-child { width: 75%; }
  #sauna-LP .features__images img:nth-child(2) { width: 55%; }
  #sauna-LP .banners__grid { grid-template-columns: 1fr; }
  #sauna-LP .banners__grid img:first-child { margin-top: 0; }
  #sauna-LP .luxury-card { width: 100%; aspect-ratio: 4/3; }
  #sauna-LP .specs-grid { grid-template-columns: repeat(2, 1fr); }
  #sauna-LP .no-construction__images { min-height: 250px; }
  #sauna-LP .no-construction__images img:first-child { width: 60%; top: 20px; }
  #sauna-LP .no-construction__images img:nth-child(2) { width: 55%; }
  #sauna-LP .cypress__images { min-height: 300px; }
  #sauna-LP .cypress__images img:first-child { width: 70%; }
  #sauna-LP .cypress__images img:nth-child(2) { width: 60%; }
  #sauna-LP .cypress__content-img { width: 70%; }
  #sauna-LP .feedback-card { flex: 0 0 85%; }
  #sauna-LP .complete-set__images { min-height: 280px; }
  #sauna-LP .complete-set__images img:first-child { width: 70%; }
  #sauna-LP .complete-set__images img:nth-child(2) { width: 55%; }

  /* Flow actions full-width */
  #sauna-LP .flow__actions { flex-direction: column; align-items: center; }
  #sauna-LP .flow__actions .btn { width: 100%; max-width: 320px; }

  /* Pricing */
  #sauna-LP .pricing__inner { padding: 32px 16px; }
  #sauna-LP .pricing__inner img { max-width: 280px; }

  /* Footer */
  #sauna-LP .lp-footer {
    aspect-ratio: auto;
    min-height: 180px;
    padding: 28px var(--gap);
  }
  #sauna-LP .lp-footer p { font-size: 1rem; }
}

/* ==========================================
   RESPONSIVE — Small Mobile (max 480px)
   ========================================== */
@media (max-width: 480px) {
  #sauna-LP { font-size: 13px; }
  #sauna-LP .sec__heading h4 { font-size: 1.1rem; }

  /* Hero full-height */
  #sauna-LP .hero { min-height: 100svh; }
  #sauna-LP .hero__content {
    padding-left: 4px;
    padding-right: 4px;
  }
  #sauna-LP .hero__right-inner {
    width: 70%;
    max-width: 182px;
  }
  #sauna-LP .hero__left h1 { font-size: 1.35rem; letter-spacing: .08em; }

  /* Content bar — even tighter */
  #sauna-LP .content-bar__inner p { padding: 12px 14px; font-size: .75rem; }

  /* Revitalize 3-col → 1-col stack */
  #sauna-LP .revitalize .grid-3 { grid-template-columns: 1fr; }
  #sauna-LP .revitalize__card { padding: 16px 8px; }
  #sauna-LP .revitalize__card p { font-size: .8rem; }
  #sauna-LP .revitalize__card--border-r { border-right: none; border-bottom: 1px solid var(--color-border); }
  #sauna-LP .revitalize__card--border-l { border-left: none; border-top: 1px solid var(--color-border); }

  /* Grids → 1-col */
  #sauna-LP .specs-grid { grid-template-columns: 1fr; }
  #sauna-LP .flow__grid { grid-template-columns: 1fr; }

  /* Comparison */
  #sauna-LP .comparison__card { padding: 12px 12px; border-radius: 8px; }
  #sauna-LP .comparison__table table { font-size: .45rem; min-width: 0; }
  #sauna-LP .comparison__table thead th { font-size: .50rem; }
  #sauna-LP .comparison__table th,
  #sauna-LP .comparison__table td { padding: 6px 4px; }

  /* Images — single overlapping pairs tighter */
  #sauna-LP .no-construction__images { min-height: 200px; margin-bottom: 40px; }
  #sauna-LP .no-construction__images img:first-child { top: 14px; }
  #sauna-LP .cypress__images { min-height: 240px; }
  #sauna-LP .features__images { min-height: 240px; }
  #sauna-LP .complete-set__images { min-height: 220px; }

  /* Feedback cards wider */
  #sauna-LP .feedback-card { flex: 0 0 90%; min-width: 240px; }

  /* Footer */
  #sauna-LP .lp-footer {
    min-height: 160px;
    padding: 24px var(--gap);
  }
  #sauna-LP .lp-footer p { font-size: .95rem; }
}