/* =============================================
   LIL COMPANY — brand & recruit site
   上質な絵本 × 現代的なSaaS。温かく、静かで、信頼できる画面。
   ============================================= */

:root {
  --paper: #faf8f2;
  --paper-deep: #f3efe4;
  --card: #ffffff;
  --ink: #29272b;
  --ink-soft: #5b5750;
  --line: #e6e0d2;
  --gold: #9b7a38;
  --gold-soft: #c9b98c;
  --theme: #9b7a38; /* 設定JSONで上書き */
  --ok: #587a58;
  --warn: #a34f5a;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(41, 39, 43, 0.08);
  --font-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-head: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

img, svg { max-width: 100%; height: auto; }
a { color: var(--gold); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 18px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-en);
}
.brand .brand-lil {
  font-size: 26px; font-weight: 600; letter-spacing: 0.06em;
}
.brand .brand-suffix {
  font-size: 13px; letter-spacing: 0.14em; color: var(--gold);
  font-family: var(--font-head); font-weight: 500;
}
.site-nav { margin-left: auto; display: flex; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 12.5px; padding: 6px 9px; border-radius: 999px;
  font-family: var(--font-head);
}
.site-nav a:hover { background: var(--paper-deep); color: var(--ink); }
.site-nav a.nav-cta {
  background: var(--ink); color: #fff;
}
.site-nav a.nav-cta:hover { background: #000; }
@media (max-width: 760px) {
  .site-nav a:not(.nav-cta):not(.nav-return) { display: none; }
}

/* ---------- 共通セクション ---------- */
section { padding: 72px 0; }
section:nth-of-type(even) { background: var(--card); }
.eyebrow {
  font-family: var(--font-en);
  color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 13px; margin: 0 0 10px;
}
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; }
h2 { font-size: clamp(24px, 3.6vw, 32px); margin: 0 0 18px; }
h3 { font-size: 18px; margin: 0 0 10px; }
.lede { color: var(--ink-soft); max-width: 640px; margin: 0 0 34px; }

/* ---------- ヒーロー ---------- */
.hero { padding: 84px 0 40px; background: linear-gradient(180deg, var(--paper) 0%, #f7f3e8 100%); }
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  margin: 0 0 22px; letter-spacing: 0.04em;
}
.hero .hero-sub {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 2.2; margin: 0 0 18px; font-family: var(--font-head); font-weight: 500;
}
.hero .hero-note { color: var(--ink-soft); max-width: 620px; margin: 0 0 30px; font-size: 14.5px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 999px; border: 2px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(41,39,43,0.16); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.hero-crew { margin-top: 26px; }
.hero-crew img, .hero-crew svg { display: block; width: 100%; }
.hero-crew figcaption {
  text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 6px;
  font-family: var(--font-head);
}

/* ---------- カード汎用 ---------- */
.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
section:nth-of-type(even) .card { background: var(--paper); box-shadow: none; }
.callout {
  border-left: 4px solid var(--gold);
  background: var(--paper-deep); border-radius: 0 12px 12px 0;
  padding: 18px 22px; margin: 28px 0 0; max-width: 720px;
}
.callout p { margin: 0.3em 0; }

/* ---------- 7人のLILカード ---------- */
.team-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.lil-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px 20px; box-shadow: var(--shadow);
  border-top: 4px solid var(--lil-accent, var(--gold));
  text-align: left; cursor: pointer; font: inherit; color: inherit;
  transition: transform 0.15s ease;
}
.lil-card:hover { transform: translateY(-3px); }
.lil-card .lil-figure { width: 96px; margin: 0 auto 12px; display: block; }
.lil-card .lil-name {
  font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 0;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.lil-card .lil-role {
  text-align: center; font-size: 12.5px; color: var(--lil-accent, var(--gold));
  font-weight: 700; font-family: var(--font-head); letter-spacing: 0.08em; margin: 2px 0 0;
}
.lil-card .lil-role-en {
  text-align: center; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft); margin: 2px 0 10px;
}
.lil-card .lil-quote {
  background: var(--paper-deep); border-radius: 12px; padding: 8px 12px;
  font-size: 13px; text-align: center; margin: 0 0 10px; font-family: var(--font-head);
}
.lil-card .lil-quote::before { content: "「"; color: var(--ink-soft); }
.lil-card .lil-quote::after { content: "」"; color: var(--ink-soft); }
.lil-card .lil-personality { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; min-height: 3em; }
.lil-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 12px; list-style: none; }
.lil-chips li {
  font-size: 11.5px; background: var(--paper-deep); border-radius: 999px; padding: 3px 10px;
  color: var(--ink-soft);
}
.lil-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--ink-soft); font-family: var(--font-head);
}
.lil-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-soft);
}
.lil-status.is-live::before { background: var(--ok); }
.lil-card .lil-more {
  position: absolute; top: 14px; right: 16px; font-size: 11px; color: var(--ink-soft);
  font-family: var(--font-head);
}

