/* ハコドリ — 白基調・信頼感のあるデザイン（Claude Designハンドオフに準拠） */
:root {
  --bg: #ffffff;
  --canvas: #eceff5;
  --surface-2: #f5f7fa;
  --line: #e7eaf0;
  --line-2: #dbe0e9;
  --ink: #131722;
  --ink-2: #4a5266;
  --mute: #8b93a4;
  --accent: #2563eb;
  --accent-2: #1d4ed8;
  --accent-soft: #eaf1ff;
  --good: #0e9f6e;
  --good-ink: #0b7d56;
  --good-soft: #e7f6ee;
  --warn: #c2410c;
  --warn-soft: #fdeee2;
  --radius: 14px;
  --font: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
/* hidden属性を display 指定より確実に優先させる */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff; padding: 8px 12px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; top: 0; }

/* ---- header / footer ---- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: #fff; border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 9px; padding: 12px 20px;
  text-decoration: none; color: inherit; max-width: 520px; margin: 0 auto;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: block; width: 30px; height: 30px; border-radius: 9px;
  object-fit: cover; flex-shrink: 0;
}
.brand-name { font-weight: 900; font-size: 17px; letter-spacing: .02em; color: var(--ink); }
.brand-tag { margin-left: auto; font-size: 11px; color: var(--mute); }
@media (max-width: 400px) { .brand-tag { display: none; } }

.site-footer {
  margin-top: 56px; border-top: 1px solid var(--line); background: var(--surface-2);
  padding: 20px 20px 40px;
}
.site-footer > * { max-width: 480px; margin-left: auto; margin-right: auto; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 10px; }
.site-footer nav a { font-size: 12px; color: var(--ink-2); text-decoration: none; }
.site-footer nav a:hover { color: var(--accent); text-decoration: underline; }
.disclaimer { font-size: 11.5px; color: var(--mute); margin: 0; line-height: 1.6; }

/* ---- layout ---- */
.container { max-width: 520px; margin: 0 auto; padding: 22px 20px 8px; }
.container.narrow { max-width: 480px; }
.back {
  display: inline-flex; align-items: center; gap: 5px; font-size: 13px;
  color: var(--ink-2); text-decoration: none; margin-bottom: 14px;
}
.back:hover { color: var(--ink); text-decoration: none; }
.back svg { flex-shrink: 0; }

.block { margin-top: 30px; }
.block-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--mute); margin: 0 0 12px; }
.page-title { font-size: 22px; font-weight: 900; margin: 6px 0 4px; letter-spacing: -.005em; text-wrap: balance; }
.page-sub { font-size: 13px; color: var(--ink-2); margin: 0 0 18px; }
.page-sub b { color: var(--ink); }
.pref-note { font-size: 11.5px; color: var(--mute); margin-top: 16px; }
.search-count { font-size: 12.5px; color: var(--mute); margin: 2px 0 6px; }
.search-count b { color: var(--ink-2); }
.empty-title-plain { font-size: 14px; color: var(--ink-2); margin: 16px 0; }

/* ---- hero + search ---- */
.hero { padding: 4px 0 6px; }
.hero-title { font-size: 22px; font-weight: 900; line-height: 1.45; margin: 0 0 8px; letter-spacing: -.01em; text-wrap: balance; }
.hero-lede { font-size: 13.5px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.6; }

.search { position: relative; display: flex; gap: 8px; }
.search-box {
  flex: 1; min-width: 0; display: flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 13px; padding: 13px 14px;
}
.search-box svg { flex-shrink: 0; }
.search-box input {
  flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font-size: 16px; color: var(--ink); font-family: inherit;
}
.search-box input::placeholder { color: var(--mute); }
.search-box:focus-within { border-color: var(--accent); background: #fff; }
.search button[type="submit"] {
  border: none; background: var(--accent); color: #fff; border-radius: 13px;
  padding: 0 18px; font-weight: 700; font-size: 14.5px; font-family: inherit; cursor: pointer;
}
.search button[type="submit"]:hover { background: var(--accent-2); }

.search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 5;
  list-style: none; margin: 0; padding: 6px;
  background: #fff; border: 1px solid var(--line-2); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20,30,60,.14); max-height: 60vh; overflow-y: auto;
}
.search-results li a {
  display: flex; flex-direction: column; gap: 1px; padding: 10px 12px; border-radius: 10px;
  color: var(--ink); text-decoration: none;
}
.search-results li a:hover { background: var(--surface-2); text-decoration: none; }
.sr-name { font-size: 14px; font-weight: 700; }
.sr-addr { font-size: 11.5px; color: var(--mute); }

