:root{
  --coffee-deepest:#e8dfd2;
  --coffee-deep:#ebe3d6;
  --coffee-base:#f0e8dc;
  --coffee-mid:#f5f0e8;
  --coffee-soft:#faf7f2;
  --coffee-olive:#efe6d8;
  --cream:#faf7f2;
  --paper:#fffaf5;
  --page-bg:#ebe3d6;
  --page-bg-soft: var(--shell-bg);
  --section-bg-alt: var(--shell-bg);
  --shell-bg: var(--page-bg); /* ページ外側・main・セクション間・フッター手前の共通背景（単色） */
  --section-bg-latte: var(--shell-bg);
  --page-surface:#faf7f2;
  --page-surface-elevated:#fffaf5;
  --heading-gold:#927642;
  --heading-gold-mid:#8a6b35;
  --heading-gold-deep:#856a34;
  --ink:#3a2e24;
  --cta:#7a5a28;
  --gold:#8f7340;
  --gold-strong:#856a34;
  --gold-soft: rgba(143,115,64,.12);
  --text:#3a2e24;
  --muted: rgba(58,46,36,.78);
  --text-soft: rgba(58,46,36,.62);
  --border: rgba(180,155,120,.38);
  --border-subtle: rgba(180,155,120,.22);
  --shadow: rgba(58,46,36,.08);
  --glass: rgba(250,247,242,.92);
  --overlay-dark-soft: rgba(58,46,36,.18);
  --overlay-dark-mid: rgba(58,46,36,.38);
  --overlay-dark-strong: rgba(58,46,36,.58);
  --btn-bg:#7a5a28;
  --btn-bg-hover:#856a34;
  --btn-text:#fffaf5;
  --nav-glass-bg: rgba(255, 250, 245, 0.46);
  --nav-glass-bg-scrolled: rgba(255, 250, 245, 0.68);
  --nav-glass-bg-deep: rgba(255, 250, 245, 0.78);
  --nav-glass-blur: 22px;
  --nav-glass-saturate: 1.14;
  --header-h: 80px;
  --mobile-header-cta-h: 0px;
  --cta-amber-top: #b88845;
  --cta-amber-bottom: #7a5a28;
  --cta-caramel-border: rgba(122, 90, 40, 0.38);
  --tri-accent-sense: rgba(62, 86, 78, 0.92);
  --mobile-cta-primary-top: #2f5f5b;
  --mobile-cta-primary-bottom: #1f4642;
  --mobile-cta-secondary-top: #fff6dc;
  --mobile-cta-secondary-bottom: #f7e8bd;
  --mobile-cta-secondary-text: #3f2b1f;
  --mobile-cta-secondary-border: #c49a4a;
  --color-background: var(--shell-bg);
  --color-surface: var(--page-surface-elevated);
  --color-text: var(--text);
  --color-text-muted: var(--muted);
  --color-coffee: var(--cta);
  --color-coffee-dark: var(--ink);
  --color-gold: var(--gold);
  --color-gold-light: #f4dfaa;
  --color-border: var(--border);
  --shadow-button: 0 6px 16px rgba(58,46,36,.10);
  --shadow-button-primary: 0 10px 24px rgba(122,90,40,.22);
  --shadow-card: 0 14px 34px var(--shadow);
  --radius-button: 14px;
  --radius-card: 18px;
  --transition-ui: .18s ease;
  /* CHANGELOG 2026-05-02: layout tokens — container-max でコンテナ幅を固定。section-y / section-y-sm で縦リズムを統一 */
  --container-max: 1080px;
  --section-y: 74px;
  --section-y-sm: 48px;
  /* CHANGELOG 2026-05-31: ヘッダー半透明ガラス感復元・SNS公式ロゴ向け余白調整 */
  /* CHANGELOG 2026-05-31: トップへ戻るボタン再設計・bg-stripe横ズレ解消・ワイドヒーロー */
  /* CHANGELOG 2026-05-31: --shell-bg 導入・全ページ外側背景の単色統一 */
  /* CHANGELOG 2026-06-01: セクション間ツートン解消 — shell-bg 単色・カードのみ page-surface 系 */
}

*{box-sizing:border-box}
[hidden]{display:none !important}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--shell-bg);
  overflow-x: clip;
}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background: var(--shell-bg);
  font-family: "Noto Sans JP", "Hiragino Sans", "BIZ UDPGothic", "Yu Gothic", "Meiryo", sans-serif;
  line-height:1.85;
  padding-top: var(--header-h);
  overflow-x: clip;
}

/* ===== Shell surface（全ページ共通・セクション間は単色） ===== */
.fixed-bg,
main,
section,
.container.section,
.bg-stripe--alt,
.paper-slab,
.podcast-section,
.map-slab,
.footer-slab,
.page-back-nav,
.subnav,
.hero-banner:not(.hero-banner--home){
  background-color: var(--shell-bg);
}
main,
section,
.container.section,
.bg-stripe--alt > section,
.bg-stripe--alt > .section,
.bg-stripe--alt .container.section{
  background-image: none;
}
.hero-banner:not(.hero-banner--home){
  background-image: none;
}
.bg-stripe--alt{
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}

a{color:var(--gold); text-decoration:none}
a:hover{text-decoration:underline}

.center{text-align:center}

.skip-link{
  position:absolute;
  left:-9999px;
  top: 10px;
  z-index: 999;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--page-surface-elevated);
  color: var(--text);
  border-radius: 12px;
}
.skip-link:focus{
  left: 12px;
}

.visually-hidden{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* ===== fixed background + foreground scroll ===== */
.fixed-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background-color: var(--shell-bg);
  filter: none;
}

.grain{
  display:none;
}

