/* Smooth same-origin navigation between / and /en/ in supporting browsers. */
@view-transition {
  navigation: auto;
}

@keyframes page-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

::view-transition-old(root) {
  animation: 160ms ease-out both page-fade-out;
}

::view-transition-new(root) {
  animation: 220ms ease-out both page-fade-in;
}

/* Standalone reset (the React version receives this from Tailwind). */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  background: #FAF6EF;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: #FAF6EF;
}

button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6, p, blockquote, ul { margin: 0; }
button, summary { -webkit-tap-highlight-color: transparent; }

/* ================================================================
   KELLER – Public Landing Page Styles
   ================================================================ */

.keller-public {
  --wine: #6B1A24;
  --wine-deep: #4A1018;
  --cream: #F5EFE6;
  --paper: #FAF6EF;
  --ink: #1B1410;
  --ink-2: #4B3F36;
  --muted: #8a7d70;
  --line: rgba(27,20,16,.12);
  --gold: #B79263;

  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  width: 100%;
  overflow-x: clip;
}

.keller-public *, .keller-public *::before, .keller-public *::after { box-sizing: border-box; }
.keller-public img { max-width: 100%; display: block; }
.keller-public a { color: inherit; text-decoration: none; }

.kp-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.kp-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
}

/* ================================================================
   NAV
   ================================================================ */
.keller-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,239,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.kn-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.keller-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.keller-logo svg { height: 34px; width: 36px; color: var(--wine); flex-shrink: 0; }

.keller-logo .logo-word {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .08em;
  color: var(--wine);
}

.kn-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
}

.kn-links a { color: var(--ink-2); }
.kn-links a:hover { color: var(--wine); }

.kn-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kn-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(183,146,99,.18);
  color: var(--gold);
  border: 1px solid rgba(183,146,99,.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kn-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-pill {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: 'Inter', sans-serif;
  letter-spacing: .05em;
  transition: .15s;
  background: none;
  border: none;
  cursor: pointer;
}

.lang-btn.active { background: var(--wine); color: #fff; }
.lang-btn:hover:not(.active) { color: var(--wine); }

.kbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
  background: none;
  border: none;
}

.kbtn-primary { background: var(--wine) !important; color: #fff !important; }
.kbtn-primary:hover { background: var(--wine-deep) !important; }
.kbtn-ghost { color: var(--ink) !important; border: 1px solid var(--line) !important; }
.kbtn-ghost:hover { border-color: var(--wine) !important; color: var(--wine) !important; }

.kn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
  border-radius: 6px;
  transition: background .15s;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.kn-hamburger:hover { background: var(--cream); }

/* Native <details> menu keeps the static site JavaScript-free. */
.kn-mobile { display: none; position: relative; flex: 0 0 34px; width: 34px; }
.kn-mobile > summary {
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
  border-radius: 6px;
  line-height: 0;
}
.kn-mobile > summary::-webkit-details-marker { display: none; }
.kn-mobile > summary:hover { background: var(--cream); }
.kn-mobile-panel { display: none; }

/* ================================================================
   HERO
   ================================================================ */
.keller-hero {
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-grid > * { min-width: 0; }

.keller-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .96;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0;
}

.keller-hero h1 em { font-style: italic; color: var(--wine); font-weight: 500; }

.hero-lede {
  margin-top: 28px;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  line-height: 1.6;
}

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--wine);
  font-weight: 600;
  line-height: 1;
}

.stat-lbl {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Bottle card */
.hero-visual { position: relative; height: 560px; }

.bottle-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #7A2129 0%, #4A1018 100%);
  border-radius: 24px;
  padding: 40px;
  color: #F5EFE6;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(75,16,24,.45);
}

.bottle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}

.bc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.bc-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}

.bc-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: rgba(255,255,255,.1);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
}

.bottle-illu {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 155px;
  height: 300px;
  z-index: 1;
}

.bottle-neck {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 36px;
  height: 90px;
  background: rgba(245,239,230,.95);
  border-radius: 6px 6px 0 0;
}

.bottle-body {
  position: absolute;
  left: 50%;
  top: 78px;
  transform: translateX(-50%);
  width: 120px;
  height: 222px;
  background: rgba(245,239,230,.95);
  border-radius: 14px 14px 4px 4px;
  overflow: hidden;
}

