/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --fs-display: 30px;
  --fs-title: 24px;
  --fs-subhead: 18px;
  --fs-body: 14px;
  --fs-label: 11px;
  --washi: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.55 0.7' numOctaves='2' stitchTiles='stitch' seed='5'/><feGaussianBlur stdDeviation='0.5'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");

  /* Surface — body の和紙ベース色（一枚として固定） */
  --surface-base: #f8fbf8;

  /* Tone overlays — bodyの和紙の上に重ねる暗み調整 */
  --tone-soft:   rgba(20, 35, 25, 0.02);
  --tone-medium: rgba(20, 35, 25, 0.035);
  --tone-deep:   rgba(20, 35, 25, 0.05);
}
@media (max-width: 1024px) {
  :root {
    --fs-display: 26px;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-display: 24px;
    --fs-title: 18px;
    --fs-subhead: 14px;
    --fs-body: 12px;
    --fs-label: 11px;
  }
}
@media (max-width: 480px) {
  :root {
    --fs-display: 20px;
    --fs-title: 16px;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* `overflow-x: hidden` はブラウザがスクロールコンテナを生成し position: sticky を破壊するため
     clip を使用（hidden は古い Safari 向けフォールバック） */
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}
body {
  font-family: 'Noto Serif JP', serif;
  background-color: var(--surface-base);
  background-image: var(--washi);
  background-blend-mode: multiply;
  color: #252820;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   SPLASH SCREEN
════════════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f4f7f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  animation: splashBgFade 0.5s ease 3.8s forwards;
  pointer-events: none;
}
#splash img {
  width: 240px;
  height: auto;
  opacity: 0;
  animation: logoInOut 3.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
#splash .splash-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.55em;
  color: rgba(60, 80, 65, 0.5);
  text-transform: uppercase;
  opacity: 0;
  animation: taglineInOut 3.0s ease 0.7s forwards;
}
@keyframes logoInOut {
  0%   { opacity: 0; transform: translateY(10px); }
  28%  { opacity: 1; transform: translateY(0); }
  62%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-6px); }
}
@keyframes taglineInOut {
  0%   { opacity: 0; }
  22%  { opacity: 1; }
  65%  { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes splashBgFade {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ════════════════════════════════════════
   MAIN — hidden until splash gone
════════════════════════════════════════ */
#main {
  padding-top: 64px;
  opacity: 0;
  animation: mainReveal 0.8s ease 4.0s forwards;
}
@media (max-width: 768px) {
  #main {
    padding-top: 56px;
  }
}
@keyframes mainReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(48px, calc((100% - 1280px) / 2 + 48px));
  height: 64px;
  background: rgba(248, 247, 244, 0.95);
  border-bottom: 1px solid rgba(201, 169, 97, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo {
  height: 34px;
  width: auto;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.28em;
  color: rgba(37, 40, 32, 0.42);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #1d5c3a; }

/* ════════════════════════════════════════
   ACCENT LINE
════════════════════════════════════════ */

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero-wrap {
  background-color: var(--tone-soft);
}
#hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-left {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(30, 80, 50, 0.1);
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.44em;
  color: #c9a961;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 24px;
}
.sp-break { display: none; }
@media (max-width: 479px), (min-width: 761px) and (max-width: 959px) {
  .sp-break { display: inline; }
}
.hero-copy {
  font-size: var(--fs-display);
  font-weight: 200;
  line-height: 1.75;
  letter-spacing: 0.12em;
  color: #1a2018;
  margin-bottom: 22px;
}
.hero-copy em {
  font-style: normal;
  color: #0f4424;
}
.hero-subcopy {
  font-size: var(--fs-subhead);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: rgba(37, 40, 32, 0.62);
  margin-bottom: 22px;
}
.hero-desc {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: rgba(37, 40, 32, 0.52);
  max-width: 480px;
}
.hero-right {
  background: #e8ede9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-deco-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(45, 95, 60, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-deco-ring2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(45, 95, 60, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  color: rgba(45, 95, 60, 0.4);
  text-transform: uppercase;
  position: relative;
}

/* ════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════ */
.section {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px max(52px, calc((100% - 1280px) / 2 + 52px));
}
.section > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.section.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.section.alt {
  background-color: var(--tone-medium);
}
#company {
  background-color: var(--tone-deep);
}
.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.46em;
  color: #c9a961;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: #c9a961;
  opacity: 0.7;
  flex-shrink: 0;
}
.sec-title {
  font-size: var(--fs-title);
  font-weight: 200;
  letter-spacing: 0.14em;
  line-height: 1.75;
  color: #1a2018;
  margin-bottom: 16px;
}
.sec-body {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: rgba(37, 40, 32, 0.52);
  max-width: 600px;
}