/* ===== glass nav（全ページ共通・スクロール時も画面上部に固定） ===== */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: transform .2s ease;
}
.nav{
  background: var(--nav-glass-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(var(--nav-glass-saturate));
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(var(--nav-glass-saturate));
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(180, 155, 120, 0.24);
  box-shadow:
    0 8px 24px rgba(58, 46, 36, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.header.is-at-top .nav{
  background: rgba(255, 250, 245, 0.38);
  border-bottom-color: rgba(180, 155, 120, 0.18);
  box-shadow:
    0 6px 20px rgba(58, 46, 36, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}
.header.is-scrolled .nav{
  background: var(--nav-glass-bg-scrolled);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(calc(var(--nav-glass-saturate) + 0.02));
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(calc(var(--nav-glass-saturate) + 0.02));
  box-shadow:
    0 10px 28px rgba(58, 46, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}
.header.is-deep-scrolled .nav{
  background: var(--nav-glass-bg-deep);
  backdrop-filter: blur(calc(var(--nav-glass-blur) + 2px)) saturate(var(--nav-glass-saturate));
  -webkit-backdrop-filter: blur(calc(var(--nav-glass-blur) + 2px)) saturate(var(--nav-glass-saturate));
  box-shadow:
    0 12px 32px rgba(58, 46, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.header.is-menu-open .nav{
  background: var(--nav-glass-bg-deep);
}
.nav-inner{
  display:flex;
  align-items:center;
  gap:18px;
  min-height: var(--header-h);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
  max-width: min(100%, 22em);
}
.brand .logo{
  font-family: "Noto Serif JP", serif;
  letter-spacing:.04em;
  font-weight:700;
  color: var(--heading-gold-deep);
  white-space: nowrap;
}
@media (min-width: 861px){
  .header .nav-inner.container{
    padding-left: 12px;
  }
  .brand .logo{
    font-size: 2.1rem;
    line-height: 1.12;
    color: #6f4f24;
    letter-spacing: .05em;
  }
}
.brand-lockup{
  display:flex;
  flex-direction:column;
  gap: 3px;
  padding: 2px 0;
  text-decoration:none;
  line-height: 1.25;
}
.brand-lockup:hover{
  text-decoration:none;
}
.brand-lockup__name{
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--heading-gold-deep);
  white-space: nowrap;
}
.brand-lockup__legal{
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: clamp(.64rem, .92vw, .74rem);
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(58, 46, 36, .82);
  line-height: 1.35;
}
@media (max-width: 860px){
  .brand{
    max-width: calc(100% - 7.5rem);
  }
  .brand-lockup__name{
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .brand-lockup__legal{
    white-space: normal;
    max-width: 13.5em;
  }
}
.nav-toggle{
  display:none;
  align-items:center;
  gap:8px;
  margin-left:auto;
  border:1px solid rgba(180,155,120,.32);
  background: rgba(255,250,245,.72);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: 0 2px 10px rgba(58, 46, 36, 0.08), inset 0 1px 0 rgba(255,255,255,.58);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
}
.nav-toggle-bar{
  display:block;
  width:16px;
  height:2px;
  border-radius:999px;
  background: currentColor;
}
.nav-toggle-label{
  font-size: .78rem;
  font-weight: 700;
}
.nav-toggle--icon .nav-toggle-bar{
  display:none;
}
/* アイコン記号は使わず、表示ラベル「メニュー」のみ（文字化け防止） */
.nav-toggle--icon .nav-toggle-icon{
  display: none;
}
.nav-panel{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
}
.nav a{
  color: rgba(58,46,36,.88);
  font-weight:600;
}
.nav a:hover{
  color: var(--ink);
  text-decoration:none;
}
.nav-links{
  margin: 0 auto;
  display:flex;
  gap: 4px;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:center;
}
.nav-item{
  position:relative;
  padding: 9px 10px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
  font-size: .9rem;
  font-weight: 600;
}
.nav-item::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:5px;
  height:1.5px;
  border-radius:999px;
  background: rgba(139,115,85,0);
  transition: background .18s ease;
}
.nav-item.is-active{
  color: var(--heading-gold-deep);
  background: transparent;
}
.nav-item.is-active::after{
  background: rgba(143,115,64,.64);
}
.nav-icons{
  display:flex;
  gap:8px;
  margin-left:auto;
  align-items:center;
}
.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(180,155,120,.28);
  background: rgba(255,250,245,.48);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
  color: rgba(58,46,36,.78);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.icon-btn:hover{
  text-decoration:none;
  background: rgba(255,250,245,.72);
  border-color: rgba(180,155,120,.42);
  color: rgba(58,46,36,.92);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(58,46,36,.06);
}
.icon-btn--sns{
  width: 36px;
  height: 36px;
  padding: 8px;
  opacity: .78;
  filter: saturate(.72);
}
.icon-btn--sns:hover{
  opacity: 1;
  filter: saturate(1);
}
.icon-btn--brand-sns{
  background: rgba(255, 252, 246, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(180, 155, 120, 0.34);
}
.icon-btn--brand-sns:hover{
  background: #fffaf5;
}
.icon-btn__svg{
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon-btn__img{
  width:20px;
  height:20px;
  display:block;
  object-fit: contain;
}
.icon-btn__img--brand,
.footer-sns__img--brand{
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.icon-btn--instagram-app{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(214, 36, 159, 0.34);
  border-radius: 22%;
  padding: 7px;
}
.icon-btn--instagram-app:hover{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  filter: brightness(1.05);
  border-color: rgba(214, 36, 159, 0.48);
}
.icon-btn__img--instagram-app{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.footer-sns__instagram-app{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 22%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  padding: 4px;
  box-sizing: border-box;
}
.footer-sns__img--instagram-app{
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.footer-sns__img{
  width:20px;
  height:20px;
  display:block;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-sns{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 14px;
}
.footer-slab,
.footer-meta,
.map-card{
  scroll-margin-top: calc(var(--header-h) + var(--mobile-header-cta-h, 0px) + 16px);
}
.footer-sns__link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(197,160,89,.42);
  background: rgba(255,250,245,.92);
  color: rgba(44,24,16,.86);
  font-weight: 600;
  text-decoration:none;
  box-shadow: 0 4px 14px rgba(44,24,16,.06);
}
.footer-sns__link:hover{
  text-decoration:none;
  border-color: rgba(197,160,89,.62);
  background: rgba(255,250,245,.92);
  transform: translateY(-1px);
}
.footer-sns__label{
  font-size: .92rem;
  letter-spacing: .02em;
}

/* ===== typography ===== */
h1,h2,h3{
  font-family:"Noto Serif JP", serif;
  color:var(--heading-gold-deep);
  letter-spacing:-0.02em;
}
h1{font-size:clamp(2.1rem, 4.2vw, 3.6rem); line-height:1.15; margin:0 0 18px}
h2{font-size:1.9rem; line-height:1.3; margin:0 0 16px}
h3{font-size:1.18rem; line-height:1.45; margin:0 0 12px}
p{margin:0}
.card > p,
.paper-body,
.choice-desc,
.clip-video-lead,
.podcast-embed-notice,
.access-map-note{
  max-width: 46em;
}
.center + .muted,
.section > .muted{
  max-width: 48em;
}
.center + .muted{
  margin-left: auto;
  margin-right: auto;
}

/* セクション内の非中央寄せ h2 にゴールドアクセント */
.section > h2:not(.center){
  position:relative;
  padding-left: 18px;
}
.section > h2:not(.center)::before{
  content:"";
  position:absolute;
  left:0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-strong) 0%, rgba(139,115,85,.42) 100%);
}

/* セクションkicker（h2上の小見出しラベル） */
.section-kicker{
  display:block;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:none;
  color: var(--heading-gold-mid);
  margin-bottom: 10px;
  opacity:.92;
}

/* ===== hero banner (like reference) ===== */
.hero-banner{
  position:relative;
  min-height: 360px;
  height: 44vh;
  max-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
  background-color: var(--shell-bg);
  background-image: none;
}
.hero-banner--home{
  position: relative;
  min-height: 0;
  height: auto;
  max-height: none;
  display: block;
  padding: 0;
  margin: 0;
  background: transparent;
  background-attachment: scroll;
}

/* トップ：ワイドヒーロー（写真＋暗オーバーレイ＋キャッチコピー） */
.hero-wide{
  position: relative;
  width: 100%;
  min-height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
/* CHANGELOG 2026-08-16: FV — 写真とオーバーレイを visual wrapper へ集約（デスクトップは全面、モバイルは別段） */
.hero-wide__visual{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-wide__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 42%;
}
.hero-wide__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,12,8,.62) 0%, rgba(18,12,8,.36) 42%, rgba(18,12,8,.08) 72%, rgba(18,12,8,.04) 100%);
  pointer-events: none;
}
.hero-wide__content{
  position: relative;
  z-index: 1;
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 18px;
  color: #fffaf5;
}
.hero-wide__lead{
  margin: 0 0 16px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.55rem, 3.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .06em;
  color: #fffaf5;
  text-shadow: 0 2px 14px rgba(0,0,0,.38);
}
.hero-wide__sub{
  margin: 0;
  max-width: 28em;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 2.1vw, 1.32rem);
  line-height: 1.85;
  letter-spacing: .04em;
  color: rgba(255,250,245,.94);
  text-shadow: 0 2px 12px rgba(0,0,0,.34);
}
/* FV の CTA：主＝オンラインショップ（外部）、副＝アフターブレンド（サイト内） */
.hero-wide .hero-wide__actions{
  margin-top: 22px;
  gap: 10px;
}
.hero-wide .hero-wide__cta{
  min-height: 44px;
  font-size: clamp(.9rem, 1.5vw, 1rem);
}
.hero-wide .hero-wide__cta--secondary{
  background: rgba(28,19,13,.34);
  border-color: rgba(255,250,245,.56);
  color: #fffaf5;
  font-weight: 600;
  box-shadow: none;
}
.hero-wide .hero-wide__cta--secondary:hover{
  background: rgba(28,19,13,.48);
  border-color: rgba(255,250,245,.78);
  color: #fffaf5;
  box-shadow: none;
}

/* ヒーロー直下のセクションは通常 .section の上パディングと二重になり縦リズムが崩れやすいため詰める */
.hero-banner--home + main > .section:first-child{
  padding-top: var(--section-y-sm);
}

.hero-title-wrap{
  text-align:center;
  padding: 24px 24px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--page-surface-elevated);
  box-shadow: 0 12px 32px var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-title-wrap--home{
  width:min(980px, calc(100% - 48px));
  padding: 28px 28px 34px;
  border: 1px solid var(--border);
  background: rgba(255,250,245,.94);
  box-shadow: 0 14px 36px var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-intro{
  max-width: 920px;
  margin: 0 auto;
}
.hero-topline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}
.hero-topline__icon{
  width: 26px;
  height: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.88);
  color: var(--heading-gold-mid);
  font-size: 14px;
}
.hero-quote{
  margin: 10px 0 18px;
  text-align:center;
  color: var(--muted);
  font-family:"Noto Serif JP", serif;
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  letter-spacing: .04em;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.88);
  color: var(--muted);
  font-weight:600;
  font-size:.88rem;
}
.hero-title-wrap--home .hero-kicker{
  border-color: var(--border-subtle);
  background: rgba(255,250,245,.92);
  color: var(--muted);
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--gold-strong);
  box-shadow: 0 0 0 6px rgba(201,168,76,.16);
}
.hero-title{
  margin: 18px 0 8px;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: var(--heading-gold-deep);
  text-shadow: none;
}
.hero-banner:not(.hero-banner--home) .hero-title{
  font-size: 1.85rem;
}
@media (max-width: 860px){
  .hero-banner:not(.hero-banner--home) .hero-title{
    font-size: clamp(1.38rem, 4.8vw, 1.58rem);
  }
}
.hero-title--home{
  margin: 18px 0 22px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--heading-gold-deep);
  text-shadow: none;
}
.hero-sub{
  margin:0;
  color: var(--muted);
  letter-spacing:.06em;
}
.hero-story{
  display:grid;
  gap:22px;
}
.hero-story__line{
  margin:0;
  font-family:"Noto Serif JP", serif;
  font-size: clamp(1.35rem, 3.2vw, 2.7rem);
  line-height:1.72;
  letter-spacing:.04em;
  color: var(--ink);
  text-shadow: none;
}

.hero-message{
  margin: 0;
}
.hero-message__img{
  width: 100%;
  height: auto;
  display:block;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

/* ===== セクション交互背景ストライプ（shell-bg 単色・境界線なし） ===== */
.bg-stripe--alt{
  width: 100%;
}

/* ===== paper slab (like reference) ===== */
.paper-slab{
  padding: 0;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}
.page-recipes .paper-slab{
  width: 100%;
  max-width: none;
}
.paper-panel{
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-y) 0;
  text-align:center;
}
.paper-panel h2{
  margin-bottom: 22px;
}
.paper-body{
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 2.15;
}
.paper-sign{
  color: var(--heading-gold-mid);
  font-size: .98rem;
}

/* ===== sections / cards ===== */
.section{padding: var(--section-y) 0}
.podcast-section{
  padding-top: var(--section-y-sm);
  padding-bottom: var(--section-y-sm);
}

.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap:20px;
}

.card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow: 0 10px 28px var(--shadow);
}

.card-hover{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:24px;
  box-shadow: 0 10px 28px var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.card-hover:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(58,46,36,.12);
  border-color: rgba(180,155,120,.48);
  background: var(--page-surface-elevated);
}

.card-primary{
  background: var(--page-surface-elevated);
  border: 1px solid var(--border);
  border-radius:18px;
  padding:28px;
  box-shadow: 0 10px 28px var(--shadow);
}

.muted{color:var(--muted)}

/* ===== tri cards (image tiles like reference) ===== */
.tri-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: visible;
  background: rgba(255,250,245,.55);
  box-shadow: 0 14px 36px rgba(58,46,36,.10);
}
.tri-flow-arrow{
  display:none;
}
.tri-card{
  position:relative;
  min-height: 280px;
  display:block;
  background:
    linear-gradient(180deg, var(--overlay-dark-soft) 0%, var(--overlay-dark-strong) 100%),
    var(--paper);
  background-size:cover;
  background-position:center;
  color: #fff;
  text-decoration:none;
  isolation: isolate;
}
.tri-card.media-overlay-safe .tri-overlay{
  position:relative;
  z-index: 1;
}
.tri-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: attr(data-bg);
}
/* note: attr() in background-image isn't supported widely; we set via inline style in JS-less way below */
.tri-card[data-bg]{
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.66) 100%),
    url("./assets/images/chiyoda/roasted-beans-cooling.png");
}
.tri-card:nth-child(1),
.tri-card--roast{
  background-image:
    linear-gradient(148deg, rgba(36,22,12,.78) 0%, rgba(98,62,28,.62) 46%, rgba(24,16,10,.82) 100%),
    url("./assets/images/chiyoda/five-green-beans.png");
  background-position: center 70%;
}
.tri-card:nth-child(2),
.tri-card--sense{
  background-image:
    linear-gradient(148deg, rgba(22,32,28,.78) 0%, rgba(52,72,64,.58) 44%, rgba(18,24,22,.84) 100%),
    url("./assets/images/chiyoda/roasted-beans-cooling.png");
  background-position: center 35%;
}
.tri-card:nth-child(3),
.tri-card--blend{
  background-image:
    linear-gradient(148deg, rgba(34,20,12,.80) 0%, rgba(92,58,30,.64) 42%, rgba(20,14,10,.86) 100%),
    url("./assets/images/chiyoda/afterblend-hands-label-clean.png");
  background-position: center 45%;
}

.tri-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-end;
  gap: 6px;
  text-align:left;
  padding: 22px 18px;
}
.tri-title{
  font-family:"Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing:.06em;
  color: rgba(255, 248, 240, 0.98);
  text-shadow: 0 8px 22px rgba(0,0,0,.42);
}
.tri-title--blend{
  white-space: nowrap;
  font-size: clamp(1.18rem, 4.2vw, 1.85rem);
}
.tri-sub{
  font-size: .95rem;
  opacity: 1;
  color: rgba(255, 248, 240, 0.9);
  text-shadow: 0 6px 18px rgba(0,0,0,.34);
}
.tri-cta{
  margin-top: 14px;
  width: 100%;
  min-height: 44px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 240, 0.28);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing:.03em;
  line-height: 1.35;
  background: linear-gradient(180deg, var(--cta-amber-top) 0%, var(--cta-amber-bottom) 100%);
  color: #fffaf5;
  box-shadow: 0 8px 20px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: none;
}
.tri-card--sense .tri-cta{
  background: linear-gradient(180deg, rgba(88, 118, 106, 0.96) 0%, var(--tri-accent-sense) 100%);
  border-color: rgba(210, 228, 218, 0.28);
}
.tri-card--blend .tri-cta{
  background: linear-gradient(180deg, #a67a3a 0%, #6f4f22 100%);
}
.tri-card:hover .tri-cta,
.tri-card:focus-visible .tri-cta{
  filter: brightness(1.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
}
.tri-card.media-overlay-safe::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(18,12,8,.12) 0%, rgba(18,12,8,.52) 100%);
  z-index: 0;
  pointer-events:none;
}

/* ===== tri flow (desktop only) ===== */
@media (min-width: 900px){
  .tri-cards{
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    align-items: stretch;
  }
  .tri-flow-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    color: rgba(143, 115, 64, 0.55);
    text-shadow: 0 10px 22px rgba(44,24,16,0.10);
    user-select: none;
  }
}

