/* BAR IBUS - 虎ノ門スモークバー
   レイアウトは元 Wix サイトの構造に合わせ、配色とタイポグラフィは刷新版を使う。
   Theme: dark (locked) / Accent: whisky amber (single)
   角丸スケール: 画像・パネル = 0 / ボタン・入力欄 = 3px（元サイトの直角基調に合わせる） */

:root {
  --bg: #141210;
  --bg-raised: #1c1916;
  --bg-deep: #0e0d0b;
  --bronze: #7c6539;
  --text: #ece7df;
  --text-muted: #a89f92;
  --accent: #d4a259;
  --accent-strong: #e0b26c;
  --danger: #e8867a;
  --line: rgba(236, 231, 223, 0.1);
  --radius-control: 3px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #1a1408;
  padding: 12px 20px;
}

.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent-strong); outline-offset: 3px; }

/* ---------- Header (元サイトと同じ2段組) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 9px 24px 6px;
}

.header-nav-row {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px 9px;
}

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand > img { width: 28px; height: 28px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }

.brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag { font-size: 10.5px; color: var(--text-muted); letter-spacing: 0.16em; }

.site-nav { display: flex; align-items: center; gap: 17px; }

.site-nav > a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] { color: var(--text); }

.nav-sns { display: flex; align-items: center; gap: 11px; margin-left: auto; }
.nav-sns img { width: 16px; height: 16px; opacity: 0.6; transition: opacity 0.25s var(--ease); }
.nav-sns a:hover img { opacity: 1; }

.header-tel {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(212, 162, 89, 0.55);
  border-radius: var(--radius-control);
  color: var(--accent-strong) !important;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.header-tel:hover { background: rgba(212, 162, 89, 0.12); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  color: var(--text);
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 40px;
  border: 0;
  border-radius: var(--radius-control);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.6; cursor: default; }
.btn-sm { padding: 10px 26px; font-size: 13.5px; }
.btn-primary { background: var(--accent); color: #1a1408; }
.btn-primary:hover:not([disabled]) { background: var(--accent-strong); }

.btn-ghost {
  border: 1px solid rgba(236, 231, 223, 0.4);
  color: var(--text);
  background: rgba(14, 13, 11, 0.4);
}

.btn-ghost:hover { border-color: var(--text); }

/* ---------- Slideshow ---------- */
.slideshow {
  position: relative;
  margin-top: var(--header-h);
  height: min(58vh, 580px);
  min-height: 320px;
  overflow: hidden;
  background: var(--bg-deep);
}

.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.slide.is-active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }

.slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 13, 11, 0.42) 0%, transparent 28%, transparent 72%, rgba(20, 18, 16, 0.8) 100%);
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  /* 写真の白飛び部分に矢印が重なると 2.96:1 まで落ちるため、地を 0.5 から 0.72 に上げている */
  background: rgba(14, 13, 11, 0.72);
  border: 1px solid rgba(236, 231, 223, 0.28);
  border-radius: 50%;
  color: var(--text);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}

.slide-nav:hover { background: rgba(14, 13, 11, 0.9); }
.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }

.slide-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(236, 231, 223, 0.6);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slide-dots button.is-active { background: var(--accent); border-color: var(--accent); }

/* 写真の明るい部分に直に乗ると 2.27:1 まで落ちるので、暗い地を敷いて文字も本文色に上げる */
.slide-counter {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 2px 9px;
  background: rgba(12, 11, 9, 0.62);
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: 0.1em;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.25;
}

/* 日本語の見出し。Cormorant はラテン専用なので和文は本文フォントに切り替え、
   44px のまま長文を入れて折り返しで崩れないようサイズと行間も別に持つ。 */
.section-title.ja {
  font-family: var(--font-body);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: auto-phrase; /* 対応ブラウザでは文節の切れ目で折り返す */
}

/* 「｜」の直後で折り返させ、語の途中で切らないためのまとまり */
.section-title.ja .nw { white-space: nowrap; }

