/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --gold:   #BE9A41;
  --goldb:  #C9A24B;
  --red:    #B81F2D;

  /* Named color literals (used as-is from handoff) */
  --cream:        #F4EEE2;
  --cream-alt:    #EFE7D6;
  --cream-card:   #FBF7EE;
  --field-bg:     #F4EEE2;
  --sumi:         #1A1611;
  --sumi-deep:    #14110D;
  --body-warm:    #5A5044;
  --body-warm-2:  #3A332A;
  --muted-warm:   #6E6354;
  --muted-dark:   #A89B86;
  --muted-dark-2: #C9BDA8;
  --light-text:   #EDE4D3;
  --footer-faint: #7A6F5C;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--sumi);
  font-family: 'Jost', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select, button {
  font-family: inherit;
}

/* ============================================================
   PAGE ROOT (CSS custom-prop scope)
   ============================================================ */
.page-root {
  overflow-x: hidden;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.serif { font-family: 'Cormorant Garamond', serif; }

em {
  font-style: italic;
}

.red-italic {
  font-style: italic;
  color: var(--red);
}

/* ============================================================
   EYEBROW LABELS
   ============================================================ */
.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow--goldb {
  color: var(--goldb);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--sumi);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 30px rgba(26,22,17,0.18);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(26,22,17,0.26);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: transparent;
  color: var(--sumi);
  border: 1px solid rgba(26,22,17,0.3);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .25s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 40px;
  background: var(--goldb);
  color: var(--sumi-deep);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 12px 34px rgba(201,162,75,0.25);
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(244,238,226,0.82);
  border-bottom: 1px solid rgba(26,22,17,0.10);
}

.nav-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-mark {
  height: 40px;
  width: auto;
  display: block;
  /* 🚨 mix-blend-mode: multiply を使わないこと。
     以前はロゴ画像の下地がクリーム色で塗られていたため multiply で消していたが、
     ナビは backdrop-filter を持つ＝この合成が効かないブラウザがあり、
     ロゴだけ明るい四角に見えていた（2026-07-23 兄から指摘）。
     いまは assets/mark.png の下地そのものが透明（make_mark_transparent.py）。 */
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.nav-dot {
  color: var(--red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4A4036;
}

.nav-link {
  white-space: nowrap;
  transition: color .25s;
  text-decoration: none;
  color: #4A4036;
}

.nav-link:hover {
  color: var(--red);
}

.nav-cta {
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--sumi);
  color: var(--sumi);
  background: transparent;
  transition: all .25s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--sumi);
  color: var(--cream);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: clamp(580px, 92vh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 72px; /* clears fixed nav */
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,13,0.64) 0%, rgba(20,17,13,0.46) 42%, rgba(20,17,13,0.76) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--goldb);
  margin-bottom: 22px;
}

.eyebrow-rule {
  width: 30px;
  height: 1px;
  background: var(--goldb);
  display: inline-block;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-h1 em {
  font-style: italic;
  color: var(--goldb);
}

.hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  letter-spacing: .3em;
  color: var(--goldb);
  margin: 18px 0 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.hero-sub1 {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #E7DDCB;
  max-width: 700px;
  margin: 22px auto 0;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.hero-sub2 {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: #E7DDCB;
  max-width: 700px;
  margin: 8px auto 0;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--cream);
  color: var(--sumi);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: rgba(20,17,13,0.25);
  color: var(--cream);
  border: 1px solid rgba(244,238,226,0.6);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .25s;
}

.btn-hero-outline:hover {
  border-color: var(--goldb);
  color: var(--goldb);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid rgba(26,22,17,0.12);
  border-bottom: 1px solid rgba(26,22,17,0.12);
  background: var(--cream-alt);
}

.trust-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
  padding: 20px 0;
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-warm);
}

.trust-star {
  color: var(--gold);
}

/* ============================================================
   VISION
   ============================================================ */
.vision-section {
  padding: clamp(70px, 9vw, 128px) 0;
}

.vision-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.vision-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}

.vision-p1 {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--body-warm-2);
  font-weight: 400;
  margin: 0 0 20px;
}

.vision-p2,
.vision-p3 {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0 0 20px;
}

.vision-p3 {
  margin: 0;
}