/* ---- prefecture chips ---- */
.pref-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pref-chip {
  display: inline-flex; align-items: center; gap: 5px; background: #fff;
  border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 14px;
  font-size: 13.5px; font-weight: 500; color: var(--ink); text-decoration: none;
}
.pref-chip:hover { border-color: var(--accent); text-decoration: none; }
.pref-chip b { color: var(--accent); font-weight: 700; }
.pref-chip.pref-all { background: var(--surface-2); border-color: var(--line); color: var(--ink-2); }
.pref-chip.is-empty { background: var(--surface-2); border: 1px solid var(--line); color: var(--mute); }

/* ---- venue list (home / prefecture) ---- */
.venue-list { list-style: none; margin: 0; padding: 0; }
.venue-list li a {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 2px; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none;
}
.venue-list li a:hover { background: var(--surface-2); text-decoration: none; }
.vl-name { font-weight: 700; font-size: 15px; }
.vl-city { font-weight: 400; font-size: 11.5px; color: var(--mute); margin-left: 6px; }
.vl-meta { display: flex; align-items: baseline; gap: 9px; white-space: nowrap; }
.vl-price { font-weight: 900; font-size: 15px; font-variant-numeric: tabular-nums; }
.vl-price.vl-none { font-weight: 500; font-size: 12.5px; color: var(--mute); }
.vl-ago { font-size: 11.5px; color: var(--mute); }

/* 検索結果: 名前+住所を縦積み、右にプライス+chevron */
.venue-list-search li a { align-items: center; }
.vl-main { display: flex; flex-direction: column; gap: 2px; }
.vl-addr { font-size: 11.5px; color: var(--mute); }
.venue-list-search .vl-meta { gap: 8px; }

/* ---- cta ---- */
.cta-block { text-align: center; color: var(--ink-2); margin-top: 28px; }
.cta-block p { font-size: 13.5px; margin: 0 0 12px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line-2);
  border-radius: 12px; padding: 12px 20px; font-weight: 700; font-size: 14px;
  text-decoration: none; color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); text-decoration: none; }
.btn-outline .plus, .plus { color: var(--accent); font-size: 16px; line-height: 1; }

