:root {
  --ink: #0f1710;
  --pine: #16241a;
  --moss: #2e4a33;
  --leaf: #4f7a4f;
  --sage: #93ac83;
  --mist: #dfe8d2;
  --paper: #f7f3e8;
  --cream: #fbf8f0;
  --gold: #b8944d;
  --gold-soft: #d3b878;
  --font-serif: 'Shippori Mincho', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 2;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--moss); color: var(--cream); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- Grain texture ---------- */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.14'/%3E%3C/svg%3E");
  z-index: 2;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease 0.15s, visibility 0.7s ease 0.15s;
}

.loader-mark { position: relative; width: 96px; height: 96px; }

.loader-kanji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--paper);
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 232, 0.25);
  border-top-color: var(--gold-soft);
  animation: spin 1.1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

body.loaded .loader { opacity: 0; visibility: hidden; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color 0.45s ease;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.nav {
  display: flex;
  gap: 40px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  transition: color 0.45s ease;
}

.nav a { position: relative; padding: 6px 0; }

.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 22px; }

.lang-switch {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  border: 1px solid rgba(251, 248, 240, 0.5);
  border-radius: 999px;
  color: var(--cream);
  transition: all 0.35s ease;
}

.lang-switch:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  margin: 0 auto;
  background: var(--cream);
  transition: transform 0.4s var(--ease), background 0.45s ease;
}

/* scrolled state */
.site-header.scrolled {
  background: rgba(247, 243, 232, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 16, 0.08);
}
.site-header.scrolled .logo,
.site-header.scrolled .nav { color: var(--ink); }
.site-header.scrolled .lang-switch { color: var(--ink); border-color: rgba(15, 23, 16, 0.4); }
.site-header.scrolled .lang-switch:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* menu open state */
body.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
body.menu-open .site-header .logo { color: var(--cream); }
body.menu-open .nav-toggle span { background: var(--cream); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--pine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.menu-open .menu-overlay { opacity: 1; visibility: visible; }

.menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  color: var(--cream);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

body.menu-open .menu-links a { opacity: 1; transform: none; }
body.menu-open .menu-links a:nth-child(1) { transition-delay: 0.10s; }
body.menu-open .menu-links a:nth-child(2) { transition-delay: 0.16s; }
body.menu-open .menu-links a:nth-child(3) { transition-delay: 0.22s; }
body.menu-open .menu-links a:nth-child(4) { transition-delay: 0.28s; }
body.menu-open .menu-links a:nth-child(5) { transition-delay: 0.34s; }
body.menu-open .menu-links a:nth-child(6) { transition-delay: 0.40s; }

.menu-links small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}

.menu-foot {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--sage);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-media { position: absolute; inset: 0; }

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 18, 11, 0.78) 0%, rgba(10, 18, 11, 0.42) 48%, rgba(10, 18, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 18, 11, 0.35) 0%, transparent 30%, transparent 62%, rgba(10, 18, 11, 0.62) 100%);
}

.hero-vertical {
  position: absolute;
  top: 50%;
  right: clamp(18px, 5vw, 72px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.85em;
  color: rgba(251, 248, 240, 0.55);
  border-right: 1px solid rgba(251, 248, 240, 0.25);
  padding-right: 22px;
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 48px) 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  color: var(--gold-soft);
  margin-bottom: 34px;
}

.eyebrow-line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--gold-soft);
  transform-origin: left;
  animation: lineGrow 1.2s var(--ease) 1.1s backwards;
}

@keyframes lineGrow { from { transform: scaleX(0); } }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  line-height: 1.32;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.hero-line { display: block; overflow: hidden; }

.hero-line span {
  display: block;
  transform: translateY(110%);
}

body.loaded .hero-line span { animation: riseUp 1.15s var(--ease) forwards; }
body.loaded .hero-line:nth-child(1) span { animation-delay: 0.55s; }
body.loaded .hero-line:nth-child(2) span { animation-delay: 0.72s; }

@keyframes riseUp { to { transform: translateY(0); } }