/* Flow card */
.flow-card {
  background: var(--cream-card);
  border: 1px solid rgba(190,154,65,0.45);
  padding: clamp(28px, 3.5vw, 40px);
}

.flow-title {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-align: center;
}

.flow-steps-wrap {
  position: relative;
}

.flow-line {
  position: absolute;
  left: 21px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(190,154,65,0.5);
  pointer-events: none;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
  position: relative;
}

.flow-dot {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.flow-dot--gold {
  border: 1px solid var(--gold);
  background: var(--cream-card);
  color: var(--gold);
}

.flow-dot--red-outline {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--gold);
}

.flow-dot--red-fill {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--cream);
}

.flow-label {
  font-size: 1.06rem;
  color: var(--sumi);
}

.flow-label--bold {
  font-weight: 500;
}

/* ============================================================
   WHY RARE
   ============================================================ */
.why-rare-section {
  background: var(--cream-alt);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid rgba(26,22,17,0.1);
}

.why-rare-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.why-rare-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(44px, 5vw, 64px);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.h2--light {
  color: var(--light-text);
}

.why-rare-intro {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0;
}

.why-rare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-rare-card {
  text-align: center;
  padding: 0 14px;
}

.roman-numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}

.card-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.card-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   PROVENANCE
   ============================================================ */
.provenance-section {
  background: var(--sumi);
  color: var(--light-text);
  padding: clamp(70px, 9vw, 128px) 0;
}

.provenance-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.provenance-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 74px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(237,228,211,0.16);
  border: 1px solid rgba(237,228,211,0.16);
}

.stat-cell {
  background: var(--sumi);
  padding: 38px 26px;
  text-align: center;
}

.stat-figure {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--goldb);
}

.stat-figure--sm {
  font-size: 2.1rem;
  line-height: 1.1;
}

.stat-caption {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted-dark);
  font-weight: 300;
  margin-top: 14px;
}

.provenance-closing {
  text-align: center;
  max-width: 660px;
  margin: clamp(38px, 5vw, 60px) auto 0;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--muted-dark-2);
  font-weight: 300;
}

/* ============================================================
   KOSHER PROCESS
   ============================================================ */
.process-section {
  padding: clamp(70px, 9vw, 128px) 0;
}

.process-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.process-header {
  max-width: 760px;
  margin: 0 auto clamp(46px, 6vw, 70px);
  text-align: center;
}

.process-intro {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.process-card {
  background: var(--cream-card);
  border: 1px solid rgba(26,22,17,0.1);
  padding: 38px 34px;
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 16px;
}

.process-card-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.card-sublabel {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section {
  background: var(--cream-alt);
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid rgba(26,22,17,0.1);
}

.serve-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.serve-header {
  max-width: 720px;
  margin: 0 auto clamp(44px, 5vw, 64px);
  text-align: center;
}

.serve-header .section-h2 {
  margin-bottom: 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.serve-card {
  background: var(--cream-card);
  border: 1px solid rgba(26,22,17,0.1);
  padding: 34px 30px;
}

.card-star {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.serve-card-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 10px;
}

/* ============================================================
   U.S. EXPORT
   ============================================================ */
.export-section {
  padding: clamp(70px, 9vw, 128px) 0;
}

.export-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.export-img-wrap {
  position: relative;
}

.export-img {
  width: 100%;
  aspect-ratio: 5/4;
  display: block;
  object-fit: cover;
  object-position: center; /* 横長の肉アップを5:4枠で中央トリミング */
  border-radius: 2px;
}

.export-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(190,154,65,0.5);
  transform: translate(-16px, 16px);
  pointer-events: none;
  z-index: -1;
}

.export-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.14;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.export-p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0 0 28px;
}

.export-list {
  display: grid;
  gap: 14px;
}

.export-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--body-warm-2);
}

.list-star {
  color: var(--red);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.export-cta {
  margin-top: 34px;
}

/* ============================================================
   AVAILABLE SUPPLY
   ============================================================ */
.supply-section {
  background: var(--sumi);
  color: var(--light-text);
  padding: clamp(66px, 8vw, 116px) 0;
}

.supply-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(36px, 4.5vw, 64px);
  align-items: start;
}