.section-lede { margin-top: 12px; color: var(--text-muted); }
.addr { margin-top: 24px; color: var(--text-muted); font-size: 14px; line-height: 2; }
.addr a { color: var(--accent-strong); }

/* ---------- Intro (中央寄せ) ---------- */
.intro { padding: 72px 0 88px; text-align: center; }
.intro .container { max-width: 780px; }
.intro-eyebrow { font-size: 14px; letter-spacing: 0.22em; color: var(--accent); }

.intro h1 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 33px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.intro-catch {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.intro-body { margin-top: 26px; color: var(--text-muted); font-size: 15px; }
.intro-body p + p { margin-top: 1.1em; }
.intro .btn { margin-top: 32px; }

/* ---------- About (ブロンズ帯・中央寄せ) ---------- */
.about { background: var(--bronze); text-align: center; }
.about .container { max-width: 760px; }
.about-logo { width: 104px; height: auto; margin: 0 auto 24px; }
.about .section-title { color: #fdfaf4; }
.about-body { margin-top: 20px; color: rgba(255, 252, 246, 0.9); font-size: 15px; }
.about-body p + p { margin-top: 1.1em; }
.about-body a { color: #fdfaf4; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Menu: 元サイトと同じ「横長画像＋テキストを画像上に重ねる」1列積み ---------- */
.menu { background: var(--bg-deep); }
.menu-head { text-align: center; }
.menu-head .section-lede { max-width: 46em; margin-left: auto; margin-right: auto; }

.media-stack { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }

.media-block { position: relative; overflow: hidden; background: var(--bg-raised); }
.media-block img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.media-block figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 130px 44px 34px;
  /* 38% の地点に h3 が来る。明るい写真（catering）だと 0.55 では 4.48:1 で AA を割るため 0.68 に上げた */
  background: linear-gradient(180deg, rgba(14, 13, 11, 0) 0%, rgba(14, 13, 11, 0.68) 38%, rgba(12, 11, 9, 0.95) 100%);
}

.media-block h3 { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; }

.media-block figcaption p {
  margin-top: 8px;
  max-width: 68em;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(236, 231, 223, 0.86);
}

.media-block .btn { margin-top: 18px; }

.menu-foot { margin-top: 44px; text-align: center; }
.menu-foot .btn + .btn { margin-left: 12px; }

/* ---------- gallery ---------- */
.insta-head { text-align: center; }
.insta-head .section-lede { max-width: 40em; margin-left: auto; margin-right: auto; }
.insta { text-align: center; }

.insta-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* 写真そのものを見せる区画。リンクは持たせず、CTAは電話に集約している */
.insta-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.insta-btn { margin-top: 30px; }

/* ---------- Shop: 全面背景画像＋中央寄せ ---------- */
.shop { position: relative; padding: 128px 0; text-align: center; overflow: hidden; }
.shop-bg { position: absolute; inset: 0; }

.shop-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.04);
}

.shop-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.74);
}

.shop .container { position: relative; max-width: 640px; }
.shop p { margin-top: 16px; color: rgba(236, 231, 223, 0.9); }
.shop .btn { margin-top: 28px; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-deep); }

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0 48px;
  padding: 52px 48px 48px;
  background: #0a0908;
  border: 1px solid var(--line);
}

.contact-copy p { margin-top: 10px; color: var(--text-muted); font-size: 14.5px; }
.contact-copy p:first-of-type { margin-top: 16px; }
.contact-sign img { width: 100%; }
.contact-sign figcaption { padding-top: 10px; font-size: 12.5px; color: var(--text-muted); }