/* ===== tasteful motion (modern, not flashy) ===== */
@media (prefers-reduced-motion: no-preference){
  .hero-title-wrap{
    animation: fadeUp .70s ease both;
  }
  .tri-card{
    transition: transform .28s ease, filter .28s ease;
  }
  .tri-card:hover{
    transform: translateY(-4px);
    filter: saturate(1.04) contrast(1.02);
  }
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

.divider{
  height:1px;
  background: linear-gradient(90deg, rgba(139,115,85,.0), rgba(139,115,85,.55), rgba(139,115,85,.0));
  margin: 18px 0;
}

/* ===== buttons ===== */
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  padding:11px 18px;
  border-radius: var(--radius-button);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,250,245,.96) 0%, rgba(250,247,242,.92) 100%);
  color: var(--ink);
  font-weight:700;
  box-shadow: var(--shadow-button);
  transition: background var(--transition-ui), border-color var(--transition-ui), box-shadow var(--transition-ui), transform var(--transition-ui), color var(--transition-ui);
}
.button:hover{
  text-decoration:none;
  background: linear-gradient(180deg, rgba(255,250,245,1) 0%, rgba(247,238,222,.96) 100%);
  border-color: rgba(180,155,120,.58);
  box-shadow: 0 8px 20px rgba(58,46,36,.12);
  transform: translateY(-1px);
}
.button:active{
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(58,46,36,.08);
}
.button:focus-visible{
  outline: 3px solid rgba(184,153,90,.46);
  outline-offset: 3px;
}
.button.primary{
  background: linear-gradient(180deg, #f1d18a 0%, #c89d4b 48%, #8f6d2f 100%);
  border-color: rgba(122,90,40,.46);
  color: #2f2118;
  text-shadow: 0 1px 0 rgba(255,250,245,.36);
  box-shadow: var(--shadow-button-primary);
}
.button.primary:hover{
  background: linear-gradient(180deg, #f6daa0 0%, #d2a85a 48%, #9a7638 100%);
  border-color: rgba(133,106,52,.56);
  box-shadow: 0 12px 28px rgba(122,90,40,.26);
  transform: translateY(-2px);
}
.button.primary:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(122,90,40,.18);
}

/* メール連絡: 主CTAではなく控えめな導線（アドレス表示） */
.button-mail-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  background: rgba(255, 250, 245, 0.82);
  border-color: var(--border-subtle);
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(58, 46, 36, 0.05);
}
.button-mail-link:hover{
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 250, 245, 0.96);
  border-color: rgba(180, 155, 120, 0.36);
  box-shadow: 0 3px 10px rgba(58, 46, 36, 0.07);
  transform: translateY(-1px);
}

/* お問い合わせセクション（index #contact）: メールアドレス表示ブロック */
#contact .button-mail-link{
  background: #F5EFCF;
  border-color: #D7C28A;
  color: #5B4A33;
  box-shadow: 0 2px 8px rgba(92, 74, 51, 0.08);
}
#contact .button-mail-link:hover{
  color: var(--ink);
  background: #F3E8BE;
  border-color: #C9B274;
  box-shadow: 0 3px 10px rgba(92, 74, 51, 0.10);
}
#contact .button-mail-link__icon{
  display: inline-block;
  flex-shrink: 0;
  color: #8C6B2F;
  filter: sepia(0.3) saturate(1.7) brightness(0.75);
  line-height: 1;
}

/* ===== form elements ===== */
.select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 11px 40px 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(139,115,85,.54);
  background:
    linear-gradient(180deg, rgba(250,247,242,.96) 0%, rgba(246,239,228,.94) 100%);
  color: rgba(44,24,16,.92);
  font: inherit;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(44,24,16,.08);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='rgba(44,24,16,.78)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.select:focus{
  outline: none;
  border-color: rgba(197,160,89,.72);
  box-shadow: 0 0 0 4px rgba(197,160,89,.18);
}

/* ===== lists ===== */
.icon-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.icon-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--muted);
}
.ic{
  flex-shrink:0;
  margin-top:3px;
  color: var(--gold);
}

/* partners: shop map links under each name */
.partner-list .partner-item{
  display:block;
}
.partner-item__row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.partner-map{
  display:inline-block;
  margin-left: 28px;
  margin-top: 4px;
  font-size: .86rem;
  color: rgba(44,24,16,.62);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.partner-map:hover{
  color: rgba(44,24,16,.92);
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.badge{
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,250,245,.88);
  color: var(--muted);
  font-weight:600;
  font-size:.92rem;
}

/* ===== footer ===== */
.footer-slab{
  border-top: none;
  padding: var(--section-y) 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items:start;
}
.footer-brand{
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--heading-gold-mid);
  margin-bottom: 10px;
}
.footer-meta{
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.9;
}
.footer-legal{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--border-subtle);
  font-size:.78rem;
  line-height:1.6;
}
.footer-legal a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover{
  color: var(--ink);
}
.footer-copy{
  margin: 14px 0 0;
  font-size: .82rem;
  color: var(--text-soft);
}
.nav-buy{
  min-height: 44px;
  padding: 9px 14px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== in-page nav / recipe sections ===== */
.subnav{
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  margin-top: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  isolation: isolate;
}
.subnav::before{
  display: none;
}
.subnav-inner{
  position:relative;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding: 4px 0;
}
.subnav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,250,245,.92);
  color: var(--muted);
  font-size: .9rem;
  font-weight:700;
}
.subnav-link:hover{
  text-decoration:none;
  border-color: rgba(180,155,120,.48);
  color: var(--ink);
}

#main > .hero-banner:not(.hero-banner--home) + .subnav + .section{
  padding-top: 28px;
}
.recipe-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}
.recipe-chip{
  display:inline-flex;
  align-items:center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(44,24,16,.12);
  background: var(--page-surface-elevated);
  color: var(--muted);
  font-size: .8rem;
  font-weight:700;
}
.recipe-lead{
  max-width: 720px;
  color: rgba(44,24,16,.72);
}
.recipe-photo-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.recipe-photo-grid img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 680px){
  .recipe-photo-grid{
    grid-template-columns: 1fr;
  }
}

/* storeletter: 「このページの役割」カード（intro） */
#section-letter-intro .recipe-lead{
  max-width: none;
  width: 100%;
}

/* recipes: 「このページの役割」— 見出しはセクション外 */
.page-recipes #section-recipes-role > h2{
  margin-bottom: 16px;
}

/* recipes: 「今、見やすいおすすめ」3カード — タグ群・CTA下揃え */
.page-recipes #section-recommend .recipe-grid{
  align-items: stretch;
}
.page-recipes #section-recommend .recipe-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.page-recipes #section-recommend .recipe-card > p{
  flex: 1 1 auto;
  margin: 0;
}
.page-recipes #section-recommend .recipe-card .recipe-meta{
  margin-top: 12px;
  flex-shrink: 0;
}
.page-recipes #section-recommend .recipe-card .actions{
  margin-top: 14px;
  flex-shrink: 0;
}

/* recipes: 「文化と料理から楽しむ」3カード — タグ行・CTA下揃え */
.page-recipes #section-culture .recipe-grid{
  align-items: stretch;
}
.page-recipes #section-culture .recipe-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.page-recipes #section-culture .recipe-card > p{
  flex: 1 1 auto;
  margin: 0;
}
.page-recipes #section-culture .recipe-card .recipe-meta{
  margin-top: 12px;
  flex-shrink: 0;
}
.page-recipes #section-culture .recipe-card .actions{
  margin-top: 14px;
  flex-shrink: 0;
}

/* recipes: 「このページから自然につなぐ商品」3カード — タグ行・CTA下揃え */
.page-recipes #section-products .recipe-grid{
  align-items: stretch;
}
.page-recipes #section-products .recipe-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.page-recipes #section-products .recipe-card > p{
  flex: 1 1 auto;
  margin: 0;
}
.page-recipes #section-products .recipe-card .recipe-meta{
  margin-top: 12px;
  flex-shrink: 0;
}
.page-recipes #section-products .recipe-card .actions{
  margin-top: 14px;
  flex-shrink: 0;
}

.recipe-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
}
.recipe-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 44px var(--shadow);
}
.recipe-card h3{
  margin-bottom: 10px;
}
.recipe-card p{
  color: var(--muted);
}
.recipe-card .actions{
  margin-top: 14px;
}
.recipe-note{
  margin-top: 14px;
  font-size: .88rem;
  color: rgba(44,24,16,.58);
}
.letter-layout{
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap:20px;
}
.letter-entry{
  background: var(--page-surface);
  border: 1px solid rgba(44,24,16,.12);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(44,24,16,.14);
}
.letter-entry h2{
  margin-bottom: 10px;
}
.letter-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border:1px solid rgba(44,24,16,.12);
  background: var(--page-surface-elevated);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.letter-body{
  margin-top: 18px;
  display:grid;
  gap:16px;
  color: rgba(44,24,16,.74);
}
.letter-body p{
  line-height: 2;
}
.letter-quote{
  padding: 16px 18px;
  border-left: 3px solid rgba(139,115,85,.52);
  background: var(--page-surface-elevated);
  color: var(--muted);
}
.letter-aside{
  display:grid;
  gap:20px;
}
.letter-list{
  display:grid;
  gap:14px;
}
.letter-list-item{
  padding: 16px 18px;
  border-radius: 16px;
  border:1px solid rgba(44,24,16,.12);
  background: var(--page-surface);
}
.letter-list-item h3{
  margin-bottom: 8px;
}
.section-anchor{
  scroll-margin-top: 110px;
}
.anchor-section{
  scroll-margin-top: calc(var(--header-h) + var(--mobile-header-cta-h, 0px) + 16px);
}