/* キャラクター詳細ダイアログ */
dialog.lil-dialog {
  border: none; border-radius: var(--radius); box-shadow: var(--shadow);
  max-width: 560px; width: calc(100vw - 40px); padding: 30px 28px;
  background: var(--card); color: var(--ink);
}
dialog.lil-dialog::backdrop { background: rgba(41, 39, 43, 0.45); }
.lil-dialog .lil-figure { width: 110px; float: right; margin: 0 0 10px 14px; }
.lil-dialog h3 { font-size: 21px; }
.lil-dialog .dialog-close {
  position: absolute; top: 14px; right: 14px;
  border: 1px solid var(--line); background: var(--paper); border-radius: 999px;
  width: 34px; height: 34px; cursor: pointer; font-size: 15px; line-height: 1;
}
.lil-dialog h4 { font-family: var(--font-head); font-size: 13.5px; margin: 18px 0 6px; color: var(--gold); }
.lil-dialog ul { margin: 0; padding-left: 1.3em; font-size: 13.5px; }

/* 表示モードの注記 */
.mode-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 20px; }

/* ---------- 会社が動く流れ ---------- */
.flow-rail {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: flowstep;
}
.flow-step {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 16px 14px; position: relative;
  border-left: 4px solid var(--lil-accent, var(--gold-soft));
}
section:nth-of-type(even) .flow-step { background: var(--paper); }
.flow-step::before {
  counter-increment: flowstep; content: counter(flowstep, decimal-leading-zero);
  font-family: var(--font-en); color: var(--gold); font-size: 13px; letter-spacing: 0.1em;
}
.flow-step .flow-who { font-family: var(--font-head); font-weight: 700; margin: 2px 0 4px; font-size: 15px; }
.flow-step .flow-what { font-size: 12.5px; color: var(--ink-soft); margin: 0; }
.flow-owner {
  grid-column: 1 / -1;
  background: var(--ink); color: #fff; border-radius: 14px;
  padding: 20px 24px; text-align: center;
}
.flow-owner .flow-who { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 0 0 4px; }
.flow-owner .flow-what { font-size: 13px; opacity: 0.85; margin: 0; }
.flow-owner .flow-tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-soft); font-family: var(--font-en); text-transform: uppercase; margin-bottom: 6px;
}
@media (max-width: 860px) {
  .flow-rail { grid-template-columns: 1fr; }
}

/* ---------- 変えられる ---------- */
.custom-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 30px; list-style: none; }
.custom-list li {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: 13.5px; font-family: var(--font-head);
}
section:nth-of-type(even) .custom-list li { background: var(--paper); }

/* ---------- No.001 進捗 ---------- */
.status-board {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
}
section:nth-of-type(even) .status-board { background: var(--paper); box-shadow: none; }
.status-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.status-head h3 { margin: 0; font-size: 20px; }
.badge {
  display: inline-block; font-size: 12px; font-family: var(--font-head); font-weight: 700;
  padding: 4px 14px; border-radius: 999px; background: var(--paper-deep); color: var(--gold);
  border: 1px solid var(--gold-soft);
}
.status-stages { display: flex; flex-wrap: wrap; gap: 8px 6px; padding: 18px 0 4px; margin: 0; list-style: none; }
.status-stages li {
  font-size: 12px; font-family: var(--font-head);
  padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft);
  position: relative;
}
.status-stages li.is-done { border-color: var(--gold-soft); color: var(--gold); }
.status-stages li.is-current {
  background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 700;
}
.status-note { font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; }