/* ════════════════════════════════════════
   PHILOSOPHY — 4 PILLARS
════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(45, 95, 60, 0.12);
  border: 1px solid rgba(45, 95, 60, 0.12);
  margin-top: 36px;
}
.pillar {
  background: #f8f7f4;
  padding: 28px 20px 32px;
}
.p-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-display);
  font-weight: 300;
  font-style: italic;
  color: #c9a961;
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 14px;
}
.p-title {
  font-size: var(--fs-subhead);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #2a3828;
  margin-bottom: 10px;
}
.p-body {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(37, 40, 32, 0.5);
}

/* ════════════════════════════════════════
   PRODUCER
════════════════════════════════════════ */
.producer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.producer-main > div:last-child {
  padding-top: 64px;
}
@media (max-width: 768px) {
  .producer-main > div:last-child {
    padding-top: 0;
  }
}
.photo-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #dce8e0;
  border: 1px solid rgba(45, 95, 60, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(45, 95, 60, 0.05),
    0 14px 32px -14px rgba(45, 95, 60, 0.18),
    0 28px 64px -28px rgba(26, 48, 32, 0.22);
  transition: box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-box::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 58%,
      rgba(20, 38, 26, 0.18) 100%
    );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.7s ease;
}
.photo-box:hover {
  box-shadow:
    0 2px 4px rgba(45, 95, 60, 0.08),
    0 20px 44px -14px rgba(45, 95, 60, 0.26),
    0 36px 76px -28px rgba(26, 48, 32, 0.30);
}
.photo-box:hover::after {
  opacity: 0.5;
}
.static-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.photo-box:hover .static-img {
  transform: scale(1.045);
}
.photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.25em;
  color: rgba(45, 95, 60, 0.35);
  text-transform: uppercase;
}

/* Producer Stories */
.producer-stories { margin-top: 40px; }
.stories-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.4em;
  color: #1d5c3a;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(45, 95, 60, 0.15);
}
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.story-card {
  background: #fff;
  border: 1px solid rgba(45, 95, 60, 0.12);
  overflow: hidden;
}
.story-card-bar {
  height: 2px;
  background: linear-gradient(to right, #1d5c3a, #1d5c3a, #2a6b44);
  opacity: 0.4;
}
.story-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, rgba(90,154,120,0.1), rgba(58,110,138,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(45, 95, 60, 0.08);
}
.story-card-img span {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  color: rgba(45, 95, 60, 0.32);
  text-transform: uppercase;
}
.story-card-body { padding: 16px 18px 18px; }
.story-area {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  color: #1d5c3a;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.story-name {
  font-size: var(--fs-subhead);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #2a3828;
  margin-bottom: 8px;
}
.story-text {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(37, 40, 32, 0.5);
}

/* ════════════════════════════════════════
   AUCTION
════════════════════════════════════════ */
.auction-main {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}
.auction-text {
  padding-top: 8px;
}
.auction-photo {
  position: relative;
  top: -24px;
}
.auction-photo .photo-box {
  aspect-ratio: 3 / 4;
}

/* AUCTION — STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border: 1px solid rgba(45, 95, 60, 0.12);
}
.step {
  padding: 28px 18px 32px;
  border-right: 1px solid rgba(45, 95, 60, 0.12);
  text-align: center;
}
.step:last-child { border-right: none; }
.step-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.32em;
  color: #1d5c3a;
  font-style: italic;
  margin-bottom: 14px;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d5c3a, #2a6b44);
  margin: 0 auto 16px;
}
.step-title {
  font-size: var(--fs-subhead);
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #2a3828;
  margin-bottom: 8px;
}
.step-body {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(37, 40, 32, 0.45);
}

/* ════════════════════════════════════════
   CLIENTS
════════════════════════════════════════ */
.client-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.client-card {
  background: #fff;
  border: 1px solid rgba(45, 95, 60, 0.12);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 95, 60, 0.12);
}
.client-top-bar {
  height: 2px;
  background: linear-gradient(to right, #1d5c3a, #1d5c3a, #2a6b44);
  opacity: 0.5;
}
.client-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #dce8e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(45, 95, 60, 0.1);
  gap: 10px;
}
.client-img-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.22em;
  color: rgba(45, 95, 60, 0.32);
  text-transform: uppercase;
}
.linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid rgba(45, 95, 60, 0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  color: rgba(45, 95, 60, 0.65);
  text-transform: uppercase;
}
.client-body { padding: 16px 18px 18px; }
.client-name {
  font-size: var(--fs-subhead);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #2a3828;
  margin-bottom: 5px;
}
.client-cat {
  font-size: var(--fs-label);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(37, 40, 32, 0.38);
  margin-bottom: 12px;
}
.client-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-body);
  font-style: italic;
  line-height: 1.75;
  color: rgba(37, 40, 32, 0.52);
  border-top: 1px solid rgba(45, 95, 60, 0.1);
  padding-top: 10px;
}

