/* ============================================================================
   KAZANOVA — B2B STANDALONE PAGE · Old Money palette
   ============================================================================ */

/* @import MUST come before @font-face per CSS spec — otherwise browser ignores it */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&family=Noto+Serif+SC:wght@300..700&display=swap');

/* ============ FONTS — WOFF2 (38% smaller than OTF), OTF kept as fallback ============ */
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Light.woff2') format('woff2'),   url('./fonts/LEMONMILK-Light.otf') format('opentype');   font-weight: 300; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Regular.woff2') format('woff2'), url('./fonts/LEMONMILK-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Medium.woff2') format('woff2'),  url('./fonts/LEMONMILK-Medium.otf') format('opentype');  font-weight: 500; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Bold.woff2') format('woff2'),    url('./fonts/LEMONMILK-Bold.otf') format('opentype');    font-weight: 700; font-display: swap; }

/* ============ A11Y — skip-link + focus indicator (EAA / WCAG 2.4.1, 2.4.7) ============ */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  background: #C8A951;
  color: #07050A;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #F5D78E;
  outline-offset: 2px;
}
*:focus-visible {
  outline: 2px solid #C8A951;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============ TOKENS ============ */
:root {
  --cream:       #F4EDE0;
  --cream-soft:  #FAF6EC;
  --cream-deep:  #EBE4D2;
  --parchment:   #E6DCC3;

  --ink:         #231C13;
  --ink-soft:    #4A3E2D;
  --ink-faint:   #857864;
  --hairline:    #C9BEA4;
  --hairline-sub:#D8CEB4;

  --gold:        #C8A951;
  --gold-light:  #F5D78E;
  --gold-dark:   #8B6914;
  --gold-deep:   #6A5014;

  --forest:      #2D4739;
  --burgundy:    #6B2C2C;

  --f-display:   'LEMONMILK', 'Inter', sans-serif;
  --f-serif:     'Fraunces', 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --f-classic:   'Cormorant Garamond', 'Fraunces', 'Noto Serif SC', Georgia, serif;
  --f-body:      'Inter', 'Noto Serif SC', system-ui, sans-serif;
  --f-mono:      'JetBrains Mono', monospace;

  --wrap:        1200px;
  --wrap-narrow: 980px;
  --pad-x:       clamp(24px, 5vw, 80px);
}

html[lang="zh"] { --f-classic: 'Noto Serif SC', 'Fraunces', Georgia, serif; --f-serif: 'Noto Serif SC', 'Fraunces', Georgia, serif; }

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;  /* clips horizontal overflow WITHOUT creating scroll context (preserves position:sticky) */
}
body {
  background-image:
    radial-gradient(ellipse at 20% 0%,  rgba(200,169,81,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 95%, rgba(200,169,81,0.05), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; background: transparent; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-light); color: var(--ink); }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.section-title, .hero-title, .callout-title, .cta-title {
  font-family: var(--f-classic);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.section-title span,
.hero-title .t-large,
.callout-title span,
.cta-title span {
  display: block;
  font-weight: 300;
}
.section-title em,
.hero-title .t-italic,
.callout-title em,
.cta-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  font-family: var(--f-classic);
  letter-spacing: -0.02em;
  margin-top: -0.08em;
}

.num-roman {
  font-family: var(--f-classic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(54px, 6vw, 96px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  opacity: 0.55;
  display: block;
}

/* ============ TOPBAR ============ */
#topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px clamp(20px, 4vw, 48px);
  gap: 24px;
  background: linear-gradient(to bottom, rgba(244,237,224,0.95), rgba(244,237,224,0.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
#topbar .back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color 0.2s ease;
  justify-self: start;
}
#topbar .back-home:hover { color: var(--gold-dark); }
#topbar .back-home svg { transition: transform 0.3s ease; }
#topbar .back-home:hover svg { transform: translateX(-3px); }

#topbar .logo { display: flex; gap: 12px; align-items: center; justify-self: center; }
#topbar .logo img { border-radius: 50%; }
#topbar .logo-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
#topbar .logo-name { font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: 3px; color: var(--ink); }
#topbar .logo-sub { font-family: var(--f-mono); font-size: 9px; letter-spacing: 2.5px; color: var(--ink-faint); }

#topbar .utils { justify-self: end; display: flex; align-items: center; }
#topbar .langs {
  display: flex;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink-faint);
  flex-wrap: wrap;
}
#topbar .langs .lang { cursor: pointer; transition: color 0.2s ease; padding: 2px 4px; }
#topbar .langs .lang:hover { color: var(--gold-dark); }
#topbar .langs .lang.active { color: var(--ink); border-bottom: 1px solid var(--gold); }

/* ============ HERO ============ */
.hero {
  text-align: center;
  padding: clamp(70px, 12vh, 140px) var(--pad-x) clamp(60px, 9vh, 110px);
  position: relative;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--hairline), transparent);
  left: 15%; right: 15%;
}
.hero::before { top: 0; }
.hero::after { bottom: 0; }

