/* ==========================================================================
   ぎるふ / Gilf — Quiet Green Design System
   白 × クリーム × セージのリズム構成
   ========================================================================== */

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

:root {
  /* Base */
  --bg-primary:   #EEF2EA;
  --bg-secondary: #E4EBDC;
  --bg-mist:      #F5F7F1;
  --bg-white:     #FFFFFF;
  --ink:          #2A3528;
  --sub:          #5C6758;
  --border:       #CFD7C6;
  --border-soft:  #E2E8DB;

  /* Brand */
  --sage:         #7FA67A;
  --sage-hover:   #6B9167;
  --leaf-deep:    #455A3D;
  --mint:         #C9DCC1;
  --moss:         #A9BF8C;
  --clay:         #D8C7A6;
  --coral:        #E29A82;

  /* Typography */
  --font-jp: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-en: "Inter", "Helvetica Neue", sans-serif;
  --font-serif: "Fraunces", "EB Garamond", serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container: 1280px;
  --radius-card: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: auto; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--ink);
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
em { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.tnum { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   SECTION BACKGROUND RHYTHM（柔らかい × メリハリ）
   ========================================================================== */
.sec-cream     { background: var(--bg-primary); }
.sec-white     { background: var(--bg-white); }
.sec-secondary { background: var(--bg-secondary); }

/* ==========================================================================
   FOCUS VISIBLE
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display-xl {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 104px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}

.section-eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
}

.heading-1 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 24px;
  letter-spacing: 0.01em;
}

.heading-1 em {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: var(--leaf-deep);
}

.heading-3 { font-size: 19px; font-weight: 600; line-height: 1.55; }

/* ==========================================================================
   LOADER
   ========================================================================== */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-white);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  /* CSS-only フォールバック：GSAP 未ロードでも約 3.5s で消える */
  animation: loaderFallbackHide 0s linear 3.5s forwards;
}
.js #loader { animation: none; }              /* JS 動作中は GSAP に任せる */
.no-gsap #loader { display: none !important; }

@keyframes loaderFallbackHide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* ローダー進捗バーの CSS フォールバック */
@keyframes loaderProgressFill {
  from { width: 0%; }
  to   { width: 100%; }
}
#loader .loader-progress {
  animation: loaderProgressFill 2.5s var(--ease) forwards;
}
.js #loader .loader-progress { animation: none; }

.loader-inner { text-align: center; }

.loader-text {
  display: block;
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--leaf-deep);
  margin-bottom: 28px;
}

.loader-bar {
  width: 180px; height: 1px;
  background: var(--border);
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress {
  width: 0%; height: 100%;
  background: var(--sage);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 220;
  padding: 20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(207, 215, 198, 0.4);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  position: relative;
  z-index: 102;
}

.nav-logo-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 22px;
  color: var(--leaf-deep);
  letter-spacing: 0.04em;
}

.logo-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--sage); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;                    /* タッチターゲット 44px */
  padding: 12px 10px;
  position: relative;
  z-index: 102;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px clamp(24px, 5vw, 80px) 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg-mist) 0%, var(--bg-secondary) 100%);
  z-index: 0;
}

.hero-outline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-outline-word {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(180px, 32vw, 440px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(69, 90, 61, 0.12);
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.9;
}

.hero-tagline-en {
  position: absolute;
  top: 120px;
  right: clamp(24px, 5vw, 80px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: var(--leaf-deep);
}

.tagline-en-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 24px);
  letter-spacing: -0.01em;
  opacity: 0.85;
}

.tagline-wave { width: 90px; height: 10px; color: var(--sage); }

.hero-illust {
  position: relative;
  z-index: 2;
  width: clamp(260px, 36vw, 420px);
}

.hero-illust-svg { width: 100%; height: auto; }

.hero-lead {
  position: absolute;
  bottom: 140px;
  left: clamp(24px, 5vw, 80px);
  z-index: 3;
  max-width: 540px;
}

.hero-lead-jp {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-lead-line { display: block; overflow: hidden; }
.hero-lead-line span { display: block; }

.hero-lead-sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--sub);
  letter-spacing: 0.03em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sub);
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -30px; left: 0;
  width: 1px; height: 30px;
  background: var(--leaf-deep);
  animation: scrollDown 2.4s var(--ease) infinite;
}

