/*
 * BRAND: バズカレッジ（BuzzCollege）風 · パターン1（フォーマル）
 * 正本: references/brand-prompts/buzzcollege.md
 * ポップ版: buzzcollege-pop.css / buzzcollege-pop.md
 */
:root {
  /* ── 面と文字 ── */
  --c-bg:         #FFFFFF;
  --c-on-bg:      #4E342E;
  --c-heading:    #4E342E;
  --c-text:       #4E342E;
  --c-muted:      #5A4A23;
  --c-surface:    #F3E8EE;
  --c-section:    #C83855;
  --c-on-section: #FFFFFF;
  --c-border:     #E8D4F0;

  /* ── アクセント・ブランド塗り ── */
  --c-accent:     #C83855;
  --c-marker:     #369D72;
  --c-brand:      var(--c-accent);
  --c-brand-deep: var(--c-accent);
  --c-on-brand:   #FFFFFF;
  --c-emph-hl:    var(--c-palette-yellow);

  /* ── ブランド固有トークン ── */
  --c-base-tint: #F3E8EE;
  --c-palette-green: #369D72;
  --c-palette-teal: #49B19F;
  --c-palette-yellow: #E7A630;
  --c-gold-line: #8B5E3C;
  --c-dot: #E8D4F0;

  /* ── フォント・タイポ ── */
  --font-head: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --ls-head:   0.02em;

  /* ── 面まわり・デコレーション ── */
  --radius:      0.8cqw;
  --card-border: 1px solid #E8D4F0;
  --card-shadow: none;
  --accent-line-width: 4px;
  --accent-line-color: #C83855;
  --section-bar-height: 4px;
  --photo-overlay: rgba(78, 52, 46, 0.40);
  --photo-filter:  none;
}

/* ── テーマ上書き: 見出し色 ── */
.slide-hero, .slide-h1, .slide-h2, .slide-h3 { color: var(--c-heading); }