.hero-lead {
  font-size: 0.98rem;
  color: rgba(251, 248, 240, 0.85);
  margin-bottom: 48px;
  animation: fadeIn 1.4s ease 1.35s backwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  animation: fadeIn 1.4s ease 1.55s backwards;
}

@keyframes fadeIn { from { opacity: 0; } }

.btn-solid {
  display: inline-block;
  padding: 17px 44px;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  position: relative;
  overflow: hidden;
  transition: color 0.45s var(--ease);
}

.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.btn-solid:hover { color: var(--ink); }
.btn-solid:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 248, 240, 0.45);
  padding-bottom: 6px;
  transition: border-color 0.3s ease;
}

.btn-line:hover { border-color: var(--cream); }

.btn-line .arrow { transition: transform 0.35s var(--ease); }
.btn-line:hover .arrow { transform: translateX(6px); }

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: clamp(20px, 4vw, 48px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(251, 248, 240, 0.6);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
}

.scroll-cue span { writing-mode: vertical-rl; }

.scroll-cue i {
  display: block;
  width: 1px; height: 72px;
  background: rgba(251, 248, 240, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-cue i::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%; height: 50%;
  background: var(--gold-soft);
  animation: cueDrop 2s var(--ease) infinite;
}

@keyframes cueDrop {
  0% { top: -50%; }
  60%, 100% { top: 105%; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--pine);
  color: rgba(251, 248, 240, 0.5);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(251, 248, 240, 0.08);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  letter-spacing: 0.32em;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
section { position: relative; }

.section-head { position: relative; margin-bottom: clamp(52px, 8vw, 88px); }

.section-num {
  position: absolute;
  top: -0.55em;
  left: -0.04em;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 8.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(46, 74, 51, 0.18);
  pointer-events: none;
}

.section-head.light .section-num { -webkit-text-stroke-color: rgba(251, 248, 240, 0.14); }

.section-eyebrow {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  padding-top: 34px;
  margin-bottom: 14px;
}

.section-title {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 22px;
}

.section-head.light .section-title { color: var(--cream); }

.section-lead {
  position: relative;
  font-size: 0.94rem;
  color: rgba(15, 23, 16, 0.66);
}

.section-head.light .section-lead { color: rgba(251, 248, 240, 0.7); }

/* ---------- Reveal ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 01 Philosophy ---------- */
.philosophy {
  padding: clamp(110px, 16vw, 190px) 0;
  background: var(--paper);
  overflow: hidden;
}

.enso {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-58%, -50%);
  width: min(760px, 90vw);
  color: var(--moss);
  opacity: 0.05;
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.philosophy-vertical {
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: 0.32em;
  line-height: 2.1;
  color: var(--moss);
  padding-top: 10px;
}

.philosophy-copy { max-width: 480px; }

.philosophy-copy p {
  font-size: 0.97rem;
  color: rgba(15, 23, 16, 0.8);
  margin-bottom: 26px;
}

.philosophy-copy p:first-child {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.philosophy-values {
  margin-top: 38px;
  border-top: 1px solid rgba(46, 74, 51, 0.22);
}

.philosophy-values li {
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid rgba(46, 74, 51, 0.22);
  font-size: 0.88rem;
  color: rgba(15, 23, 16, 0.75);
  position: relative;
}

.philosophy-values li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.philosophy-photos {
  position: relative;
  width: clamp(220px, 26vw, 330px);
  align-self: center;
}

.philosophy-photos figure {
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 16, 0.18);
}

.philosophy-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.philosophy-photos figure:hover img { transform: scale(1.06); }

.photo-a { aspect-ratio: 3 / 4; }

.photo-a img { filter: hue-rotate(18deg) saturate(1.25) brightness(0.88); }

.photo-b {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  right: -18%;
  bottom: -14%;
  border: 6px solid var(--paper);
}

/* ---------- 02 Origins ---------- */
.origins {
  background: var(--pine);
  color: var(--cream);
  padding: clamp(110px, 16vw, 190px) 0;
  overflow: hidden;
}

.origins-bg { position: absolute; inset: 0; }

.origins-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.origins-bg img.active { opacity: 0.22; }

.origins .container { position: relative; z-index: 3; }

.origin-list { border-top: 1px solid rgba(251, 248, 240, 0.16); }

.origin-list li {
  display: grid;
  grid-template-columns: 64px minmax(150px, 240px) 1fr auto;
  align-items: baseline;
  gap: clamp(14px, 3vw, 40px);
  padding: 26px 8px;
  border-bottom: 1px solid rgba(251, 248, 240, 0.16);
  cursor: default;
  transition: background 0.4s ease, padding-left 0.4s var(--ease);
}

.origin-list li:hover {
  background: rgba(251, 248, 240, 0.04);
  padding-left: 22px;
}

.o-num {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}

.o-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.14em;
}

.o-name small {
  font-size: 0.62em;
  color: rgba(251, 248, 240, 0.55);
  margin-left: 10px;
  letter-spacing: 0.1em;
}

.o-roma {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  color: rgba(251, 248, 240, 0.4);
}

.o-note {
  font-size: 0.84rem;
  color: rgba(251, 248, 240, 0.72);
  text-align: right;
}

/* ---------- 03 Lineup ---------- */
.lineup {
  background:
    radial-gradient(1100px 520px at 112% -6%, rgba(147, 172, 131, 0.22), transparent 62%),
    radial-gradient(900px 520px at -12% 108%, rgba(184, 148, 77, 0.12), transparent 60%),
    var(--paper);
  padding: clamp(110px, 16vw, 190px) 0;
}

.lineup::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: url('assets/matcha-powder.jpg') right center / cover no-repeat;
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(to left, #000 25%, transparent 95%);
  mask-image: linear-gradient(to left, #000 25%, transparent 95%);
  pointer-events: none;
}

.lineup .container { position: relative; z-index: 1; }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3.5vw, 44px);
}