/* ════════════════════════════════════════
   HERITAGE — pinned background, cross-fade messages at center
   構造:
     .heritage           … 高さ = stage(100vh) + scroll(300vh) = 400vh
       .heritage-stage   … position: sticky, top: 0, height: 100vh（中央表示の舞台）
         .heritage-msg × 3 … すべて舞台の中央に重ねて配置、is-active のものだけ表示
       .heritage-scroll  … sticky 移動量を稼ぐためのスペーサー（300vh）
   JS が セクションのスクロール進捗を 0–1 に正規化し、3分割して active を切替
════════════════════════════════════════ */
.heritage {
  position: relative;
  background-image: url('images/heritage.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #14201a;
  color: #f4f1e8;
  isolation: isolate;
}
.heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(12, 22, 16, 0.78),
      rgba(12, 22, 16, 0.65) 50%,
      rgba(12, 22, 16, 0.78)
    );
  pointer-events: none;
  z-index: 0;
}
.heritage-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 max(24px, calc((100% - 1280px) / 2 + 52px));
  z-index: 1;
}
/* opacity / transform はスクロール位置に応じて JS が直接設定する。
   transition は外す（スクロールに同期させたいので） */
.heritage-msg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(880px, calc(100% - 48px));
  text-align: left;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(16px);
  pointer-events: none;
  will-change: opacity, transform;
}
/* セクションタイトル：sticky stage の左上に固定表示
   nav (64px) を避けて配置し、sticky 期間に合わせてフェードイン/アウト */
.heritage-section-label {
  position: absolute;
  top: 96px;
  left: max(24px, calc((100% - 1280px) / 2 + 52px));
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.46em;
  color: rgba(244, 241, 232, 0.7);
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.heritage.is-pinned .heritage-section-label {
  opacity: 1;
  transform: translateY(0);
}
.heritage-section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: #c9a961;
  opacity: 0.8;
}
.heritage-title {
  font-family: 'Noto Serif JP', serif;
  font-size: var(--fs-title);
  font-weight: 200;
  letter-spacing: 0.18em;
  line-height: 1.75;
  color: #f4f1e8;
  margin-bottom: 24px;
}
.heritage-body {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 232, 0.82);
}
/* Sticky 移動量を確保するスペーサー
   高さを n × 50vh に短縮 → メッセージ1枚あたり約 50vh のスクロールで切替 */
.heritage-scroll {
  height: 200vh;
}

@media (max-width: 1024px) {
  .heritage-stage {
    padding: 0 36px;
  }
  .heritage-section-label {
    left: 36px;
  }
}
@media (max-width: 768px) {
  .heritage {
    /* iOS/Android では fixed が不安定なので scroll に切替（クロスフェード演出は維持） */
    background-attachment: scroll;
  }
  .heritage-stage {
    padding: 0 24px;
  }
  /* スマホはセクション全体を圧縮（背景の縦伸びを抑える）
     stage 100vh + scroll 50vh = 総高 150vh、メッセージ1枚 ≈ 17vh */
  .heritage-scroll {
    height: 150vh;
  }
  .heritage-msg {
    width: calc(100% - 32px);
    text-align: left;
  }
  .heritage-section-label {
    top: 80px;
    left: 24px;
    letter-spacing: 0.38em;
  }
}

/* ════════════════════════════════════════
   MONTHLY SELECTION
════════════════════════════════════════ */
.selection-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.3em;
  color: #c9a961;
  margin-top: -4px;
  margin-bottom: 14px;
}
.selection-main {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: start;
  margin-top: 36px;
  position: relative;
}
.selection-col .photo-box {
  aspect-ratio: 4 / 3;
}
.selection-dish .photo-box {
  aspect-ratio: 3 / 4;
}
.selection-chapter {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(45, 95, 60, 0.25);
}
.selection-chapter-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-display);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #c9a961;
  line-height: 1;
}
.selection-chapter-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.35em;
  color: rgba(37, 40, 32, 0.5);
  text-transform: uppercase;
}
.selection-cut-body,
.selection-dish-body {
  padding-top: 22px;
}
.selection-cut-name {
  font-size: var(--fs-title);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #1a2018;
  margin-bottom: 12px;
}
.selection-cut-sub {
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  color: rgba(37, 40, 32, 0.45);
  margin-left: 6px;
}
.selection-cut-desc {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: rgba(37, 40, 32, 0.58);
}
.selection-dish-name {
  font-size: var(--fs-subhead);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #2a3828;
  margin-bottom: 18px;
}
.selection-restaurant {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(45, 95, 60, 0.2);
  border-bottom: 1px solid rgba(45, 95, 60, 0.2);
  text-decoration: none;
  color: inherit;
  transition: gap 0.25s ease;
}
.selection-restaurant:hover {
  gap: 18px;
}
.selection-restaurant-name {
  font-size: var(--fs-body);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #2a3828;
}
.selection-restaurant-area {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  color: rgba(45, 95, 60, 0.7);
  padding-left: 12px;
  border-left: 1px solid rgba(45, 95, 60, 0.2);
}
.selection-restaurant-arrow {
  margin-left: auto;
  font-size: var(--fs-body);
  color: rgba(45, 95, 60, 0.7);
}