.hero-inner { max-width: 1020px; margin: 0 auto; }
.hero-ornament {
  font-family: var(--f-classic);
  color: var(--gold);
  letter-spacing: 8px;
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.75;
}
.hero .eyebrow { margin-bottom: 24px; }

.hero-title { font-size: clamp(40px, 6.2vw, 92px); margin-bottom: 32px; }
.hero-title .t-large { font-weight: 300; }
.hero-title .t-italic { font-style: italic; font-size: 0.95em; color: var(--gold-dark); margin-top: -0.12em; }

.hero-rule { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 24px 0 32px; }
.hero-rule span { flex: 0 0 90px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.hero-rule i { color: var(--gold); font-style: normal; font-size: 12px; }

.hero-lead {
  max-width: 740px;
  margin: 0 auto 40px;
  font-family: var(--f-classic);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto 40px;
  max-width: 1100px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.hbadge {
  padding: 22px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--hairline-sub);
  text-align: center;
}
.hbadge:first-child { border-left: 0; }
.hb-k { font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--ink-faint); }
.hb-v { font-family: var(--f-classic); font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: 0; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  max-width: 820px;
  margin: 0 auto;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.hero-meta .meta-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: 3px; color: var(--ink-faint); }
.hero-meta .meta-value { font-family: var(--f-display); font-weight: 500; font-size: 12px; letter-spacing: 2px; color: var(--ink); }

/* ============ SECTION FRAME ============ */
.section { padding: clamp(80px, 12vh, 140px) var(--pad-x); position: relative; }
.section-wrap { max-width: var(--wrap); margin: 0 auto; }
.section.capacity { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 60%, var(--cream) 100%); }
.section.services { background: var(--cream-soft); border-top: 1px solid var(--hairline-sub); border-bottom: 1px solid var(--hairline-sub); }
.section.strategy { background: var(--cream-deep); }
.section.roots    { background: var(--cream-soft); }
.section.process  { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%); }
.section.logistics{ background: var(--cream-deep); }
.section.faq      { background: var(--cream-soft); }

/* ============ GROWTH / TREE ============ */
.growth-head { max-width: 780px; margin: 0 auto 72px; text-align: center; }
.growth-head .num-roman { margin: 0 auto 12px; display: block; }
.growth-head .eyebrow { margin-bottom: 18px; }
.growth-head .section-title { font-size: clamp(40px, 5vw, 76px); margin-bottom: 28px; }
.section-lead {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.growth-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.growth-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 480px;
  max-height: 700px;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(200,169,81,0.12), transparent 65%),
    radial-gradient(ellipse at 50% 0%,  rgba(245,215,142,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--parchment) 100%);
  border-radius: 4px;
}
.growth-stage::before, .growth-stage::after { content: ''; position: absolute; pointer-events: none; border: 1px solid var(--hairline); }
.growth-stage::before { inset: 0; border-radius: 4px; }
.growth-stage::after  { inset: 10px; border-color: var(--hairline-sub); border-radius: 2px; }
.stage-frame { position: absolute; inset: 20px; pointer-events: none; z-index: 3; }
.stage-frame::before, .stage-frame::after { content: ''; position: absolute; width: 22px; height: 22px; border-color: var(--gold); border-style: solid; }
.stage-frame::before { top: 0; left: 0; border-width: 1px 0 0 1px; }
.stage-frame::after  { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

#b2b-tree {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: block;
  z-index: 2;
}

.growth-info { display: flex; flex-direction: column; gap: 20px; padding: 12px 0; }
.growth-year { font-family: var(--f-classic); font-weight: 300; font-size: clamp(72px, 9vw, 140px); line-height: 0.95; color: var(--ink); letter-spacing: -0.02em; transition: color 0.5s ease; }
.growth-year.forecast { color: var(--gold-dark); font-style: italic; }
.growth-caption { font-family: var(--f-classic); font-style: italic; font-size: clamp(20px, 2vw, 28px); color: var(--ink-soft); line-height: 1.4; min-height: 2.6em; }
.growth-revenue { padding: 20px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); display: flex; flex-direction: column; gap: 8px; max-width: 320px; }
.grev-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 4px; color: var(--ink-faint); }
.grev-value { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 3vw, 46px); color: var(--gold-dark); line-height: 1; }
.growth-multiplier { font-family: var(--f-classic); font-style: italic; font-size: 16px; color: var(--gold-dark); }