.lineup-card {
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(15, 23, 16, 0.08);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.lineup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 64px rgba(15, 23, 16, 0.14);
}

.lineup-card:nth-child(2) { transition-delay: 0.08s; }
.lineup-card:nth-child(3) { transition-delay: 0.16s; }
.lineup-card:hover, .lineup-card:hover * { transition-delay: 0s; }

.lineup-card figure {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.lineup-card figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}

.lineup-card:hover figure img { transform: scale(1.07); }

.lineup-body { padding: 34px 32px 40px; }

.lineup-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  color: var(--gold);
  border: 1px solid rgba(184, 148, 77, 0.5);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lineup-body h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--ink);
}

.gold-rule {
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

.lineup-body p {
  font-size: 0.88rem;
  color: rgba(15, 23, 16, 0.7);
}

.lineup-note {
  margin-top: clamp(44px, 6vw, 64px);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(15, 23, 16, 0.6);
  letter-spacing: 0.08em;
}

/* ---------- Catalog ---------- */
.catalog-certline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.ccl-chip {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  border: 1px solid rgba(184, 148, 77, 0.45);
  border-radius: 999px;
  padding: 6px 16px;
}

.catalog-certline small {
  flex-basis: 100%;
  font-size: 0.74rem;
  color: rgba(15, 23, 16, 0.5);
  letter-spacing: 0.04em;
}

.catalog-group { margin-bottom: clamp(52px, 7vw, 76px); }
.catalog-group:last-child { margin-bottom: 0; }

.catalog-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 16, 0.35);
  margin-bottom: 4px;
}

.catalog-head h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: 0.14em;
  color: var(--ink);
}

.catalog-head p {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.catalog-head p span {
  display: inline-block;
  margin-left: 18px;
  letter-spacing: 0.1em;
  color: rgba(15, 23, 16, 0.5);
}

.catalog-item {
  display: grid;
  grid-template-columns: 72px minmax(240px, 340px) 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 22px 8px;
  border-bottom: 1px solid rgba(15, 23, 16, 0.12);
  transition: background 0.4s ease, padding-left 0.4s var(--ease);
}

.catalog-item:hover {
  background: rgba(46, 74, 51, 0.05);
  padding-left: 20px;
}

.swatch {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-image:
    radial-gradient(circle at 34% 28%, var(--c1), var(--c2) 76%),
    url('assets/matcha-powder.jpg');
  background-size: cover, 190%;
  background-position: center, 28% 38%;
  background-blend-mode: overlay, normal;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.22),
    inset 0 -5px 12px rgba(0, 0, 0, 0.3),
    0 0 0 5px var(--cream),
    0 0 0 7px var(--ring, rgba(15, 23, 16, 0.16)),
    0 10px 20px rgba(15, 23, 16, 0.16);
}