.map {
  grid-column: 1 / -1;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.map iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Form (元サイトと同じく中央の1枚カード) ---------- */
.contact-form {
  position: relative;
  margin: 44px auto 0;
  max-width: 580px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 34px 32px 36px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form h3 { font-size: 19px; font-weight: 700; letter-spacing: 0.06em; }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; border: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field { margin-top: 20px; }
.field label, .field legend { font-size: 13.5px; color: var(--text); letter-spacing: 0.04em; padding: 0; }

.req {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: var(--radius-control);
  background: rgba(212, 162, 89, 0.18);
  color: var(--accent-strong);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(236, 231, 223, 0.24);
  border-radius: var(--radius-control);
  background: rgba(14, 13, 11, 0.6);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  transition: border-color 0.2s var(--ease);
}

.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8d8478; }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field [aria-invalid="true"] { border-color: var(--danger); }

fieldset.field { gap: 4px; }
fieldset.field legend { margin-bottom: 8px; }

.radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.radio input { margin-top: 5px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.radio:hover span { color: var(--text); }

.err { font-size: 12.5px; color: var(--danger); }
.err:empty { display: none; }

.contact-form .btn { margin-top: 28px; width: 100%; }
.form-status { margin-top: 14px; font-size: 14px; }
.form-status a { color: var(--accent-strong); text-decoration: underline; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--accent-strong); }
.form-status.is-notice { color: var(--text); }
.form-status .btn {
  display: flex;
  width: 100%;
  margin-top: 14px;
  text-decoration: none;
  justify-content: center;
}
.contact-copy .btn { margin-top: 20px; }

/* ---------- Bar / 営業時間: ブロンズ帯の中に写真パネル ---------- */
.hours { background: var(--bronze); }
.hours-panel { position: relative; overflow: hidden; text-align: center; }

.hours-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テラス窓の白飛び部分（RGB 252,252,255）に琥珀色の補足文が重なると
   コントラストが 3.93:1 まで落ちて AA を割るため、0.7 から 0.78 に上げている */
.hours-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 9, 0.78);
}

.hours-copy { position: relative; z-index: 1; padding: 76px 32px 80px; }
.hours-lede { margin-top: 12px; color: rgba(236, 231, 223, 0.88); }
.hours-list { margin-top: 22px; font-size: 16.5px; line-height: 2.2; letter-spacing: 0.05em; }

.hours-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--accent-strong);
  letter-spacing: 0.04em;
}

.hours .btn { margin-top: 28px; }

/* ---------- Supporters (元サイトと同じ4列) ---------- */
.sup-head { text-align: center; }
.sup-head .section-lede { max-width: 40em; margin-left: auto; margin-right: auto; }

.supporters-list {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  list-style: none;
}

.supporters-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.supporters-list img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  background: rgba(236, 231, 223, 0.05);
  padding: 8px;
  margin-bottom: 10px;
}

.supporters-list b { font-size: 14.5px; font-weight: 500; letter-spacing: 0.04em; }
.supporters-list span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-deep); }
.faq-head { text-align: center; }
.faq-head .section-lede { max-width: 40em; margin-left: auto; margin-right: auto; }

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 24px 28px 26px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--accent-strong);
}

.faq-item p { margin-top: 8px; font-size: 14.5px; line-height: 1.9; color: rgba(236, 231, 223, 0.9); }
.faq-item p a { color: var(--accent-strong); text-decoration: underline; }
.faq-foot { margin-top: 34px; text-align: center; }

/* ---------- 404 ---------- */
.notfound { padding: calc(var(--header-h) + 72px) 0 96px; text-align: center; }
.notfound .container { max-width: 640px; }
.notfound-logo { width: 88px; height: auto; margin: 0 auto 22px; }