.b2b-timeline { display: flex; gap: 18px; justify-content: center; align-items: center; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.gyr-dot { background: none; border: 0; padding: 6px 4px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform 0.3s ease; }
.gyr-dot:hover { transform: translateY(-2px); }
.gyr-pt { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--hairline); background: transparent; transition: all 0.3s ease; }
.gyr-ylabel { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.8px; color: var(--ink-faint); transition: color 0.3s ease; }
.gyr-dot.active .gyr-pt { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.15); }
.gyr-dot.current .gyr-pt { transform: scale(1.45); }
.gyr-dot.active .gyr-ylabel { color: var(--ink); }
.gyr-dot:hover .gyr-pt { border-color: var(--gold); }

/* ============ CAPACITY ============ */
.capacity-head { text-align: center; margin-bottom: 72px; }
.capacity-head .num-roman { margin: 0 auto 12px; }
.capacity-head .eyebrow { margin-bottom: 16px; }
.capacity-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }
.capacity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.cap-cell { padding: 52px 24px 46px; text-align: center; border-left: 1px solid var(--hairline-sub); position: relative; }
.cap-cell:first-child { border-left: 0; }
.cap-num { font-family: var(--f-classic); font-weight: 300; font-size: clamp(56px, 6.5vw, 100px); line-height: 1; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.cap-num .cap-plus { color: var(--gold); font-size: 0.6em; font-weight: 400; vertical-align: super; margin-left: 2px; }
.cap-unit { font-family: var(--f-classic); font-style: italic; color: var(--gold-dark); font-size: 15px; margin-bottom: 10px; letter-spacing: 0.02em; }
.cap-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 2.5px; color: var(--ink-faint); text-transform: uppercase; }
.capacity-foot {
  max-width: 820px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--f-classic);
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-style: italic;
}

/* ============ ROOTS (OWN RAW MATERIALS) ============ */
.roots-head { max-width: 780px; margin: 0 auto 72px; text-align: center; }
.roots-head .num-roman { margin: 0 auto 12px; }
.roots-head .eyebrow { margin-bottom: 16px; }
.roots-head .section-title { font-size: clamp(36px, 4.6vw, 68px); margin-bottom: 28px; }

.roots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.root-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 36px 28px 32px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.2,0.7,0.2,1);
}
.root-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(107,80,20,0.18); }
.root-ico { width: 44px; height: 44px; color: var(--gold-dark); margin-bottom: 20px; }
.root-ico svg { width: 100%; height: 100%; }
.root-card h3 { font-family: var(--f-classic); font-weight: 500; font-size: 20px; color: var(--ink); margin-bottom: 10px; line-height: 1.2; }
.root-num {
  font-family: var(--f-classic);
  font-weight: 300;
  font-size: 36px;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.root-num span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--ink-faint);
  font-weight: 400;
  margin-left: 4px;
  text-transform: uppercase;
}
.root-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.65; }

.roots-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px 20px;
  border-top: 1px solid var(--hairline);
}
.roots-quote p {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--ink);
  line-height: 1.3;
  font-weight: 400;
}
.roots-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
}

/* ============ PILLARS ============ */
.pillars-head { text-align: center; margin-bottom: 72px; }
.pillars-head .num-roman { margin: 0 auto 12px; }
.pillars-head .eyebrow { margin-bottom: 16px; }
.pillars-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.pillar {
  padding: 40px 28px 36px;
  border-left: 1px solid var(--hairline-sub);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
  transition-delay: calc(var(--d, 0) * 0.1s);
}
.pillar:first-child { border-left: 0; }
.pillar.revealed { opacity: 1; transform: translateY(0); }
.pillar-num { font-family: var(--f-classic); font-style: italic; font-weight: 300; font-size: 44px; color: var(--gold); line-height: 1; margin-bottom: 24px; opacity: 0.6; }
.pillar h3 { font-family: var(--f-classic); font-weight: 500; font-size: 22px; line-height: 1.2; color: var(--ink); margin-bottom: 14px; }
.pillar p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

/* ============ SERVICES ============ */
.services-head { text-align: center; margin-bottom: 72px; }
.services-head .num-roman { margin: 0 auto 12px; }
.services-head .eyebrow { margin-bottom: 16px; }
.services-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.services-grid.four-up { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-top: 3px double var(--gold);
  padding: 40px 28px 32px;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s ease, box-shadow 0.4s ease;
  transition-delay: calc(var(--d, 0) * 0.12s);
}
.service.revealed { opacity: 1; transform: translateY(0); }
.service:hover { box-shadow: 0 20px 40px -22px rgba(107,80,20,0.18); border-color: var(--gold); }
.service.featured { background: linear-gradient(180deg, #FEF9EB 0%, var(--cream) 100%); border-top-color: var(--gold-dark); }
.service-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: var(--cream-soft);
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-head { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline-sub); }
.service-ordinal { font-family: var(--f-classic); font-style: italic; font-size: 13px; letter-spacing: 1.5px; color: var(--gold-dark); margin-bottom: 6px; text-transform: uppercase; }
.service h3 { font-family: var(--f-classic); font-weight: 500; font-size: 24px; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }
.service p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--hairline-sub); padding-top: 14px; }
.service li { font-family: var(--f-classic); font-size: 14px; color: var(--ink); padding-left: 20px; position: relative; line-height: 1.5; }
.service li::before { content: '◆'; position: absolute; left: 0; top: 3px; color: var(--gold); font-size: 9px; }