.supply-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.14;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  color: var(--light-text);
}

.supply-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted-dark-2);
  font-weight: 300;
  margin: 0;
}

.supply-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(201,162,75,0.3);
}

.supply-item {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(201,162,75,0.18);
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--light-text);
  font-size: .98rem;
  font-weight: 300;
}

.supply-item--last {
  border-bottom: none;
}

.supply-star {
  color: var(--goldb);
  flex-shrink: 0;
}

/* ============================================================
   INVESTORS
   ============================================================ */
.investors-section {
  background: var(--sumi-deep);
  color: var(--light-text);
  padding: clamp(76px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.investors-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,31,45,0.3), transparent 68%);
  pointer-events: none;
}

.investors-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
  position: relative;
}

.investors-header {
  max-width: 800px;
  margin: 0 auto clamp(46px, 6vw, 72px);
  text-align: center;
}

.investors-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  color: var(--light-text);
}

.investors-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted-dark-2);
  font-weight: 300;
  margin: 0;
}

.investors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-bottom: clamp(36px, 4.5vw, 52px);
}

.inv-block {
  border: 1px solid rgba(201,162,75,0.32);
  padding: 34px 30px;
}

.inv-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0 0 18px;
  color: #F2E9D6;
}

.inv-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-dark-2);
  font-weight: 300;
  margin: 0;
}

.inv-list {
  display: grid;
  gap: 10px;
  font-size: .98rem;
  color: var(--muted-dark-2);
  font-weight: 300;
}

.inv-item {
  display: flex;
  gap: 10px;
}

.inv-bullet {
  color: var(--goldb);
  flex-shrink: 0;
}

.inv-materials {
  border: 1px solid rgba(201,162,75,0.32);
  padding: clamp(30px, 4vw, 46px);
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 52px);
}

.inv-materials-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0 0 22px;
  color: #F2E9D6;
}

.inv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.inv-chip {
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--muted-dark-2);
  padding: 9px 18px;
  font-size: .92rem;
  letter-spacing: .04em;
}

.inv-closing {
  text-align: center;
  border-top: 1px solid rgba(201,162,75,0.22);
  padding-top: clamp(34px, 4.5vw, 52px);
}

.inv-closing-p {
  font-size: 1.02rem;
  color: var(--muted-dark-2);
  font-weight: 300;
  margin: 0 auto 26px;
  max-width: 680px;
  line-height: 1.7;
}

.inv-disclaimer {
  margin: 20px auto 0;
  max-width: 680px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--footer-faint);
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: clamp(70px, 9vw, 130px) 0;
}

.contact-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 68px);
}

.contact-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.contact-p {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0 0 30px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--body-warm);
}

.contact-info-link {
  transition: color .25s;
  text-decoration: none;
  color: var(--body-warm);
}

.contact-info-link:hover {
  color: var(--red);
}

.contact-star {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Contact form card */
.contact-form-card {
  background: var(--cream-card);
  border: 1px solid rgba(26,22,17,0.1);
  padding: clamp(28px, 4vw, 42px);
}

/* Thank-you state */
.form-thankyou {
  display: none;
  text-align: center;
  padding: 40px 10px;
}

.form-thankyou.is-visible {
  display: block;
}

.thankyou-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 14px;
}

.thankyou-body {
  color: var(--body-warm);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.thankyou-link {
  color: var(--red);
  text-decoration: none;
}

.thankyou-link:hover {
  text-decoration: underline;
}

/* Form elements */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form.is-hidden {
  display: none;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
}

.form-label {
  display: block;
}

.label-text {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-warm);
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(26,22,17,0.22);
  background: var(--field-bg);
  font-size: 1rem;
  outline: none;
  transition: border-color .25s;
  color: var(--sumi);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
}

.form-textarea {
  resize: vertical;
}

.btn-submit {
  margin-top: 4px;
  padding: 16px;
  background: var(--sumi);
  color: var(--cream);
  border: none;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--sumi-deep);
  color: var(--muted-dark-2);
  padding: clamp(56px, 7vw, 86px) 0 40px;
}