/* ---------- 引き継ぐもの ---------- */
.handover-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); }
.handover-item {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
}
section:nth-of-type(even) .handover-item { background: var(--paper); }
.handover-item h3 { font-size: 15px; margin: 0 0 4px; }
.handover-item p { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 8px; }
.state-tag {
  font-size: 11px; font-family: var(--font-head); font-weight: 700;
  padding: 2px 10px; border-radius: 999px; background: var(--paper-deep); color: var(--ink-soft);
}
.state-tag.is-planned { color: var(--gold); }

/* ---------- 価格 ---------- */
.price-panel { text-align: center; }
.price-figure {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(40px, 7vw, 64px); margin: 6px 0 2px; letter-spacing: 0.02em;
}
.price-figure small { font-size: 0.4em; font-weight: 500; color: var(--ink-soft); }
.price-caption { color: var(--ink-soft); font-size: 13.5px; max-width: 620px; margin: 18px auto 0; text-align: left; }

/* ---------- 向いている人 ---------- */
.fit-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-col { border-radius: var(--radius); padding: 26px 26px 20px; border: 1px solid var(--line); background: var(--card); }
section:nth-of-type(even) .fit-col { background: var(--paper); }
.fit-col.fit-yes { border-top: 4px solid var(--ok); }
.fit-col.fit-no { border-top: 4px solid var(--warn); }
.fit-col ul { margin: 0; padding-left: 1.4em; }
.fit-col li { margin-bottom: 8px; font-size: 14px; }

/* ---------- 譲渡までの流れ ---------- */
.steps-list { counter-reset: step; list-style: none; padding: 0; margin: 0; max-width: 640px; }
.steps-list li {
  counter-increment: step; position: relative;
  padding: 12px 0 12px 58px; border-bottom: 1px dashed var(--line);
  font-family: var(--font-head); font-size: 15px;
}
.steps-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); color: var(--gold); font-size: 17px; letter-spacing: 0.08em;
  width: 44px; text-align: left;
}
.steps-list li span { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
section:nth-of-type(even) .faq-list details { background: var(--paper); }
.faq-list summary {
  cursor: pointer; padding: 16px 20px; font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  list-style: none; position: relative; padding-right: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-size: 20px; color: var(--gold);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list .faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--ink-soft); }
.faq-list .faq-a p { margin: 0 0 0.6em; }

/* ---------- フォーム ---------- */
.entry-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px 32px; max-width: 720px;
}
section:nth-of-type(even) .entry-panel { background: var(--paper); box-shadow: none; }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.form-wide { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; }
.form-field label .req {
  color: var(--warn); font-size: 11px; margin-left: 6px; font-weight: 500;
}
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px;
  background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field .hint { font-size: 12px; color: var(--ink-soft); }