/* ===== mobile header CTA（スマホ・ヘッダー直下・案内バー風） ===== */
.mobile-header-cta{
  display:none;
}
.mobile-header-cta__inner{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: 0 14px;
}
.mobile-header-cta__btn{
  min-width: 0;
  max-width: 100%;
  min-height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: clamp(.8125rem, 3.4vw, .875rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
  text-align:center;
  text-decoration:none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: box-shadow .16s ease, filter .16s ease, background .16s ease;
}
.mobile-header-cta__btn.is-primary{
  background: linear-gradient(180deg, var(--mobile-cta-primary-top) 0%, var(--mobile-cta-primary-bottom) 100%);
  border: 1px solid rgba(31, 70, 66, 0.58);
  color: #ffffff;
  box-shadow:
    0 2px 8px rgba(31, 70, 66, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.mobile-header-cta__btn.is-primary:hover{
  text-decoration:none;
  filter: brightness(1.03);
}
.mobile-header-cta__btn.is-secondary{
  background: linear-gradient(180deg, var(--mobile-cta-secondary-top) 0%, var(--mobile-cta-secondary-bottom) 100%);
  border: 1px solid var(--mobile-cta-secondary-border);
  color: var(--mobile-cta-secondary-text);
  box-shadow:
    0 1px 6px rgba(182, 138, 54, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}
.mobile-header-cta__btn.is-secondary:hover{
  text-decoration:none;
  filter: brightness(1.01);
}

/* ===== mobile CTA ===== */
.mobile-cta{
  display:none;
  position:fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 55;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap:8px;
  padding: 8px;
  border:1px solid rgba(196, 154, 74, 0.42);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(58, 46, 36, 0.12);
}
.mobile-cta__item{
  min-height: 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 8px;
  border-radius: 12px;
  border:1px solid var(--mobile-cta-secondary-border);
  color: var(--mobile-cta-secondary-text);
  background: linear-gradient(180deg, var(--mobile-cta-secondary-top) 0%, var(--mobile-cta-secondary-bottom) 100%);
  text-align:center;
  font-weight:700;
  line-height:1.25;
  box-shadow:
    0 3px 10px rgba(182, 138, 54, 0.14),
    0 1px 3px rgba(63, 43, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: box-shadow .18s ease, transform .18s ease, filter .18s ease;
}
.mobile-cta__item:hover{
  text-decoration:none;
  filter: brightness(1.01);
}
.mobile-cta__item.is-secondary{
  background: linear-gradient(180deg, var(--mobile-cta-secondary-top) 0%, var(--mobile-cta-secondary-bottom) 100%);
  border: 1.5px solid var(--mobile-cta-secondary-border);
  color: var(--mobile-cta-secondary-text);
  box-shadow:
    0 4px 12px rgba(182, 138, 54, 0.18),
    0 2px 4px rgba(63, 43, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.mobile-cta__item.is-secondary:hover{
  box-shadow:
    0 5px 14px rgba(182, 138, 54, 0.22),
    0 2px 6px rgba(63, 43, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}
.mobile-cta__item.is-secondary .mobile-cta__label{
  font-weight: 800;
}
.mobile-cta__item.is-primary{
  background: linear-gradient(180deg, var(--mobile-cta-primary-top) 0%, var(--mobile-cta-primary-bottom) 100%);
  border-color: rgba(31, 70, 66, 0.72);
  color: #ffffff;
  box-shadow:
    0 8px 22px rgba(31, 70, 66, 0.34),
    0 2px 6px rgba(31, 70, 66, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.mobile-cta__item.is-primary:hover{
  filter: brightness(1.04);
  box-shadow:
    0 10px 26px rgba(31, 70, 66, 0.38),
    0 3px 8px rgba(31, 70, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.mobile-cta__item.is-primary .mobile-cta__label{
  letter-spacing: .02em;
}
.mobile-cta__label{
  font-size: .84rem;
}

/* ===== legal / policy tables ===== */
.legal-table{
  width:100%;
  border-collapse:collapse;
  font-size:.92rem;
  line-height:1.65;
  color: rgba(44,24,16,.78);
}
.legal-table th,
.legal-table td{
  border:1px solid rgba(44,24,16,.14);
  padding: 12px 14px;
  vertical-align:top;
  text-align:left;
}
.legal-table th{
  width: 32%;
  background: var(--page-surface-elevated);
  font-weight: 600;
}
.stub-note{
  font-size: .9rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== map slab ===== */
.map-slab{
  position:relative;
  padding: var(--section-y-sm) 0 calc(var(--section-y-sm) + 22px);
  border-top: none;
}
.map-card{
  background: var(--page-surface-elevated);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px var(--shadow);
  padding: 14px;
}
.map-card__company-name{
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  color: #6f4f24;
}
.map-card__actions{
  margin-top: 0;
  gap: 10px;
  align-items: stretch;
}
.access-static-map{
  margin: 14px 0 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,250,245,.72);
}
.access-static-map img{
  display: block;
  width: 100%;
  height: auto;
}
.access-map-note{
  margin: 0 0 14px;
  font-size: .9rem;
  line-height: 1.85;
}

/* ===== craft scene photos (afterblend etc.) ===== */
.craft-scene-photo{
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}
.craft-scene-photo img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}
.page-afterblend .craft-scene-photo--roast{
  margin-bottom: 18px;
}
.page-afterblend .craft-scene-photo--roast img{
  object-position: center 40%;
}
.page-afterblend .craft-scene-photo--blend img{
  /* crop away any readable jar label text */
  object-position: 30% 55%;
}

.access-map-link{
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(180, 155, 120, 0.38);
  background: rgba(255, 252, 246, 0.98);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 2px 8px rgba(58, 46, 36, 0.06);
  white-space: nowrap;
}
.access-map-link:hover{
  text-decoration:none;
  background: rgba(255, 252, 246, 1);
  border-color: rgba(196, 154, 74, 0.42);
  box-shadow: 0 3px 10px rgba(58, 46, 36, 0.08);
  transform: translateY(-1px);
}
.access-map-link__pin{
  display:inline-block;
  margin-right: 2px;
  font-size: .92em;
  line-height: 1;
  vertical-align: -0.05em;
}
.map-card__actions > .button:not(.access-map-link){
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(58, 46, 36, 0.06);
}
.map-tabs{
  display:flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .92rem;
}
.tab{
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,250,245,.92);
  border: 1px solid var(--border-subtle);
  color: var(--muted);
}
.map-frame{
  height: 360px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.72);
  display:flex;
  align-items:center;
  justify-content:center;
}
.map-embed{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}
.map-placeholder{
  color: var(--text-soft);
  font-size: .95rem;
}
.to-top{
  position:fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 54;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,245,.14);
  background: linear-gradient(180deg, #4a3a2c 0%, #2f251c 100%);
  color: #fffaf5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 8px 22px rgba(47,37,28,.24);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.to-top::before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 6px;
  border-top: 5px solid #fffaf5;
  border-right: 5px solid #fffaf5;
  transform: rotate(-45deg);
}
.to-top:hover{
  text-decoration:none;
  background: linear-gradient(180deg, #564636 0%, #3a2e24 100%);
  border-color: rgba(255,250,245,.22);
  box-shadow: 0 10px 26px rgba(47,37,28,.30);
  transform: translateY(-2px);
}
.to-top:focus-visible{
  outline: 3px solid rgba(143,115,64,.48);
  outline-offset: 3px;
}
.to-top:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(47,37,28,.22);
}

/* ===== index navigation layer (home) ===== */
.index-nav__heading{
  margin: 0 0 8px;
  color: var(--heading-gold-deep);
  font-family: "Noto Serif JP", serif;
  font-size: 1.42rem;
  line-height: 1.5;
  letter-spacing: .04em;
}
.index-nav__lead{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.85;
}
.index-nav__panel{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.55);
  overflow: hidden;
}
.index-nav__link{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
  padding: 18px 18px 20px;
  border-left: 1px solid var(--border-subtle);
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.index-nav__link:first-child{
  border-left: none;
}
.index-nav__category{
  color: var(--gold-strong);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.index-nav__title{
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
}
.index-nav__desc{
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.75;
}
.index-nav__link:hover{
  text-decoration: none;
  background: rgba(255, 250, 245, 0.92);
}
.index-nav__link:hover .index-nav__title{
  color: var(--heading-gold-deep);
}
.index-nav__link:focus-visible{
  outline: 3px solid rgba(143, 115, 64, 0.55);
  outline-offset: -3px;
  background: rgba(255, 250, 245, 0.92);
}
.index-nav__link:active{
  background: rgba(249, 236, 196, 0.42);
}
@media (max-width: 1080px){
  .index-nav__panel{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index-nav__link:nth-child(odd){
    border-left: none;
  }
  .index-nav__link:nth-child(n + 3){
    border-top: 1px solid var(--border-subtle);
  }
}

/* ===== responsive embeds (podcast) ===== */
.embed{
  margin-top: 10px;
  border: 1px solid rgba(44,24,16,.14);
  background: var(--page-surface);
  height: 140px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.embed-placeholder{
  color: rgba(44,24,16,.56);
  font-size: .95rem;
  padding: 12px;
  text-align:center;
}

/* ===== podcast embed card (top) ===== */
.podcast-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 38px var(--shadow);
  padding: 14px 16px 16px;
}
.podcast-head{
  display:flex;
  gap: 14px;
  align-items:center;
}
.podcast-thumb{
  width: 84px;
  height: 52px;
  position:relative;
  border: 1px solid rgba(44,24,16,.14);
  background:
    linear-gradient(135deg, rgba(139,115,85,.10) 0%, rgba(240,230,216,.86) 100%),
    url("./assets/podcast-cover.jpg");
  background-size: cover;
  background-position: center;
}
.podcast-thumb::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:28px;
  height:28px;
  margin-left:-14px;
  margin-top:-14px;
  border-radius:999px;
  background: rgba(20,11,7,.70);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.podcast-thumb::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  margin-left:-3px;
  margin-top:-6px;
  border-left: 9px solid rgba(255,248,240,.96);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.podcast-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom: 4px;
  color: rgba(44,24,16,.72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.podcast-label__play{
  width: 18px;
  height: 18px;
  display:inline-flex;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(201,168,76,.90) 0%, rgba(181,147,73,.84) 100%);
  position:relative;
  box-shadow: 0 6px 12px rgba(139,115,85,.16);
}
.podcast-label__play::after{
  content:"";
  position:absolute;
  left:7px;
  top:4px;
  border-left: 6px solid rgba(44,24,16,.90);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.podcast-title{
  font-weight: 800;
  color: var(--heading-gold-mid);
}
.podcast-sub{
  color: var(--muted);
  font-size: .88rem;
  margin-top: 2px;
}
.embed-top{
  height: 132px;
  margin-top: 10px;
  background: var(--page-surface);
}

/* ===== top page podcast embed (ElevenLabs / no autoplay) ===== */
.podcast-embed-card{
  overflow: hidden;
}
.podcast-embed-lead{
  margin: 0 0 10px;
  line-height: 1.9;
}
.podcast-embed-shell{
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding: 14px 16px 16px;
  border: 1px solid rgba(44,24,16,.14);
  border-radius: 14px;
  background: var(--page-surface);
  overflow: hidden;
  box-sizing: border-box;
}
/* index #podcast-embed: 二重枠による左ズレ・縦線段差を解消（準備中文言ブロック） */
#podcast-embed .podcast-embed-shell{
  margin-top: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
#podcast-embed .podcast-coming-lead__text--embed{
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: transparent;
}

/* ===== index #podcast-embed: 声／情景の二択（自動再生なし） ===== */
#podcast-embed .podcast-embed-lead{
  margin-bottom: 8px;
}
#podcast-embed .podcast-embed-episode{
  font-size: .9rem;
  margin: 0 0 10px;
  line-height: 1.75;
}
#podcast-embed .podcast-mode-picker{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#podcast-embed .podcast-mode-btn{
  flex: 1 1 calc(50% - 6px);
  min-width: min(100%, 9.5em);
  min-height: 44px;
  padding: 10px 12px;
  font-size: .88rem;
  line-height: 1.45;
  text-align: center;
  box-sizing: border-box;
}
#podcast-embed .podcast-mode-btn--alt{
  background: rgba(255,250,245,.94);
  color: var(--heading-gold-mid);
  border: 1px solid var(--border);
  box-shadow: none;
}
#podcast-embed .podcast-mode-btn--alt:hover{
  background: rgba(255,250,245,.98);
  border-color: rgba(180,155,120,.48);
  color: var(--heading-gold-deep);
}
#podcast-embed .podcast-mode-btn[aria-pressed="true"]{
  border-color: rgba(143,115,64,.55);
  box-shadow: inset 0 0 0 1px rgba(184,153,90,.28);
}
#podcast-embed .podcast-experience__stage{
  margin-top: 4px;
}
#podcast-embed [hidden]{
  display: none !important;
}
#podcast-embed .podcast-experience-idle-hint{
  margin: 0;
  padding: 10px 12px;
  font-size: .9rem;
  line-height: 1.75;
  text-align: center;
  border-radius: 10px;
  border: 1px dashed rgba(44,24,16,.16);
  background: rgba(255,250,245,.72);
}
#podcast-embed .podcast-visual-panel{
  margin: 0 0 4px;
}
#podcast-embed .podcast-mood-image{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(140px, 38vw, 200px);
  margin: 0 auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-sizing: border-box;
}
#podcast-embed .podcast-visual-note{
  margin: 10px 0 0;
  font-size: .86rem;
  line-height: 1.7;
  text-align: center;
}
#podcast-embed .podcast-audio-panel{
  margin-top: 12px;
}
#podcast-embed .podcast-audio-coming{
  margin: 0;
  padding: 12px 14px;
  line-height: 1.8;
  text-align: center;
  border-radius: 10px;
  border: 1px dashed rgba(44,24,16,.2);
  background: rgba(255,250,245,.88);
}
#podcast-embed .podcast-mode-switch{
  margin-top: 10px;
  text-align: center;
}
#podcast-embed .podcast-mode-switch__btn{
  display: inline-block;
  margin: 0;
  padding: 10px 8px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--heading-gold-mid);
  font-size: .86rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
#podcast-embed .podcast-mode-switch__btn:hover{
  color: var(--heading-gold-deep);
}
#podcast-embed .podcast-mode-switch__btn:focus-visible{
  outline: 2px solid rgba(184,153,90,.42);
  outline-offset: 2px;
  border-radius: 4px;
}
#podcast-embed .podcast-experience__archive-link{
  margin-top: 14px;
}
@media (max-width: 375px){
  #podcast-embed .podcast-mode-picker{
    flex-direction: column;
    gap: 8px;
  }
  #podcast-embed .podcast-mode-btn{
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
  #podcast-embed .podcast-mood-image{
    max-height: 168px;
  }
}

/* 短尺クリップ動画仮枠（トップ） */
.clip-video-section{
  scroll-margin-top: calc(var(--header-h, 72px) + 12px);
}
.clip-video-card{
  padding: clamp(20px, 3vw, 28px);
}
.clip-video-lead{
  margin-bottom: 16px;
  line-height: 1.9;
}
.clip-video-status{
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 0.88rem;
  line-height: 1.75;
  border-radius: 10px;
  border: 1px dashed rgba(44, 24, 16, 0.2);
  background: rgba(255, 250, 245, 0.72);
}
.clip-video-actions{
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 480px){
  .clip-video-actions .button{
    flex: 1 1 100%;
    text-align: center;
  }
}