.services-foot {
  max-width: 860px;
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding-top: 36px;
  border-top: 1px solid var(--hairline);
}
.services-foot strong { color: var(--ink); font-weight: 500; }

/* ============ CATALOGUE ============ */
.catalogue-head { text-align: center; margin-bottom: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.catalogue-head .num-roman { margin: 0 auto 12px; }
.catalogue-head .eyebrow { margin-bottom: 16px; }
.catalogue-head .section-title { font-size: clamp(36px, 4.6vw, 68px); margin-bottom: 28px; }

.cat-group { margin-bottom: 48px; }
.cat-group-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.cat-tier {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  background: var(--cream-soft);
}
.cat-group-head h3 {
  font-family: var(--f-classic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.cat-item {
  background: var(--cream-soft);
  border: 1px solid var(--hairline-sub);
  padding: 20px 22px 18px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.cat-item:hover { border-color: var(--gold); background: var(--cream); }

/* ===== Cards WITH photo (premium showcase) ===== */
.cat-item.has-photo {
  padding: 0;
  background: linear-gradient(180deg, #FAF4E6 0%, #F2E9D4 100%);
  border-top: 1px solid rgba(200, 169, 81, 0.55);
  overflow: hidden;
  grid-column: span 1;
}
.cat-item.has-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -30px rgba(107, 80, 20, 0.28), 0 4px 12px rgba(107, 80, 20, 0.08);
  border-color: var(--gold);
}
.cat-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 95%, rgba(200,169,81,0.18), transparent 70%),
    linear-gradient(180deg, #FAF4E6 0%, #EFE5CD 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cat-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 20px 40px -20px rgba(250, 244, 230, 0.9);
}
.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: block;
}
.cat-item.has-photo:hover .cat-photo img { transform: scale(1.035); }
.cat-body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--hairline-sub);
  background: var(--cream-soft);
}
.cat-item.has-photo .cat-abv {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--hairline-sub);
}
.cat-item.new::after {
  content: 'NEW';
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  padding: 3px 7px;
  border: 1px solid var(--gold-dark);
  border-radius: 3px;
}
.cat-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 4px;
}
.cat-kind {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.cat-abv {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  padding-top: 8px;
  border-top: 1px solid var(--hairline-sub);
}

/* ============ 4-STEP PROCESS ============ */
.process-head { text-align: center; margin-bottom: 72px; max-width: 780px; margin-left: auto; margin-right: auto; }
.process-head .num-roman { margin: 0 auto 12px; }
.process-head .eyebrow { margin-bottom: 16px; }
.process-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }

.proc-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  counter-reset: step;
}
.proc-step {
  padding: 44px 28px 40px;
  border-left: 1px solid var(--hairline-sub);
  position: relative;
}
.proc-step:first-child { border-left: 0; }
.proc-step::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--cream);
  border-top: 1px solid var(--hairline-sub);
  border-right: 1px solid var(--hairline-sub);
  transform-origin: center;
  transform: translateY(-50%) rotate(45deg);
}
.proc-step:last-child::before { display: none; }

.ps-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}
.ps-num {
  font-family: var(--f-classic);
  font-style: italic;
  font-weight: 300;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.ps-time {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--hairline);
  background: var(--cream-soft);
  white-space: nowrap;
}
.proc-step h3 { font-family: var(--f-classic); font-weight: 500; font-size: 20px; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.proc-step p { color: var(--ink-soft); font-size: 14px; line-height: 1.7; }

/* ============ LOGISTICS ============ */
.log-head { text-align: center; margin-bottom: 72px; }
.log-head .num-roman { margin: 0 auto 12px; }
.log-head .eyebrow { margin-bottom: 16px; }
.log-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }

.log-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.log-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  padding: 28px 28px 26px;
  position: relative;
  transition: box-shadow 0.35s ease;
}
.log-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
}
.log-card:hover { box-shadow: 0 20px 40px -24px rgba(107,80,20,0.18); }
.lc-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 3px; color: var(--ink-faint); margin-bottom: 10px; text-transform: uppercase; }
.lc-value {
  font-family: var(--f-classic);
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.log-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.7; }

