/* =========================================================================
   Toji Junpei · Session Renewal Event LP — wireframe v2
   Mirrors TBW Event Menu (16-page programme) translated to web scroll.
   ========================================================================= */

:root {
  --cream:       #F4EFE8;
  --paper:       #FBF8F2;
  --ink:         #2A1612;
  --ink-soft:    #4A2E27;
  --mahogany:    #3C0A0A;
  --terracotta:  #B68470;       /* decorative — borders, hairlines, dividers */
  --terracotta-text: #7C4E32;    /* readable — small text on cream (WCAG AA ~5:1) */
  --mustard:     #D9A552;
  --teal-deep:   #36686A;
  --teal-dark:   #2D5557;
  --dark:        #1A1410;
  --dark-warm:   #2A2017;
  --white:       #FFFFFF;
  --serif-ja:   "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --serif-en:   "Cormorant Garamond", "Garamond", serif;
  --sans-ja:    "Noto Sans JP", "Hiragino Sans", sans-serif;
  --sans-en:    "Inter", system-ui, sans-serif;
  --maxw:       1100px;
  --gutter:     clamp(20px, 5vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Keyboard focus ring — accessible at all background contexts.
   Pairs with the mahogany brand on light surfaces, switches to cream
   on dark / colored surfaces. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--mahogany);
  outline-offset: 3px;
  border-radius: 2px;
}
.bg-mustard :focus-visible,
.bg-teal :focus-visible,
.bg-dark :focus-visible,
.bg-darkwarm :focus-visible,
.bg-mahogany :focus-visible,
.cover :focus-visible,
.mixologist :focus-visible,
.cave :focus-visible,
.dark-feature :focus-visible {
  outline-color: var(--cream);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans-en), var(--sans-ja);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p, h1, h2, h3, h4 { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ----------------------------------------------------------------- masthead */

.masthead {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid rgba(182, 132, 112, 0.25);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.wm-ja {
  font-family: var(--serif-ja);
  font-size: 17px;
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.06em;
}
.wm-en {
  font-family: var(--sans-en);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.mast-meta {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}
.date-stamp {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
.lang { display: inline-flex; gap: 6px; }
.lang-chip {
  padding: 3px 8px;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid rgba(182, 132, 112, 0.45);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-chip:hover { background: rgba(60, 10, 10, 0.06); color: var(--mahogany); }
.lang-chip.active {
  color: var(--cream);
  background: var(--mahogany);
  border-color: var(--mahogany);
}

/* --------------------------------------------------------- section bases */

.page {
  position: relative;
  padding: clamp(64px, 10vh, 120px) var(--gutter);
}
.page-inner { max-width: var(--maxw); margin: 0 auto; }

.bg-cream    { background: var(--cream); }
.bg-paper    { background: var(--paper); }
.bg-mustard  { background: var(--mustard); color: var(--ink); }
.bg-teal     { background: var(--teal-deep); color: var(--white); }
.bg-dark     { background: var(--dark); color: var(--white); }
.bg-darkwarm { background: var(--dark-warm); color: var(--white); }
.bg-mahogany { background: var(--mahogany); color: var(--cream); }

/* WCAG AA contrast: white-on-mustard fails for body/label text (~2.1:1).
   Default to ink on mustard; large display headings get 3:1 at >=18px so
   may stay white if explicitly overridden. */
.bg-mustard .eyebrow,
.bg-mustard .cm-sub,
.bg-mustard .ck-pill,
.bg-mustard .ck-pill .jp,
.bg-mustard .cm-footer,
.bg-mustard .bellwood-lockup,
.bg-mustard .session-lockup,
.bg-mustard .cm-seal {
  color: var(--ink);
}
.bg-mustard .ck-pill,
.bg-mustard .cm-seal {
  border-color: var(--ink);
}
.bg-mustard .cm-footer {
  border-top-color: rgba(42, 22, 18, 0.25);
}
/* Inline style override (HTML has style="color: rgba(255,255,255,0.7)") */
.bg-mustard .eyebrow { color: rgba(42, 22, 18, 0.65) !important; }

/* small caps section eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.bg-dark .eyebrow,
.bg-darkwarm .eyebrow,
.bg-teal .eyebrow,
.bg-mustard .eyebrow { color: rgba(255,255,255,0.6); }

.pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  font-weight: 400;
}

/* --------------------------------------------------------- §1 cover */

.cover {
  position: relative;
  min-height: 92vh; /* fallback for old browsers */
  min-height: 92svh;
  padding: 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.95);
}
.cover-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh; /* fallback for old browsers */
  min-height: 92svh;
  padding: clamp(48px, 10vh, 120px) var(--gutter);
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}
.cover-logo-block {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
}
.cover-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--serif-en);
  font-size: 16px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.cover-ja-mark {
  width: clamp(72px, 8vw, 110px);
  height: auto;
  margin-bottom: 18px;
  opacity: 0.95;
  filter: invert(1) brightness(2);
}
.cover-toji {
  font-family: var(--sans-en);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.cover-junpei {
  font-family: var(--sans-en);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.cover-eventname {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--serif-ja);
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 12px;
}
.cover-date {
  font-family: var(--serif-en);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.16em;
  font-feature-settings: "tnum" 1;
}
.cover-rsvp {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  width: fit-content;
}

/* --------------------------------------------------------- §2 tezukuri */

.tezukuri-head {
  text-align: left;
  margin-bottom: 56px;
}
.tezukuri-title {
  font-family: var(--serif-ja);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mahogany);
}
.tezukuri-announce {
  font-family: var(--serif-ja);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 6px;
}
.bottle-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.bottle-row img { width: 100%; border-radius: 2px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.product-grid .lead-quote {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--mahogany);
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.product-grid .body {
  font-family: var(--serif-ja);
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink);
}

.spec-table {
  border-top: 1px solid rgba(74,46,39,0.2);
}
.spec-table dt, .spec-table dd { margin: 0; }
.spec-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(74,46,39,0.12);
  align-items: baseline;
  font-family: var(--serif-ja);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.spec-row dt { color: var(--terracotta-text); font-weight: 400; }
.spec-row dd { color: var(--ink); }
.spec-note {
  margin-top: 12px;
  font-family: var(--serif-ja);
  font-size: 11px;
  color: var(--terracotta-text);
  line-height: 1.7;
}

/* --------------------------------------------------------- §3,4 Session */

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  margin-bottom: 56px;
}
.product-page .visual img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.product-page .intro-line {
  font-family: var(--serif-ja);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.product-page .brand-lockup {
  font-family: var(--serif-ja);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}
.product-page .brand-lockup .brand-en {
  font-family: var(--sans-en);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--mahogany);
  line-height: 1;
}
.product-page .brand-lockup .brand-en em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
}
.tagline {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 48px;
}

