/* =====================================================
   TON / 屯する家 — Waitlist LP
   VI 準拠: ミニマル + Neo-brutal 寄り
   ===================================================== */

:root{
  --white: #FFFFFF;
  --black: #000000;
  --ink: #0B0B0A;
  --paper: #FAFAF7;     /* warm-tinted near-white */
  --paper-cool: #F4F5F6;
  --paper-neutral: #F7F7F5;
  --yellow: #F3E927;
  --orange-neon: #FF6B00;
  --rule: #000000;
  --muted: #6B6B66;

  --grid-max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* tone variants set on body */
body[data-tone="neutral"]{ --paper: var(--paper-neutral); }
body[data-tone="cool"]{ --paper: var(--paper-cool); }

*,*::before,*::after{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior: smooth; }

body{
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;
}

img{ display:block; max-width:100%; height:auto; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ol, ul{ list-style: none; padding:0; margin:0; }
h1,h2,h3,h4,p{ margin: 0; }

/* radius: never */
*{ border-radius: 0 !important; }

.mono{ font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* =====================================================
   UTILITIES — 表示切替・改行ヘルパー
   ブレークポイント：720px（sp / pc の境）、480px（narrow）
   方針：隠す側だけ !important で潰す。表示側は要素本来の display を尊重。
   ===================================================== */

/* --- 表示／非表示（720px 境） --- */
/* PCのみ表示（スマホで隠す） */
@media (max-width: 720px){ .is-pc-only{ display: none !important; } }
/* スマホのみ表示（PCで隠す） */
@media (min-width: 721px){ .is-sp-only{ display: none !important; } }

/* --- 表示／非表示（480px 境：狭いスマホ） --- */
/* 狭いスマホでだけ表示（481px以上では隠す） */
@media (min-width: 481px){ .is-narrow-only{ display: none !important; } }
/* 狭いスマホでは隠す（481px以上では通常表示） */
@media (max-width: 480px){ .is-narrow-hide{ display: none !important; } }

/* --- 表示／非表示（汎用：980px 境＝既存の中断ポイントに合わせる） --- */
@media (max-width: 980px){ .is-md-up-only{ display: none !important; } }
@media (min-width: 981px){ .is-md-down-only{ display: none !important; } }

/* --- アクセシビリティ：視覚的にのみ隠す（スクリーンリーダーには読ませる） --- */
.is-visually-hidden{
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --- 改行ヘルパー（インライン要素として配置） --- */
/* SPでだけ改行（PCでは詰める） */
.br-sp{ display: none; }
@media (max-width: 640px){ .br-sp{ display: inline; } }
/* PCでだけ改行（SPでは詰める） */
.br-pc{ display: inline; }
@media (max-width: 720px){ .br-pc{ display: none; } }

.ton-mark{
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.ton-mark--big{ font-size: 56px; line-height: 0.9; }

/* =====================================================
   TOP STRIP
   ===================================================== */
.top-strip{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--black);
}
.top-strip__inner{
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 8px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.top-strip__brand{
  display: flex; align-items: center; gap: 10px;
}
.top-strip__logo{
  width: 60px; height: 60px;
  object-fit: contain;
  display: block;
}
.top-strip__brand .ton-mark{ font-size: 18px; line-height: 1; }
.top-strip__tag{
  font-size: 12px; letter-spacing: 0.06em;
  padding-left: 10px;
  border-left: 1px solid var(--black);
}
.top-strip__nav{
  display: flex; align-items: center; gap: 22px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-strip__nav a{
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.top-strip__nav a:hover{ border-bottom-color: var(--black); }
.top-strip__cta{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-neon);
  color: var(--white) !important;
  padding: 8px 14px !important;
  border-bottom: none !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
  font-size: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 2px 2px 0 var(--black);
}
.top-strip__cta:hover{
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--black);
}
.top-strip__cta-icon{
  display: inline-block;
  width: 16px; height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.top-strip__cta-arrow{
  font-weight: 800;
  transition: transform 0.2s;
}
.top-strip__cta:hover .top-strip__cta-arrow{ transform: translateX(3px); }
@media (max-width: 720px){
  .top-strip__nav{ display: none; }
}

/* =====================================================
   1. HERO — magazine split (text left / photo right)
   ===================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  padding-top: 72px; /* top-strip */
  padding-bottom: 28px;
}

.sr-only{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* watermark kanji 屯 — huge, off-canvas right */
.hero__watermark{
  position: absolute;
  right: -8%;
  bottom: -10%;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(420px, 60vw, 900px);
  line-height: 0.8;
  color: var(--black);
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* top meta strip */
.hero__meta{
  position: relative; z-index: 3;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 14px;
}
.hero__meta-left, .hero__meta-right{ display: flex; gap: 18px; flex-wrap: wrap; }
.hero__meta-right{ justify-content: flex-end; }

/* magazine split */
.hero__grid{
  position: relative; z-index: 2;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--gutter) 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; gap: 32px; }
}

/* === LEFT === */
.hero__text{
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
  justify-content: center;
}

.hero__label-row{
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.hero__pill{
  background: var(--black);
  color: var(--white);
  padding: 6px 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.hero__title{
  position: relative;
  font-family: var(--font-sans);
  font-weight: 900;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 0.92;
}
.hero__logo{
  width: clamp(160px, 22vw, 260px);
  height: auto;
  display: block;
  margin-left: -6px;
}

/* Vertical outline logo is portrait, so allow taller box */
body[data-kv="fullbleed"] .hero__logo,
body[data-kv="split"] .hero__logo{
  width: auto;
  height: clamp(220px, 36vh, 360px);
  max-width: 100%;
}
.hero__title-jp{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.06em;
  color: var(--black);
  line-height: 1.1;
  margin-top: 4px;
}

/* ふりがな（ルビ）共通 */
ruby{ ruby-position: over; ruby-align: center; }
rt{
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.5em;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: none;
}
/* 大見出しでは rt を小さめ・上に余白 */
.hero__title-jp{ padding-top: 0.6em; }
.hero__title-jp rt{
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* center stamp variant centers the logo and subtitle */
body[data-kv="fullbleed"] .hero__title{ align-items: flex-start; }

/* tagline */
.hero__tagline{
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  align-items: start;
}
.hero__tagline-rule{
  height: 100%;
  min-height: 80px;
  border-left: 2px solid var(--black);
  margin-top: 6px;
}
.hero__tagline-text{
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.9;
  color: var(--ink);
  text-wrap: pretty;
}

/* chips */
.hero__chips{
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__chip{
  border: 1px solid var(--black);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
}
.hero__chip--sauna{
  background: var(--black);
  color: var(--white);
}

/* tagline stamp */
.hero__stamp-wrap{
  margin-top: 8px;
}
.hero__stamp{
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 18px 14px;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.06em;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 var(--black);
  line-height: 1;
}

/* sub-row: replaced by .hero__cta-block */
.hero__cta-block{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  max-width: 520px;
}
.hero__cta{
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--orange-neon);
  color: var(--white) !important;
  padding: 18px 22px 18px 18px;
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: 0.03em;
  border: 2px solid var(--black);
  box-shadow: 5px 5px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  width: 100%;
  position: relative;
}
.hero__cta::before{
  content: "FREE";
  position: absolute;
  top: -10px;
  left: -10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 2px solid var(--black);
  transform: rotate(-6deg);
  box-shadow: 2px 2px 0 var(--black);
}
.hero__cta:hover{
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--black);
}
.hero__cta:active{
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--black);
}
.hero__cta-icon{
  display: inline-flex;
  background: var(--white);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.hero__cta-icon img{
  width: 100%; height: 100%; object-fit: contain;
  /* orange to match button */
  filter: brightness(0) saturate(100%) invert(40%) sepia(91%) saturate(3500%) hue-rotate(8deg) brightness(102%) contrast(105%);
}
.hero__cta-stack{
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
  text-align: left;
}
.hero__cta-line1{
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.2;
  font-weight: 900;
}
.hero__cta-line2{
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.hero__cta-arrow{
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hero__cta:hover .hero__cta-arrow{ transform: translateX(4px); }

.hero__cta-note{
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}
.hero__cta-note-dot{
  position: absolute;
  left: 0; top: 0.55em;
  color: var(--orange-neon);
  font-size: 8px;
  line-height: 1;
}

/* old sub-row kept for backwards-compat in case still referenced */
.hero__sub-row{ display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero__sub-meta{ color: var(--muted); }
.hero__cta-mini{
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  border-bottom: 2px solid var(--orange-neon);
  padding-bottom: 4px;
  transition: color 0.15s;
}
.hero__cta-mini:hover{ color: var(--orange-neon); }

/* === RIGHT: photo === */
.hero__photo-col{
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: 10px;
  position: relative;
}
.hero__photo{
  margin: 0;
  position: relative;
  border: 1px solid var(--black);
  background: var(--black);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  height: 100%;
  max-height: calc(100vh - 240px);
  min-height: 420px;
}
.hero__photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(0.97) saturate(0.9);
}
.hero__photo--slideshow .hero__slide{
  position: absolute; inset: 0;
  opacity: 0;
  transform-origin: center center;
  transition: opacity 1.2s ease;
  will-change: opacity, transform;
  animation: hero-kenburns 24s ease-in-out infinite;
}
.hero__photo--slideshow .hero__slide.is-active{ opacity: 1; }
@keyframes hero-kenburns{
  0%{ transform: scale(1.02); }
  50%{ transform: scale(1.09); }
  100%{ transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce){
  .hero__photo--slideshow .hero__slide{ animation: none; transform: none; }
}
.hero__slide-dots{
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 4;
  display: flex; gap: 8px;
}
.hero__slide-dot{
  width: 22px; height: 4px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.hero__slide-dot.is-on{
  background: var(--yellow);
  transform: scaleY(1.4);
}
.hero__grain{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1.4px),
    radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1.4px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  opacity: 0.7;
  pointer-events: none;
}
.hero__photo-cap{
  display: flex; justify-content: space-between;
  color: var(--muted);
  padding-top: 4px;
  border-top: 1px solid var(--black);
}

/* bottom strip */
.hero__bottom{
  position: relative; z-index: 3;
  max-width: var(--grid-max);
  margin: 24px auto 0;
  padding: 14px var(--gutter) 0;
  border-top: 1px solid var(--black);
  display: flex; justify-content: space-between; align-items: center;
}
.hero__scroll{
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hero__scroll-arrow{
  font-size: 16px;
  animation: hero-arrow 2.4s infinite ease-in-out;
}
@keyframes hero-arrow{
  0%,100%{ transform: translateY(0); opacity: 0.55; }
  50%{ transform: translateY(4px); opacity: 1; }
}
.hero__bottom-meta{ color: var(--muted); }

/* =====================================================
   KV PATTERN VARIANTS (body[data-kv])
   ===================================================== */

/* ----- BLEED: fullscreen photo bg + centered content card ----- */
body[data-kv="fullbleed"] .hero{
  color: var(--ink);
  background: var(--black);
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
}
body[data-kv="fullbleed"] .hero__watermark{ display: none; }
body[data-kv="fullbleed"] .hero__meta{
  position: absolute; top: 84px; left: 0; right: 0;
  z-index: 5;
  color: var(--white);
  border-top-color: rgba(255,255,255,0.4);
  margin: 0; max-width: none;
  padding: 14px var(--gutter) 0;
}
body[data-kv="fullbleed"] .hero__grid{
  display: block;
  position: relative;
  max-width: none;
  padding: 0;
  min-height: 100vh;
  height: 100vh;
}
body[data-kv="fullbleed"] .hero__photo-col{
  position: absolute; inset: 0;
  z-index: 1;
  gap: 0;
}
body[data-kv="fullbleed"] .hero__photo{
  border: 0;
  aspect-ratio: auto;
  height: 100%;
  max-height: none;
  min-height: 0;
  width: 100%;
}
body[data-kv="fullbleed"] .hero__photo img,
body[data-kv="fullbleed"] .hero__slide{
  filter: contrast(0.98) saturate(0.95) brightness(0.88);
}
body[data-kv="fullbleed"] .hero__photo::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 75%);
  pointer-events: none;
  z-index: 3;
}
body[data-kv="fullbleed"] .hero__photo-cap{
  position: absolute;
  bottom: 86px; right: 18px;
  z-index: 4;
  border-top: 0;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0,0,0,0.4);
  flex-direction: row;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
body[data-kv="fullbleed"] .hero__slide-dots{
  left: 50%; bottom: 86px; top: auto; right: auto;
  transform: translateX(-50%);
  flex-direction: row;
  z-index: 6;
}
@media (max-width: 767px){
  body[data-kv="fullbleed"] .hero__photo-cap{
    bottom: 80px;
    right: 0;
  }
  body[data-kv="fullbleed"] .hero__slide-dots {
    bottom: 65px;
  }
}

/* ===== BLEED: no card chrome, everything sits on the photo ===== */
body[data-kv="fullbleed"] .hero__photo::after{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 85%);
  pointer-events: none;
  z-index: 3;
}

/* container: transparent stack, centered */
body[data-kv="fullbleed"] .hero__text{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: min(560px, calc(100% - 48px));
  max-width: none;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  gap: 22px;
  pointer-events: auto;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

/* Title back to normal flow inside the stack */
body[data-kv="fullbleed"] .hero__title{
  position: static;
  transform: none;
  margin-bottom: 0;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

/* The vertical logo */
body[data-kv="fullbleed"] .hero__logo{
  margin: 0 auto;
  filter: none;
  /* slightly smaller in stack so the whole thing fits */
  height: clamp(180px, 30vh, 400px);
  width: auto;
}

/* Japanese title — white with shadow */
body[data-kv="fullbleed"] .hero__title-jp{
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  text-align: center;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.08em;
}

.hero__title-open{
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border: 1px solid currentColor;
  color: var(--muted);
  text-transform: uppercase;
}
body[data-kv="fullbleed"] .hero__title-open{
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Tagline */
body[data-kv="fullbleed"] .hero__tagline{
  grid-template-columns: 1fr;
}
body[data-kv="fullbleed"] .hero__tagline-rule{ display: none; }
body[data-kv="fullbleed"] .hero__tagline-text{
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
  text-align: center;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.9;
}

/* Chips — translucent dark on photo */
body[data-kv="fullbleed"] .hero__chips{
  justify-content: center;
}
body[data-kv="fullbleed"] .hero__chip{
  background: rgba(0,0,0,0.32);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* CTA block */
body[data-kv="fullbleed"] .hero__cta-block{
  align-items: center;
  margin-top: 4px;
  width: 100%;
}
body[data-kv="fullbleed"] .hero__cta{
  max-width: 100%;
}
body[data-kv="fullbleed"] .hero__cta-note{
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  text-align: center;
  padding-left: 0;
}
body[data-kv="fullbleed"] .hero__cta-note-dot{ display: none; }
body[data-kv="fullbleed"] .hero__logo{
  margin: 0 auto;
  filter: none;
}
body[data-kv="fullbleed"] .hero__title-jp{
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  text-align: center;
}

/* (legacy fullbleed card overrides — neutralized by the unified BLEED block above) */
body[data-kv="fullbleed"] .hero__text-legacy-card{ display: none; }
body[data-kv="fullbleed"] .hero__tagline{
  grid-template-columns: 1fr;
}
body[data-kv="fullbleed"] .hero__tagline-rule{ display: none; }
body[data-kv="fullbleed"] .hero__tagline-text{
  color: var(--ink);
  text-shadow: none;
  text-align: center;
}
body[data-kv="fullbleed"] .hero__chips{
  justify-content: center;
}
body[data-kv="fullbleed"] .hero__chip{
  background: var(--white);
  color: var(--ink);
  border-color: var(--black);
}
body[data-kv="fullbleed"] .hero__cta-block{
  align-items: center;
  margin-top: 4px;
}
body[data-kv="fullbleed"] .hero__cta{
  max-width: 100%;
}
body[data-kv="fullbleed"] .hero__cta-note{
  color: var(--ink);
  text-align: center;
  padding-left: 0;
}
body[data-kv="fullbleed"] .hero__cta-note-dot{ display: none; }

body[data-kv="fullbleed"] .hero__bottom{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  margin: 0; max-width: none;
  border-top-color: rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px var(--gutter);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0));
}
body[data-kv="fullbleed"] .hero__scroll{ color: var(--white); }
body[data-kv="fullbleed"] .hero__bottom-meta{ color: rgba(255,255,255,0.7); }

@media (max-width: 820px){
  body[data-kv="fullbleed"] .hero__text{
    width: calc(100% - 32px);
    padding: 12px;
    gap: 10px;
  }
}

/* ----- TRIPLE: 5 photos visible at once, text below ----- */
body[data-kv="triptych"] .hero__grid{
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vh, 56px);
}
body[data-kv="triptych"] .hero__text{
  order: 2;
  gap: 12px;
}
body[data-kv="triptych"] .hero__photo-col{
  order: 1;
}
body[data-kv="triptych"] .hero__photo{
  aspect-ratio: auto;
  height: 48vh;
  max-height: 540px;
  min-height: 280px;
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border: 1px solid var(--black);
  padding: 0;
}
body[data-kv="triptych"] .hero__slide{
  position: relative;
  inset: auto;
  opacity: 1;
  width: auto; height: 100%;
  transition: filter 0.3s;
}
body[data-kv="triptych"] .hero__slide{ filter: contrast(0.97) saturate(0.85) brightness(0.7); }
body[data-kv="triptych"] .hero__slide.is-active{ filter: contrast(1) saturate(1) brightness(1); }
body[data-kv="triptych"] .hero__slide-dots{
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
}
body[data-kv="triptych"] .hero__grain{ display: none; }
body[data-kv="triptych"] .hero__photo-cap{
  flex-direction: row;
}
body[data-kv="triptych"] .hero__photo::after{ display: none; }
@media (max-width: 720px){
  body[data-kv="triptych"] .hero__photo{
    height: 240px;
    grid-template-columns: repeat(5, 1fr);
  }
}

/* logo color variants */
body[data-logo="black"] .hero__title-en{ color: var(--black); }
body[data-logo="yellow"] .hero__title-en{ color: var(--black); } /* default stays black; pop comes from punctuation dot */
body[data-logo="outline"] .hero__title-en{
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-stroke: 2px var(--black);
}
body[data-logo="yellow"] .hero__title-en::after{ background: var(--yellow); }
body[data-logo="black"]  .hero__title-en::after{ background: var(--black); }
body[data-logo="outline"] .hero__title-en::after{ background: var(--yellow); }

/* =====================================================
   SECTION HEAD (common)
   ===================================================== */
.section-head{
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px 32px;
  align-items: baseline;
}
.section-head__num{
  font-size: 11px;
  letter-spacing: 0.1em;
  border-top: 1px solid var(--black);
  padding-top: 8px;
}
.section-head__title{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  grid-column: 2;
}
.section-head__lead{
  grid-column: 2;
  margin-top: 16px;
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 56ch;
  color: var(--ink);
}
.section-head--inverse .section-head__num{ border-top-color: var(--white); color: var(--white); }
.section-head--inverse .section-head__title,
.section-head--inverse .section-head__lead{ color: var(--white); }

/* =====================================================
   2. 世界観 — statement, full text, no side images
   ===================================================== */
.world{
  background: var(--paper);
  padding: clamp(120px, 18vh, 200px) 0 clamp(120px, 18vh, 200px);
  position: relative;
  overflow: hidden;
}
.world::before{
  display: none;
}
.world__index{
  max-width: var(--grid-max);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 12px;
}
.world__shell{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
}
.world__quotemark{
  position: absolute;
  top: -32px;
  left: 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--black);
  text-stroke: 2px var(--black);
  pointer-events: none;
}
.world__quotemark--end{
  top: auto; left: auto;
  bottom: -32px; right: 0;
}
.world__body{
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 2;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vh, 28px);
  text-wrap: pretty;
}
.world__body p{ margin: 0; }
.world__lead{
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(14px, 1.8vw, 21px);
}
.world__rule{
  width: 56px; height: 2px;
  background: var(--black);
  margin: 8px 0;
}
.world__em{
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
  font-style: normal;
  font-weight: 900;
}
.world__heavy{
  font-weight: 900;
  font-size: clamp(17px, 2.1vw, 25px);
  letter-spacing: 0.06em;
}
.world__strike{
  position: relative;
  display: inline-block;
  color: var(--muted);
}
.world__strike::after{
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  top: 52%;
  height: 2px;
  background: var(--black);
  transform: rotate(-4deg);
}
.world__pop{
  display: inline-block;
  background: var(--orange-neon);
  color: var(--white);
  padding: 0 8px;
  font-weight: 900;
  transform: rotate(-1deg);
}

.world__stamp-wrap{
  margin-top: 24px !important;
  text-align: center;
}
.world__stamp{
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 12px 22px 14px;
  font-weight: 900;
  font-size: clamp(16px, 2.1vw, 25px);
  letter-spacing: 0.04em;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 var(--black);
  line-height: 1;
}

.world__sign{
  max-width: 880px;
  margin: 80px auto 0;
  padding: 16px clamp(24px, 6vw, 80px) 0;
  border-top: 1px solid var(--black);
  display: flex; justify-content: space-between;
  color: var(--muted);
}

@media (max-width: 767px){
  
}

/* =====================================================
   2.5 VISION / 完成予想ビジュアル（statement直後）
   ===================================================== */
.vision{
  background: var(--paper);
  padding: clamp(80px, 12vh, 140px) 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.vision__head{
  max-width: var(--grid-max);
  margin: 0 auto 40px;
  padding: 0 var(--gutter) 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  border-bottom: 1px solid var(--black);
}
.vision__tag{
  align-self: start;
  border-top: 1px solid var(--black);
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}
.vision__lead{
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 720px){
  .vision__head{
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .vision__tag{ white-space: normal; }
}
.vision__grid{
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  list-style: none;
}
.vision__card{ display: flex; flex-direction: column; grid-column: span 2; }
/* 上段 2枚は中央寄せ（cols 2-3, 4-5） */
.vision__grid > li:nth-child(1){ grid-column: 2 / span 2; }
.vision__grid > li:nth-child(2){ grid-column: 4 / span 2; }
@media (max-width: 900px){
  .vision__grid{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vision__grid > li,
  .vision__grid > li:nth-child(1),
  .vision__grid > li:nth-child(2){ grid-column: span 1; }
}
@media (max-width: 480px){
  .vision__grid{ grid-template-columns: 1fr; gap: 24px; }
}
.vision__fig{
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vision__fig img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--black);
  background: var(--white);
}
.vision__fig figcaption{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2px 2px 0;
  color: var(--ink);
  gap: 8px;
}
.vision__fig figcaption .mono{
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.vision__fig figcaption span:last-child{
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.04em;
}
.vision__disclaimer{
  max-width: var(--grid-max);
  margin: 20px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-align: right;
}
.vision__disclaimer > span{
  display: inline-block;
  background: var(--accent, #F3E927);
  color: var(--black);
  font-weight: 700;
  padding: 1px 6px;
  margin-right: 2px;
  letter-spacing: 0;
}
@media (max-width: 720px){
  .vision__disclaimer{
    justify-content: flex-start;
    text-align: left;
    margin-top: 16px;
  }
}


/* =====================================================
   3. 先行案内
   ===================================================== */
.offer{
  background: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: clamp(120px, 16vh, 180px) 0;
}
.offer__list{
  max-width: var(--grid-max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--black);
}
@media (max-width: 980px){
  .offer__list{ grid-template-columns: 1fr 1fr; }
  .offer__item--hero{ grid-column: span 2; }
}
@media (max-width: 560px){
  .offer__list{ grid-template-columns: 1fr; }
  .offer__item--hero{ grid-column: span 1; }
}

.offer__item{
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 360px;
  position: relative;
  background: var(--white);
  transition: background 0.2s;
}
.offer__item:last-child{ border-right: 0; }
@media (max-width: 980px){
  .offer__item:nth-child(2n){ border-right: 0; }
  .offer__item:nth-child(2n-1){ border-right: 1px solid var(--black); }
}
@media (max-width: 560px){
  .offer__item{ border-right: 0 !important; min-height: 0; }
}
.offer__item:hover{ background: var(--paper); }

.offer__item--hero{
  background: var(--yellow);
}
.offer__item--hero:hover{ background: var(--yellow); }

/* ----- standalone lottery callout (sits below 3-item list) ----- */
.lottery{
  position: relative;
  max-width: var(--grid-max);
  margin: 40px auto 0;
  padding: 36px clamp(28px, 4vw, 56px) 36px;
  background: var(--paper);
  border: 1px solid var(--black);
  border-top: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: clamp(28px, 5vw, 64px);
  row-gap: 20px;
  overflow: hidden;
}
.lottery::before{
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--yellow);
}
@media (max-width: 980px){
  .lottery{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .lottery{ padding: 28px 22px; }
}

.lottery__head{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--black);
}
.lottery__tag{
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.lottery__plus{
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.lottery__body{ display: flex; flex-direction: column; gap: 12px; }
.lottery__h{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--ink);
}
.lottery__hi{
  font-style: normal;
  font-size: 1.32em;
  background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 95%, transparent 95%);
  padding: 0 0.08em;
  letter-spacing: 0.03em;
}
.lottery__lead{
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}
.lottery__hi-mini{
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(transparent 60%, var(--yellow) 60%, var(--yellow) 92%, transparent 92%);
  padding: 0 0.1em;
}

.lottery__conds{
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-left: 1px solid var(--black);
  padding-left: clamp(20px, 3vw, 32px);
}
@media (max-width: 980px){
  .lottery__conds{ border-left: 0; padding-left: 0; border-top: 1px solid var(--black); padding-top: 16px; }
}
.lottery__conds li{
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: baseline;
  line-height: 1.6;
}
.lottery__conds li span{
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lottery__stamp{
  position: absolute;
  right: -54px;
  top: 22px;
  background: var(--orange-neon);
  color: var(--white);
  padding: 5px 64px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  transform: rotate(38deg);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 560px){
  .lottery__stamp{ right: -48px; top: 18px; padding: 4px 56px; font-size: 9px; }
}

.offer__num{
  font-size: 11px;
  letter-spacing: 0.1em;
}
.offer__inner{ display: flex; flex-direction: column; gap: 16px; flex: 1; }
.offer__h{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.offer__item p{ font-size: 14px; line-height: 1.7; color: var(--ink); }

.offer__tag{
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  align-self: flex-start;
}

.offer__conds{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: none;
  border-top: 1px solid var(--black);
  padding-top: 12px;
}
.offer__conds li{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: baseline;
}
.offer__conds li span{
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer__big{
  margin-top: auto;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex; align-items: flex-end;
}
.offer__big span{
  font-size: 0.22em;
  margin-left: 6px;
  margin-bottom: 0.4em;
  letter-spacing: 0.05em;
}

.offer__jump{
  display: block;
  max-width: var(--grid-max);
  margin: 56px auto 0;
  padding: 0 var(--gutter);
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.offer__jump:hover{ color: var(--orange-neon); }

/* =====================================================
   4. BEFORE スクロール連動
   ===================================================== */
.before{
  position: relative;
  background: #0E0D0B;
  color: var(--white);
}
.before__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow: hidden;
}
@media (max-width: 900px){
  .before__sticky{ grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
}
.before__head{
  padding: clamp(76px, 12vh, 120px) clamp(28px, 4vw, 64px) clamp(24px, 4vw, 56px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  background: #0E0D0B;
  position: relative;
  z-index: 2;
}
.before__index{
  display: flex; gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.before__title{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}
.before__lead{
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 28ch;
}

.before__frame{
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 0;
}
.before__frame-inner{
  position: relative;
  overflow: hidden;
  background: #050505;
  /* grid 1fr 行に置かれるが、imgの自然サイズが min-content として
     1fr を押し広げてしまうので、min-height: 0 で明示的に潰す。
     これがないと縦長写真（例: 05.webp）が sticky 外まではみ出す。 */
  min-height: 0;
}
.before__frame-inner img{
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(0.97) saturate(0.85) brightness(0.95);
  display: block;
}
@media (max-width: 767px){
  .before__frame{
    height: 100%;
  }
}
.before__grain{
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1.4px),
    radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1.4px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  opacity: 0.7;
  pointer-events: none;
}
.before__overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  color: var(--white);
  pointer-events: none;
}
.before__overlay-tl{
  display: flex; flex-direction: column; gap: 6px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}
.before__overlay-br{
  align-self: flex-end;
  background: var(--black);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  max-width: 70%;
}

.before__progress{
  height: 4px;
  background: rgba(255,255,255,0.12);
  position: relative;
}
.before__progress-bar{
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--yellow);
  width: 5%;
  transition: width 0.08s linear;
}
.before__ticks{
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.before__spacer{
  /* Drives scroll length; JS reads this height to map scroll -> frame */
  height: 240vh;
}

.before__foot{
  padding: 28px var(--gutter) clamp(56px, 8vh, 96px);
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.before__foot-meta{
  display: flex; gap: 20px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.before__foot-meta-mark{ color: var(--yellow); }
.before__foot-line{
  font-size: clamp(18px, 2vw, 26px);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.before__foot-line .mono{ color: var(--yellow); margin-right: 6px; }
.before__foot-sub{
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  max-width: 38ch;
}

/* Alternate modes: grid / single-large */
body[data-before="grid"] .before__sticky{ position: static; height: auto; display: block; }
body[data-before="grid"] .before__head{ border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
body[data-before="grid"] .before__frame{ display: none; }
body[data-before="grid"] .before__spacer{ display: none; }
body[data-before="grid"] .before-grid{ display: grid; }

body[data-before="single"] .before__sticky{ position: static; height: auto; grid-template-columns: 1fr; }
body[data-before="single"] .before__head{ border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 60px; }
body[data-before="single"] .before__frame{ height: 80vh; }
body[data-before="single"] .before__spacer{ display: none; }
body[data-before="single"] #beforeImg{ /* show middle frame */ }

.before-grid{
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 2px;
  background: rgba(255,255,255,0.08);
}
.before-grid figure{ margin: 0; aspect-ratio: 1; background: #050505; }
.before-grid img{ width: 100%; height: 100%; object-fit: cover; filter: contrast(0.97) saturate(0.85); }

/* =====================================================
   5. 何がある家か
   ===================================================== */
.house{
  background: var(--paper);
  padding: clamp(120px, 18vh, 200px) 0 clamp(120px, 18vh, 200px);
  border-bottom: 1px solid var(--black);
}

.plan{
  max-width: var(--grid-max);
  margin: 72px auto 0;
  padding: 0 var(--gutter);
}
.plan__toolbar{
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black);
  flex-wrap: wrap;
}
.plan__tabs{
  display: flex; gap: 0;
  border: 1px solid var(--black);
}
.plan__tab{
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--black);
  background: var(--white);
  transition: background 0.15s, color 0.15s;
}
.plan__tab:last-child{ border-right: 0; }
.plan__tab.is-active{
  background: var(--black);
  color: var(--white);
}
.plan__tab:hover:not(.is-active){ background: var(--paper); }

.plan__legend{
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 11px;
  color: var(--muted);
}
.plan__legend span{ display: inline-flex; align-items: center; gap: 6px; }
.sw{ display: inline-block; width: 12px; height: 12px; border: 1px solid var(--black); }
.sw--room{ background: var(--white); }
.sw--wet{ background: #EAF1F4; }
.sw--engawa{ background: #EFE5D5; }
.sw--deck{ background: #E6CFA8; }
.sw--field{ background: #D7E6C2; }

.plan__heading{
  display: flex; align-items: baseline; gap: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.plan__heading span:first-child{
  color: var(--muted);
}
.plan__heading span:last-child{
  font-weight: 600;
  color: var(--black);
  padding: 2px 8px;
  background: var(--black);
  color: var(--white);
}

.plan__stage{
  margin-top: 24px;
  padding: clamp(20px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--black);
  min-height: 520px;
  display: grid;
  place-items: center;
}
.plan__floor{ position: relative; width: 100%; }
.plan__floor-label{
  position: absolute; top: 0; left: 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--black);
  color: var(--white);
}
.plan__floor img{ width: 100%; max-width: 920px; margin: 0 auto; }
.plan__both{
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
  align-items: start;
}
@media (max-width: 720px){
  .plan__both{ grid-template-columns: 1fr; }
  .plan__floor.--2f{ width: 55%; }
}
.plan__note{
  margin-top: 14px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.02em;
}

.rooms{
  max-width: var(--grid-max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
@media (max-width: 820px){
  .rooms{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px){
  .rooms{ grid-template-columns: 1fr; }
}
.room{
  padding: 32px 24px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  min-height: 200px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--white);
}
.room__h{ display: flex; align-items: baseline; gap: 14px; }
.room__h .mono{ color: var(--muted); }
.room__h h3{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.02em;
}
.room p{ font-size: 14px; line-height: 1.9; color: var(--ink); }
.room__em{
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
  padding: 0 2px;
}
@media (max-width: 767px){
  .room {
    min-height: 0;
  }
}

/* =====================================================
   6. LINE CTA
   ===================================================== */
.line-cta{
  background: var(--black);
  color: var(--white);
  padding: clamp(120px, 18vh, 200px) 0;
  position: relative;
  overflow: hidden;
}
.line-cta::before{
  content: "TON ／ 屯する家 ／ TON ／ 屯する家 ／ TON ／ 屯する家";
  position: absolute;
  top: 40px; left: 0; right: 0;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 110px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.04em;
}
.line-cta__inner{
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}
.line-cta__grid{
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px){
  .line-cta__grid{ margin-top: 40px; grid-template-columns: 1fr; }
}

.cta-button{
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--orange-neon);
  color: var(--white) !important;
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.04em;
  border: 2px solid var(--orange-neon);
  transition: transform 0.15s, background 0.15s, color 0.15s;
  width: 100%;
  max-width: 460px;
  justify-content: space-between;
}
.cta-button:hover{
  background: var(--white);
  color: var(--orange-neon) !important;
}
.cta-button__icon{
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
}
.cta-button__icon img{
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1);
}
.cta-button__label{ flex: 1; text-align: left; }
.cta-button__arrow{ font-weight: 700; }

.line-cta__bullets{
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.line-cta__bullets .mono{ color: var(--yellow); margin-right: 8px; }

.line-cta__right{
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.qr{
  background: var(--white);
  padding: 18px;
  border: 1px solid var(--white);
  display: flex; flex-direction: column; gap: 12px;
  width: 100%;
  max-width: 260px;
  color: var(--black);
  transition: transform 0.15s;
}
.qr:hover{ transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--yellow); }
.qr__frame{
  position: relative;
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
}
.qr__img{ width: 100%; height: 100%; object-fit: contain; display: block; }
.qr__meta{
  display: flex; justify-content: space-between;
  color: var(--black);
  font-size: 10px;
}
@media (max-width: 767px){
  .qr {
    max-width: 200px;
  }
}
.line-cta__qr-note{
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

/* =====================================================
   7. 運営
   ===================================================== */
.ops{
  background: var(--paper);
  padding: clamp(80px, 14vh, 140px) var(--gutter);
  text-align: center;
}
.ops__line{
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer{
  background: var(--ink);
  color: var(--white);
  padding: 80px var(--gutter) 32px;
  border-top: 1px solid var(--black);
}
.footer__top{
  max-width: var(--grid-max);
  margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer__brand{
  display: flex; align-items: baseline; gap: 18px;
}
.footer__brand .ton-mark{
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.85;
  color: var(--yellow);
}
.footer__tag{
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--white);
}
.footer__contact a{
  border-bottom: 1px solid var(--white);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.footer__mid{
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 720px){
  .footer__mid{ grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.footer__col-h{
  display: block;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.footer__col p{
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
}
.footer__bottom{
  max-width: var(--grid-max);
  margin: 24px auto 0;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   3. PLACE / 場所のこと
   ===================================================== */
.place{
  background: var(--white);
  padding: clamp(120px, 16vh, 180px) 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.place__layout{
  max-width: var(--grid-max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px){
  .place__layout{ grid-template-columns: 1fr; gap: 48px; }
}
.place__cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
.place__card{
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  background: var(--white);
  transition: background 0.2s;
}
.place__card:hover{ background: var(--paper); }
.place__card-tag{
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.place__card-h{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.place__card p{
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}
@media (max-width: 767px){
  .place__cards{ grid-template-columns: 1fr; }
  .place__card{ min-height: 0; }
}

.place__map{
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.place__map-stage{
  border: 1px solid var(--black);
  background: var(--paper);
  padding: 24px;
  aspect-ratio: 400 / 360;
  display: grid;
  place-items: center;
}
.place__map-stage svg{
  width: 100%; height: 100%; display: block;
}
.place__map-cap{
  display: flex; justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--black);
  padding-top: 6px;
}

.place__keywords{
  max-width: var(--grid-max);
  margin: 64px auto 0;
  padding: 16px var(--gutter);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.place__keywords li{
  display: inline-flex; align-items: baseline; gap: 8px;
}
.place__keywords .mono{
  color: var(--muted);
}


/* =====================================================
   6. AFTER / NEO 和室
   ===================================================== */
.after{
  background: var(--paper);
  padding: clamp(120px, 16vh, 180px) 0;
  position: relative;
  overflow: hidden;
}
.after__concept-em{
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 0 8px;
  font-style: normal;
  font-weight: 900;
}

.after__concept{
  max-width: var(--grid-max);
  margin: 64px auto 0;
  padding: 0 var(--gutter);
}
.after__concept-block{
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--black);
  box-shadow: 6px 6px 0 var(--black);
  display: flex; flex-direction: column;
  gap: 14px;
}
.after__concept-tag{
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.after__concept-text{
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.9;
  text-wrap: pretty;
}
.after__concept-text em{
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(transparent 62%, var(--yellow) 62%, var(--yellow) 92%, transparent 92%);
  padding: 0 4px;
}
@media (max-width: 767px){
  .after__concept {
    margin-top: 32px;
  }
  .plan {
    margin-top: 40px;
  }
}

/* Materials */
.after__materials{
  max-width: var(--grid-max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
}
.after__materials-head{
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 12px;
  margin-bottom: 24px;
}
.after__swatches{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 820px){
  .after__swatches{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .after__swatches{ grid-template-columns: 1fr; }
}
.after__swatch{
  display: flex; flex-direction: column;
  border: 1px solid var(--black);
  background: var(--white);
}
.after__swatch-chip{
  width: 100%;
  aspect-ratio: 1.2 / 1;
  background: var(--sw, var(--paper));
  border-bottom: 1px solid var(--black);
}
.after__swatch-meta{
  padding: 12px 12px 14px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.after__swatch-meta .mono{
  color: var(--muted);
}
.after__swatch-name{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.after__swatch-sub{
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

/* Before/After pairs */
.after__pairs{
  max-width: var(--grid-max);
  margin: 96px auto 0;
  padding: 0 var(--gutter);
}
.after__pairs-head{
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 12px;
  margin-bottom: 32px;
}
.after__pair-list{
  display: flex; flex-direction: column;
  gap: 56px;
}
.after__pair{
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 24px;
  align-items: start;
}
@media (max-width: 560px){
  .after__pair{ grid-template-columns: 1fr; gap: 12px; }
}
.after__pair-num{
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 8px;
}
.after__pair-h{
  grid-column: 2;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
@media (max-width: 560px){
  .after__pair-h{ grid-column: 1; }
}
.after__pair-grid{
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px){
  .after__pair-grid{ grid-column: 1; grid-template-columns: 1fr; }
}
.after__pair-cell{
  margin: 0;
  display: flex; flex-direction: column;
}
.after__pair-stub{
  aspect-ratio: 4 / 3;
  background: #E6E4DD;
  border: 1px solid var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 6px;
  color: var(--muted);
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(0,0,0,0.06) 47%, rgba(0,0,0,0.06) 53%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(0,0,0,0.06) 47%, rgba(0,0,0,0.06) 53%, transparent 53%);
  background-size: 16px 16px;
}
.after__pair-stub--after{
  background-color: #FFFBE8;
  border-color: var(--black);
  color: var(--ink);
}
.after__pair-stub-cap{
  font-size: 11px;
  letter-spacing: 0.04em;
}
.after__pair-cell figcaption{
  padding: 8px 0 0;
  color: var(--muted);
}

/* Equipment items */
.after__items{
  max-width: var(--grid-max);
  margin: 96px auto 0;
  padding: 0 var(--gutter);
}
.after__items-head{
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 12px;
  margin-bottom: 24px;
}
.after__items-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
@media (max-width: 820px){
  .after__items-list{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .after__items-list{ grid-template-columns: 1fr; }
}
.after__item{
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 14px;
  align-items: start;
  padding: 22px 20px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: var(--white);
}
.after__item .mono{
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.after__item h4{
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 15px;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.after__item p{
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink);
}
.after__items-note{
  margin-top: 16px;
  color: var(--muted);
  text-align: right;
  text-transform: none;
  letter-spacing: 0.02em;
}


/* =====================================================
   AFTER / DETAILS — replace MATERIALS section
   ===================================================== */
.after__details{
  max-width: var(--grid-max);
  margin: 80px auto 0;
  padding: 0 var(--gutter);
}
.after__details-head{
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--black);
  padding-top: 12px;
  margin-bottom: 24px;
  color: var(--ink);
}
.after__detail-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 820px){
  .after__detail-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .after__detail-grid{ grid-template-columns: 1fr; }
}
.after__detail{
  display: flex; flex-direction: column;
  gap: 8px;
}
.after__detail image-slot{
  --slot-aspect: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--black);
  background: var(--white);
  display: block;
}
.after__detail figcaption{
  display: flex; justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 2px 0;
}
.after__detail figcaption span:last-child{
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  font-weight: 500;
}


/* photo cell variant (replaces stub) */
.after__pair-photo{
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--black);
  overflow: hidden;
  background: var(--black);
}
.after__pair-photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(0.98) saturate(0.92);
}
.after__pair-label{
  position: absolute;
  top: 10px; left: 10px;
  background: var(--black);
  color: var(--white);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}


/* fixed top-strip 分のスクロール余白（アンカーリンクが見出しを隠さないように） */
:where(section[id], #hero){ scroll-margin-top: 72px; }
@media (max-width: 720px){
  :where(section[id], #hero){ scroll-margin-top: 56px; }
}

/* =====================================================
   MOBILE PASS — 720px以下のリズム・section-head・top-strip
   各セクションの上下余白を圧縮し、見出しを縦並びに整える。
   デザイン方針（黒罫線・mono番号・余白の呼吸）は維持。
   ===================================================== */
@media (max-width: 767px){

  /* ----- セクション垂直リズム ----- */
  .world{ padding: 72px 0 80px; }
  .place{ padding: 72px 0 80px; }
  .offer{ padding: 72px 0 80px; }
  .after{ padding: 72px 0 80px; }
  .line-cta{ padding: 84px 0 96px; }
  .ops,
  .ops[style]{ padding: 28px var(--gutter) !important; }

  /* world のインデックス余白も圧縮 */
  .world__index{ margin-bottom: 40px; }
  .world__quotemark{ font-size: 64px;  }

  /* ----- section-head: num→title→lead を縦並びに ----- */
  .section-head{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .section-head__num{
    grid-column: 1;
    width: max-content;
    padding-top: 6px;
  }
  .section-head__title{
    grid-column: 1;
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1.18;
  }
  .section-head__lead{
    grid-column: 1;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.75;
  }
  .section-head--inverse .section-head__title{ font-size: clamp(26px, 7.5vw, 36px); }

  /* ----- top-strip: ロゴ縮小・タグ非表示・CTAだけ残す ----- */
  .top-strip__inner{ gap: 10px; padding: 6px var(--gutter); }
  .top-strip__logo{ width: 45px; height: 45px; }
  .top-strip__brand{ gap: 0; }
  .top-strip__brand .ton-mark{ font-size: 18px; }
  .top-strip__tag{ display: none; }
  /* ページ内アンカー（世界観/先行案内/改装前/家）はモバイル非表示、
     LINE誘導CTAだけは常時残す（720pxで nav 自体が消える既存ルールを上書き） */
  .top-strip__nav{ display: flex !important; gap: 8px; }
  .top-strip__nav > a:not(.top-strip__cta){ display: none; }
  .top-strip__cta{
    padding: 6px 10px !important;
    font-size: 11px;
    box-shadow: 1px 1px 0 var(--black);
    gap: 6px;
  }
  .top-strip__cta-icon{ width: 14px; height: 14px; }

  /* hero の上余白を top-strip 高さに合わせて再調整 */
  .hero{ padding-top: 56px; }
  .hero__meta{
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
  }
  .hero__meta-right{ justify-content: flex-start; }
  .hero__meta-left, .hero__meta-right{ gap: 12px; }
  .hero__photo-cap{
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .hero__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 10px;
    margin-top: 16px;
  }

  /* offer: 下部ジャンプリンクの上余白を詰める */
  .offer__jump{ margin-top: 36px; }

  /* before: sticky 中はリード文を畳んで写真領域を広げる
     （JS が .before__sticky.is-stuck をトグル） */
  .before__sticky .before__lead{
    transition: opacity 0.25s ease, max-height 0.3s ease, margin 0.3s ease;
    max-height: 30em;
  }
  .before__sticky.is-stuck .before__lead{
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
  }

  /* footer: 上下圧縮、ブランド名のサイズ抑制 */
  .footer{ padding: 56px 20px 28px; }
  .footer__top{ margin-bottom: 32px; padding-bottom: 20px; gap: 16px; }
  .footer__brand{ gap: 12px; }
  .footer__brand .ton-mark{ font-size: 48px; }
  .footer__mid{ padding-bottom: 32px; gap: 24px 20px; }
  .footer__bottom{
    margin-top: 20px;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px){
  .world{ padding: 60px 0 68px; }
  .place,
  .offer,
  .after{ padding: 60px 0 68px; }
  .line-cta{ padding: 72px 0 80px; }

  .section-head__title{ font-size: clamp(26px, 8vw, 34px); }
  .section-head__lead{ font-size: 13.5px; }
}

