@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400&display=swap');

/* ===========================
   Design Tokens
   =========================== */
:root {
  --parchment:      #f5f1e8;
  --parchment-dark: #ede8db;
  --charcoal:       #1c1a18;
  --charcoal-soft:  #2e2c28;
  --tea-green:      #2c4a3e;
  --tea-green-light:#3d6b5a;
  --sage:           #6b8f71;
  --sage-pale:      #c8d9c4;
  --gold:           #9b7a4a;
  --gold-light:     #c4a06e;
  --border:         #2c4a3e24;
  --border-dark:    #2c4a3e40;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up { animation: 0.7s cubic-bezier(0.16, 1, 0.3, 1) both fadeUp; }
.animate-fade-in { animation: 0.6s both fadeIn; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ヒーロー専用：ゆっくりじわーっと浮かび上がる */
.hero-reveal {
  animation: heroReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Navigation
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.nav__logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tea-green);
  letter-spacing: 0.05em;
}

.nav__logo-jp {
  font-family: serif;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.8;
  letter-spacing: 0.1em;
}

/* ロゴ画像ラッパー */
.nav__logo-wrap {
  display: flex;
  align-items: center;
  height: 52px;
}

.nav__logo-img {
  height: 52px;
  width: 52px;
  display: block;
  flex-shrink: 0;
}

.hero__logo-img {
  width: clamp(240px, 55vw, 520px);
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

.hero__brand-logo {
  width: auto;
  height: auto;
  max-width: clamp(280px, 55vw, 580px);
  max-height: 35vh;
  display: block;
  margin: 0 auto 0.5rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tea-green);
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.55; }
.nav-link.active {
  border-bottom: 1px solid var(--tea-green);
  padding-bottom: 1px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--tea-green);
  transition: all 0.3s;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tea-green);
  color: var(--parchment);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
}
.btn-primary:hover { background: var(--tea-green-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--tea-green);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--tea-green); color: var(--parchment); border-color: var(--tea-green); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  color: var(--charcoal);
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.55; }

/* ===========================
   Layout
   =========================== */
.page-wrap {
  padding-top: 64px;
}

.max-w {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

hr.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===========================
   Hero (Home)
   =========================== */
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

.hero__green-block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 32, 15, 0.35) 0%,
      rgba(10, 18, 8, 0.55) 100%
    ),
    url('hero.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero__origin {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.hero__title-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero__title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  color: var(--parchment);
  display: block;
  letter-spacing: -0.01em;
}

.hero__title-jp {
  position: absolute;
  bottom: -0.5rem;
  left: 0.15em;
  font-family: serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--gold-light);
  opacity: 0.85;
  letter-spacing: 0.15em;
}

.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 241, 232, 0.85);
  max-width: 38ch;
  line-height: 1.5;
  margin: clamp(2rem, 5vw, 3.5rem) 0 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero__scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tea-green);
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tea-green), transparent);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ===========================
   Stats Strip
   =========================== */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  overflow: hidden;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat {
  background: var(--parchment);
  padding: 2rem;
  text-align: center;
}

.stat__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--tea-green);
  margin-bottom: 0.25rem;
}

.stat__sub {
  font-size: 0.78rem;
  opacity: 0.55;
}

/* ===========================
   Product Cards
   =========================== */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.products-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
}

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

.product-card {
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(44, 74, 62, 0.1);
}

.product-card__image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

.product-card__name-ja {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-family: serif;
  color: rgba(245, 241, 232, 0.25);
  letter-spacing: 0.1em;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 241, 232, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
}

.product-card__body {
  padding: 1.25rem;
  background: var(--parchment);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.product-card__desc {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.6;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--tea-green);
  font-weight: 400;
}

.product-card__weight {
  font-size: 0.7rem;
  opacity: 0.45;
}

/* ===========================
   Our Story Banner (Home)
   =========================== */
