/* インテリア吉田 — 2026-08-29 v3（SPレビュー18件の修正）
   構造の出典: 内田産業（uchida-sangyou.co.jp）の実DOM実測
     - grid を使わない。全て flex（実測: grid-template-columns 0件）
     - sticky の柱＋本文カラムの非対称配置
     - フッターは左右分割 → SP で column-reverse
     - 余白は clamp ではなく幅ごとの px 切替
   参考からの意図的な変更（SPレビューで破綻したため）:
     - 柱を「中央」→「左端」へ。中央柱は SP で左右カラムが 186/164px まで潰れ、本文が1行6文字になった
     - ティッカーを廃止。SP で7市が画面外に切れ、要件（7市を省略しない）に違反した
     - 円の概念図を廃止。うちの内容は「順番」で、円環にする必然性がなかった
   制約（藍森山・COPREC の実測）: 色3 / 文字サイズ5 / 角丸0 / 影0 / gradient0 / 字間normal */

:root {
  --paper: #e5e3d8;
  --ink: #14140f;
  --rule: #b9b7a9;

  --t-note: 12px;
  --t-small: 14px;
  --t-body: 16px;
  --t-sub: 24px;
  --t-head: 40px;

  --head-h: 72px;
  --pad: 32px;
  --rail: 192px;

  --font: "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --font-head: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); font-size: var(--t-body); line-height: 1.9; letter-spacing: normal; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.skip { position: fixed; top: 8px; left: 8px; z-index: 200; padding: 8px 12px; background: var(--paper); border: 1px solid var(--ink); font-size: var(--t-small); transform: translateY(-160%); }
.skip:focus { transform: translateY(0); }

/* ===== 帯 ===== */
.band { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 20px; padding: 10px var(--pad); border-bottom: 1px solid var(--rule); font-size: var(--t-note); }
.band b { white-space: nowrap; }
.band span { margin-left: auto; display: flex; flex-wrap: wrap; }
.band span i { font-style: normal; white-space: nowrap; }
.band span i + i::before { content: "・"; }

/* ===== ヘッダー ===== */
.head { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; height: var(--head-h); padding-left: var(--pad); background: var(--paper); border-bottom: 1px solid var(--ink); }
.head__brand { font-family: var(--font-head); font-size: var(--t-body); line-height: 1.3; white-space: nowrap; }
.head__brand small { display: block; font-family: var(--font); font-size: var(--t-note); }
.head__nav { margin-left: auto; display: flex; align-items: center; gap: 24px; font-size: var(--t-small); }
.head__nav a { white-space: nowrap; }
.head__tel { margin-left: 28px; text-align: right; line-height: 1.3; }
.head__tel b { display: block; font-family: var(--font-head); font-size: 21px; font-weight: 400; letter-spacing: .02em; white-space: nowrap; }
.head__tel small { display: block; font-size: 11px; }
.head__cta { display: flex; align-items: center; gap: 10px; height: var(--head-h); padding-inline: 24px; margin-left: 24px; color: var(--paper); background: var(--ink); font-size: var(--t-small); white-space: nowrap; }

/* ===== 1 ヒーロー: 左 写真 / 中 主張 / 右 写真 ===== */
.hero { position: relative; display: flex; height: calc(100svh - var(--head-h)); min-height: 560px; border-bottom: 1px solid var(--ink); }
.hero__l { flex: 0 0 38%; border-right: 1px solid var(--rule); }
.hero__c { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; padding: 24px; }
.hero__r { flex: 0 0 22%; display: flex; flex-direction: column; border-left: 1px solid var(--rule); }
.hero__r .ph { flex: 1; border: 0; border-bottom: 1px solid var(--rule); }
.hero__r .ph:last-child { border-bottom: 0; }

.marks { display: flex; align-items: center; gap: 16px; max-width: 100%; margin: 0; font-weight: 400; }
.marks__col { display: flex; flex-direction: column; }
.marks__col span { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid var(--ink); font-family: var(--font-head); font-size: var(--t-sub); }
.marks__col span + span { border-top: 0; }
.marks__side { display: block; font-family: var(--font-head); font-size: var(--t-sub); font-weight: 400; writing-mode: vertical-rl; }
.hero__tag { display: flex; align-items: center; gap: 12px; margin: 0; font-size: var(--t-small); white-space: nowrap; }
.hero__tag::before, .hero__tag::after { content: ""; width: 24px; border-top: 1px solid var(--ink); }
.hero__acts { display: flex; gap: 8px; }
.act { display: flex; align-items: center; justify-content: center; height: 52px; padding-inline: 24px; border: 1px solid var(--ink); font-size: var(--t-small); white-space: nowrap; }
.act--main { color: var(--paper); background: var(--ink); }
.ph { position: relative; display: flex; align-items: flex-end; height: 100%; background: rgb(20 20 15 / .05); border: 1px solid var(--rule); }
.ph span { padding: 8px 10px; font-size: var(--t-note); }

.hero__read { position: absolute; right: 0; bottom: 0; z-index: 2; display: block; width: 22%; min-width: 300px; padding: 20px 22px; background: var(--paper); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.hero__read-kind { display: block; padding-bottom: 8px; margin-bottom: 10px; border-bottom: 1px solid var(--rule); font-size: var(--t-note); letter-spacing: .06em; }
.hero__read b { display: block; margin-bottom: 12px; font-family: var(--font-head); font-size: var(--t-body); font-weight: 400; line-height: 1.7; }
.hero__read-src { display: flex; align-items: center; font-size: var(--t-note); }
.hero__read-src i { margin-left: auto; font-style: normal; }
.hero__read:hover b { border-bottom: 0; }

/* ===== 2 対応地域: 罫で並べる（読める形） ===== */
.area { display: flex; align-items: stretch; border-bottom: 1px solid var(--rule); }
.area__label { flex: 0 0 var(--rail); display: flex; flex-direction: column; justify-content: center; padding: 20px var(--pad); border-right: 1px solid var(--rule); font-size: var(--t-small); }
.area__label small { font-size: var(--t-note); }
.area ul { flex: 1; display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.area li { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 120px; padding: 20px 8px; border-right: 1px solid var(--rule); font-size: var(--t-body); white-space: nowrap; }
.area li:last-child { border-right: 0; }
.area li b { font-weight: 400; }
.area li i { display: block; font-style: normal; font-size: var(--t-note); }

/* ===== 3 主張: 一文だけ ===== */
.claim { display: flex; gap: 48px; padding: 112px var(--pad); border-bottom: 1px solid var(--rule); }
.claim h2 { flex: 1; margin: 0; font-family: var(--font-head); font-size: var(--t-head); font-weight: 400; line-height: 1.7; }
.claim div { flex: 0 0 380px; align-self: flex-start; padding-top: 10px; }
.claim p { margin: 0; font-size: var(--t-small); }

/* ===== 4 全幅写真 ===== */
.wide { padding-inline: var(--pad); border-bottom: 1px solid var(--rule); }
.wide .ph { height: 400px; }

/* ===== 5 仕事の進め方: 左に sticky の柱、右に 01→02→03 ===== */
.pillars { display: flex; border-bottom: 1px solid var(--rule); }
.pillars__axis { flex: 0 0 var(--rail); position: sticky; top: var(--head-h); align-self: flex-start; height: calc(100svh - var(--head-h)); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 16px; padding-top: 96px; border-right: 1px solid var(--rule); }
.pillars__axis b { writing-mode: vertical-rl; font-family: var(--font-head); font-size: var(--t-sub); font-weight: 400; }
.pillars__axis small { writing-mode: vertical-rl; font-size: var(--t-note); }
.pillars__list { flex: 1; display: flex; flex-wrap: wrap; align-content: flex-start; padding: 96px var(--pad); gap: 72px 48px; }
.item { flex: 0 0 calc(50% - 24px); }
.item:nth-child(2) { margin-top: 64px; }
.item:nth-child(3) { margin-top: -40px; }
.item__ph { position: relative; height: 260px; background: rgb(20 20 15 / .05); border: 1px solid var(--rule); }
.item__ph > .item__cap { position: absolute; left: 10px; bottom: 8px; font-size: var(--t-note); }
.item__ph > .item__no { position: absolute; top: -1px; right: -1px; left: auto; bottom: auto; padding: 4px 10px; background: var(--paper); border: 1px solid var(--ink); font-size: var(--t-note); }
.item h3 { margin: 20px 0 8px; font-family: var(--font-head); font-size: var(--t-sub); font-weight: 400; }
.item p { margin: 0; font-size: var(--t-small); }

/* ===== 6 対応工事 ===== */
.works__head { display: flex; align-items: flex-end; gap: 40px; padding: 96px var(--pad) 32px; }
.works__head h2 { margin: 0; font-family: var(--font-head); font-size: var(--t-head); font-weight: 400; line-height: 1.4; white-space: nowrap; }
.works__head p { margin: 8px 0 0; max-width: 44em; font-size: var(--t-small); }
.works__head small { margin-left: auto; font-size: var(--t-note); white-space: nowrap; }
.works__row { display: flex; border-top: 1px solid var(--ink); }
.works__row > article { flex: 1 1 0; display: flex; flex-direction: column; border-right: 1px solid var(--rule); }
.works__row > article:last-child { border-right: 0; }
.works__row .ph { height: 260px; border: 0; border-bottom: 1px solid var(--rule); }
.works__cap { display: flex; align-items: baseline; gap: 10px; padding: 18px var(--pad) 6px; }
.works__cap b { font-size: var(--t-body); font-weight: 400; white-space: nowrap; }
.works__cap span { padding: 2px 8px; border: 1px solid var(--rule); font-size: var(--t-note); white-space: nowrap; }
.works__row p { margin: 0; padding: 0 var(--pad) 28px; font-size: var(--t-small); }

/* ===== 7 相談から完了まで（順番） ===== */
.flow { display: flex; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.flow__label { flex: 0 0 var(--rail); display: flex; flex-direction: column; justify-content: center; padding: 24px var(--pad); border-right: 1px solid var(--rule); font-size: var(--t-small); }
.flow__label small { font-size: var(--t-note); }
.flow ol { flex: 1; display: flex; margin: 0; padding: 0; list-style: none; }
.flow li { flex: 1 1 0; padding: 28px 20px; border-right: 1px solid var(--rule); }
.flow li:last-child { border-right: 0; }
.flow li b { display: block; font-size: var(--t-note); font-weight: 400; }
.flow li span { display: block; margin-top: 4px; font-size: var(--t-body); white-space: nowrap; }
.flow li small { display: block; margin-top: 8px; font-size: var(--t-note); }

/* ===== 8 変わる条件 ===== */
.boxed { margin: 96px var(--pad); padding: 56px 48px; border: 1px solid var(--ink); }
.boxed h2 { margin: 0 0 8px; font-family: var(--font-head); font-size: var(--t-sub); font-weight: 400; }
.boxed > p { margin: 0 0 32px; font-size: var(--t-small); }
.boxed ul { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.boxed li { flex: 1 1 30%; min-width: 240px; padding: 18px 24px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.boxed li b { display: block; font-size: var(--t-small); font-weight: 700; }
.boxed li span { font-size: var(--t-small); }

/* ===== 9 お客様の声: 罫で3分割、声を主役に ===== */
.voices { border-bottom: 1px solid var(--rule); }
.voices__head { padding: 96px var(--pad) 32px; }
.voices__head h2 { margin: 0; font-family: var(--font-head); font-size: var(--t-head); font-weight: 400; line-height: 1.4; white-space: nowrap; }
.voices__head p { margin: 14px 0 0; max-width: 44em; font-size: var(--t-small); }
.voices__list { display: flex; border-top: 1px solid var(--ink); }
.voice { flex: 1 1 0; display: flex; flex-direction: column; margin: 0; padding: 40px var(--pad) 32px; border-right: 1px solid var(--rule); }
.voice:last-child { border-right: 0; }
.voice blockquote { flex: 1; margin: 0 0 24px; }
.voice blockquote p { margin: 0; font-size: var(--t-body); line-height: 2.1; }
.voice figcaption { padding-top: 16px; border-top: 1px solid var(--rule); }
.voice figcaption b { display: block; font-family: var(--font-head); font-size: var(--t-small); font-weight: 400; }
.voice figcaption span { display: block; margin-top: 2px; font-size: var(--t-note); }
.voices__note { margin: 0; padding: 20px var(--pad) 56px; font-size: var(--t-note); }
.voices__note b { font-weight: 400; border-bottom: 1px solid var(--ink); }
[data-fill] { color: rgb(20 20 15 / .62); }

/* ===== 10 代表について: 縦長の写真＋散文 ===== */
.owner { display: flex; align-items: stretch; border-bottom: 1px solid var(--rule); }
.owner__ph { position: relative; flex: 0 0 34%; display: flex; align-items: flex-end; min-height: 520px; background: rgb(20 20 15 / .05); border-right: 1px solid var(--rule); }
.owner__ph span { padding: 12px 16px; font-size: var(--t-note); }
.owner__body { flex: 1; padding: 96px var(--pad); }
.owner__label { margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--ink); font-size: var(--t-note); letter-spacing: .08em; }
.owner__body h2 { margin: 0 0 4px; font-family: var(--font-head); font-size: var(--t-head); font-weight: 400; }
.owner__sub { margin: 0 0 24px; font-size: var(--t-note); }
.owner__lead { margin: 0 0 20px; max-width: 34em; font-family: var(--font-head); font-size: var(--t-sub); line-height: 1.9; }
.owner__text { margin: 0 0 40px; max-width: 40em; font-size: var(--t-small); }
.owner__text b { font-weight: 400; border-bottom: 1px solid var(--rule); }
.owner__facts { display: flex; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.owner__facts li { flex: 1 1 0; padding: 20px 16px 0 0; }
.owner__facts b { display: block; font-size: var(--t-note); font-weight: 400; }
.owner__facts span { display: block; margin-top: 4px; font-size: var(--t-small); }

/* ===== 11 問い合わせ: 1フォーム。最初の設問で入力欄を出し分ける（JSなし・radio と :checked） ===== */
.contact { border-bottom: 1px solid var(--rule); }
.contact__head { padding: 96px var(--pad) 28px; }
.contact__head h2 { margin: 0; font-family: var(--font-head); font-size: var(--t-head); font-weight: 400; line-height: 1.4; }
.contact__head p { margin: 14px 0 0; max-width: 44em; font-size: var(--t-small); }

.form { padding: 0 var(--pad) 88px; }
.q { margin: 0; padding: 0; border: 0; }
.q legend { padding: 0 0 16px; font-size: var(--t-small); }
.q__radio { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip-path: inset(50%); }

.q__opts { display: flex; gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--rule); }
.q__opts label { position: relative; flex: 1 1 0; padding: 20px 20px 20px 46px; border-right: 1px solid var(--rule); cursor: pointer; }
.q__opts label:last-child { border-right: 0; }
.q__opts label::before { content: ""; position: absolute; top: 24px; left: 18px; width: 15px; height: 15px; border: 1px solid var(--ink); }
.q__opts b { display: block; font-size: var(--t-body); font-weight: 400; }
.q__opts span { display: block; margin-top: 2px; font-size: var(--t-note); }
#need-1:checked ~ .q__opts label[for="need-1"]::before,
#need-2:checked ~ .q__opts label[for="need-2"]::before,
#need-3:checked ~ .q__opts label[for="need-3"]::before { background: var(--ink); box-shadow: inset 0 0 0 3px var(--paper); }
#need-1:checked ~ .q__opts label[for="need-1"],
#need-2:checked ~ .q__opts label[for="need-2"],
#need-3:checked ~ .q__opts label[for="need-3"] { background: rgb(20 20 15 / .055); }
/* 「急いでいる」は入力させないので送信ボタンを出さない */
#need-1:checked ~ .form__foot { display: none; }
#need-1:focus-visible ~ .q__opts label[for="need-1"]::before,
#need-2:focus-visible ~ .q__opts label[for="need-2"]::before,
#need-3:focus-visible ~ .q__opts label[for="need-3"]::before { outline: 2px solid var(--ink); outline-offset: 3px; }

.pane { display: none; padding-top: 36px; }
#need-1:checked ~ .panes .pane--1,
#need-2:checked ~ .panes .pane--2,
#need-3:checked ~ .panes .pane--3 { display: block; }
.pane__lead { margin: 0 0 20px; max-width: 40em; font-family: var(--font-head); font-size: var(--t-sub); line-height: 1.9; }
.pane__tel { margin: 0 0 20px; }
.pane__tel b { font-family: var(--font-head); font-size: 44px; font-weight: 400; letter-spacing: .02em; }
.pane__note { margin: 0; max-width: 44em; font-size: var(--t-note); }

.fields { display: flex; flex-wrap: wrap; gap: 0 40px; }
.f { flex: 1 1 100%; display: flex; flex-direction: column; padding-bottom: 22px; }
.f--half { flex: 1 1 calc(50% - 20px); }
.f > span { margin-bottom: 6px; font-size: var(--t-note); }
.f > small { margin-top: 6px; font-size: var(--t-note); }
.f input[type="text"], .f textarea { width: 100%; padding: 10px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); font-family: inherit; font-size: var(--t-body); }
.f textarea { resize: vertical; line-height: 1.9; }
.f input::placeholder, .f textarea::placeholder { color: rgb(20 20 15 / .38); }
.f input:disabled, .f textarea:disabled { border-bottom-color: var(--rule); cursor: not-allowed; }
.f input[type="file"] { padding: 10px 0; font-size: var(--t-small); }

.form__foot { display: flex; align-items: center; gap: 20px; margin-top: 12px; padding-top: 24px; border-top: 1px solid var(--rule); }
.form__send { height: 54px; padding-inline: 40px; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); font-family: inherit; font-size: var(--t-small); cursor: pointer; }
.form__send:disabled { color: rgb(20 20 15 / .45); background: transparent; border-color: var(--rule); cursor: not-allowed; }
.form__note { margin: 0; font-size: var(--t-note); }

/* ===== SP の右下固定 CTA（≤768px でのみ出す） ===== */
.dock { display: none; }

/* ===== 9 フッター ===== */
.foot { display: flex; }
.foot__menu { flex: 1; color: var(--paper); background: var(--ink); }
.foot__menu > b { display: block; padding: 44px 0 32px; font-family: var(--font-head); font-size: var(--t-sub); font-weight: 400; text-align: center; }
.foot__menu > b small { display: block; font-family: var(--font); font-size: var(--t-note); }
.foot__menu a { display: flex; align-items: center; height: 68px; padding-inline: 40px; border-top: 1px solid rgba(229, 227, 216, .28); font-size: var(--t-small); }
.foot__menu a::after { content: "→"; margin-left: auto; }
.foot__note { margin: 0; padding: 24px var(--pad) 40px; border-top: 1px solid var(--rule); font-size: var(--t-note); }

/* ===== 中間幅（769〜1100px）: 電話番号を足した分、ヘッダーを詰める ===== */
@media (min-width: 769px) and (max-width: 1100px) {
  .head { padding-left: 20px; }
  .head__nav { gap: 14px; font-size: 13px; }
  .head__tel { margin-left: 16px; }
  .head__tel b { font-size: 18px; }
  .head__cta { padding-inline: 16px; margin-left: 16px; font-size: 13px; }
}

/* ===== SP: 柱は左端40pxのラベルへ。本文は1カラム ===== */
@media (max-width: 768px) {
  :root { --pad: 16px; --t-head: 28px; --rail: 40px; }

  .band { padding-block: 8px; }
  .band span { margin-left: 0; }

  .head__nav { display: none; }
  .head__cta { margin-left: auto; padding-inline: 16px; }

  .hero { flex-direction: column; height: auto; min-height: 0; }
  .hero__l { flex: 0 0 260px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero__c { flex: 0 0 auto; padding: 48px 16px; }
  .marks { flex-direction: column; gap: 12px; }
  .marks__col { flex-direction: row; }
  .marks__col span { width: 52px; height: 52px; }
  .marks__col span + span { border-top: 1px solid var(--ink); border-left: 0; }
  .marks__side { writing-mode: horizontal-tb; font-size: var(--t-body); }
  .hero__r { flex-direction: row; height: 120px; border-left: 0; border-top: 1px solid var(--rule); }
  .hero__r .ph { flex: 1 1 0; border-bottom: 0; border-right: 1px solid var(--rule); }
  .hero__r .ph:last-child { border-right: 0; }
  .hero__acts { flex-direction: column; width: 100%; max-width: 300px; }

  .area { flex-direction: column; }
  .area__label { flex: 0 0 auto; padding: 14px var(--pad); border-right: 0; border-bottom: 1px solid var(--rule); }
  .area li { flex: 0 0 33.3333%; min-width: 0; padding: 14px 4px; border-bottom: 1px solid var(--rule); font-size: var(--t-small); }
  .area li:nth-child(3n) { border-right: 0; }
  .area li:last-child { border-bottom: 0; }

  .claim h2 br { display: none; }
  .claim { flex-direction: column; gap: 20px; padding: 64px var(--pad); }
  .claim div { flex: 0 0 auto; align-self: stretch; }

  .wide .ph { height: 240px; }

  /* 柱を左端40pxに。本文は1カラム。番号は 01→02→03 の順に読める */
  .pillars__axis { top: var(--head-h); height: calc(100svh - var(--head-h)); gap: 10px; }
  .pillars__axis b { font-size: var(--t-small); }
  .pillars__list { padding: 48px var(--pad); gap: 56px; }
  .pillars__axis { padding-top: 48px; }
  .item { flex: 1 1 100%; }
  .item:nth-child(2), .item:nth-child(3) { margin-top: 0; }
  .item__ph { height: 200px; }

  .works__head { flex-direction: column; align-items: flex-start; gap: 10px; padding: 56px var(--pad) 20px; }
  .works__head h2 { white-space: normal; }
  .works__head small { margin-left: 0; }
  .works__row { flex-direction: column; }
  .works__row > article { border-right: 0; border-bottom: 1px solid var(--rule); }
  .works__row .ph { height: 160px; }
  .works__cap { padding: 14px var(--pad) 4px; }
  .works__row p { padding: 0 var(--pad) 20px; }

  .flow { flex-direction: column; }
  .flow__label { flex: 0 0 auto; padding: 14px var(--pad); border-right: 0; border-bottom: 1px solid var(--rule); }
  .flow ol { flex-direction: column; }
  .flow li { padding: 16px var(--pad); border-right: 0; border-bottom: 1px solid var(--rule); }
  .flow li:last-child { border-bottom: 0; }
  .flow li span { white-space: normal; }

  .boxed { margin: 56px var(--pad); padding: 28px 20px; }
  .boxed li { flex: 1 1 100%; min-width: 0; padding: 14px 16px; }

  .foot__menu a { height: 60px; padding-inline: var(--pad); }
    
  .head { padding-right: 16px; }
  .head__tel { margin-left: auto; }
  .head__tel b { font-size: 18px; }
  .head__cta { display: none; }

  .contact__head { padding: 56px var(--pad) 20px; }
  .form { padding: 0 var(--pad) 64px; }
  .q__opts { flex-direction: column; }
  .q__opts label { border-right: 0; border-bottom: 1px solid var(--rule); padding: 16px 16px 16px 44px; }
  .q__opts label:last-child { border-bottom: 0; }
  .q__opts label::before { top: 20px; left: 16px; }
  .pane__tel b { font-size: 32px; }
  .f--half { flex: 1 1 100%; }
  .form__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .form__send { width: 100%; }

  .dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; border-top: 1px solid var(--ink); transition: transform .2s, opacity .2s; }
  .dock--off { opacity: 0; transform: translateY(100%); pointer-events: none; }
  .dock a { display: flex; flex-direction: column; justify-content: center; height: 64px; padding: 0 16px calc(env(safe-area-inset-bottom) * .5); }
  .dock__tel { flex: 1 1 46%; background: var(--paper); }
  .dock__tel b { font-family: var(--font-head); font-size: 20px; font-weight: 400; letter-spacing: .01em; white-space: nowrap; }
  .dock__tel span { font-size: 11px; }
  .dock__main { flex: 1 1 54%; flex-direction: row !important; align-items: center; color: var(--paper); background: var(--ink); font-size: var(--t-small); }
  .dock__main i { margin-left: auto; font-style: normal; }
  body { padding-bottom: 72px; }

  .hero__read { position: static; width: auto; padding: 16px var(--pad) 20px; border-left: 0; }

  .voices__head { flex-direction: column; align-items: flex-start; gap: 8px; padding: 56px var(--pad) 24px; }
  .voices__head h2 { white-space: normal; }
  .voices__list { flex-direction: column; }
  .voice { border-right: 0; border-bottom: 1px solid var(--rule); padding: 28px var(--pad) 24px; }
  .voice:last-child { border-bottom: 0; }
  .voice blockquote { margin-bottom: 18px; }
  .voices__note { padding: 18px var(--pad) 56px; }

  .owner { flex-direction: column; }
  .owner__ph { flex: 0 0 auto; min-height: 320px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .owner__body { padding: 48px var(--pad) 56px; }
  .owner__facts { flex-wrap: wrap; }
  .owner__facts li { flex: 1 1 50%; padding: 16px 12px 0 0; }
  .owner__facts li:last-child { flex: 1 1 100%; }
}