.bottle-label {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 60px;
  bottom: 60px;
  background: linear-gradient(180deg, #7A2129, #4A1018);
  border-radius: 4px;
  padding: 16px 10px;
  color: #F5EFE6;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.bl-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.bl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: .2em;
  opacity: .8;
}

.bl-div {
  height: 1px;
  background: rgba(245,239,230,.4);
  margin: 2px 14px;
}

.bc-bottom {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 2;
}

.bc-bottom h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 6px;
  color: #F5EFE6;
}

.bc-bottom p { font-size: 13px; opacity: .75; margin-bottom: 18px; }

.bc-chain { display: flex; gap: 6px; flex-wrap: wrap; }

.bc-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(245,239,230,.1);
  border: 1px solid rgba(245,239,230,.18);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bc-chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B79263;
  flex-shrink: 0;
}

.floating-card {
  position: absolute;
  background: #FAF6EF;
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 40px -10px rgba(27,20,16,.18);
  border: 1px solid var(--line);
  z-index: 3;
}

.fc-left { left: -30px; top: 80px; width: 200px; }
.fc-right { right: -30px; bottom: 90px; width: 210px; }

.fc-title {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}

.fc-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
}

.fc-row b { font-weight: 600; }
.fc-ok { color: #2c7a4b; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.fc-pending { color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; }

/* ================================================================
   SECTIONS (shared)
   ================================================================ */
.ks { padding: 110px 0; border-top: 1px solid var(--line); }
.ks-cream { background: var(--cream); }

.section-head { max-width: 780px; margin-bottom: 64px; }

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin-top: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.section-head h2 em { font-style: italic; color: var(--wine); }

.section-head p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.6;
}

/* ================================================================
   TWO PATHS
   ================================================================ */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.path {
  position: relative;
  padding: 48px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path.cellar { background: linear-gradient(160deg, #2A1C18 0%, #1B1410 100%); color: #F5EFE6; }
.path.market { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }

.path h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
  margin: 14px 0 16px;
}

.path .path-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
  display: inline-block;
}

.path.cellar .path-badge { background: rgba(183,146,99,.18); color: var(--gold); border: 1px solid rgba(183,146,99,.3); }
.path.market .path-badge { background: rgba(107,26,36,.08); color: var(--wine); border: 1px solid rgba(107,26,36,.15); }

.path > div > p { font-size: 15.5px; line-height: 1.6; opacity: .85; max-width: 460px; }

.path ul { margin-top: 24px; list-style: none; display: grid; gap: 10px; padding: 0; }

.path .kbtn { margin-top: 28px; }

.kbtn-disabled {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.35);
  cursor: default;
  pointer-events: none;
}

.path li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
}

.path li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-top: 9px;
  flex-shrink: 0;
  opacity: .7;
}

/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 30px;
}

.tstep {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}

.tstep:last-child { border-right: 0; }

.tstep .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--wine);
  letter-spacing: .15em;
}

.tstep h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin: 18px 0 10px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.tstep p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

.tstep .dot {
  position: absolute;
  top: 36px;
  right: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wine);
  opacity: .4;
}

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

.feat {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .25s, transform .25s;
}

.feat:hover { border-color: var(--wine); transform: translateY(-2px); }

.feat .ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--wine);
}

.feat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--ink);
}

.feat p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ================================================================
   PASSPORT SHOWCASE
   ================================================================ */
.passport-block {
  background: #1B1410;
  color: #F5EFE6;
  border-radius: 28px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.passport-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107,26,36,.3), transparent 70%);
  pointer-events: none;
}

.passport-block > * { position: relative; z-index: 1; }
.passport-block .kp-eyebrow { color: var(--gold); }

.passport-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.05;
  margin: 16px 0 20px;
  letter-spacing: -.01em;
  color: #F5EFE6;
}

.passport-block h2 em { font-style: italic; color: var(--gold); }
.passport-block p { color: rgba(245,239,230,.75); font-size: 16px; max-width: 480px; line-height: 1.6; }

.passport-cta {
  background: #F5EFE6;
  color: #4A1018;
  padding: 12px 24px;
}
.passport-cta:hover { background: #fff; }

.pp-card {
  background: linear-gradient(180deg, rgba(245,239,230,.04), rgba(245,239,230,.01));
  border: 1px solid rgba(245,239,230,.15);
  border-radius: 18px;
  padding: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.pp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245,239,230,.12);
  margin-bottom: 24px;
}

.pp-id { font-size: 11px; letter-spacing: .18em; opacity: .65; }