.notfound-code {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.notfound-title {
  margin-top: 16px;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.notfound-lede { margin-top: 12px; color: var(--text-muted); font-size: 15px; }

.notfound-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.notfound-links {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  list-style: none;
  font-size: 13.5px;
  color: var(--text-muted);
}

.notfound-links a { border-bottom: 1px solid rgba(236, 231, 223, 0.24); padding-bottom: 2px; }
.notfound-links a:hover { color: var(--text); border-bottom-color: var(--text); }

@media (max-width: 560px) {
  .notfound-actions .btn { width: 100%; }
}

/* ---------- Footer (元サイトと同じ中央寄せ) ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 46px 0 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--text); }
.footer-info { margin-top: 20px; font-size: 13.5px; color: var(--text-muted); }
.footer-info a { color: var(--accent-strong); }
.footer-copy { margin-top: 22px; font-size: 12.5px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide { transition: none; }
  .btn { transition: none; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1180px) {
  .site-nav { gap: 13px; }
  .site-nav > a { font-size: 11.5px; }
  .brand-name { font-size: 13.5px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  :root { --header-h: 62px; }

  section { padding: 68px 0; }

  .header-brand-row { padding: 12px 20px; }
  .header-nav-row { padding: 0; }
  .brand-name { font-size: 12.5px; max-width: 58vw; }
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(14, 13, 11, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px;
    display: none;
  }

  .site-nav.open { display: flex; }
  .site-nav > a { padding: 12px 0; font-size: 15px; width: 100%; }
  .nav-sns { margin-left: 0; padding: 14px 0 4px; gap: 20px; }
  .nav-sns img { width: 22px; height: 22px; }
  .site-nav .header-tel { margin-top: 10px; justify-content: center; width: 100%; font-size: 15px; padding: 12px; }

  .slideshow { height: 44vh; min-height: 250px; }
  .slide-nav { width: 36px; height: 36px; font-size: 19px; }
  .slide-nav.prev { left: 10px; }
  .slide-nav.next { right: 10px; }

  /* 画像が低いとテキストが乗り切らないので、説明は画像の下へ出す */
  .media-block figcaption {
    position: static;
    padding: 20px 20px 24px;
    background: var(--bg-raised);
  }

  .media-block img { aspect-ratio: 3 / 2; }

  .insta-grid { grid-template-columns: 1fr 1fr; }

  .contact-panel { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px 30px; }
  .map { margin-top: 8px; }
  .map iframe { height: 280px; }

  .supporters-list { grid-template-columns: repeat(3, 1fr); gap: 26px 16px; }
  .supporters-list img { width: 86px; height: 86px; }

  .hours-copy { padding: 56px 20px 60px; }
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 18px 28px; }
  .supporters-list { grid-template-columns: 1fr 1fr; }
  .faq-item { padding: 20px 18px 22px; }
  .intro .btn, .menu-foot .btn, .shop .btn, .hours .btn, .contact-copy .btn, .article-cta .btn { width: 100%; }
  .menu-foot .btn + .btn { margin-left: 0; margin-top: 12px; }
  .slide-counter { right: 14px; }
}

/* ---------- Article subpage (/smoked-bar/) ---------- */
.article-hero {
  margin-top: var(--header-h);
  height: min(42vh, 420px);
  min-height: 220px;
  overflow: hidden;
  background: var(--bg-deep);
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.article { padding: 40px 0 88px; }

.article .container { max-width: 760px; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.breadcrumb a { border-bottom: 1px solid rgba(236, 231, 223, 0.24); padding-bottom: 1px; }
.breadcrumb a:hover { color: var(--text); }

.article .intro-eyebrow { margin-top: 28px; }

.article-title {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}

.article-lead {
  margin-top: 22px;
  font-size: 17px;
  line-height: 2;
}

.article-prose { margin-top: 56px; }

.article-prose .section-title { margin-bottom: 16px; }

.article-prose p + p { margin-top: 16px; }

.article-prose a {
  color: var(--accent-strong);
  border-bottom: 1px solid rgba(212, 162, 89, 0.45);
}

.article-prose a:hover { color: var(--text); border-bottom-color: var(--text); }

.smoked-items {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.smoked-items li {
  background: var(--bg-raised);
  border: 1px solid var(--line);
}

.smoked-items img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.smoked-items h3 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.smoked-items li > div { padding: 16px 18px 20px; }

.smoked-items p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.smoked-items li:last-child { grid-column: 1 / -1; }

.article-cta {
  margin-top: 56px;
  padding: 32px 28px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  text-align: center;
}

.article-cta .btn + .btn { margin-left: 12px; }

.article-cta .addr { margin-top: 22px; }

@media (max-width: 720px) {
  .smoked-items { grid-template-columns: 1fr; }
  .smoked-items li:last-child { grid-column: auto; }
  .article-cta { padding: 28px 18px; }
  .article-cta .btn + .btn { margin-left: 0; margin-top: 12px; }
}