.footer-inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(201,162,75,0.22);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-mark {
  height: 46px;
  width: auto;
  display: block;
  /* 🚨 クリームの台座（background/padding/border-radius）を戻さないこと。
     以前は暗いフッターで黒い牛が溶けるのを避けるため台座を敷いていたが、
     「ロゴの後ろに白がある」という指摘（2026-07-23 兄）に対し、
     ナビと揃えて台座を外す判断をした（田中さん決定）。
     mark.png は透過済みで、日の丸と金の縁取りだけで形は読める。 */
}

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--light-text);
}

.footer-desc {
  font-size: .95rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  max-width: 300px;
}

.footer-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: var(--goldb);
  margin-top: 18px;
  letter-spacing: .08em;
}

.footer-col-title {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--goldb);
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: .98rem;
  font-weight: 300;
}

.footer-link {
  text-decoration: none;
  color: var(--muted-dark-2);
  transition: color .25s;
}

.footer-link:hover {
  color: #fff;
}

.footer-text {
  color: var(--muted-dark-2);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: .84rem;
  color: var(--footer-faint);
  font-weight: 300;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: flex-end;
}

.footer-keywords {
  letter-spacing: .05em;
  text-align: right;
}

.footer-privacy {
  color: var(--footer-faint);
  text-decoration: none;
  transition: color .25s;
  white-space: nowrap;
}

.footer-privacy:hover {
  color: var(--muted-dark-2);
}

/* ============================================================
   FULL-WIDTH IMAGE BAND (cinematic placeholder)
   ============================================================ */
.image-band {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border-top: 1px solid rgba(26, 22, 17, 0.12);
  border-bottom: 1px solid rgba(26, 22, 17, 0.12);
}

.image-band-img {
  width: 100%;
  height: clamp(260px, 40vw, 540px);
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

/* ============================================================
   VISION INTRO + JOURNEY (5-step: Japanese Farm → U.S. Table)
   ============================================================ */
.vision-intro {
  width: min(860px, 92vw);
  margin: 0 auto clamp(46px, 6vw, 78px);
  text-align: center;
}

.vision-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0;
}

.journey {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.journey-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-align: center;
  color: var(--sumi);
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.journey-head em { font-style: italic; color: var(--red); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.journey-step { text-align: center; }

.journey-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(190,154,65,0.4);
  margin-bottom: 16px;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-num {
  position: absolute;
  left: 10px;
  top: 7px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.journey-img-wrap--ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(150deg, var(--cream-card), var(--cream-alt));
}

.journey-ph-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--gold);
}

.journey-ph-num--sm { font-size: 1.3rem; }

.journey-ph-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--muted-warm);
}

.journey-ph-icon { font-size: 2.2rem; color: var(--gold); line-height: 1; }

.journey-step--feature .journey-img-wrap {
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(184,31,45,0.14);
}

.journey-tag {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.16rem;
  line-height: 1.2;
  margin: 0 0 7px;
}

.journey-step--feature .journey-title { color: var(--red); }

.journey-desc {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0;
}