.pp-verified {
  font-size: 10px;
  padding: 5px 9px;
  border-radius: 5px;
  background: rgba(45,122,75,.2);
  color: #7ec999;
  border: 1px solid rgba(126,201,153,.25);
  letter-spacing: .1em;
}

.pp-sect { margin-bottom: 22px; }
.pp-sect .lbl { font-size: 10px; letter-spacing: .2em; opacity: .5; margin-bottom: 8px; }

.pp-sect .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #F5EFE6;
  line-height: 1.2;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(245,239,230,.1);
}

.pp-row span:first-child { opacity: .55; }
.pp-row span:last-child { color: var(--gold); }

/* ================================================================
   VALIDATION QUOTE
   ================================================================ */
.keller-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  max-width: 860px;
}

.keller-quote::before {
  content: "\201C";
  color: var(--wine);
  font-size: 80px;
  line-height: 0;
  display: block;
  margin-bottom: 30px;
}

.quote-by {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-2);
}

.quote-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.tier {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier.featured { background: var(--wine); color: #F5EFE6; border-color: var(--wine); }
.tier.featured .tier-desc { color: rgba(245,239,230,.7); }
.tier.featured .price-mo { color: rgba(245,239,230,.7); }

.tier-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}

.tier.featured .tier-name { color: var(--gold); }

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.tier.featured .tier-price { color: #F5EFE6; }
.tier-price-tail { font-size: 24px; color: var(--muted); }
.tier.featured .tier-price-tail { color: inherit; opacity: .6; }

.price-mo { font-size: 13px; color: var(--muted); margin-top: 6px; }

.tier-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin: 18px 0 24px;
  line-height: 1.5;
  min-height: 42px;
}

.tier ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
  padding: 0;
  flex: 1;
}

.tier li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
  color: var(--ink);
}
.tier.featured li { color: rgba(245,239,230,.9); }

.tier li::before { content: "✓"; color: var(--wine); font-weight: 700; flex-shrink: 0; }
.tier.featured li::before { color: var(--gold); }

.tier .kbtn { width: 100%; justify-content: center; }
.tier.featured .kbtn-primary { background: #fff !important; color: var(--wine) !important; }
.tier.featured .kbtn-primary:hover { background: var(--cream) !important; }
.tier.featured .kbtn-ghost { color: #fff !important; border-color: rgba(255,255,255,.4) !important; }

.tier-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--gold);
  color: #1B1410;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  padding: 5px 10px;
  border-radius: 6px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }

.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }

.faq-summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  color: var(--ink);
  padding: 0;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { content: ""; }