@keyframes scrollDown {
  0%   { top: -30px; }
  100% { top: 40px; }
}

/* ==========================================================================
   SECTIONS — common
   ========================================================================== */
section {
  padding: clamp(96px, 12vw, 144px) 0;
  position: relative;
}

#marquee { padding: 40px 0; }

.section-head {
  margin-bottom: clamp(64px, 8vw, 96px);
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.section-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}

.sec-white .section-rule { background: var(--border-soft); }

/* JS が有効のときだけ非表示化（CDN/JS が動かなくても素のページは見える） */
.js .reveal-up   { opacity: 0; transform: translateY(24px); }
.no-gsap .reveal-up { opacity: 1 !important; transform: none !important; }

/* ==========================================================================
   ABOUT — 3 circles
   ========================================================================== */
.about-body {
  max-width: 680px;
  color: var(--sub);
  font-size: 16px;
  margin: 0 0 80px;
  line-height: 2.0;
}

.circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.circle-item { text-align: center; padding: 0 12px; }

.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 32px;
  display: grid;
  place-items: center;
  color: var(--leaf-deep);
  transition: transform 0.6s var(--ease);
  position: relative;
}

.circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(69, 90, 61, 0.18);
  opacity: 0.6;
}

.circle svg { width: 44px; height: 44px; }
.circle-moss { background: var(--moss); }
.circle-mint { background: var(--mint); }
.circle-clay { background: var(--clay); }

.circle-item:hover .circle { transform: scale(1.04); }

.circle-item h3 { margin-bottom: 14px; color: var(--leaf-deep); }

.circle-item p {
  color: var(--sub);
  font-size: 14px;
  line-height: 1.9;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   CONCEPT — steps (白背景)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--bg-mist);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42, 53, 40, 0.06);
  border-color: var(--mint);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 56px;
  color: rgba(69, 90, 61, 0.08);
  line-height: 1;
  letter-spacing: -0.03em;
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--leaf-deep);
  display: grid; place-items: center;
  margin-bottom: 24px;
}

.step-icon svg { width: 22px; height: 22px; }

.step h3 { color: var(--leaf-deep); margin-bottom: 12px; }

.step p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

/* ==========================================================================
   CONCEPT — pricing system
   ========================================================================== */
.pricing-system {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--border-soft);
}

.pricing-system-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--leaf-deep);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Chip grid --- */
.pricing-lead {
  font-size: 14px;
  color: var(--sub);
  margin-bottom: 20px;
  line-height: 1.8;
}

.pricing-lead small {
  font-size: 12px;
  color: var(--sub);
  opacity: 0.75;
}

.chip-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.chip-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-white);
  transition: background 0.2s;
}

.chip-row:last-child { border-bottom: none; }

.chip-row:hover { background: var(--bg-mist); }

.chip-row--gray {
  background: var(--bg-mist);
  border-top: 1px dashed var(--border);
}

.color-swatch {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.chip-label {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.chip-price {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--leaf-deep);
  white-space: nowrap;
}

.chip-row--gray .chip-price {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
}

/* --- Right column rules --- */
.pricing-rules {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.five-day-rule {
  background: linear-gradient(135deg, #F0F6EC 0%, #E4EBDC 100%);
  border: 1.5px solid var(--mint);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.five-day-badge {
  display: inline-flex;
  align-items: center;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.five-day-rule h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: 10px;
}

.five-day-rule p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.85;
}

.donation-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 24px 24px;
}

.donation-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--leaf-deep);
  display: grid;
  place-items: center;
}

.donation-icon svg { width: 20px; height: 20px; }

.donation-note p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.85;
  padding-top: 2px;
}

/* Responsive pricing layout */
@media (max-width: 768px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================================================================
   STORES
   ========================================================================== */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42, 53, 40, 0.08);
}

.store-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.store-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--leaf-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
}

.store-meta { padding: 28px 28px 32px; }

.store-meta h3 { color: var(--leaf-deep); margin-bottom: 20px; }

.store-dl { margin-bottom: 28px; }

.store-dl > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
}

.store-dl > div:last-child { border-bottom: none; }