.story-banner {
  background: var(--tea-green);
  color: var(--parchment);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.story-banner__deco {
  position: absolute;
  top: -2rem;
  right: -3rem;
  font-size: 20rem;
  font-family: serif;
  color: rgba(245, 241, 232, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.story-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-banner__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.story-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.story-banner__body {
  font-size: 0.9rem;
  line-height: 1.85;
  opacity: 0.75;
  margin-bottom: 2rem;
  max-width: 48ch;
}

/* ===========================
   Wholesale Strip (Home)
   =========================== */
.wholesale-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}

.wholesale-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.wholesale-strip__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.wholesale-strip__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
}

/* ===========================
   Shop Page
   =========================== */
.shop-header {
  padding: 5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-header__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.shop-header__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.shop-header__desc {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  opacity: 0.7;
  max-width: 48ch;
  line-height: 1.8;
}

.shop-filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.4rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--charcoal);
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--tea-green);
  color: var(--parchment);
  border-color: var(--tea-green);
  opacity: 1;
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ===========================
   Our Story Page
   =========================== */
.story-hero {
  background: var(--tea-green);
  color: var(--parchment);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.story-hero__deco {
  position: absolute;
  top: 0; right: 0;
  font-size: 30rem;
  font-family: serif;
  color: rgba(245, 241, 232, 0.03);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.story-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.story-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  max-width: 16ch;
}

/* ===========================
   Our Story — New Sections
   =========================== */

/* Prose */
.story-prose {
  padding: 5rem 2rem;
}
.story-prose__inner {
  max-width: 640px;
  margin: 0 auto;
}
.story-prose__lead {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--tea-green);
  line-height: 1.4;
  margin-bottom: 1.8rem;
}
.story-prose__body {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.78;
  margin-bottom: 1.2rem;
}

/* Shibaku Callout */
.story-callout {
  padding: 0 2rem 5rem;
}
.story-callout__inner {
  max-width: 640px;
  margin: 0 auto;
}
.shibaku-calligraphy {
  margin: 0 -2rem 2.4rem;
}
.shibaku-calligraphy__img {
  width: 100%;
  display: block;
}
.callout-box {
  border-left: 3px solid var(--tea-green);
  background: linear-gradient(135deg, rgba(44,74,62,0.06) 0%, rgba(44,74,62,0.02) 100%);
  padding: 2.4rem 2.4rem 2.4rem 2.8rem;
}
.callout-box__kana {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.callout-box__statement {
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--tea-green);
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
}
.callout-box__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tea-green);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.callout-box__body {
  font-size: 0.9rem;
  line-height: 1.9;
  opacity: 0.75;
  margin-bottom: 0.8rem;
}
.callout-box__body em {
  font-style: italic;
  color: var(--tea-green);
  opacity: 1;
}

/* Farmer Photo */
.story-photo {
  padding: 0 0 5rem;
}
.story-photo__img-wrap {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}
.story-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-photo__caption {
  max-width: 640px;
  margin: 1rem auto 0;
  padding: 0 2rem;
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
  font-style: italic;
}

/* 56-Year Legacy */
.story-legacy {
  padding: 5rem 0;
  background: var(--charcoal);
  color: var(--parchment);
}
.story-legacy__farm-photo {
  width: clamp(200px, 70%, 420px);
  margin: 3rem auto 0;
  overflow: hidden;
}
.story-legacy__farm-img {
  width: 100%;
  display: block;
  opacity: 0.9;
}
.story-legacy__farm-caption {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(245,241,232,0.5);
  margin: 0.6rem auto 3rem;
}
.story-legacy__inner {
  padding: 0 2rem;
  max-width: 640px;
  margin: 0 auto;
}
.legacy-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.legacy-tag__keyword {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.9rem;
}
.legacy-tag__sep {
  color: var(--gold);
  font-size: 0.8rem;
}
.story-legacy__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--parchment);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.story-legacy__body {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.72;
  margin-bottom: 1.2rem;
}
.story-legacy__body strong {
  color: var(--gold-light);
  font-weight: 400;
}
.story-legacy__quote {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--gold-light);
  border: none;
  margin: 2.4rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-style: italic;
  opacity: 0.9;
}