.form-error { color: var(--warn); font-size: 12.5px; min-height: 1em; margin: 0; }
.form-status { margin-top: 18px; font-family: var(--font-head); font-size: 14px; min-height: 1.6em; }
.form-status.is-error { color: var(--warn); }
.form-status.is-ok { color: var(--ok); font-weight: 700; }
.form-submit { margin-top: 22px; }
.form-submit .btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- プレビューバナー ---------- */
.preview-banner {
  background: var(--gold); color: #fff; text-align: center;
  font-size: 13px; font-family: var(--font-head); padding: 8px 14px;
}
.preview-banner a { color: #fff; }

/* ---------- データ読込エラー ---------- */
.data-fallback {
  border: 1px dashed var(--gold-soft); border-radius: 12px; padding: 18px 20px;
  color: var(--ink-soft); font-size: 13.5px; background: var(--paper-deep);
}

/* ---------- フッター ---------- */
.site-footer { background: var(--ink); color: #cfccc4; padding: 48px 0 40px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 26px; align-items: flex-start; }
.site-footer .foot-brand { font-family: var(--font-en); font-size: 24px; color: #fff; margin: 0 0 6px; }
.site-footer .foot-note { font-size: 12px; max-width: 420px; margin: 0; }
.site-footer nav { margin-left: auto; display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: #e8e4da; font-size: 13px; }
.site-footer .foot-copy { width: 100%; font-size: 11.5px; opacity: 0.7; margin-top: 12px; }

/* =============================================
   カスタマイザー
   ============================================= */
.customizer-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 0;
  min-height: 100vh;
}
@media (max-width: 960px) { .customizer-layout { grid-template-columns: 1fr; } }
.customizer-layout > * { min-width: 0; }
.cz-field input[type="text"], .cz-field input[type="number"], .cz-field textarea, .cz-field select { width: 100%; max-width: 100%; }
.cz-group-body, .cz-field { min-width: 0; }
.customizer-panel {
  background: var(--card); border-right: 1px solid var(--line);
  padding: 26px 24px 60px;
}
.customizer-panel h1 { font-size: 20px; margin: 0 0 4px; }
.customizer-panel .panel-sub { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 20px; }
.customizer-panel details.cz-group {
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: var(--paper);
}
.customizer-panel details.cz-group summary {
  cursor: pointer; padding: 12px 16px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px;
  list-style: none; display: flex; align-items: center; gap: 8px;
}
.customizer-panel details.cz-group summary::-webkit-details-marker { display: none; }
.customizer-panel details.cz-group summary .cz-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold-soft); flex-shrink: 0;
}
.cz-group-body { padding: 4px 16px 16px; display: grid; gap: 12px; }
.cz-field { display: flex; flex-direction: column; gap: 4px; }
.cz-field label { font-size: 12px; font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); }
.cz-field input[type="text"], .cz-field textarea, .cz-field select {
  font: inherit; font-size: 13.5px; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px; background: #fff; color: var(--ink);
}
.cz-field textarea { min-height: 60px; resize: vertical; }
.cz-field input[type="color"] {
  width: 52px; height: 34px; padding: 2px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.cz-inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cz-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cz-actions .btn { padding: 10px 18px; font-size: 13px; }
.cz-note { font-size: 11.5px; color: var(--ink-soft); margin-top: 14px; }
.cz-msg { font-size: 12.5px; font-family: var(--font-head); min-height: 1.4em; margin-top: 10px; }
.cz-msg.is-ok { color: var(--ok); }
.cz-msg.is-error { color: var(--warn); }

.customizer-preview { padding: 26px 30px 80px; background: var(--paper); }
.customizer-preview h2 {
  font-size: 13px; font-family: var(--font-en); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 34px 0 12px;
}
.pv-hero {
  background: linear-gradient(180deg, #fdfbf5, #f5f0e2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow);
}
.pv-hero .pv-logo { font-family: var(--font-en); font-size: 30px; margin: 0 0 4px; }
.pv-hero .pv-logo small { font-family: var(--font-head); font-size: 12px; color: var(--theme); letter-spacing: 0.14em; margin-left: 8px; }
.pv-hero h3 { font-size: clamp(22px, 3vw, 34px); margin: 10px 0 12px; }
.pv-hero p { color: var(--ink-soft); font-size: 13.5px; max-width: 560px; }
.pv-team { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.pv-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pv-flow .pv-flow-item {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--lil-accent, var(--gold-soft));
  border-radius: 10px; padding: 8px 14px; font-size: 12.5px; font-family: var(--font-head); font-weight: 700;
}
.pv-flow .pv-flow-item small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 11px; }
.pv-flow .pv-arrow { color: var(--gold-soft); font-size: 14px; }
.pv-flow .pv-flow-owner { background: var(--ink); color: #fff; border-color: var(--ink); }
.pv-flow .pv-flow-owner small { color: #cfccc4; }

/* ブランドシート(印刷用にも使う) */
.brand-sheet {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 44px; box-shadow: var(--shadow);
}
.brand-sheet .bs-head { display: flex; align-items: baseline; gap: 14px; border-bottom: 2px solid var(--ink); padding-bottom: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.brand-sheet .bs-logo { font-family: var(--font-en); font-size: 34px; }
.brand-sheet .bs-tag { font-family: var(--font-head); font-size: 14px; color: var(--ink-soft); }
.brand-sheet table { width: 100%; border-collapse: collapse; font-size: 13px; }
.brand-sheet th, .brand-sheet td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.brand-sheet th { font-family: var(--font-head); white-space: nowrap; color: var(--ink-soft); font-size: 12px; }
.brand-sheet .bs-color { display: inline-block; width: 14px; height: 14px; border-radius: 4px; vertical-align: -2px; margin-right: 6px; border: 1px solid rgba(0,0,0,0.12); }

@media print {
  body.customizer-body { background: #fff; }
  .customizer-panel, .customizer-preview > *:not(.brand-sheet):not(h2.bs-title), .site-header { display: none !important; }
  .customizer-layout { display: block; }
  .customizer-preview { padding: 0; background: #fff; }
  .brand-sheet { border: none; box-shadow: none; padding: 10mm; }
}