/* ════════════════════════════════════════
   COMPANY
════════════════════════════════════════ */
.company-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
/* Company はロゴ表示。枠線/影/背景なしで透過 PNG をそのまま表示 */
.company-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* PC: テーブル列幅は元の 1fr 1fr のまま。
   ロゴは画像列いっぱいに広げて、左の section padding と右の section padding を視覚的に揃える
   （列内に余分な空きを作らず、テキスト⇔ロゴの間隔も grid-gap だけで完結） */
@media (min-width: 769px) {
  .company-photo {
    aspect-ratio: auto;
    align-self: center;
    padding: 4px 0;
  }
  .company-logo {
    max-width: 88%;
    width: 100%;
  }
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid rgba(45, 95, 60, 0.08); }
.company-table tr:first-child { border-top: 1px solid rgba(45, 95, 60, 0.08); }
.company-table th {
  width: 26%;
  padding: 15px 0;
  font-size: var(--fs-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #1d5c3a;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}
.company-table td {
  padding: 15px 0 15px 20px;
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.05em;
  color: rgba(37, 40, 32, 0.62);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  padding: 28px max(52px, calc((100% - 1280px) / 2 + 52px));
  background-color: var(--tone-deep);
  border-top: 1px solid rgba(30, 80, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  color: rgba(37, 40, 32, 0.35);
}
.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-nav li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  color: rgba(37, 40, 32, 0.28);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav li a:hover { color: #1d5c3a; }

/* ════════════════════════════════════════
   HAMBURGER MENU (mobile)
════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(37, 40, 32, 0.5);
  position: absolute;
  left: 6px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 9px; }
.nav-hamburger span:nth-child(2) { top: 15px; }
.nav-hamburger span:nth-child(3) { top: 21px; }
.nav-hamburger.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav {
    padding: 0 32px;
  }
  .nav-links li a {
    padding: 0 10px;
    font-size: var(--fs-label);
  }

  #hero {
    min-height: auto;
  }
  .hero-left {
    padding: 48px 36px;
  }
  .hero-right {
    aspect-ratio: 3 / 4;
  }

  .section {
    min-height: auto;
    padding: 64px 36px;
  }

  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step:nth-child(2) { border-right: none; }

  .footer {
    padding: 24px 36px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  .nav {
    padding: 0 20px;
    height: 56px;
  }
  .nav-logo {
    height: 28px;
  }
  .nav-hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(248, 247, 244, 0.98);
    border-bottom: 1px solid rgba(30, 80, 50, 0.14);
    padding: 12px 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    padding: 12px 24px;
    font-size: var(--fs-label);
  }

  /* HERO */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(30, 80, 50, 0.1);
  }
  .hero-right {
    min-height: 240px;
    aspect-ratio: auto;
  }

  /* SECTIONS */
  .section {
    min-height: auto;
    padding: 48px 24px;
  }

  /* PHILOSOPHY */
  .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* PRODUCER — full-bleed wide photo */
  .producer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .producer-main > .photo-box {
    margin-left: -24px;
    margin-right: -24px;
    width: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .story-cards {
    grid-template-columns: 1fr;
  }

  /* AUCTION — right-aligned portrait */
  .auction-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .auction-photo {
    top: 0;
    width: 70%;
    margin-left: auto;
  }
  .auction-photo .photo-box {
    aspect-ratio: 3 / 4;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(45, 95, 60, 0.12);
  }
  .step:last-child { border-bottom: none; }

  /* MONTHLY SELECTION — vary aspect ratios */
  .selection-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .selection-cut .photo-box {
    aspect-ratio: 1 / 1;
  }
  .selection-dish .photo-box {
    aspect-ratio: 3 / 4;
  }

  /* COMPANY */
  .company-main {
    grid-template-columns: 1fr;
  }
  .company-table th {
    width: auto;
    display: block;
    padding-bottom: 4px;
  }
  .company-table td {
    display: block;
    padding: 0 0 15px 0;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px;
    text-align: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  #splash img {
    width: 160px;
  }
}