/* ============ STRATEGY CALLOUT ============ */
.callout {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  border: 1px solid var(--hairline);
  border-top: 3px double var(--gold);
  border-bottom: 3px double var(--gold);
  background: var(--cream-soft);
  position: relative;
}
.callout-ornament { font-family: var(--f-classic); font-style: italic; font-size: 13px; letter-spacing: 4px; color: var(--gold-dark); margin-bottom: 16px; text-transform: uppercase; }
.callout .eyebrow { margin-bottom: 14px; }
.callout-title { font-size: clamp(28px, 3.8vw, 52px); margin-bottom: 22px; }
.callout-lead { font-family: var(--f-classic); font-style: italic; font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-soft); line-height: 1.6; max-width: 640px; margin: 0 auto 28px; }
.callout-lead strong { color: var(--ink); font-weight: 500; font-style: normal; font-family: var(--f-display); letter-spacing: 1px; font-size: 0.92em; }
.callout-sep { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 24px 0; }
.callout-sep span { flex: 0 0 60px; height: 1px; background: var(--hairline); }
.callout-sep i { color: var(--gold); font-style: normal; font-size: 10px; }
.callout-tag { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 3px; color: var(--ink-faint); text-transform: uppercase; }

/* ============ FAQ ============ */
.faq-head { text-align: center; margin-bottom: 56px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-head .num-roman { margin: 0 auto 12px; }
.faq-head .eyebrow { margin-bottom: 16px; }
.faq-head .section-title { font-size: clamp(36px, 4.6vw, 68px); }

.faq-list {
  list-style: none;
  padding: 0;
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--f-classic);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-chev {
  font-style: normal;
  font-family: var(--f-classic);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold-dark);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chev { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 0 24px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  max-width: 780px;
}
.faq-a a { color: var(--gold-dark); border-bottom: 1px solid var(--hairline); transition: color 0.2s ease; }
.faq-a a:hover { color: var(--ink); border-bottom-color: var(--gold-dark); }

/* ============ CTA ============ */
.cta-card {
  max-width: 940px;
  margin: 0 auto;
  padding: 64px 48px;
  text-align: center;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  box-shadow: 0 32px 60px -36px rgba(107,80,20,0.15);
  position: relative;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 3px;
  border-top: 3px double var(--gold);
}
.cta-card .num-roman { margin: 0 auto 12px; display: block; }
.cta-card .eyebrow { margin-bottom: 16px; }
.cta-title { font-size: clamp(32px, 4.4vw, 64px); margin-bottom: 22px; }
.cta-lead { font-family: var(--f-classic); font-style: italic; font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); line-height: 1.6; max-width: 580px; margin: 0 auto 42px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.2,0.7,0.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream-soft); }

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

.cta-contacts { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid var(--hairline); }
.cc-cell { display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 0 28px; }
.cc-sep { width: 1px; align-self: stretch; background: var(--hairline-sub); }
.cc-label { font-family: var(--f-mono); font-size: 9.5px; letter-spacing: 3px; color: var(--ink-faint); }
.cc-value { font-family: var(--f-classic); font-size: 17px; color: var(--ink); font-weight: 500; letter-spacing: 0.5px; transition: color 0.3s ease; }
a.cc-value:hover { color: var(--gold-dark); }