/* Sustainability */
.story-sustain {
  padding: 5rem 2rem;
}
.story-sustain__inner {
  max-width: 640px;
  margin: 0 auto;
}
.story-sustain__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.story-sustain__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--tea-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.story-sustain__body {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.72;
}

.story-meaning {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.meaning-card__char {
  font-family: serif;
  font-size: 6rem;
  color: var(--tea-green);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
}

.meaning-card__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.meaning-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.meaning-card__body {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--charcoal-soft);
  opacity: 0.8;
}

.story-values {
  background: var(--parchment-dark);
  padding: 5rem 2rem;
}

.story-values__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.story-values__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.story-values__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.value-card {
  background: var(--parchment-dark);
  padding: 2.5rem;
  transition: background 0.25s;
}
.value-card:hover { background: var(--parchment); }

.value-card__num {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-card__body {
  font-size: 0.82rem;
  line-height: 1.8;
  opacity: 0.65;
}

/* ===========================
   Wholesale Page
   =========================== */
.wholesale-hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wholesale-hero__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.wholesale-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 20ch;
}

.wholesale-hero__sub {
  font-size: 0.88rem;
  opacity: 0.65;
  max-width: 48ch;
  line-height: 1.8;
}

.wholesale-terms {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  overflow: hidden;
}

.wholesale-terms__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.term {
  background: var(--parchment);
  padding: 2rem;
}

.term__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.term__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--tea-green);
  margin-bottom: 0.25rem;
}

.term__sub {
  font-size: 0.75rem;
  opacity: 0.55;
}

.wholesale-coming-soon {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}

.coming-soon__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--tea-green);
  margin-bottom: 1rem;
}

.coming-soon__body {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.wholesale-segments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.wholesale-segments__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.wholesale-segments__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.segments-strip {
  display: flex;
  gap: 1px;
  background: var(--border);
  overflow: hidden;
}

.segment {
  background: var(--parchment);
  flex: 1;
  min-width: 0;
  padding: 1.5rem;
  transition: background 0.25s;
}
.segment:hover { background: var(--parchment-dark); }

.segment__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.segment__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--tea-green);
  margin-bottom: 0.35rem;
}

.segment__body {
  font-size: 0.75rem;
  opacity: 0.6;
  line-height: 1.6;
}

.wholesale-form-section {
  background: var(--parchment-dark);
  padding: 5rem 2rem;
}

.wholesale-form-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.wholesale-form-section__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.wholesale-form-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.wholesale-form-section__sub {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tea-green);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-dark);
  padding: 0.7rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  width: 100%;
  outline: none;
  appearance: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--tea-green); }
.field textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.72rem;
  opacity: 0.5;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--charcoal);
  color: rgba(245, 241, 232, 0.5);
  padding: 4rem 2rem 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  margin-bottom: 2rem;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer__brand-jp {
  font-family: serif;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.78rem;
  line-height: 1.7;
  opacity: 0.45;
}

.footer__nav-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.3);
  margin-bottom: 1rem;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-list a {
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.5);
  transition: color 0.2s;
}
.footer__nav-list a:hover { color: rgba(245, 241, 232, 0.9); }

.footer__contact-item {
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--sage-pale);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__instagram:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.72rem;
  opacity: 0.3;
  letter-spacing: 0.05em;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; right: 0;
    width: 75%;
    max-width: 280px;
    height: calc(100svh - 64px);
    background: var(--parchment);
    border-left: 1px solid var(--border);
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    z-index: 99;
  }
  .nav__toggle { display: flex; }

  .hero__green-block { width: 100%; height: 100%; top: 0; bottom: 0; }
  .hero__title-jp { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .story-meaning { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; }
  .wholesale-terms__grid { grid-template-columns: 1fr; }
  .segments-strip { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title-en { letter-spacing: -0.02em; }
  .hero__green-block { display: none; }
}