@media (max-width: 860px) {
  .journey-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

/* ============================================================
   NAV — 画面幅が足りないとき
   .nav-right は flex-wrap:wrap のため、1行に収まらないとリンクが2行になり、
   高さ固定のヘッダーからはみ出して本文に重なる（実測：1000px 幅でも発生していた。
   フルサイズのナビは 1行に約 999px 必要で、1240px 想定のデザインだった）。
   対策は2段階＝①1100px 以下は各要素を詰めて1行を維持 ②詰めても入らない
   880px 以下はリンクを隠して CTA だけ残す（4リンクは全てページ内アンカーなので
   スクロールで到達できる）。
   ヘッダーの高さを変えたら scroll-padding-top も必ず合わせること
   （合わないとアンカー先の見出しがヘッダーの下に隠れる）。
   ============================================================ */
@media (max-width: 1100px) {
  html { scroll-padding-top: 72px; }
  .nav-inner { height: 64px; gap: 14px; }
  .nav-right { gap: 18px; }
  .nav-links { gap: 15px; font-size: 12px; letter-spacing: .07em; }
  .nav-mark { height: 34px; }
  .nav-wordmark { font-size: 17px; }
  .nav-cta {
    padding: 10px 15px;
    font-size: 11px;
    letter-spacing: .07em;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
}

/* 実測：詰めた状態でも 831px では2行になり、841px で1行に収まった。
   フォント読み込み前後の幅差を吸収する余裕を見て 880px で切り替える。 */
@media (max-width: 880px) {
  html { scroll-padding-top: 62px; }
  .nav-inner { height: 56px; gap: 10px; }
  .nav-links { display: none; }
  .nav-mark { height: 30px; }
  .nav-wordmark { font-size: 16px; }
  .nav-cta { padding: 9px 14px; font-size: 11px; letter-spacing: .08em; }
  .hero-section { padding-top: 96px; }
  .legal-page { padding-top: 92px; }
}

/* 字間の広い小見出しは狭い画面で行から溢れる（罫線＋27文字＋字間.3em）。 */
@media (max-width: 560px) {
  .hero-eyebrow { font-size: 11px; letter-spacing: .18em; gap: 10px; }
  .eyebrow-rule { width: 20px; }
}

@media (max-width: 400px) {
  .nav-inner { width: 94vw; gap: 8px; }
  .nav-mark { height: 26px; }
  .nav-wordmark { font-size: 14px; }
  .nav-cta { padding: 8px 11px; font-size: 10px; letter-spacing: .06em; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .12em; gap: 8px; }
  .eyebrow-rule { width: 14px; }
}

/* Merged audience cards under U.S. Export */
.serve-grid--merged { margin-top: clamp(40px, 5vw, 68px); }

/* Reservation / privacy note under contact form */
.form-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted-warm);
  font-weight: 300;
  margin: 2px 0;
}

.form-note-link {
  color: var(--red);
  text-decoration: underline;
}

/* ============================================================
   FORM: HONEYPOT / CONSENT / ERROR
   ============================================================ */

/* Spam honeypot — must stay invisible to humans. */
.hp-field {
  display: none !important;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 2px;
  cursor: pointer;
}

.form-consent-box {
  flex: 0 0 auto;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.form-consent-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted-warm);
  font-weight: 300;
}

.form-consent-text strong {
  font-weight: 500;
  color: var(--body-warm-2);
}

.form-error {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: rgba(184, 31, 45, 0.06);
  color: var(--body-warm-2);
  font-size: 13px;
  line-height: 1.6;
}

.form-error[hidden] {
  display: none;
}

/* ============================================================
   LEGAL PAGES (privacy.html / terms.html)
   ============================================================ */
.legal-page {
  background: var(--cream);
  padding: clamp(110px, 13vw, 160px) 24px clamp(70px, 9vw, 110px);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--sumi);
  margin: 10px 0 18px;
}

.legal-meta {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: var(--muted-warm);
  margin: 0 0 30px;
}

.legal-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--body-warm-2);
  font-weight: 300;
  margin: 0 0 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(26, 22, 17, 0.12);
}

.legal-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 600;
  color: var(--sumi);
  margin: 42px 0 12px;
}

.legal-h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-warm);
  margin: 26px 0 8px;
}

.legal-p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body-warm);
  font-weight: 300;
  margin: 0 0 14px;
}

.legal-p strong,
.legal-list strong {
  font-weight: 500;
  color: var(--body-warm-2);
}

.legal-list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--body-warm);
  font-weight: 300;
  margin-bottom: 7px;
}

.legal-note-sm {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted-warm);
  font-weight: 300;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 2px solid rgba(190, 154, 65, 0.5);
}

.legal-callout {
  padding: 20px 22px 8px;
  background: var(--cream-card);
  border-left: 3px solid var(--red);
  margin: 0 0 16px;
}

.legal-link,
.legal-back-link {
  color: var(--red);
  text-decoration: underline;
}

.legal-back {
  margin: 52px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(26, 22, 17, 0.12);
  font-size: 14px;
}

/* Unresolved placeholder — must be visually obvious so it cannot ship unnoticed.
   Detected before deploy by check_publish_ready.py. */
.legal-todo {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(184, 31, 45, 0.1);
  border: 1px dashed var(--red);
  color: var(--red);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ============================================================
   REDUCED-MOTION FALLBACK
   All animated elements start visible when motion is reduced.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  [data-anim],
  [data-anim-children] > *,
  [data-flow-step] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