/* ============ FOOTER ============ */
.site-footer { padding: 60px var(--pad-x) 40px; border-top: 1px solid var(--hairline); background: var(--cream-deep); }
.footer-wrap { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { border-radius: 50%; }
.footer-brandtext { display: flex; flex-direction: column; gap: 2px; }
.footer-brandtext > div { font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: 3px; color: var(--ink); line-height: 1; }
.footer-brandtext em { font-family: var(--f-classic); font-style: italic; font-weight: 400; font-size: 15px; color: var(--gold-dark); }
.footer-meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 1.5px; color: var(--ink-faint); line-height: 1.9; text-align: center; }
.footer-meta > div + div { margin-top: 4px; }
.footer-back { font-family: var(--f-mono); font-size: 11px; letter-spacing: 2.2px; color: var(--ink-soft); text-transform: uppercase; transition: color 0.3s ease; white-space: nowrap; }
.footer-back:hover { color: var(--gold-dark); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .services-grid.four-up { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); }
  .proc-step { border-bottom: 1px solid var(--hairline-sub); }
  .proc-step:nth-child(even) { border-left: 0; }
  .proc-step::before { display: none; }
}
@media (max-width: 1024px) {
  .growth-layout { grid-template-columns: 1fr; }
  .growth-stage { aspect-ratio: auto; height: 480px; }
  .capacity-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-cell:nth-child(3), .cap-cell:nth-child(4) { border-top: 1px solid var(--hairline-sub); }
  .cap-cell:nth-child(3) { border-left: 0; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(3) { border-left: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service.featured { order: -1; }
  .roots-grid { grid-template-columns: repeat(2, 1fr); }
  .log-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .hbadge:nth-child(3) { border-left: 0; border-top: 1px solid var(--hairline-sub); }
  .hbadge:nth-child(4) { border-top: 1px solid var(--hairline-sub); }
  .footer-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 640px) {
  .capacity-grid { grid-template-columns: 1fr; }
  .cap-cell { border-left: 0; border-top: 1px solid var(--hairline-sub); padding: 34px 16px; }
  .cap-cell:first-child { border-top: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-left: 0; }
  .roots-grid { grid-template-columns: 1fr; }
  .log-grid { grid-template-columns: 1fr; }
  .hero-badges { grid-template-columns: 1fr; }
  .hbadge { border-left: 0; border-top: 1px solid var(--hairline-sub); }
  .hbadge:first-child { border-top: 0; }
  .proc-steps { grid-template-columns: 1fr; }
  .proc-step { border-left: 0; border-top: 1px solid var(--hairline-sub); }
  .proc-step:first-child { border-top: 0; }
  #topbar { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 16px; }
  #topbar .back-home span { display: none; }
  #topbar .utils { display: none; }
  .cc-cell { padding: 0 16px; }
  .cc-sep { display: none; }
  .cta-contacts { gap: 18px; flex-direction: column; }
  .cat-group-head { flex-wrap: wrap; }
  .faq-q { font-size: 17px; }
}

/* ============================================================================
   ENHANCEMENTS — Wave 1 + 2 (scroll bar, back-to-top, jump-nav, lightbox,
   live ticker, drop caps, hero reveal, tasting notes, ornamental dividers)
   ============================================================================ */

/* -------- Scroll progress bar -------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 95;
  background: rgba(201, 190, 164, 0.25);
  pointer-events: none;
}
#scroll-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.12s linear;
  box-shadow: 0 0 8px rgba(200, 169, 81, 0.55);
}

/* -------- Back-to-top button -------- */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px -10px rgba(107,80,20,0.25), 0 2px 8px rgba(107,80,20,0.1);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.2,0.7,0.2,1), visibility 0.35s, background 0.3s;
  z-index: 60;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--ink); color: var(--cream-soft); }

/* -------- Jump nav (right-side I-X) -------- */
.jump-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0;
  width: 24px;
  pointer-events: auto;
}
/* soft vertical track connecting dots */
.jump-nav::before {
  content: '';
  position: absolute;
  top: 22px; bottom: 22px;
  right: 11px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--hairline-sub) 12%,
    var(--hairline-sub) 88%,
    transparent 100%);
  pointer-events: none;
}
.jn-dot {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  cursor: pointer;
  color: var(--ink-faint);
}
.jn-bullet {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -4.5px;
  border-radius: 50%;
  border: 1px solid rgba(107, 80, 20, 0.45);
  background: var(--cream);
  transition: all 0.3s ease;
}
.jn-label {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  background: rgba(244, 237, 224, 0.95);
  padding: 4px 10px;
  border: 1px solid var(--hairline-sub);
  border-radius: 3px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.jn-dot::before {
  content: attr(data-jn);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 10px;
  color: var(--gold-dark);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.jn-dot:hover .jn-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.jn-dot:hover .jn-bullet {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}
.jn-dot.active .jn-bullet {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.25);
}
.jn-dot.active::before {
  opacity: 1;
  color: var(--gold-dark);
  font-weight: 500;
}

@media (max-width: 1280px) { .jump-nav { right: 10px; } }
@media (max-width: 960px)  { .jump-nav { display: none; } }

/* -------- Bottle lightbox -------- */
#bottle-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 1;
  transition: opacity 0.35s ease;
}
#bottle-lightbox.hidden { opacity: 0; pointer-events: none; }
.bl-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(20, 15, 8, 0.85), rgba(7, 5, 3, 0.96));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.bl-frame {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border: 1px solid rgba(200, 169, 81, 0.4);
  border-top: 3px double var(--gold);
  max-width: min(920px, 95vw);
  max-height: 92vh;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}
.bl-close, .bl-prev, .bl-next {
  position: absolute;
  border: 1px solid var(--hairline);
  background: var(--cream-soft);
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.bl-close:hover, .bl-prev:hover, .bl-next:hover {
  background: var(--ink); color: var(--cream-soft); transform: scale(1.05);
}
.bl-close { top: 12px; right: 12px; }
.bl-prev { left: -18px; top: 50%; transform: translateY(-50%); }
.bl-next { right: -18px; top: 50%; transform: translateY(-50%); }
.bl-prev:hover { transform: translateY(-50%) scale(1.05); }
.bl-next:hover { transform: translateY(-50%) scale(1.05); }
.bl-figure {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  max-height: calc(92vh - 48px);
}
.bl-image {
  max-height: calc(92vh - 140px);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--hairline-sub);
  background: var(--cream-soft);
}
.bl-caption {
  text-align: center;
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
  width: 100%;
}
.bl-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--ink);
}
.bl-meta {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dark);
  margin-top: 4px;
}
.cat-item.has-photo { cursor: zoom-in; }