.podcast-embed-notice{
  margin: 0 0 12px;
  font-size: .92rem;
  line-height: 1.85;
  color: rgba(44,24,16,.68);
}
.podcast-embed-placeholder{
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed rgba(44,24,16,.22);
  border-radius: 10px;
  background: var(--page-surface-elevated);
  color: var(--text-soft);
  font-size: .9rem;
  line-height: 1.75;
  text-align: center;
}
.podcast-embed-audio{
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.podcast-player-shell{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.podcast-player-shell audio{
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.podcast-related-grid,
.podcast-archive-grid,
.podcast-coming-grid{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.podcast-coming-lead{
  margin-top: 14px;
}
.podcast-coming-lead__text{
  margin: 0;
  line-height: 1.9;
  color: var(--text-soft);
}
.podcast-coming-card{
  overflow: hidden;
  min-width: 0;
}
.podcast-coming-card__badges{
  margin-top: 0;
  margin-bottom: 10px;
}
.podcast-coming-card__title{
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}
.podcast-coming-card__desc{
  margin-top: 10px;
  line-height: 1.9;
}
.podcast-coming-badge{
  letter-spacing: 0.02em;
}
.podcast-coming-lead__text--embed{
  margin: 0 0 12px;
  line-height: 1.85;
  color: var(--text-soft);
  font-size: .92rem;
}
.podcast-coming-grid--single{
  display: block;
  max-width: 640px;
}
.podcast-coming-grid--embed{
  gap: 10px;
}
.podcast-coming-grid--embed .podcast-coming-card__title{
  font-size: .98rem;
}
.podcast-coming-grid--embed .podcast-coming-card__desc{
  font-size: .9rem;
}
.podcast-coming-lead--compact{
  margin-top: 0;
}
.podcast-related-card,
.podcast-episode-card{
  overflow: hidden;
  min-width: 0;
}
.podcast-audio-placeholder{
  padding: 12px 14px;
  border: 1px dashed rgba(44,24,16,.22);
  border-radius: 10px;
  background: var(--page-surface-elevated);
  font-size: .9rem;
  line-height: 1.75;
  text-align: center;
}
.player audio{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.podcast-embed-shell iframe{
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 152px;
  border: 0;
}
@media (max-width: 860px){
  .podcast-embed-shell{
    padding: 12px 12px 14px;
  }
  .podcast-embed-shell iframe{
    min-height: 132px;
  }
  .podcast-coming-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .podcast-coming-card__title{
    font-size: 1rem;
  }
}

.podcast-transcript-preview{
  margin-top: 12px;
  padding: 12px 12px 0;
  border: 1px solid rgba(44,24,16,.10);
  background: var(--page-surface);
}
.podcast-transcript-preview__head{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
  margin-bottom: 10px;
}
.podcast-transcript-preview__badge{
  display:inline-flex;
  align-items:center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(139,115,85,.20);
  background: var(--page-surface-elevated);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.podcast-transcript-note{
  margin:0;
  color: rgba(44,24,16,.62);
  font-size: .84rem;
}
.podcast-roll{
  position:relative;
  overflow:hidden;
  height: 132px;
  padding: 16px 12px;
  border: 1px solid rgba(44,24,16,.10);
  background: var(--page-surface);
}
.podcast-roll::before,
.podcast-roll::after{
  display: none;
}
.podcast-roll__track{
  display:grid;
  gap:18px;
  justify-items:center;
  animation: podcastCredits 26s linear infinite;
}
.podcast-roll__line{
  margin:0;
  font-family:"Noto Serif JP", serif;
  font-size: 1rem;
  line-height: 1.85;
  letter-spacing: .06em;
  color: rgba(44,24,16,.76);
  text-align:center;
}
.transcript-inline{
  margin-top: 10px;
  background: var(--page-surface);
}

/* ===== audio + transcript ===== */
.player audio{
  width: 100%;
}
.transcript{
  margin-top: 14px;
  border: 1px solid rgba(44,24,16,.14);
  background: var(--page-surface);
  padding: 12px 14px;
}
.transcript summary{
  cursor: pointer;
  font-weight: 700;
  color: rgba(44,24,16,.82);
}
.transcript summary:focus-visible{
  outline: 3px solid rgba(184,153,90,.46);
  outline-offset: 4px;
  border-radius: 8px;
}
.partner-details summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
}
.partner-details summary::after{
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--transition-ui);
}
.partner-details[open] summary::after{
  transform: rotate(-135deg);
}
.transcript-body{
  margin-top: 10px;
  color: rgba(44,24,16,.72);
  line-height: 2.05;
}

@keyframes podcastCredits{
  0%{ transform: translateY(26%); }
  100%{ transform: translateY(-56%); }
}

@media (prefers-reduced-motion: reduce){
  .podcast-roll{
    height:auto;
    max-height:none;
  }
  .podcast-roll__track{
    animation:none;
  }
}

/* ===== process diagram ===== */
.process-diagram{
  width: 100%;
  overflow: hidden;
}

.process-diagram polyline,
.process-diagram line{
  stroke-linejoin: miter;
  stroke-linecap: butt;
}

/* ===== afterblend page accents ===== */
.page-afterblend h1,
.page-afterblend h2,
.page-afterblend h3,
.page-afterblend .hero-title{
  color: var(--heading-gold-deep);
}
.page-afterblend .hero-sub{
  color: var(--heading-gold);
}
.page-afterblend .paper-panel h2{
  color: var(--heading-gold-deep);
}
.page-afterblend .section > h2:not(.center)::before{
  background: linear-gradient(180deg, var(--heading-gold-mid) 0%, var(--heading-gold-deep) 100%);
}
.page-afterblend .card-primary h3{
  color: var(--heading-gold-deep);
}
.page-afterblend .section-kicker{
  color: var(--heading-gold-mid);
}
.page-afterblend .paper-body,
.page-afterblend .card p,
.page-afterblend .muted{
  color: var(--muted);
}

/* afterblend: 「風味期限というこだわり」— 読みやすい分解レイアウト */
.page-afterblend #section-flavor-freshness .flavor-freshness-panel{
  max-width: 880px;
  padding-top: calc(var(--section-y-sm) + 12px);
  padding-bottom: calc(var(--section-y-sm) + 16px);
  text-align: left;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-intro{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-intro h2{
  margin-bottom: 24px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-catch{
  margin: 0 0 20px;
  font-family: "Noto Serif JP", "Noto Sans JP", serif;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.85;
  color: var(--heading-gold-deep);
}
.page-afterblend #section-flavor-freshness .flavor-freshness-lead{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
  text-align: left;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-lead + .flavor-freshness-lead{
  margin-top: 14px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-bridge{
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
}
.page-afterblend #section-flavor-freshness .flavor-freshness-bridge:first-of-type{
  margin-top: 0;
  margin-bottom: 14px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-panel > .flavor-freshness-bridge:nth-of-type(2){
  margin-bottom: 56px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-compare{
  margin-top: 24px;
  margin-bottom: 32px;
  gap: 28px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-points{
  margin-top: 0;
  margin-bottom: 36px;
  gap: 28px;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-term,
.page-afterblend #section-flavor-freshness .flavor-freshness-point{
  padding: 26px 28px;
  text-align: left;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-term__title,
.page-afterblend #section-flavor-freshness .flavor-freshness-point__title{
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--heading-gold-deep);
}
.page-afterblend #section-flavor-freshness .flavor-freshness-term p,
.page-afterblend #section-flavor-freshness .flavor-freshness-point p{
  margin: 0;
  line-height: 1.85;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-message{
  margin-top: 36px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--page-surface);
  box-shadow: 0 10px 28px var(--shadow);
}
.page-afterblend #section-flavor-freshness .flavor-freshness-message__title{
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--heading-gold-deep);
}
.page-afterblend #section-flavor-freshness .flavor-freshness-message p{
  margin: 0;
  line-height: 1.85;
}
.page-afterblend #section-flavor-freshness .flavor-freshness-note{
  margin: 32px 0 0;
  padding-top: 4px;
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(44, 24, 16, .62);
}

@media (min-width: 861px){
  .page-afterblend #section-flavor-freshness .flavor-freshness-panel{
    max-width: 1040px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-intro{
    max-width: 720px;
    margin-bottom: 48px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-lead + .flavor-freshness-lead{
    margin-top: 18px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-bridge{
    max-width: 720px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-bridge:first-of-type{
    margin-bottom: 18px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-panel > .flavor-freshness-bridge:nth-of-type(2){
    margin-bottom: 80px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-compare{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-points{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 52px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-term,
  .page-afterblend #section-flavor-freshness .flavor-freshness-point{
    padding: 32px 36px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-message{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 52px;
    padding: 32px 40px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-message__title{
    margin-bottom: 18px;
  }
  .page-afterblend #section-flavor-freshness .flavor-freshness-note{
    margin-top: 44px;
  }
}

/* ===== FAQ / Contact / subpages layout harmonization ===== */
.page-faq .hero-banner,
.page-products .hero-banner,
.page-afterblend .hero-banner,
.page-recipes .hero-banner,
.page-storeletter .hero-banner{
  background-image: none;
}
.page-faq main,
.page-contact main,
.page-products main,
.page-afterblend main,
.page-recipes main,
.page-storeletter main{
  background-color: var(--shell-bg);
}
.page-faq #main > .hero-banner + .section{
  padding-top: var(--section-y-sm);
}

.page-contact main > .section:first-child{
  padding-top: var(--section-y-sm);
}

/* ===== Light cream coffee theme harmonization (2026-05-31) ===== */
.proof-card,
.letter-list-item,
.transcript,
details.transcript{
  background: var(--page-surface);
  border-color: var(--border);
  box-shadow: 0 10px 28px var(--shadow);
}
.podcast-label,
.podcast-embed-lead,
.recipe-lead,
.recipe-note,
.partner-map,
.stub-note{
  color: var(--muted);
}
.recipe-chip,
.podcast-transcript-preview__badge{
  background: rgba(255,250,245,.88);
  border-color: var(--border);
  color: var(--muted);
}
.footer-sns__link{
  background: rgba(255,250,245,.92);
  border-color: var(--border);
  color: var(--ink);
}
.legal-table{
  color: var(--muted);
}
.legal-table th,
.legal-table td{
  border-color: var(--border-subtle);
}
.legal-table th{
  background: rgba(255,250,245,.88);
  color: var(--heading-gold-mid);
}
.hero-topline,
.hero-quote{
  color: var(--muted);
}
.center h2{
  color: var(--heading-gold-deep);
}

/* ===== breadcrumb (main top, header-adjacent) ===== */
#main > .breadcrumb.container:first-child{
  padding-top: clamp(10px, 2vw, 16px);
  padding-bottom: 2px;
}
.breadcrumb__list{
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  max-width: 100%;
  font-size: clamp(0.78rem, 2.6vw, 0.86rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.breadcrumb__item,
.breadcrumb__sep{
  display: inline;
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
.breadcrumb__item::marker,
.breadcrumb__sep::marker{
  content: "";
}
.breadcrumb__sep{
  color: rgba(122, 99, 72, 0.55);
  font-size: 0.72em;
  letter-spacing: 0;
  white-space: nowrap;
  margin: 0 0.22em;
}
.breadcrumb a{
  color: rgba(122, 99, 72, 0.88);
  text-decoration: none;
  word-break: break-word;
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb__current{
  color: rgba(92, 70, 48, 0.92);
  font-weight: 500;
  word-break: break-word;
}
#main > .breadcrumb.container + .section{
  padding-top: calc(var(--section-y-sm) - 6px);
}
#main > .breadcrumb.container + .hero-banner:not(.hero-banner--home){
  margin-top: 0;
}
@media (max-width: 420px){
  .breadcrumb__sep{
    margin: 0 0.18em;
  }
}

/* ===== page back navigation ===== */
.page-back-nav{
  position: relative;
  isolation: isolate;
  padding-top: var(--section-y-sm);
  padding-bottom: calc(var(--section-y-sm) + 4px);
  border-top: none;
}
.page-back-nav::before{
  display: none;
}
.page-back-nav__inner{
  display:flex;
  flex-wrap:wrap;
  gap: 14px 16px;
  justify-content: center;
  align-items:center;
  max-width: 760px;
  margin: 0 auto;
}
.button-back,
.button-to-top{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,250,245,.92);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.button-back:hover,
.button-to-top:hover{
  text-decoration:none;
  background: rgba(255,250,245,.98);
  border-color: rgba(180,155,120,.48);
  color: var(--ink);
  box-shadow: 0 4px 14px var(--shadow);
}
.button-back--secondary{
  background: transparent;
  color: var(--heading-gold-mid);
}
.button-back--secondary:hover{
  background: rgba(255,250,245,.72);
  color: var(--heading-gold-deep);
}
.button-to-top{
  min-width: 48px;
  padding-left: 18px;
  padding-right: 18px;
}

/* ===== safe media overlay (text on image) ===== */
.media-overlay{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.media-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, var(--overlay-dark-soft) 0%, var(--overlay-dark-strong) 100%);
  z-index: 0;
  pointer-events:none;
}
.media-overlay__content{
  position: relative;
  z-index: 1;
}
.hero-banner--media-overlay{
  background-size: cover;
  background-position: center;
}
.hero-banner--media-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, var(--overlay-dark-soft) 0%, var(--overlay-dark-strong) 100%);
  z-index: 0;
}
.hero-banner--media-overlay .hero-title-wrap{
  position: relative;
  z-index: 1;
}

/* ===== responsive ===== */
@media (max-width: 520px){
  /* 極狭画面では内側パディングを少し増やして読みやすさを維持 */
  .container{
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }
  .tri-cards{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .recipe-grid{grid-template-columns:1fr}
  .letter-layout{grid-template-columns:1fr}
  .hero-banner--home{
    min-height: 0;
    height: auto;
    padding: 0;
  }
  .hero-wide{
    min-height: clamp(280px, 58vw, 440px);
  }
  .hero-wide__img{
    object-position: 58% 44%;
  }
  .hero-wide__content{
    padding: 36px 14px;
  }
  .hero-banner--home + main > .section:first-child{
    padding-top: 28px;
  }
  .hero-title-wrap--home{
    width:min(100%, calc(100% - 32px));
    padding: 22px 18px 28px;
  }
  .hero-story{
    gap:16px;
  }
  .hero-story__line{
    font-size: clamp(1.2rem, 5vw, 1.9rem);
    line-height:1.64;
  }
}

@media (max-width: 1100px){
  html{
    scroll-padding-top: 88px;
  }
  .nav-inner{
    min-height: 68px;
    flex-wrap:wrap;
  }
  .nav-toggle{
    display:inline-flex;
    padding: 8px 12px;
    gap: 6px;
  }
  .nav-toggle-label{
    font-size: .75rem;
    font-weight: 600;
  }
  .nav-toggle-icon{
    font-size: 0.88rem;
    color: rgba(58, 46, 36, 0.68);
  }
  .icon-btn--sns{
    width: 38px;
    height: 38px;
    padding: 8px;
  }
  .icon-btn__img--brand{
    width: 22px;
    height: 22px;
  }
  .icon-btn__img--instagram-app{
    width: 24px;
    height: 24px;
  }
  .nav-panel{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:14px;
    padding: 0 0 16px;
  }
  .header.is-menu-open .nav-panel{
    display:flex;
  }
  .nav-links{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    margin:0;
  }
  .nav-item{
    width:100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(251, 248, 244, 0.72);
  }
  .nav-item::after{
    left:14px;
    right:14px;
    bottom:7px;
  }
  .hero-banner--home{
    min-height: 0;
    height: auto;
  }
  .hero-title-wrap--home{
    width:min(100%, calc(100% - 40px));
  }
  .nav-icons{
    justify-content:flex-start;
    flex-wrap:wrap;
    margin-left:0;
  }
  .subnav{
    top: var(--header-h);
  }
}

@media (max-width: 860px){
  :root{
    --header-h: 70px;
    --mobile-header-cta-h: 51px;
  }
  html{
    scroll-padding-top: calc(var(--header-h) + var(--mobile-header-cta-h) + 12px);
  }
  body{
    padding-top: calc(var(--header-h) + var(--mobile-header-cta-h) + 8px);
    /* 下部固定CTA非表示のため、旧 84px 余白は撤去（safe-area のみ） */
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .brand .logo{
    font-size: 1.32rem;
    line-height: 1.25;
  }
  .header .nav,
  .header.is-at-top .nav,
  .header.is-scrolled .nav,
  .header.is-deep-scrolled .nav,
  .header.is-menu-open .nav{
    border-bottom: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }
  .nav-inner{
    min-height: var(--header-h);
  }
  .mobile-header-cta{
    display:block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 58;
    padding: 2px 0 3px;
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: blur(10px) saturate(1.04);
    -webkit-backdrop-filter: blur(10px) saturate(1.04);
    border-top: 1px solid rgba(180, 155, 120, 0.14);
    border-bottom: 1px solid rgba(180, 155, 120, 0.18);
    box-shadow: none;
  }
  .mobile-header-cta__inner{
    width: 100vw;
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }
  .mobile-header-cta__btn{
    width: 100%;
    font-size: .78rem;
  }
  .subnav{
    top: calc(var(--header-h) + var(--mobile-header-cta-h));
  }
  .hero-wide__overlay{
    background:
      linear-gradient(180deg, rgba(18,12,8,.54) 0%, rgba(18,12,8,.34) 48%, rgba(18,12,8,.18) 100%),
      linear-gradient(90deg, rgba(18,12,8,.58) 0%, rgba(18,12,8,.28) 68%, rgba(18,12,8,.08) 100%);
  }
  .actions .button{
    min-height: 44px;
  }
  .map-card__actions{
    gap: 8px;
  }
  .map-card__actions > .access-map-link,
  .map-card__actions > .button:not(.access-map-link){
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 40px;
    padding: 8px 10px;
    font-size: .8125rem;
  }
  .tri-cards{
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .tri-card{
    min-height: 248px;
  }
  .tri-overlay{
    padding: 20px 16px;
  }
  .subnav-inner{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom: 2px;
  }
  .subnav-link{
    flex: 0 0 auto;
  }
  /* 下部固定CTA: 落ち着いた雰囲気優先で非表示（HTML/includes/mobile-cta.html は将来復帰用に維持） */
  .mobile-cta,
  .mobile-cta.is-visible{
    display: none;
    pointer-events: none;
    /* 復帰時: display: grid; pointer-events: auto; */
    left: 8px;
    right: 8px;
    padding: 6px;
    gap: 6px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
  }
  .mobile-cta__item{
    min-height: 44px;
    padding: 8px 5px;
  }
  .mobile-cta__item.is-primary{
    min-height: 46px;
  }
  .mobile-cta__label{
    font-size: clamp(.72rem, 2.8vw, .82rem);
  }
  .mobile-cta__item.is-primary .mobile-cta__label{
    font-size: clamp(.74rem, 2.9vw, .84rem);
    font-weight: 800;
  }
  .to-top{
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 56;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .18s ease, background .18s ease;
  }
  .to-top.is-scroll-visible{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .to-top:hover{
    transform: translateY(-2px);
  }
  .to-top.is-scroll-visible:hover{
    transform: translateY(-2px);
  }
  .index-nav{
    padding-top: var(--section-y-sm);
    padding-bottom: var(--section-y-sm);
  }
  .index-nav__heading{
    font-size: 1.22rem;
  }
  .index-nav__lead{
    margin-bottom: 16px;
    font-size: .9rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
  .index-nav__panel{
    grid-template-columns: minmax(0, 1fr);
  }
  .index-nav__link{
    min-height: 88px;
    padding: 14px 16px 16px;
    border-left: none;
    border-top: 1px solid var(--border-subtle);
  }
  .index-nav__link:first-child{
    border-top: none;
  }
  .index-nav__desc{
    overflow-wrap: anywhere;
  }
  .button-mail-link{
    font-size: 0.875rem;
    padding: 7px 12px;
    min-height: 36px;
    max-width: 100%;
  }
  .podcast-section{
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .page-faq .hero-banner{
    min-height: clamp(176px, 28vh, 260px);
    height: auto;
    max-height: none;
  }
  .page-faq #main > .hero-banner + .section{
    padding-top: 24px;
  }
  .page-faq main .section{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .page-contact main > .section:first-child{
    padding-top: 24px;
  }
  /* Podcast 一覧（podcast.html）：モバイルのみ上部ファーストビューを詰める */
  #main > .hero-banner:has(#podcast-series-name){
    min-height: 0;
    height: auto;
    max-height: none;
    padding: 6px 0 4px;
    align-items: flex-start;
  }
  #main > .hero-banner:has(#podcast-series-name) .hero-title-wrap{
    width: min(100%, calc(100% - 28px));
    margin: 0 auto;
    padding: 16px 18px;
  }
  #main > .hero-banner:has(#podcast-series-name) .hero-title{
    margin-top: 12px;
    margin-bottom: 6px;
  }
  #main > .hero-banner:has(#podcast-series-name) + .section{
    padding-top: 20px;
    padding-bottom: var(--section-y);
  }
  /* CHANGELOG 2026-08-16: FV — モバイルはテキスト／CTA帯と写真帯を分離し、画像上に文字を重ねない */
  .hero-wide{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .hero-wide__content{
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 16px 24px;
    background: linear-gradient(180deg, #3a2820 0%, #2c1d16 100%);
  }
  .hero-wide__lead{
    margin-bottom: 12px;
    font-size: clamp(1.42rem, 6.2vw, 1.9rem);
  }
  .hero-wide__sub{
    max-width: none;
    font-size: clamp(.95rem, 3.9vw, 1.06rem);
    line-height: 1.8;
  }
  .hero-wide .hero-wide__actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-wide .hero-wide__cta{
    width: 100%;
    min-height: 48px;
  }
  .hero-wide__visual{
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(190px, 46vw, 260px);
  }
}

/* ===== LP specific ===== */
.lp-hero{
  min-height: 78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(180deg, rgba(18,10,6,.46) 0%, rgba(18,10,6,.56) 48%, rgba(18,10,6,.42) 100%),
    url("./assets/hero-home.png");
  background-size:cover;
  background-position: 58% 44%;
  background-attachment: scroll;
  text-align:center;
  padding: 48px 16px;
}
.lp-hero--chiyoda{
  background:
    linear-gradient(180deg, rgba(12,6,3,.58) 0%, rgba(12,6,3,.48) 42%, rgba(12,6,3,.62) 100%),
    url("./assets/images/chiyoda/hero-pour-coffee-2026.webp");
  background-size: cover;
  background-position: center 38%;
}
.page-lp .breadcrumb{
  padding-top: 10px;
  padding-bottom: 0;
  font-size: .82rem;
  opacity: .78;
}
.lp-hero-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(.94rem, 1.6vw, 1.08rem);
  font-weight: 600;
  letter-spacing: .14em;
  color: #fff3d8;
  padding: 5px 15px 6px;
  margin: 0 auto 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,243,216,.40);
  background: linear-gradient(180deg, rgba(62,36,18,.74), rgba(34,18,10,.68));
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  text-shadow: 0 1px 8px rgba(0,0,0,.42);
}
.page-lp .lp-hero .hero-kicker{
  margin-top: 0;
}
@media (max-width: 520px){
  .lp-hero--chiyoda{
    min-height: 86vh;
    background-position: center 28%;
    padding-top: 56px;
  }
  .lp-hero-inner{
    padding: 28px 22px 34px;
    background: rgba(12,6,3,.48);
    border-color: rgba(255,255,255,.10);
  }
}
.page-lp .nav-icons{
  margin-left: auto;
}
@media (min-width: 861px){
  .lp-hero{
    background-position: center 42%;
    background-attachment: fixed;
  }
}
@media (max-width: 1100px){
  .page-lp .nav-inner{
    flex-wrap: nowrap;
    gap: 10px;
  }
  .page-lp .nav-icons{
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 0;
    gap: 6px;
  }
  .page-lp .nav-buy{
    display: none;
  }
}
.lp-hero-inner{
  width: min(680px, calc(100% - 40px));
  padding: 36px 36px 44px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(16,8,4,.30);
  backdrop-filter: blur(6px);
}
.lp-headline{
  font-family:"Noto Serif JP", serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.5;
  letter-spacing: .04em;
  color: rgba(255,248,238,.97);
  text-shadow: 0 10px 28px rgba(0,0,0,.42);
  margin: 0 0 14px;
}
.lp-sub{
  font-size: clamp(.98rem, 2vw, 1.12rem);
  color: rgba(255,248,232,.80);
  margin: 0 0 28px;
  letter-spacing: .04em;
}

/* ===== choice cards (3択) ===== */
.choice-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.choice-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 16px 38px var(--shadow);
  display:grid;
  gap: 10px;
  align-content: start;
}
.choice-badge{
  display:inline-flex;
  align-items:center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,250,245,.88);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.choice-badge--guide{
  gap: 6px;
  align-self: start;
  padding: 5px 11px;
  border-color: var(--border-subtle);
  background: rgba(255,250,245,.76);
  color: rgba(58,46,36,.62);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.35;
}
.choice-badge__icon{
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  color: rgba(133,106,52,.72);
}
.choice-title{
  font-family:"Noto Serif JP", serif;
  font-size: 1.1rem;
  color: var(--heading-gold-deep);
  font-weight: 700;
  line-height: 1.55;
}
.choice-desc{
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.85;
  margin: 0;
}
.choice-for{
  font-size: .86rem;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.72);
  line-height: 1.6;
}

/* Podcast guide: equal card height + bottom-aligned CTA */
#section-guide .choice-grid{
  align-items: stretch;
}
#section-guide .choice-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
#section-guide .choice-card .actions{
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
}
@media (max-width: 520px){
  #section-guide .choice-card .actions{
    padding-top: 12px;
  }
}

/* Products guide (このページの見方): equal height + aligned choice-for + bottom CTA */
@media (min-width: 521px){
  section[aria-labelledby="products-guide-heading"] .choice-grid{
    align-items: stretch;
  }
  section[aria-labelledby="products-guide-heading"] .choice-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }
  section[aria-labelledby="products-guide-heading"] .choice-title{
    min-height: calc(1.1rem * 1.55 * 2);
  }
  section[aria-labelledby="products-guide-heading"] .choice-desc{
    flex: 0 0 auto;
    min-height: calc(0.95rem * 1.85 * 5.05);
  }
  section[aria-labelledby="products-guide-heading"] .choice-for{
    flex-shrink: 0;
    min-height: calc(1.6em * 2 + 16px);
  }
  section[aria-labelledby="products-guide-heading"] .choice-card .actions{
    margin-top: 0;
    padding-top: 14px;
    flex-shrink: 0;
    align-items: flex-end;
    min-height: calc(1em * 1.9 * 2 + 22px + 14px);
  }
  section[aria-labelledby="products-guide-heading"] .choice-card .actions .button{
    min-height: calc(1em * 1.9 * 2 + 22px);
  }
}
@media (max-width: 520px){
  section[aria-labelledby="products-guide-heading"] .choice-card .actions{
    padding-top: 12px;
  }
}

/* ===== proof cards ===== */
.proof-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.proof-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 14px 34px var(--shadow);
  display:flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  gap: 10px;
}
.proof-card .actions{
  margin-top: auto !important;
  padding-top: 14px;
  flex-shrink: 0;
}
@media (max-width: 520px){
  .proof-card .actions{
    padding-top: 12px;
  }
}
.proof-num{
  font-family:"Noto Serif JP", serif;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(184,153,90,.32);
  font-weight: 700;
}

/* ===== LP product cards ===== */
.lp-product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.lp-product-card{
  background: var(--page-surface);
  border: 1px solid rgba(44,24,16,.14);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 18px 44px rgba(44,24,16,.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 0;
}
.lp-product-card > .actions{
  margin-top: 0;
}
.lp-product-price-block{
  display: grid;
  gap: 2px;
  flex-shrink: 0;
}
@media (min-width: 521px){
  .lp-product-card > .lp-product-card__head{
    flex: 0 0 auto;
    min-height: calc(26px + 10px + 1.18rem * 1.5 * 2.8);
  }
  .lp-product-card > h3{
    flex: 0 0 auto;
    min-height: calc(1.18rem * 1.5 * 2.8);
  }
  .lp-product-card > .lp-product-price-block{
    flex: 0 0 auto;
    min-height: calc(0.9rem * 1.5 * 2 + 0.78rem * 1.4 + 2px);
  }
  .lp-product-card > .actions{
    flex-shrink: 0;
    min-height: calc(1.6em + 16px);
    display: flex;
    align-items: flex-end;
  }
}
.lp-split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
}
.lp-split__media img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(44,24,16,.14);
  display: block;
}
.lp-experience-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.lp-experience-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 38px var(--shadow);
}
.lp-experience-card img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.lp-experience-card__body{
  padding: 18px 18px 22px;
}
.lp-experience-card__body h3{
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.lp-pv-slot__frame{
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--page-surface);
  box-shadow: 0 16px 38px var(--shadow);
}
.lp-pv-slot__poster{
  margin: 0;
}
.lp-pv-slot__poster img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.lp-pv-slot__note{
  margin: 0;
  padding: 16px 20px 20px;
  text-align: center;
  font-size: .92rem;
}
.lp-owner{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(20px, 4vw, 32px);
  align-items: center;
}
.lp-owner__media img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(44,24,16,.12);
  display: block;
}
.lp-closing{
  text-align: center;
  padding: 48px 16px 56px;
}
.lp-closing__lead{
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.7;
  letter-spacing: .06em;
  color: rgba(44,24,16,.88);
  margin: 0 0 12px;
}
.lp-closing__sign{
  margin: 18px 0 0;
  font-size: .95rem;
  letter-spacing: .12em;
  color: rgba(44,24,16,.62);
}
.lp-lineup-intro{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}
.lp-lineup-intro figure{
  margin: 0;
  text-align: center;
}
.lp-product-card > .lp-product-desc{
  margin: 0;
  font-size: .88rem;
  line-height: 1.75;
}
.lp-product-card > .lp-product-for{
  margin: 0;
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(44,24,16,.52);
}
@media (min-width: 521px){
  .lp-product-card > .lp-product-desc{
    flex: 0 0 auto;
    min-height: calc(0.88rem * 1.75 * 3.2);
  }
  .lp-product-card > .lp-product-for{
    flex: 0 0 auto;
    min-height: calc(0.78rem * 1.6 * 2.2);
  }
}
.lp-lineup-intro img{
  width: 100%;
  max-width: none;
  border-radius: 16px;
}
.lp-lineup-intro{
  gap: 24px;
  margin-bottom: 34px;
}
.lp-lineup-intro figcaption{
  margin-top: 10px;
  font-size: .78rem;
  color: rgba(44,24,16,.55);
  text-align: center;
}
.lp-enjoyment{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: center;
  margin-top: 22px;
}
.lp-enjoyment__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(44,24,16,.12);
}
.lp-enjoyment__media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.lp-story-bridge{
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 0;
}
.lp-story-bridge p{
  margin: 0;
  line-height: 1.9;
  color: rgba(44,24,16,.62);
  font-size: .95rem;
}
/* LP section rhythm — quiet tonal shifts */
.page-lp .lp-section .section-kicker{
  display: block;
  text-align: center;
  letter-spacing: .14em;
  font-size: .72rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-lp .paper-panel .section-kicker{
  text-align: left;
  text-transform: none;
  letter-spacing: .08em;
}
.lp-section--desire{
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.lp-section--experience{
  background: linear-gradient(180deg, rgba(250,246,240,.98) 0%, rgba(244,236,226,.92) 100%);
  border-block: 1px solid rgba(139,115,85,.12);
  padding: clamp(40px, 6vw, 64px) 0;
}
.lp-section--experience .lp-experience-grid{
  margin-top: 32px;
}
.lp-enjoy-steps{
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.lp-enjoy-steps li{
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(139,115,85,.14);
}
.lp-enjoy-steps__num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--heading-gold-deep);
  background: rgba(139,115,85,.12);
}
.lp-enjoy-steps strong{
  display: block;
  margin-bottom: 4px;
  font-size: .95rem;
  color: rgba(44,24,16,.88);
}
.lp-enjoy-steps p{
  margin: 0;
  font-size: .88rem;
  line-height: 1.75;
}
@media (max-width: 860px){
  .lp-enjoyment{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px){
  .lp-split,
  .lp-owner{
    grid-template-columns: 1fr;
  }
  .lp-experience-grid{
    grid-template-columns: 1fr;
  }
  .lp-lineup-intro{
    grid-template-columns: 1fr;
  }
}
.lp-product-card h3{
  color: rgba(44,24,16,.90);
  line-height: 1.5;
}
.lp-product-price{
  font-size: .9rem;
  color: rgba(44,24,16,.60);
  margin: 0;
  font-weight: 600;
}
.lp-price-note{
  font-size: .78rem;
  color: rgba(44,24,16,.46);
  margin: 0;
}

/* ===== LP FAQ ===== */
.lp-faq-list{
  display:grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.lp-faq-item{
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--page-surface-elevated);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}
.lp-faq-item summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 18px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .98rem;
}
.lp-faq-item summary::-webkit-details-marker{ display:none }
.lp-faq-item summary::after{
  content: "＋";
  font-weight: 700;
  color: var(--heading-gold-mid);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.lp-faq-item[open] summary::after{
  content: "－";
}
.lp-faq-body{
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.9;
  font-size: .95rem;
}

/* ===== LP final CTA ===== */
.lp-final-cta{
  padding: 72px 0 84px;
  text-align: center;
  border-top: none;
}
.lp-final-cta h2{
  margin-bottom: 10px;
}
.lp-final-cta p{
  color: rgba(44,24,16,.68);
  margin-bottom: 26px;
}
.lp-final-cta .button{
  padding: 16px 32px;
  font-size: 1.08rem;
}

/* ===== Products page hero / main harmony ===== */

/* ===== product cards (products.html) ===== */
.lineup-overview-featured{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}
.lineup-overview-secondary{
  margin-top: 0;
}
.lineup-overview-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.lineup-overview-card__desc{
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.85;
  font-size: .88rem;
}
.lineup-overview-card__actions.actions{
  margin-top: auto;
  padding-top: 14px;
  flex-shrink: 0;
}
.product-photo-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 12px;
}
.product-photo{
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--page-surface);
}
.product-photo img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.product-photo-note{
  margin: 0 0 22px;
  font-size: .86rem;
  line-height: 1.7;
}
@media (max-width: 980px){
  .lineup-overview-featured{
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 860px){
  .product-photo-grid{
    grid-template-columns: 1fr;
  }
  .lineup-overview-featured{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .lineup-overview-card__actions.actions{
    padding-top: 12px;
  }
}
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.product-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 18px 44px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 0;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card > .product-cross-link{
  margin-top: 0;
}
.product-card > .actions{
  margin-top: 0;
}
.product-price-block{
  display: grid;
  gap: 2px;
  flex-shrink: 0;
}
@media (min-width: 521px){
  .product-card > h3{
    flex: 0 0 auto;
    min-height: calc(1.18rem * 1.5 * 3.4);
  }
  .product-card > p{
    flex: 0 0 auto;
    min-height: calc(0.95rem * 1.85 * 3);
    margin: 0;
  }
  .product-card > .product-cross-link{
    flex-shrink: 0;
    min-height: calc(1.6em + 16px);
    display: flex;
    align-items: center;
  }
  .product-card > .actions{
    flex-shrink: 0;
    margin-top: 0;
  }
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(58,46,36,.12);
}
.product-tag{
  display:inline-flex;
  align-items:center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,250,245,.88);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.product-card h3{
  color: var(--heading-gold-deep);
  line-height: 1.5;
  margin: 0;
}
.product-card p{
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.85;
}
.product-price{
  font-weight: 700;
  color: var(--muted);
  font-size: .96rem;
}
.product-price-note{
  font-size: .78rem;
  color: var(--text-soft);
  margin-top: 2px;
}
.product-cross-link{
  font-size: .88rem;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.72);
}
.product-cross-link a{
  color: var(--gold);
}

/* ===== flavor guide (products.html) ===== */
.flavor-disclaimer{
  font-size: .88rem;
  margin: 0 0 22px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.88);
  line-height: 1.7;
}
.flavor-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.flavor-card{
  background: var(--page-surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px var(--shadow);
  display: grid;
  gap: 12px;
  align-content: start;
}
.flavor-card-title{
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading-gold-deep);
  line-height: 1.5;
  margin: 0;
}
.flavor-card-desc{
  margin: 0;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--muted);
}
.flavor-bars{
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.flavor-bar-row{
  display: grid;
  grid-template-columns: 3.2em 1fr;
  align-items: center;
  gap: 10px;
}
.flavor-bar-label{
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}
.flavor-bar-track{
  height: 8px;
  border-radius: 999px;
  background: rgba(58,46,36,.08);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.flavor-bar-fill{
  --flavor-level: 1;
  display: block;
  height: 100%;
  width: calc(var(--flavor-level) / 5 * 100%);
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(184,153,90,.50) 0%,
    rgba(143,115,64,.78) 100%
  );
}
/* ===== products: flavor section — 5 beans intro visual (center, medium) ===== */
.flavor-intro-lead{
  margin: 0 0 14px;
  line-height: 1.9;
  max-width: 52em;
}
.flavor-beans-visual{
  box-sizing: border-box;
  width: 100%;
  max-width: min(480px, 100%);
  margin: 0 auto 16px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,250,245,.88);
}
.flavor-beans-visual img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(168px, 44vw, 300px);
  margin: 0 auto;
  padding: 10px 12px 6px;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  background: rgba(252,248,242,.55);
}
.flavor-beans-visual__caption{
  margin: 0;
  padding: 8px 14px 12px;
  font-size: .82rem;
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: rgba(255,250,245,.92);
}
@media (min-width: 900px){
  .flavor-beans-visual{
    max-width: 500px;
  }
  .flavor-beans-visual img{
    max-height: 280px;
    padding: 12px 14px 8px;
  }
}
@media (max-width: 375px){
  .flavor-beans-visual{
    max-width: 100%;
    margin-bottom: 14px;
  }
  .flavor-beans-visual img{
    max-height: 188px;
    padding: 8px 10px 4px;
  }
  .flavor-beans-visual__caption{
    font-size: .8rem;
    padding: 8px 12px 10px;
  }
}