.grade-gold { --ring: #c9a24b; }
.grade-silver { --ring: #aab3ba; }
.grade-bronze { --ring: #a26d42; }

.grade-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: -18px 0 clamp(40px, 6vw, 60px);
  font-size: 0.8rem;
  color: rgba(15, 23, 16, 0.7);
}

.lg-item { display: inline-flex; align-items: center; gap: 8px; }

.lg-dot {
  display: inline-block;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--paper);
}

.lg-gold { box-shadow: 0 0 0 2.5px #c9a24b; }
.lg-silver { box-shadow: 0 0 0 2.5px #aab3ba; }
.lg-bronze { box-shadow: 0 0 0 2.5px #a26d42; }

.grade-legend small {
  font-size: 0.72rem;
  color: rgba(15, 23, 16, 0.45);
  letter-spacing: 0.04em;
}

.ci-main h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.6;
}

.ci-use {
  display: inline-block;
  vertical-align: 2px;
  margin-left: 10px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--moss);
  border: 1px solid rgba(46, 74, 51, 0.4);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
}

.ci-en {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 16, 0.45);
  margin-top: 2px;
}

.ci-taste {
  font-size: 0.88rem;
  color: rgba(15, 23, 16, 0.7);
}

@media (max-width: 760px) {
  .catalog-item {
    grid-template-columns: 72px 1fr;
    row-gap: 8px;
  }
  .ci-taste { grid-column: 2; }
  .lineup::before { width: 100%; opacity: 0.05; }
}

/* ---------- Photo strip ---------- */
.strip { overflow: hidden; background: var(--pine); }

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.strip-track img {
  width: clamp(200px, 24vw, 300px);
  height: clamp(150px, 18vw, 220px);
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(0.9);
}

/* ---------- 04 Certifications ---------- */
.certs {
  background: var(--paper);
  padding: clamp(100px, 14vw, 160px) 0;
  text-align: left;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 52px);
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 104px;
  text-align: center;
}

.cert-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(46, 74, 51, 0.3);
  color: var(--moss);
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.4s var(--ease);
}

.cert-item:hover .cert-ring {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
}

.cert-ring svg { width: 38px; height: 38px; }

.cert-name {
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 16, 0.75);
}

/* ---------- Retail ---------- */
.retail {
  background: var(--paper);
  padding: 0 0 clamp(100px, 14vw, 160px);
}

.retail-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px);
  border: 1px solid rgba(184, 148, 77, 0.5);
  background: linear-gradient(120deg, rgba(184, 148, 77, 0.07), transparent 55%), var(--cream);
}

.retail-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}

.retail-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 12px;
}

.retail-copy p { font-size: 0.92rem; color: rgba(15, 23, 16, 0.7); }

.retail-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.retail-btn {
  border-color: var(--gold);
  color: var(--gold);
  text-align: center;
}

.retail-btn::before { background: var(--gold); }
.retail-btn:hover { color: var(--cream); }

.retail-cta small {
  font-size: 0.74rem;
  line-height: 1.7;
  color: rgba(15, 23, 16, 0.5);
}

/* ---------- 05 Contact ---------- */
.contact {
  position: relative;
  color: var(--cream);
  padding: clamp(110px, 16vw, 190px) 0;
  overflow: hidden;
}

.contact-media { position: absolute; inset: 0; }

.contact-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.contact-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 13, 0.86);
}

.contact-inner { position: relative; z-index: 3; max-width: 720px; }