/* -------- Live production ticker -------- */
.live-ticker {
  max-width: 820px;
  margin: 44px auto 0;
  padding: 28px 32px;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-top: 1px solid rgba(200,169,81,0.55);
  position: relative;
}
.live-ticker::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--gold);
}
.lt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.lt-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--ink-faint);
}
.lt-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-dark);
}
.lt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7DB870;
  box-shadow: 0 0 0 0 rgba(125, 184, 112, 0.6);
  animation: lt-pulse 1.8s ease-out infinite;
}
@keyframes lt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(125, 184, 112, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(125, 184, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 184, 112, 0); }
}
.lt-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.lt-count {
  font-family: var(--f-classic);
  font-weight: 300;
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lt-target {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-faint);
}
.lt-bar {
  height: 4px;
  background: rgba(201, 190, 164, 0.35);
  overflow: hidden;
}
.lt-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* -------- Drop caps -------- */
.has-dropcap::first-letter {
  font-family: var(--f-classic);
  font-style: italic;
  font-weight: 400;
  font-size: 4.8em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--gold-dark);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .has-dropcap::first-letter { font-size: 3.6em; padding-right: 6px; }
}

/* -------- Hero letter reveal -------- */
.hero-title .t-large .char,
.hero-title .t-italic .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-letter 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
.hero-title .t-italic .char { animation-delay: calc(var(--d, 0s) + 0.35s); }
@keyframes hero-letter {
  to { opacity: 1; transform: translateY(0); }
}

/* -------- Tasting notes (details/summary) -------- */
.cat-item .tasting {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-sub);
}
.cat-item.has-photo .tasting {
  margin-top: 14px;
  padding-top: 12px;
}
.cat-item .tasting summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.cat-item .tasting summary::-webkit-details-marker { display: none; }
.cat-item .tasting summary::after {
  content: '◆';
  font-size: 7px;
  transition: transform 0.3s;
}
.cat-item .tasting[open] summary::after { transform: rotate(45deg); }
.cat-item .tasting summary:hover { color: var(--ink); }
.cat-item .tasting dl {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-item .tasting dl > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 6px;
  border-bottom: 1px dotted var(--hairline-sub);
}
.cat-item .tasting dl > div:last-child { border-bottom: 0; }
.cat-item .tasting dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--ink-faint);
}
.cat-item .tasting dd {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* -------- Ornamental dividers (subtle SVG between sections) -------- */
.section + .section::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 420px;
  height: 22px;
  margin: -20px auto 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 22' fill='none' stroke='%23C8A951'><line x1='0' y1='11' x2='170' y2='11' stroke-width='1'/><line x1='250' y1='11' x2='420' y2='11' stroke-width='1'/><path d='M210 4 L218 11 L210 18 L202 11 Z' fill='%23C8A951' stroke='none'/><circle cx='188' cy='11' r='1.5' fill='%23C8A951'/><circle cx='232' cy='11' r='1.5' fill='%23C8A951'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.55;
  pointer-events: none;
}

/* -------- Baltic Sea carousel -------- */
.baltic-carousel {
  max-width: 720px;
  margin: 32px auto 28px;
  position: relative;
}
.bc-stage {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--cream-soft);
}
.bc-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.bc-slide.active { opacity: 1; pointer-events: auto; }
.bc-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.bc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(107,80,20,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.bc-dot:hover { border-color: var(--gold); }
.bc-dot.active { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,81,0.18); }

/* ============================================================================
   B2B INQUIRY FORM (CTA section)
   ============================================================================ */
.b2b-form {
  text-align: left;
  max-width: 760px;
  margin: 32px auto 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) { .bf-row { grid-template-columns: 1fr; } }
.bf-field { display: flex; flex-direction: column; gap: 6px; }
.bf-full { grid-column: 1 / -1; }
.bf-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.b2b-form input[type=text],
.b2b-form input[type=email],
.b2b-form input[type=tel],
.b2b-form select,
.b2b-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--f-classic);
  font-size: 15.5px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.b2b-form input:focus,