.store-dl dt { color: var(--sub); font-weight: 500; letter-spacing: 0.05em; }
.store-dl dd { color: var(--ink); }

.store-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.store-instagram {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.store-instagram svg {
  width: 18px;
  height: 18px;
}

.store-instagram:hover {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   ARROW CIRCLE / GHOST ARROW
   ========================================================================== */
.ghost-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.ghost-arrow.large { font-size: 15px; }

.arrow-circle {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.3s var(--ease), border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}

.arrow-circle svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }

.ghost-arrow:hover { color: var(--sage); }
.ghost-arrow:hover .arrow-circle,
a:hover > .arrow-circle {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.ghost-arrow:hover .arrow-circle svg,
a:hover > .arrow-circle svg { transform: translateX(4px); }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
#marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 0;
}

.marquee-track span {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-right: 24px;
  flex-shrink: 0;
}

/* ==========================================================================
   SUSTAINABILITY — 白背景
   ========================================================================== */
.sust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sust-card {
  background: var(--bg-mist);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.sust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(42, 53, 40, 0.06);
}

.sust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.sust-card:hover::before { transform: scaleX(1); }

.sust-value {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 28px;
}

.sust-unit {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub);
  justify-self: end;
  margin-top: 8px;
}

.sust-num {
  display: block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--leaf-deep);
  line-height: 1;
  letter-spacing: -0.02em;
  min-width: 0;
  white-space: nowrap;
}

.sust-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.sust-note {
  font-size: 12px;
  color: var(--sub);
  letter-spacing: 0.02em;
}

.sust-footnote {
  font-size: 12px;
  color: var(--sub);
  text-align: center;
  margin-top: 32px;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: start;
}

.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: 28px;
  width: 100%;
  max-width: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(42, 53, 40, 0.06);
}

.partner-img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-mist);
}

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

.partner-img-logo {
  display: grid;
  place-items: center;
  padding: 20px;
}

.partner-img-logo img {
  object-fit: contain;
  object-position: center;
}

.partner-tag {
  display: inline-block;
  background: var(--mint);
  color: var(--leaf-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.partner-card h3 { color: var(--leaf-deep); margin-bottom: 10px; }
.partner-card p { font-size: 14px; color: var(--sub); line-height: 1.9; }

.partner-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
#footer {
  background: var(--ink);
  color: #fff;
  padding: 88px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 8vw, 120px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { max-width: 320px; }

.footer-logo-jp {
  font-family: var(--font-jp);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-logo-en {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  color: var(--moss);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-tag {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--mint);
}

.footer-tag-jp {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1.9;
}

.footer-nav a:hover { color: var(--mint); }

.footer-bottom { padding-top: 28px; text-align: center; }

.footer-bottom p {
  font-family: var(--font-en);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   RESPONSIVE — drawer nav
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-lead { bottom: auto; top: 48%; transform: translateY(-50%); }
  .hero-illust { width: clamp(240px, 32vw, 360px); }
  .hero-tagline-en { top: 100px; }
}

@media (max-width: 1024px) {
  .circles { grid-template-columns: 1fr; gap: 48px; max-width: 420px; margin: 0 auto; }
  .steps,
  .stores-grid,
  .partners-grid,
  .sust-grid { grid-template-columns: 1fr 1fr; }

  #hero {
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 80px;
    gap: 32px;
  }

  .hero-tagline-en {
    position: static;
    align-items: center;
    margin-bottom: 0;
  }

  .hero-illust { margin: 0; }

  .hero-lead {
    position: static;
    transform: none;
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }

  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  /* Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 100px 44px 40px;
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
    box-shadow: -10px 0 40px rgba(42, 53, 40, 0.08);
    z-index: 221;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 17px; font-weight: 600; color: var(--leaf-deep); }

  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(42, 53, 40, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 210;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }

  .steps,
  .stores-grid,
  .partners-grid,
  .sust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }

  .sust-card { padding: 40px 32px; }

  .hero-lead-jp { font-size: clamp(28px, 7vw, 40px); }

  .section-head-row { align-items: flex-start; }
}

/* ==========================================================================
   PREFERS REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  .hero-scroll-line::after { animation: none !important; }
  .hero-illust-svg .ring,
  .hero-illust-svg .sym,
  .circle { animation: none !important; }
}