/* --------------------------------------------------------- §5 cocktail tasting intro */

.dark-feature {
  position: relative;
  padding: 0;
  min-height: 80vh; /* fallback for old browsers */
  min-height: 80svh;
  display: flex;
  align-items: stretch;
}
.dark-feature .feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68);
}
.dark-feature .feat-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 8vh, 100px) var(--gutter);
}
.feat-headline {
  font-family: var(--sans-en);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
}
.feat-time {
  font-family: var(--serif-en);
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.18em;
  margin-top: 14px;
  opacity: 0.85;
}
.feat-quote-card {
  background: var(--cream);
  color: var(--ink);
  padding: 28px 32px;
  max-width: 640px;
  align-self: flex-end;
}
.feat-quote-card p {
  font-family: var(--serif-ja);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  color: var(--mahogany);
  line-height: 1.85;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------- §6,8,12 mixologist hero */

.mixologist {
  position: relative;
  min-height: 90vh; /* fallback for old browsers */
  min-height: 90svh;
  padding: 0;
  display: flex;
}
.mixologist .mx-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}
.mixologist .mx-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: clamp(48px, 8vh, 100px) var(--gutter);
}
.mx-top { display: flex; justify-content: space-between; align-items: flex-start; }
.mx-name-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mx-name {
  font-family: var(--sans-en);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--white);
}
.mx-name-ja {
  font-family: var(--serif-ja);
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.18em;
  color: var(--white);
  opacity: 0.85;
}
.mx-pill {
  display: inline-block;
  width: fit-content;
  padding: 6px 18px;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-top: 8px;
}
.mx-body {
  max-width: 640px;
  font-family: var(--serif-ja);
  font-size: clamp(14px, 1.2vw, 15.5px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  padding: 24px 28px;
  align-self: flex-start;
}

/* --------------------------------------------------------- §7 cocktail menu (mustard) */

.cocktails-menu {
  text-align: center;
}
.cm-title {
  font-family: var(--sans-en);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.cm-sub {
  font-family: var(--sans-en);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 64px;
}
.cocktail-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  text-align: left;
}
.cocktail-card {
  position: relative;
}
.ck-name {
  font-family: var(--sans-en);
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.ck-name em {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.ck-concept {
  font-family: var(--sans-en);
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-bottom: 24px;
  opacity: 0.95;
}
.ck-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ck-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 28px;
  border: 1.5px solid var(--white);
  border-radius: 999px;
  font-family: var(--sans-en);
  font-size: 14px;
  font-weight: 500;
}
.ck-pill .jp {
  font-family: var(--serif-ja);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.ck-plus {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans-en);
  font-weight: 300;
  font-size: 22px;
  padding: 0 4px;
  align-self: center;
}
.cm-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.bellwood-lockup {
  font-family: var(--serif-en);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.bellwood-lockup .the {
  font-size: 0.55em;
  display: block;
  margin-bottom: -4px;
  letter-spacing: 0.18em;
}
.session-lockup {
  font-family: var(--sans-en);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.session-lockup .pro-suffix {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
}
.cm-seal {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px;
  line-height: 1.3;
}

/* --------------------------------------------------------- §9 oyuwari menu */

.oyuwari-menu {
  text-align: center;
}
.oyuwari-title {
  font-family: var(--sans-en);
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: var(--mahogany);
}
.oyuwari-sub {
  font-family: var(--sans-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 56px;
  line-height: 1.8;
}
.oyu-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: left;
  margin-bottom: 56px;
}
.oyu-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(74,46,39,0.18);
}
.oyu-num {
  font-family: var(--serif-ja);
  font-size: 22px;
  color: var(--mahogany);
  font-weight: 500;
}
.oyu-name {
  font-family: var(--serif-ja);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--mahogany);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.oyu-name-en {
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--terracotta-text);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.oyu-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.oyu-tag {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}
.oyu-tag strong {
  color: var(--mahogany);
  font-family: var(--serif-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}
.oyu-body {
  margin-top: 10px;
  font-family: var(--serif-ja);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
}

/* --------------------------------------------------------- §10 BW Cave */

.cave {
  position: relative;
  min-height: 80vh; /* fallback for old browsers */
  min-height: 80svh;
  padding: 0;
}
.cave .feat-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.cave .cave-overlay {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: 80vh; /* fallback for old browsers */
  min-height: 80svh;
  padding: clamp(48px, 8vh, 100px) var(--gutter);
}
.cave-time {
  font-family: var(--serif-ja);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 4px;
}
.cave-time-en {
  font-family: var(--serif-en);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
}
.cave-mark {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  align-self: flex-end;
}

/* --------------------------------------------------------- §11 Masafumi soda grid */

.soda-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.soda-portrait img {
  width: 100%;
  border-radius: 4px;
}
.soda-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.soda-tile {
  text-align: center;
}
.soda-tile .swatch {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--paper), var(--cream));
  border: 1px solid rgba(74,46,39,0.12);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta-text);
}
.soda-tile .label {
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mahogany);
  margin-bottom: 4px;
}
.soda-tile .label-ja {
  font-family: var(--serif-ja);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* --------------------------------------------------------- §13 Forest Ochawari */

.ocha-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.ocha-can {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ocha-can img {
  max-width: 320px;
  width: 100%;
}
.ocha-collab {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.ocha-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid rgba(74,46,39,0.15);
}
.ocha-role {
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}
.ocha-collaborator {
  font-family: var(--serif-en);
  font-size: 17px;
  color: var(--mahogany);
  letter-spacing: 0.04em;
}
.ocha-area {
  font-family: var(--serif-ja);
  font-size: 12px;
  color: var(--ink-soft);
  margin-left: 8px;
}

/* --------------------------------------------------------- §14 Wari menu (teal) */

.wari-menu {
  text-align: left;
}
.wari-title-block {
  text-align: center;
  margin-bottom: 64px;
}
.wari-title {
  font-family: var(--sans-en);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.wari-sub {
  font-family: var(--sans-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1.8;
  opacity: 0.85;
}
.wari-style-block { margin-bottom: 44px; }
.wari-style-name {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}
.wari-style-ja {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.wari-style-en {
  font-family: var(--sans-en);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}
.shochu-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shochu-pill {
  padding: 8px 18px;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-family: var(--sans-en);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.shochu-pill.is-disabled {
  opacity: 0.3;
  border-style: dashed;
}
.shochu-pill .jp {
  font-family: var(--serif-ja);
  font-size: 12px;
  display: inline-block;
}

/* --------------------------------------------------------- §15 about event */

.about-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.about-event img { width: 100%; }
.event-letter p {
  font-family: var(--serif-ja);
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.event-letter p + p { margin-top: 18px; }
.event-sig {
  margin-top: 36px;
  text-align: right;
}
.event-sig-date {
  font-family: var(--serif-ja);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.event-sig-name {
  font-family: var(--serif-ja);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* --------------------------------------------------------- §16 about Kodama */

.kodama-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.kodama-vertical-title {
  writing-mode: vertical-rl;
  font-family: var(--serif-ja);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--mahogany);
  margin-left: auto;
}
.kodama-body p {
  font-family: var(--serif-ja);
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink);
}
.kodama-body p + p { margin-top: 14px; }
.team-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-member { text-align: left; }
.team-member img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}
.team-name {
  font-family: var(--serif-ja);
  font-size: 13px;
  font-weight: 500;
  color: var(--mahogany);
}
.team-role {
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-top: 2px;
}
.retail-block {
  margin-top: 48px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(74,46,39,0.15);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.retail-label {
  font-family: var(--serif-ja);
  font-size: 13px;
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.retail-stores {
  font-family: var(--serif-en);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.retail-note {
  font-family: var(--serif-ja);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.7;
}
.retail-qr {
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans-en);
  font-size: 9px;
  color: var(--ink-soft);
}

/* --------------------------------------------------------- footer */

.site-foot {
  padding: 48px var(--gutter);
  border-top: 1px solid rgba(182,132,112,0.3);
  text-align: center;
}
.foot-line {
  font-family: var(--sans-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-text);
}

/* --------------------------------------------------------- responsive */

@media (max-width: 860px) {
  .product-grid,
  .product-page,
  .soda-section,
  .ocha-section,
  .about-event,
  .kodama-section {
    grid-template-columns: 1fr;
  }
  .product-page .visual { order: -1; }
  .kodama-vertical-title {
    writing-mode: horizontal-tb;
    margin: 0 0 16px 0;
    font-size: 36px;
    letter-spacing: 0.18em;
  }
  .soda-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .mx-body { max-width: 100%; }
  .feat-quote-card { max-width: 100%; }
  .ck-name { font-size: 28px; }
  .ck-pills { gap: 10px; }
  .ck-pill { padding: 10px 18px; font-size: 13px; }
  .cm-seal { width: 80px; height: 80px; font-size: 8px; }
  .mast-meta { gap: 10px; }
  .date-stamp { font-size: 11px; letter-spacing: 0.14em; }
  .wm-en { display: none; }
  .retail-block { grid-template-columns: 1fr; }
}

/* =========================================================================
   §1.5 — Hero Quote · About the Evening · Event Details
   (SEO/GEO anchor block: bilingual prose + bartender mentions + structured details)
   ========================================================================= */

/* masthead brand images */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.wm-img { display: block; width: auto; }
.wm-ja-img { height: 26px; }
.wm-en-img { height: 13px; opacity: 0.85; }
.mast-event {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* hero quote */
.evening-block { padding-top: clamp(80px, 12vh, 140px); padding-bottom: clamp(80px, 12vh, 140px); }
.hero-quote { margin-bottom: clamp(72px, 10vh, 120px); }
.hq-ja {
  font-family: var(--serif-ja);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 84px);
  color: var(--mahogany);
  line-height: 1.22;
  letter-spacing: 0.02em;
  margin: 8px 0 32px 0;
}
.hq-en {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--ink);
  line-height: 1.32;
  font-style: normal;
  max-width: 720px;
}
.hq-en em { font-style: italic; color: var(--terracotta-text); }
.hq-ja em {
  /* EN page: H1 carries class="hq-ja" + an <em> for "Where the wine list ends," */
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-text);
}

/* evening prose, two-column */
.evening-prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  padding-top: clamp(48px, 6vh, 72px);
  border-top: 1px solid rgba(182, 132, 112, 0.3);
}
.ep-col p {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
}
.ep-col strong { color: var(--mahogany); font-weight: 500; }
.ep-col em { font-style: italic; color: var(--terracotta-text); }
.ep-h {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--terracotta-text);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(182, 132, 112, 0.3);
}
.ep-h-ja { font-family: var(--serif-ja); letter-spacing: 0.22em; }
.ep-h-en { font-family: var(--serif-en); }
.ep-bartender-list {
  font-size: 13px !important;
  color: var(--ink-soft) !important;
  line-height: 1.85 !important;
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px dashed rgba(182, 132, 112, 0.4);
}

/* event details data block */
.event-details {
  margin: clamp(56px, 8vh, 96px) 0 0 0;
  padding-top: clamp(40px, 5vh, 64px);
  border-top: 1px solid rgba(182, 132, 112, 0.3);
}
.ed-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(42, 22, 18, 0.08);
  align-items: baseline;
}
.ed-row dt {
  font-family: var(--serif-ja);
  font-size: 16px;
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.1em;
}
.ed-row dt span {
  display: block;
  font-family: var(--sans-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-top: 6px;
}
.ed-row dd {
  margin: 0;
  font-family: var(--serif-ja);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}
.ed-row dd span {
  display: block;
  font-family: var(--sans-en);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.ed-rsvp {
  display: inline-block;
  margin-top: 4px;
  padding: 12px 28px;
  background: var(--mahogany);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.ed-rsvp:hover { background: var(--ink); }

/* kodama brand seal */
.kodama-seal {
  position: absolute;
  top: 56px;
  right: clamp(20px, 5vw, 80px);
  width: clamp(88px, 11vw, 140px);
  height: auto;
  opacity: 0.92;
  z-index: 1;
}
.kodama-section { position: relative; }

@media (max-width: 720px) {
  .evening-prose { grid-template-columns: 1fr; gap: 56px; }
  .ed-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .wm-en-img { display: none; }
  .wm-ja-img { height: 22px; }
  .mast-event { display: none; }
  .kodama-seal {
    position: relative;
    top: auto; right: auto;
    margin: 0 auto 24px auto;
    display: block;
    width: 88px;
  }
}

/* =========================================================================
   LP Hub — root index.html (lists active event LPs)
   ========================================================================= */
.lp-hub { background: var(--cream); }
.hub-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) var(--gutter) clamp(64px, 10vh, 120px);
}
.hub-hero { margin-bottom: clamp(72px, 10vh, 120px); }
.hub-title {
  font-family: var(--serif-ja);
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 64px);
  color: var(--mahogany);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 18px 0 32px 0;
}
.hub-title em {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 300;
  font-size: 0.7em;
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.hub-lede {
  font-family: var(--serif-ja);
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
  max-width: 720px;
}
.hub-lede .en {
  display: block;
  margin-top: 14px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.hub-list { margin-bottom: clamp(72px, 10vh, 120px); }
.hub-list-h {
  font-family: var(--sans-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(182, 132, 112, 0.4);
}
.hub-events { display: flex; flex-direction: column; gap: 8px; }
.hub-event { border-bottom: 1px solid rgba(42, 22, 18, 0.08); }
.he-link {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s;
}
.he-link:hover { background: rgba(60, 10, 10, 0.025); }
.he-date {
  font-family: var(--serif-en);
}
.he-date time {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--mahogany);
  letter-spacing: 0.04em;
}
.he-day {
  display: block;
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-text);
  margin-top: 4px;
}
.he-title {
  font-family: var(--serif-ja);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.5;
}
.he-sub-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.he-meta {
  font-family: var(--sans-en);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.he-langs { display: inline-flex; gap: 6px; align-self: center; }
.he-lang {
  padding: 4px 10px;
  font-family: var(--sans-en);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid rgba(182, 132, 112, 0.45);
  text-decoration: none;
}
.he-lang:hover { color: var(--mahogany); border-color: var(--mahogany); }

.hub-about {
  padding-top: clamp(48px, 6vh, 80px);
  border-top: 1px solid rgba(182, 132, 112, 0.3);
  font-family: var(--serif-ja);
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}
.hub-about .en {
  display: block;
  margin-top: 6px;
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--ink-soft);
}
.hub-links {
  margin-top: 16px;
  font-family: var(--sans-en);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hub-links a {
  color: var(--mahogany);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 720px) {
  .he-link { grid-template-columns: 1fr; gap: 12px; }
  .he-date time { font-size: 20px; }
  .he-langs { justify-content: flex-start; }
}