.b2b-form select:focus,
.b2b-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream-soft);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}
.b2b-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.55;
}
.bf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bf-chips label {
  cursor: pointer;
  position: relative;
}
.bf-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bf-chips span {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid var(--hairline);
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 999px;
  transition: all 0.25s;
  user-select: none;
}
.bf-chips label:hover span { border-color: var(--gold); color: var(--ink); }
.bf-chips input:checked + span {
  background: var(--ink);
  color: var(--cream-soft);
  border-color: var(--ink);
}
.bf-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.bf-status {
  margin-top: 14px;
  text-align: center;
  font-family: var(--f-classic);
  font-style: italic;
  font-size: 15px;
  min-height: 22px;
}
.bf-status.ok    { color: #3A6B4A; }
.bf-status.error { color: var(--burgundy); }
.bf-status.sending { color: var(--gold-dark); }
.b2b-form.submitting { opacity: 0.6; pointer-events: none; }

/* ===== CTA secondary links (PDF download + phone) ===== */
.cta-secondary {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-sub);
}
.cta-sec-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color 0.25s, transform 0.3s;
}
.cta-sec-link:hover { color: var(--gold-dark); transform: translateY(-1px); }
.cta-sec-link svg { stroke: currentColor; }

/* ============================================================================
   WAVE 5 — Scroll storytelling: "From orchard to pallet"
   ============================================================================ */
.section.story { padding: clamp(60px, 8vh, 100px) 0 0; background: var(--cream); }
.story-sticky { will-change: transform; }
.story .story-head {
  max-width: 780px;
  margin: 0 auto 40px;
  padding: 0 var(--pad-x);
  text-align: center;
}
.story .story-head .num-roman { display: block; margin: 0 auto 10px; }
.story .story-head .eyebrow { margin-bottom: 14px; }
.story .story-head .section-title { font-size: clamp(34px, 4.4vw, 64px); }

.story-scroller {
  position: relative;
  /* 5 steps × 50vh pinned + 100vh release = 350vh. Each step change on ~50vh scroll. */
  height: 350vh;
}
.story-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--cream-soft);
}

/* Next section starts cleanly below story with no overlap */
.section.story + .section::before { display: none; }

.story-visuals {
  position: absolute;
  inset: 0;
}
.story-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s cubic-bezier(0.3, 0.7, 0.4, 1),
              transform 8s linear;
  pointer-events: none;
}
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.03) saturate(0.9);
}
.story-visual .story-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(7,5,3,0) 0%, rgba(7,5,3,0.55) 80%),
    linear-gradient(180deg, rgba(244,237,224,0) 0%, rgba(35,28,19,0.78) 100%);
  pointer-events: none;
}
.story-visual.active {
  opacity: 1;
  transform: scale(1);  /* slow ken-burns zoom-in during active period */
}

.story-captions {
  position: absolute;
  left: clamp(24px, 6vw, 90px);
  bottom: clamp(50px, 10vh, 120px);
  max-width: 620px;
  z-index: 2;
  pointer-events: none;
}
.story-caption {
  position: absolute;
  bottom: 0; left: 0;
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.story-caption.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.story-caption .sc-num {
  font-family: var(--f-classic);
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.story-caption h3 {
  font-family: var(--f-classic);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  color: #FAF6EC;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 16px rgba(0,0,0,0.45);
}
.story-caption p {
  font-family: var(--f-classic);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(250, 246, 236, 0.92);
  line-height: 1.55;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.story-progress {
  position: absolute;
  bottom: clamp(24px, 4vh, 40px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  gap: 12px;
  z-index: 3;
  pointer-events: none;
}
.sp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.35);
  transition: all 0.4s;
}
.sp-dot.active {
  background: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(245,215,142,0.25);
  width: 24px;
  border-radius: 999px;
}
.sp-dot.past { background: rgba(250, 246, 236, 0.6); }

/* Top-right step counter — always visible, shows progress */
.story-counter {
  position: absolute;
  top: clamp(24px, 4vh, 48px);
  right: clamp(24px, 5vw, 80px);
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-classic);
  font-weight: 300;
  color: rgba(250, 246, 236, 0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.sc-cur {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 1.4em;
  text-align: right;
  transition: color 0.4s ease;
}
.sc-sep {
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(250, 246, 236, 0.5);
  font-style: italic;
  line-height: 1;
}
.sc-total {
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(250, 246, 236, 0.5);
  font-style: italic;
  line-height: 1;
}

/* Story hint — visible on first step, fades after user scrolls */
.story-hint {
  position: absolute;
  bottom: clamp(20px, 3vh, 32px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(250, 246, 236, 0.75);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
  animation: storyHintBounce 2.2s ease-in-out infinite;
}
.story-hint.hidden { opacity: 0; }
.story-hint svg { opacity: 0.85; }
@keyframes storyHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 720px) {
  .story-scroller { height: 350vh; }
  .story-captions { left: 20px; right: 20px; bottom: 90px; max-width: none; }
  .story-progress { right: 20px; }
}