.contact-form { display: flex; flex-direction: column; gap: 34px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--sage);
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 248, 240, 0.3);
  padding: 10px 2px 14px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  resize: vertical;
  transition: border-color 0.4s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(251, 248, 240, 0.28); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-soft);
}

.form-status {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
}

.contact-form .btn-solid { align-self: flex-start; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(251, 248, 240, 0.65);
  padding: clamp(70px, 9vw, 110px) 0 46px;
  overflow: hidden;
}

.footer-ghost {
  position: absolute;
  bottom: -0.24em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 20vw, 15rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(251, 248, 240, 0.07);
  pointer-events: none;
  white-space: nowrap;
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.footer-brand .logo-text { font-size: 1.05rem; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.footer-nav a { transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--gold-soft); }

.footer-copy { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(251, 248, 240, 0.4); text-align: center; }

.footer-sep { margin: 0 6px; opacity: 0.6; }

/* ---------- Hero note ---------- */
.hero-note {
  margin-top: 26px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(251, 248, 240, 0.65);
  animation: fadeIn 1.4s ease 1.75s backwards;
}

/* ---------- Why us ---------- */
.whyus {
  background: var(--pine);
  color: var(--cream);
  padding: clamp(110px, 16vw, 190px) 0;
  overflow: hidden;
}

.whyus .container { position: relative; z-index: 3; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.why-item {
  border-top: 1px solid rgba(251, 248, 240, 0.18);
  padding-top: 22px;
}

.why-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.88rem;
  color: rgba(251, 248, 240, 0.7);
}

.why-cta {
  margin-top: clamp(48px, 7vw, 76px);
  text-align: center;
}

.why-cta p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  color: var(--cream);
}

/* ---------- Contact select ---------- */
.contact-form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 248, 240, 0.3);
  padding: 10px 2px 14px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.4s ease;
}

.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--gold-soft);
}

.contact-form select option { color: var(--ink); background: var(--cream); }

/* ---------- Floating contact ---------- */
.fab-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.3s ease;
}

.fab-contact.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.fab-contact:hover { background: var(--gold-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .philosophy-grid { grid-template-columns: auto 1fr; }
  .philosophy-photos {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 56px;
    width: min(340px, 74vw);
  }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-vertical { display: none; }
  .origin-list li {
    grid-template-columns: 44px 1fr;
    row-gap: 6px;
  }
  .o-roma { display: none; }
  .o-note { grid-column: 2; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-vertical {
    writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
    padding-top: 0;
  }
  .philosophy-vertical br { display: none; }
}

@media (max-width: 860px) {
  .photo-b { right: -4%; border-width: 4px; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; }
}

/* ---------- Superfood ---------- */
.superfood { margin-top: clamp(80px, 11vw, 130px); }

.sf-head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.sf-head h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
}

.sf-head p {
  font-size: 0.92rem;
  color: rgba(15, 23, 16, 0.7);
}

.sf-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  max-width: 880px;
  margin: 0 auto;
}

.sf-card {
  background: var(--cream);
  border: 1px solid rgba(46, 74, 51, 0.14);
  border-radius: 18px;
  padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 16px 36px rgba(15, 23, 16, 0.07);
}

.sf-pill {
  display: block;
  width: fit-content;
  margin: 0 auto 18px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--moss);
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.5);
  border-radius: 999px;
  padding: 6px 26px;
}

.sf-card ul { list-style: none; margin: 0; padding: 0; }

.sf-card li {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(15, 23, 16, 0.8);
  padding: 11px 6px;
  border-bottom: 1px solid rgba(46, 74, 51, 0.12);
}

.sf-card li:last-child { border-bottom: none; }

.sf-card li small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 16, 0.5);
  margin-top: 2px;
}

.sf-leaf {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(184, 148, 77, 0.45);
  box-shadow: 0 10px 24px rgba(15, 23, 16, 0.12);
  color: var(--leaf);
}

.sf-leaf svg { width: 34px; height: 34px; }

@media (max-width: 700px) {
  .sf-cards { grid-template-columns: 1fr; }
  .sf-leaf { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
  .hero-line span { transform: none; }
  .marquee-track, .strip-track { animation: none; }
}