/* ===== products: 5-bean group panel / finished-products split ===== */
.flavor-group-panel{
  box-sizing: border-box;
  margin-top: 14px;
  padding: 26px 24px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  background: rgba(245,240,232,.78);
  box-shadow: 0 10px 26px var(--shadow);
}
.flavor-group-bridge{
  box-sizing: border-box;
  max-width: 44em;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: .93rem;
  line-height: 1.85;
  color: var(--heading-gold-deep);
}
.finished-products-lead{
  max-width: 52em;
  margin: 0 0 22px;
  line-height: 1.9;
}
.flavor-group-section{
  padding-bottom: 12px;
}
.finished-products-section{
  padding-top: 12px;
}
/* 端数行を中央寄せし、5枚が1グループとして読めるようにする */
@media (min-width: 1024px){
  .flavor-group-panel .flavor-grid{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .flavor-group-panel .flavor-card{
    grid-column: span 2;
  }
  .flavor-group-panel .flavor-card:nth-child(4){
    grid-column: 2 / span 2;
  }
}
@media (min-width: 521px) and (max-width: 1023px){
  .flavor-group-panel .flavor-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flavor-group-panel .flavor-card{
    grid-column: span 2;
  }
  .flavor-group-panel .flavor-card:nth-child(5){
    grid-column: 2 / span 2;
  }
}
@media (max-width: 520px){
  .flavor-group-section{
    padding-bottom: 4px;
  }
  .finished-products-section{
    padding-top: 4px;
  }
}
@media (max-width: 900px){
  .flavor-group-panel{
    padding: 22px 18px 20px;
  }
  .flavor-group-bridge{
    margin-top: 20px;
  }
}
@media (max-width: 390px){
  .flavor-group-panel{
    padding: 18px 14px 16px;
    border-radius: 16px;
  }
  .flavor-group-bridge{
    margin-top: 18px;
    padding-top: 14px;
    font-size: .89rem;
    line-height: 1.8;
    text-align: left;
  }
  .finished-products-lead{
    margin-bottom: 18px;
  }
}

@media (max-width: 520px){
  .choice-grid{ grid-template-columns: 1fr; }
  .proof-grid{ grid-template-columns: 1fr; }
  .lp-product-grid{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .flavor-grid{ grid-template-columns: 1fr; }
  .flavor-bar-row{ grid-template-columns: 2.8em 1fr; gap: 8px; }
  .page-back-nav__inner{
    flex-direction: column;
    align-items: stretch;
  }
  .button-back,
  .button-to-top{
    width: 100%;
  }
  .to-top{
    right: 12px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }
  .lp-hero-inner{ padding: 26px 20px 34px; }
}

/* ===== podcast page: accessible transcript disclosure (EP01+) ===== */
.podcast-transcript-disclosure{
  margin-top: 16px;
  padding: 0;
  overflow: hidden;
}
.podcast-transcript-disclosure summary{
  list-style: none;
  display: block;
  min-height: 44px;
  padding: 12px 16px;
  cursor: pointer;
  color: #1a5fb4;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease;
}
.podcast-transcript-disclosure summary::-webkit-details-marker{
  display: none;
}
.podcast-transcript-disclosure summary::marker{
  content: "";
}
.podcast-transcript-disclosure summary:hover{
  color: #104a8f;
  text-decoration: underline;
}
.podcast-transcript-disclosure summary:focus-visible{
  outline: 3px solid rgba(26, 95, 180, 0.38);
  outline-offset: 3px;
  border-radius: 8px;
}
.podcast-transcript-toggle__open{
  display: none;
}
.podcast-transcript-disclosure[open] .podcast-transcript-toggle__closed{
  display: none;
}
.podcast-transcript-disclosure[open] .podcast-transcript-toggle__open{
  display: inline;
}
.podcast-transcript-panel{
  padding: 0 16px 18px;
}
.podcast-transcript-heading{
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 8px 0 12px;
  color: rgba(44, 24, 16, 0.9);
  line-height: 1.6;
}
.podcast-transcript-body{
  max-width: 42em;
  line-height: 1.9;
  color: rgba(44, 24, 16, 0.78);
}
.podcast-transcript-body p{
  margin: 0 0 1em;
}
.podcast-transcript-body p:last-child{
  margin-bottom: 0;
}
.podcast-episode-card{
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.podcast-episode-card__hero{
  display: grid;
  grid-template-columns: minmax(240px, 34%) minmax(0, 66%);
  align-items: start;
  gap: 20px;
  margin-top: 4px;
}
.podcast-episode-card__body{
  min-width: 0;
}
.podcast-story-visual{
  width: 100%;
  max-height: 240px;
  aspect-ratio: 16 / 9;
  height: auto;
  align-self: start;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(44, 24, 16, 0.12);
  box-shadow: 0 8px 22px rgba(44, 24, 16, 0.08);
  background: rgba(255, 250, 245, 0.72);
}
.podcast-story-visual__img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 640px){
  .podcast-transcript-disclosure summary{
    padding: 14px 16px;
  }
  .podcast-transcript-panel{
    padding: 0 14px 16px;
  }
  .podcast-transcript-body{
    max-width: 100%;
  }
  .podcast-episode-card__hero{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .podcast-story-visual{
    max-height: none;
    width: 100%;
  }
}

/* ===== final local human review revision ===== */
.hero-wide__sub-line{
  display: block;
}
.hero-wide__sub-line--brand{
  white-space: nowrap;
}

.semantic-emphasis{
  font-weight: 700;
}
.semantic-emphasis--brand{
  color: var(--heading-gold-deep);
}
.semantic-emphasis--craft{
  color: var(--ink);
  font-weight: 700;
}
.blend-compare--preferred{
  border: 1px solid rgba(143,108,48,.58);
  background: linear-gradient(145deg, rgba(222,202,163,.35), rgba(255,250,240,.94));
  box-shadow: 0 8px 22px rgba(80,54,25,.09);
}
.blend-compare--baseline{
  border-color: rgba(44,24,16,.12);
}
.voice-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}
.voice-card{
  min-width: 0;
}

.recipe-chip{
  cursor: default;
}
.page-recipes .page-back-nav .button-back,
.page-recipes .page-back-nav .button-back--secondary,
.page-recipes .page-back-nav .button-to-top{
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid rgba(143,108,48,.38);
  border-radius: 999px;
  background: rgba(255,250,245,.94);
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(80,54,25,.07);
  cursor: pointer;
}
.page-recipes .page-back-nav .button-back:hover,
.page-recipes .page-back-nav .button-back--secondary:hover,
.page-recipes .page-back-nav .button-to-top:hover{
  border-color: rgba(143,108,48,.5);
  background: rgba(235,220,190,.78);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(80,54,25,.09);
}
.page-recipes .page-back-nav .button-back:focus-visible,
.page-recipes .page-back-nav .button-back--secondary:focus-visible,
.page-recipes .page-back-nav .button-to-top:focus-visible{
  outline: 2px solid rgba(143,108,48,.58);
  outline-offset: 3px;
}

.letter-archive{
  display: grid;
  gap: 14px;
}
.letter-archive__item{
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--page-surface-elevated);
}
.letter-archive__item summary{
  display: flex;
  align-items: center;
  gap: .65em;
  min-height: 44px;
  padding: 14px 18px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}
.letter-archive__item summary:focus-visible{
  outline: 2px solid rgba(143,108,48,.58);
  outline-offset: -3px;
}
.letter-archive__body{
  padding: 16px 18px 18px;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.9;
}
.letter-archive__body > :first-child{
  margin-top: 0;
}
.letter-archive__headline{
  margin: 28px 0 20px;
  color: var(--heading-gold-deep);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.letter-archive__prose{
  margin: 20px 0;
}
.letter-archive__prose p{
  margin: 0 0 1.15em;
}
.letter-archive__photo{
  width: min(100%, 310px);
  margin: 24px auto;
}
.letter-archive__photo img{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(58, 46, 36, .12);
}
.letter-archive__section{
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255,255,255,.46);
}
.letter-archive__section h3{
  margin: 0 0 12px;
}
.letter-archive__section h4{
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}
.letter-archive__section ul{
  margin: 8px 0 18px;
  padding-left: 1.4em;
}
.letter-archive__section li + li{
  margin-top: 4px;
}
.letter-archive__section a,
.letter-archive__signature a{
  overflow-wrap: anywhere;
}
.letter-archive__signature{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.letter-archive__note{
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.9;
}
.letter-archive__note a{
  color: var(--heading-gold-mid);
  font-weight: 700;
}

@media (max-width: 520px){
  .letter-archive__item summary{
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 13px 14px;
  }
  .letter-archive__body{
    padding: 15px 14px 17px;
  }
  .letter-archive__section{
    padding: 16px 14px;
  }
  .hero-wide__sub{
    font-size: .84rem;
    letter-spacing: .02em;
  }
  .hero-wide__sub-line{
    white-space: nowrap;
  }
  .page-recipes .page-back-nav .button-back,
  .page-recipes .page-back-nav .button-back--secondary,
  .page-recipes .page-back-nav .button-to-top{
    width: 100%;
  }
}