.faq-icon {
  color: var(--wine);
  font-size: 24px;
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-body { margin-top: 14px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ================================================================
   CTA
   ================================================================ */
.keller-cta {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.keller-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}

.keller-cta > * { position: relative; }
.keller-cta .kp-eyebrow { color: var(--gold); }

.keller-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  max-width: 780px;
  margin: 18px auto 22px;
  letter-spacing: -.01em;
  color: #fff;
}

.keller-cta h2 em { font-style: italic; color: var(--gold); }

.keller-cta p {
  font-size: 17px;
  color: rgba(245,239,230,.8);
  max-width: 520px;
  margin: 0 auto 38px;
}

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

.keller-cta .kbtn-primary { background: #F5EFE6 !important; color: var(--wine) !important; }
.keller-cta .kbtn-primary:hover { background: #fff !important; }
.keller-cta .kbtn-ghost { color: #fff !important; border-color: rgba(255,255,255,.3) !important; }
.keller-cta .kbtn-ghost:hover { border-color: #fff !important; }

/* ================================================================
   MARKETPLACE NOTE
   ================================================================ */
.marketplace-note {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
  text-align: center;
}

.marketplace-note-inner { max-width: 780px; }

.marketplace-note h2 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.marketplace-note p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

/* ================================================================
   FUNDING ACKNOWLEDGMENT
   ================================================================ */
.funding-acknowledgment {
  padding: 48px 0 52px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.funding-acknowledgment-inner { text-align: center; }

.funding-acknowledgment-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: balance;
}

.funding-logos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 8px;
}

.funding-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}

.funding-logo img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.funding-logo-ministry img { max-width: 124px; max-height: 124px; }
.funding-logo-startup img { max-width: 210px; max-height: 82px; }

/* ================================================================
   FOOTER
   ================================================================ */
.keller-footer {
  padding: 80px 0 40px;
  background: var(--ink);
  color: rgba(245,239,230,.7);
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.foot-brand { color: #F5EFE6; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.foot-brand .logo-word { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; letter-spacing: .08em; }
.keller-footer .foot-brand svg { height: 28px; width: 30px; color: inherit; flex-shrink: 0; }

.keller-footer p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.quote-container { max-width: 960px; }
.contact-section { border-top: 0; padding-bottom: 110px; }

.foot-col h6 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #F5EFE6;
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: rgba(245,239,230,.65);
}
.foot-col > span { display: block; font-size: 14px; padding: 5px 0; color: rgba(245,239,230,.65); }

.foot-col a:hover { color: #F5EFE6; }

.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(245,239,230,.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em;
  color: rgba(245,239,230,.5);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .fc-left, .fc-right { display: none; }

  .hero-visual { width: 100%; height: auto; max-width: 560px; margin: 0 auto; }
  .bottle-card {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 32px;
  }
  .bc-top { gap: 12px; }
  .bottle-illu {
    position: relative;
    inset: auto;
    transform: none;
    margin: 0 auto;
    width: 130px;
    height: 250px;
  }
  .bottle-neck { width: 32px; height: 74px; }
  .bottle-body { top: 64px; width: 104px; height: 186px; }
  .bottle-label { top: 40px; bottom: 40px; }
  .bc-bottom { position: relative; inset: auto; }
  .bc-bottom h3 { font-size: 30px; }

  .paths { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .tstep { border-right: 0; border-bottom: 1px solid var(--line); }
  .features { grid-template-columns: 1fr; }
  .passport-block { grid-template-columns: 1fr; padding: 50px 36px; }
  .pricing { grid-template-columns: 1fr; max-width: 680px; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .keller-cta { padding: 60px 36px; }
  .kn-links { display: none; }
  .kn-hamburger { display: none; }
  .kn-mobile { display: block; }
  .kn-mobile[open] .kn-mobile-panel {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,246,239,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    border-bottom: 2px solid var(--wine);
    box-shadow: 0 8px 32px rgba(27,20,16,.12);
  }
  .kn-mobile-panel a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
  }
  .kn-mobile-panel a:last-child { border-bottom: 0; }
  .kn-mobile-panel a:hover { color: var(--wine); background: var(--cream); }
  .kn-links.open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,246,239,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--wine);
    z-index: 100;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(27,20,16,.12);
  }
  .kn-links.open a {
    display: block;
    padding: 14px 32px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
  }
  .kn-links.open a:last-child { border-bottom: 0; }
  .kn-links.open a:hover { color: var(--wine); background: var(--cream); }
}

@media (max-width: 768px) {
  .kn-actions { gap: 8px; }
  .kn-actions .kbtn-primary { display: none; }
  .path { padding: 32px; min-height: auto; }
  .ks { padding: 70px 0; }
  .keller-hero { padding: 60px 0 80px; }
  .kp-container { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
  .keller-cta { padding: 48px 24px; border-radius: 20px; }
  .passport-block { padding: 40px 24px; border-radius: 20px; }
  .passport-block h2 { font-size: 40px; }
  .bottle-card { padding: 28px; gap: 26px; }
  .bc-bottom h3 { font-size: 28px; }
  .funding-acknowledgment { padding: 44px 0 48px; }
  .funding-logos { gap: 18px; margin-bottom: 10px; }
  .funding-logo-ministry img { max-width: 120px; max-height: 120px; }
  .funding-logo-startup img { max-width: min(100%, 210px); max-height: 82px; }
}

@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .timeline { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .bottle-card { padding: 24px; gap: 24px; }
  .bc-bottom h3 { font-size: 26px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .pricing { max-width: none; }
  .keller-hero h1 { font-size: 48px; }
}

@media (max-width: 430px) {
  .lang-btn { padding: 5px 9px; }
  .funding-logos { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* ================================================================
   MARKETPLACE (coming-soon placeholder)
   ================================================================ */
.mp-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  position: relative;
}

.mp-lang-pill {
  position: absolute;
  top: 24px;
  right: 24px;
}

.mp-logo-svg {
  height: 40px;
  width: auto;
}

.mp-logo {
  margin-bottom: 48px;
  justify-content: center;
}

.mp-headline {
  margin-top: 16px;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 44px;
}

.mp-badge {
  vertical-align: middle;
  margin-left: 10px;
}

.mp-description {
  max-width: 480px;
  color: var(--ink-2);
  margin-bottom: 36px;
}