/* ---- venue detail ---- */
.venue-head { margin-top: 4px; }
.venue-name { font-size: 23px; font-weight: 900; margin: 0 0 6px; letter-spacing: -.01em; }
.venue-loc { font-size: 13px; color: var(--ink-2); margin: 0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.venue-loc-place { display: inline-flex; align-items: center; gap: 4px; }
.venue-loc-sep { color: var(--line-2); }
.venue-map-link { display: inline-flex; align-items: center; gap: 3px; color: var(--accent); font-weight: 500; text-decoration: none; }
.venue-map-link:hover { text-decoration: underline; }

/* 喫煙所カード（支払バナーと同型の横並び。アイコン＋集計＋右に小さな報告ボタン） */
.smoking-wrap { margin: 10px 0 4px; }
.smoking-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 13px 16px;
}
.smoking-icon {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line); flex-shrink: 0;
}
.smoking-body { flex: 1; min-width: 0; }
.smoking-title { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.smoking-sub { font-size: 11.5px; color: var(--ink-2); margin-top: 2px; }
.smoking-form { flex-shrink: 0; }
.smoking-report-btn {
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
  border-radius: 10px; padding: 9px 14px; font-size: 12.5px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.smoking-report-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ドリンクメニュー写真（承認制） */
.menu-photo-wrap { margin: 10px 0 4px; }
.menu-photo-card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 13px 16px 14px; margin-bottom: 6px;
}
.menu-photo-head { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.menu-photo-note { font-size: 11px; font-weight: 500; color: var(--mute); margin-left: 8px; }
.menu-photo-img {
  display: block; width: 100%; max-height: 260px; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--line-2); background: #fff;
}
.menu-photo-form-wrap summary {
  cursor: pointer; font-size: 13px; font-weight: 700; color: var(--accent);
  padding: 10px 4px; list-style-position: inside;
}
.menu-photo-form { padding: 4px 4px 10px; }
.menu-photo-rules { font-size: 11.5px; color: var(--ink-2); line-height: 1.7; margin: 0 0 12px; }
.menu-photo-form input[type="file"] {
  display: block; width: 100%; font-size: 13px; color: var(--ink-2); margin-bottom: 12px;
}
.btn-photo-submit { padding: 13px; font-size: 14px; }

.price-hero { text-align: center; padding: 26px 0 6px; }
.price-caption { font-size: 13px; color: var(--ink-2); margin-bottom: 4px; }
.price-yen {
  font-size: clamp(42px, 13vw, 60px); font-weight: 900; line-height: 1;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.price-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 15px; font-size: 12.5px; color: var(--ink-2);
}
.price-pill-count { display: inline-flex; align-items: center; gap: 5px; }
.price-pill-count b { color: var(--ink); font-weight: 700; }
.price-pill-sep { color: var(--line-2); }
.cred-note { font-size: 11.5px; color: var(--mute); margin: 8px 0 0; }

/* distribution */
.dist { display: flex; flex-direction: column; gap: 9px; padding: 4px 4px 0; }
.dist-row { display: flex; align-items: center; gap: 11px; font-size: 12.5px; color: var(--ink-2); }
.dist-label { width: 44px; text-align: right; font-variant-numeric: tabular-nums; }
.dist-track { flex: 1; height: 9px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.dist-fill { display: block; height: 100%; background: #c3cbd9; border-radius: 999px; }
.dist-row.is-mode { color: var(--ink); font-weight: 700; }
.dist-row.is-mode .dist-fill { background: var(--accent); }
.dist-count { width: 18px; font-variant-numeric: tabular-nums; }
.dist-caption { font-size: 11px; color: var(--mute); text-align: center; margin: 10px 0 0; }

/* payment banner */
.pay-banner { display: flex; align-items: center; gap: 12px; border-radius: 14px; padding: 14px 16px; margin: 16px 0; }
.pay-warn { background: var(--warn-soft); border: 1px solid #f5d9c4; }
.pay-good { background: var(--good-soft); border: 1px solid #bfe6ce; }
.pay-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #fff; flex-shrink: 0; }
.pay-body { flex: 1; min-width: 0; }
.pay-title { font-size: 14.5px; font-weight: 700; }
.pay-warn .pay-title { color: var(--warn); }
.pay-good .pay-title { color: var(--good-ink); }
.pay-sub { font-size: 11.5px; color: var(--ink-2); margin-top: 2px; }

.confirm-block { margin: 18px 0 6px; display: flex; flex-direction: column; gap: 2px; }
.btn-confirm {
  width: 100%; border: none; background: var(--accent); color: #fff; border-radius: 14px;
  padding: 16px; font-size: 15.5px; font-weight: 700; font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-confirm:hover { background: var(--accent-2); }
.link-toggle {
  display: block; width: 100%; background: none; border: none; color: var(--accent);
  padding: 14px; font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; text-align: center;
}

/* 会場ページのXシェアボタン */
.venue-share {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: 14px auto 0; max-width: 280px;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 18px;
  font-size: 14px; font-weight: 700; color: var(--ink); text-decoration: none;
}
.venue-share:hover { border-color: var(--ink); text-decoration: none; }

/* 確認フロー: 「今も◯◯円だった」→ 支払い方法モーダル */
.confirm-payment-btns { display: flex; flex-direction: column; gap: 8px; }
.payment-btn {
  width: 100%; border: 1px solid var(--line-2); background: #fff; border-radius: 12px;
  padding: 14px; font-size: 14.5px; font-weight: 700; color: var(--ink); font-family: inherit; cursor: pointer;
}
.payment-btn:hover { border-color: var(--accent); }
.payment-btn:disabled { opacity: .6; cursor: default; }
.payment-btn-skip { background: var(--surface-2); color: var(--ink-2); font-weight: 500; border-color: var(--line); }

/* モーダル（背景ブラー＋中央ポップアップ） */
body.modal-open { overflow: hidden; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(19, 23, 34, 0.45);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: modalFade 0.18s ease;
}
.modal-card {
  position: relative; background: #fff; border-radius: 18px;
  width: 100%; max-width: 380px; padding: 26px 20px 20px;
  box-shadow: 0 24px 60px rgba(20, 30, 60, 0.3);
  animation: modalPop 0.2s ease;
}
.modal-close {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px;
  border: none; background: var(--surface-2); border-radius: 999px;
  font-size: 18px; line-height: 1; color: var(--ink-2); cursor: pointer;
}
.modal-close:hover { background: var(--line); }
.modal-title { font-size: 17px; font-weight: 900; margin: 0 0 4px; text-align: center; }
.modal-sub { font-size: 13px; color: var(--ink-2); margin: 0 0 16px; text-align: center; line-height: 1.6; }
.modal-sub .opt { display: block; font-size: 11px; color: var(--mute); margin-top: 3px; }

/* 通報モーダル: 理由の選択（.radios再利用）＋自由記載 */
.report-reasons { margin-bottom: 12px; }
.report-text {
  width: 100%; border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px;
  font-size: 14px; font-family: inherit; color: var(--ink); background: #fff;
  resize: vertical; margin-bottom: 16px;
}
.report-text:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.report-text::placeholder { color: var(--mute); }

.modal-success { text-align: center; }
.modal-success-icon { font-size: 34px; line-height: 1; margin-bottom: 8px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 20px; }
.modal-done { width: 100%; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-card { animation: none; }
}

/* empty state (boxed) */
.empty-state {
  background: var(--surface-2); border: 1px dashed var(--line-2); border-radius: 18px;
  padding: 28px 22px; text-align: center; margin: 20px 0 8px;
}
.empty-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); margin: 0 auto 14px;
}
.empty-title { font-size: 16px; font-weight: 900; margin: 0 0 6px; }
.empty-sub { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.empty-sub b { color: var(--ink); }

/* ---- forms ---- */
.post-form, .stack-form {
  background: #fff; border: 1px solid var(--line-2); border-radius: 18px; padding: 18px 16px; margin: 16px 0;
}
.field { border: none; margin: 0 0 20px; padding: 0; }
.field:last-of-type { margin-bottom: 0; }
.field legend { font-size: 14.5px; font-weight: 700; margin-bottom: 12px; padding: 0; display: flex; align-items: baseline; gap: 8px; }
.field legend .opt { font-weight: 400; font-size: 12px; color: var(--mute); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: block; border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 0;
  min-width: 70px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums;
  font-size: 15px; background: var(--surface-2); color: var(--ink);
}
.chip.chip-other span { padding: 12px 16px; min-width: 0; font-size: 14px; color: var(--ink-2); }
.chip input:checked + span, .chip.is-selected span { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.other-wrap { margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.other-wrap input {
  background: #fff; border: 1px solid var(--line-2); color: var(--ink); border-radius: 10px;
  padding: 12px 14px; font-size: 16px; width: 200px; max-width: 100%;
}
.yen-suffix { color: var(--ink-2); font-size: 14px; }

.radios { display: flex; flex-direction: column; gap: 2px; }
.radio { display: flex; align-items: center; gap: 11px; padding: 10px 4px; font-size: 14px; cursor: pointer; color: var(--ink-2); }
.radio input[type="radio"] {
  appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border-radius: 999px;
  border: 1.5px solid var(--line-2); display: grid; place-items: center; margin: 0; flex-shrink: 0; background: #fff;
}
.radio input[type="radio"]::before { content: ""; width: 10px; height: 10px; border-radius: 999px; background: transparent; }
.radio input[type="radio"]:checked { border-color: var(--accent); }
.radio input[type="radio"]:checked::before { background: var(--accent); }
.radio:has(input:checked) { color: var(--ink); }
.radio input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-primary {
  width: 100%; border: none; background: var(--accent); color: #fff; border-radius: 14px;
  padding: 16px; font-size: 15.5px; font-weight: 700; font-family: inherit; cursor: pointer; margin-top: 4px;
}
.btn-primary:hover { background: var(--accent-2); }
.btn-primary:disabled { opacity: .6; cursor: default; }
.form-note { font-size: 11px; color: var(--mute); text-align: center; margin: 12px 0 0; line-height: 1.6; }

/* labeled fields (会場追加フォーム) */
.labeled { display: block; margin-bottom: 16px; }
.labeled > span { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.labeled em { font-style: normal; font-size: 11px; font-weight: 700; margin-left: 4px; }
.labeled em.req { color: var(--accent); }
.labeled em.opt { color: var(--mute); font-weight: 400; }
.labeled input {
  width: 100%; background: #fff; border: 1px solid var(--line-2); color: var(--ink);
  border-radius: 11px; padding: 13px 14px; font-size: 16px; font-family: inherit;
}
.labeled input::placeholder { color: var(--mute); }
.select-wrap { position: relative; display: block; }
.select-wrap select {
  width: 100%; appearance: none; -webkit-appearance: none; background: #fff;
  border: 1px solid var(--line-2); color: var(--ink); border-radius: 11px;
  padding: 13px 38px 13px 14px; font-size: 16px; font-family: inherit;
}
.select-chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; display: flex; }

/* honeypot: 視覚・支援技術の双方から隠す */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-turnstile { margin: 10px 0 4px; }

/* ---- banners ---- */
.banner-success {
  display: flex; align-items: center; gap: 9px; background: var(--good-soft);
  border: 1px solid #bfe6ce; border-radius: 12px; padding: 12px 14px; margin: 4px 0 16px;
  font-size: 13px; color: var(--good-ink); font-weight: 500; line-height: 1.5;
}
.banner-success svg { flex-shrink: 0; }
/* 記録完了バナー（報告フォーム・確認フローで共通・.banner-success に重ねて使う） */
.banner-success.confirm-success { flex-direction: column; align-items: stretch; gap: 8px; }
.confirm-success-text { line-height: 1.6; }
.confirm-success-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.share-x { font-weight: 700; color: var(--good-ink); text-decoration: underline; }
.reload-link { font-weight: 500; color: var(--ink-2); text-decoration: underline; font-size: 12.5px; }
.banner-info {
  background: var(--accent-soft); border: 1px solid #cfe0ff; color: var(--accent-2);
  border-radius: 12px; padding: 12px 14px; margin: 4px 0 16px; font-size: 13px;
}
.banner-error {
  background: #fdeaea; border: 1px solid #f3c6c6; color: #b3261e;
  border-radius: 12px; padding: 12px 14px; margin: 8px 0 16px; font-size: 13px;
}
.inline-error { background: #fdeaea; border: 1px solid #f3c6c6; color: #b3261e; border-radius: 10px; padding: 10px 14px; margin: 0 0 12px; font-size: 13px; }

/* ---- misc ---- */
.fineprint { color: var(--mute); font-size: 11.5px; margin: 22px 0 8px; text-align: center; line-height: 1.6; }
.report-form { text-align: center; margin-bottom: 8px; }
.link-report { background: none; border: none; color: var(--mute); font-size: 11.5px; text-decoration: underline; cursor: pointer; }

/* ---- doc (static pages) ---- */
.doc h2 { font-size: 15px; font-weight: 700; margin: 22px 0 6px; }
.doc h2:first-child { margin-top: 14px; }
.doc p, .doc li { font-size: 13.5px; color: var(--ink-2); line-height: 1.85; }
.doc p { margin: 0 0 8px; }
.doc ul { padding-left: 20px; margin: 0; }
.doc .doc-note { font-size: 12px; color: var(--mute); margin-top: 4px; }

@media (max-width: 360px) {
  .venue-name { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
