:root {
  --ink: #090907;
  --ink-soft: #15130f;
  --paper: #eee9df;
  --paper-deep: #e2dacb;
  --gold: #b7872f;
  --gold-light: #d7b56f;
  --text: #191710;
  --muted: #625d53;
  --line: rgba(155, 111, 35, .34);
  --font-serif: "Cormorant Garamond", "Cormorant", "EB Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", ui-monospace, Menlo, monospace;
  --product-accent: #8e1718;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--text); background: var(--paper); font-family: var(--font-sans); }
body::selection { color: #fff; background: var(--product-accent); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.passport-header {
  position: relative;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px clamp(24px, 5vw, 72px);
  color: #f4efe4;
  background: #090907;
  border-bottom: 1px solid rgba(183,135,47,.14);
}
.passport-brand { display: inline-flex; align-items: center; gap: 12px; }
.passport-brand img { width: 34px; height: 34px; object-fit: contain; }
.passport-brand span { color: var(--gold-light); font-family: var(--font-serif); font-size: 25px; letter-spacing: -.02em; }
.header-links { display: flex; align-items: center; gap: 28px; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.header-links a { opacity: .78; transition: opacity .2s ease, color .2s ease; }
.header-links a:hover, .header-links a:focus-visible { color: var(--gold-light); opacity: 1; }

.passport-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
  min-height: 770px;
  overflow: hidden;
  color: #f4efe4;
  background:
    radial-gradient(circle at 70% 28%, rgba(183, 135, 47, .14), transparent 29%),
    linear-gradient(112deg, #070706 0%, #11100d 54%, #080705 100%);
}
.passport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(rgba(255,255,255,.42) .6px, transparent .7px);
  background-size: 5px 5px;
  mask-image: linear-gradient(90deg, transparent, #000 40%, #000);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 124px 6vw 80px max(34px, 7vw);
}
.eyebrow { margin: 0 0 20px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .27em; text-transform: uppercase; }
.hero-copy h1, .section-title, .sommelier-copy h2 { margin: 0; font-family: var(--font-serif); font-weight: 400; letter-spacing: -.045em; }
.hero-copy h1 { max-width: 690px; font-size: clamp(62px, 7.4vw, 116px); line-height: .79; }
.hero-subtitle { margin: 28px 0 0; color: var(--gold-light); font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 38px); line-height: 1.1; }
.hero-intro { max-width: 590px; margin: 24px 0 0; color: #c9c3b6; font-size: 15px; line-height: 1.75; }
.hero-app-callout { max-width: 590px; margin-top: 25px; padding: 18px 0 0 18px; border-left: 1px solid rgba(215,181,111,.55); }
.hero-app-callout p { margin: 0 0 16px; color: #bdb5a8; font-size: 12px; line-height: 1.65; }
.hero-app-callout p strong { display: block; margin-bottom: 3px; color: var(--gold-light); font-family: var(--font-serif); font-size: 19px; font-weight: 400; }
.hero-app-callout small { display: block; margin-top: 9px; color: #827c70; font-size: 9px; letter-spacing: .03em; }
.hero-app-action-row { display: flex; align-items: stretch; gap: 10px; }
.hero-sommelier { min-height: 48px; }
.hero-sommelier-preview { position: relative; display: block; width: 92px; min-width: 92px; min-height: 48px; overflow: hidden; border: 1px solid rgba(215,181,111,.52); background: #080806; }
.hero-sommelier-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.72)); pointer-events: none; }
.hero-sommelier-preview video { display: block; width: 100%; height: 100%; min-height: 48px; object-fit: cover; }
.hero-sommelier-preview span { position: absolute; right: 7px; bottom: 5px; z-index: 1; color: #f0dfb6; font-size: 7px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-sommelier-preview:hover, .hero-sommelier-preview:focus-visible { border-color: var(--gold-light); }
.hero-app-callout + .hero-meta { margin-top: 18px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 32px 0 0; }
.hero-meta span { padding: 9px 12px 8px; border: 1px solid rgba(215,181,111,.34); color: #ddd5c7; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.official-note { display: flex; align-items: center; gap: 10px; margin: 25px 0 0; color: #afa89b; font-size: 11px; line-height: 1.55; }
.official-note::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

.hero-product {
  position: relative;
  display: grid;
  place-items: end center;
  min-width: 0;
  min-height: 650px;
  padding: 106px 6vw 0 0;
}
.hero-product::before, .hero-product::after { content: ""; position: absolute; border: 1px solid rgba(183,135,47,.2); border-radius: 50%; }
.hero-product::before { width: min(46vw, 610px); aspect-ratio: 1; }
.hero-product::after { width: min(35vw, 460px); aspect-ratio: 1; }
.hero-product img { position: relative; z-index: 2; width: min(72%, 470px); max-height: 700px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 28px 34px rgba(0,0,0,.55)); }
.hero-product.is-editorial img { width: min(88%, 650px); height: 580px; max-height: 580px; object-fit: cover; object-position: center; border: 1px solid rgba(183,135,47,.42); }
.product-number { position: absolute; right: 3.5vw; bottom: 52px; z-index: 3; color: rgba(215,181,111,.58); font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; writing-mode: vertical-rl; }

.passport-nav { position: sticky; z-index: 15; top: 0; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 58px); min-height: 58px; padding: 0 20px; overflow-x: auto; color: #d7d0c2; background: rgba(9,9,7,.96); border-top: 1px solid rgba(183,135,47,.25); border-bottom: 1px solid rgba(183,135,47,.25); backdrop-filter: blur(14px); }
.passport-nav a { white-space: nowrap; font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.passport-nav a:hover, .passport-nav a:focus-visible { color: var(--gold-light); }

.section { padding: clamp(72px, 9vw, 138px) clamp(24px, 7vw, 108px); }
.section-head { display: grid; grid-template-columns: minmax(220px,.65fr) minmax(360px,1.35fr); gap: 8vw; align-items: end; max-width: 1420px; margin: 0 auto 58px; }
.section-title { font-size: clamp(48px, 6vw, 90px); line-height: .9; }
.section-lead { max-width: 690px; margin: 0; color: var(--muted); font-family: var(--font-serif); font-size: clamp(22px, 2.15vw, 32px); line-height: 1.35; }

.identity-section { background: var(--paper); }
.identity-grid { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(480px,1.1fr); gap: 9vw; max-width: 1420px; margin: 0 auto; }
.identity-statement { position: relative; padding: 44px 42px; color: #eee7d8; background: var(--ink-soft); border-top: 2px solid var(--product-accent); }
.identity-statement::after { content: "AL"; position: absolute; right: 22px; bottom: -14px; color: rgba(215,181,111,.07); font-family: var(--font-serif); font-size: 150px; line-height: 1; }
.identity-statement h3 { position: relative; z-index: 1; margin: 0; font-family: var(--font-serif); font-size: 36px; font-weight: 400; line-height: 1.05; }
.identity-statement p { position: relative; z-index: 1; margin: 22px 0 0; color: #bdb5a6; font-size: 14px; line-height: 1.72; }
.facts-list { margin: 0; border-top: 1px solid var(--line); }
.fact-row { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-row dt { color: #756d60; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.fact-row dd { margin: 0; font-family: var(--font-serif); font-size: 22px; line-height: 1.2; }

.lot-section { color: #eee7d9; background: linear-gradient(120deg, #090907 0%, #16130d 100%); }
.lot-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; max-width: 1420px; margin: 0 auto; align-items: center; }
.lot-copy h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(52px, 6vw, 88px); font-weight: 400; letter-spacing: -.045em; line-height: .88; }
.lot-copy p { max-width: 590px; margin: 28px 0 0; color: #bdb6aa; font-size: 14px; line-height: 1.75; }
.lot-card { position: relative; padding: 42px; border: 1px solid rgba(215,181,111,.42); background: rgba(255,255,255,.025); box-shadow: 0 24px 60px rgba(0,0,0,.25); }
.lot-card::before { content: "10"; position: absolute; right: 24px; top: 12px; color: rgba(215,181,111,.09); font-family: var(--font-mono); font-size: 92px; }
.lot-card label { position: relative; display: block; margin-bottom: 12px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.lot-controls { position: relative; display: grid; grid-template-columns: 1fr auto; }
.lot-controls input { min-width: 0; height: 54px; padding: 0 17px; color: #f0e9dc; border: 1px solid rgba(215,181,111,.5); border-right: 0; outline: 0; background: #0a0907; font-family: var(--font-mono); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.lot-controls input:focus { border-color: var(--gold-light); box-shadow: inset 0 0 0 1px var(--gold-light); }
.lot-controls button, .primary-action { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; color: #0d0b07; border: 1px solid var(--gold); background: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease; }
.lot-controls button:hover, .lot-controls button:focus-visible, .primary-action:hover, .primary-action:focus-visible { color: #fff; background: var(--product-accent); }
.lot-hint { margin: 13px 0 0; color: #898276; font-size: 11px; line-height: 1.55; }
.lot-status { min-height: 74px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(215,181,111,.22); color: #d8d0c2; font-size: 13px; line-height: 1.65; }
.lot-status strong { display: block; margin-bottom: 4px; color: var(--gold-light); font-family: var(--font-serif); font-size: 23px; font-weight: 400; }

.process-section { background: #e6dfd2; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1420px; margin: 0 auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { min-height: 310px; padding: 32px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card span { color: var(--gold); font-family: var(--font-mono); font-size: 11px; letter-spacing: .13em; }
.process-card h3 { margin: 72px 0 14px; font-family: var(--font-serif); font-size: 30px; font-weight: 400; line-height: 1; }
.process-card p { margin: 0; color: #686154; font-size: 13px; line-height: 1.7; }
.process-note { max-width: 1420px; margin: 28px auto 0; color: #6b6356; font-size: 12px; line-height: 1.7; }

.analysis-section { color: #f0e9dc; background: var(--ink); }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 1420px; margin: 0 auto; background: rgba(183,135,47,.35); }
.analysis-panel { min-height: 420px; padding: clamp(34px,5vw,72px); background: #0e0d0a; }
.analysis-panel h3 { margin: 0; font-family: var(--font-serif); font-size: clamp(35px,4vw,56px); font-weight: 400; line-height: .98; }
.analysis-panel p { max-width: 560px; margin: 24px 0 0; color: #bcb4a6; font-size: 14px; line-height: 1.8; }
.analysis-pending { display: flex; flex-direction: column; justify-content: space-between; }
.pending-seal { align-self: flex-start; padding: 10px 12px; border: 1px solid rgba(215,181,111,.45); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.analysis-list { margin: 36px 0 0; border-top: 1px solid rgba(215,181,111,.24); }
.analysis-list div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(215,181,111,.18); }
.analysis-list span { color: #8f8779; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.analysis-list b { color: #d8d0c2; font-family: var(--font-mono); font-size: 11px; font-weight: 400; }

.information-section { background: var(--paper); }
.information-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; max-width: 1420px; margin: 0 auto; }
.information-copy h3, .nutrition-card h3 { margin: 0 0 24px; font-family: var(--font-serif); font-size: 38px; font-weight: 400; }
.information-block { padding: 20px 0; border-top: 1px solid var(--line); }
.information-block:last-child { border-bottom: 1px solid var(--line); }
.information-block b { display: block; margin-bottom: 8px; color: #655d4f; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.information-block p { margin: 0; color: #353129; font-size: 13px; line-height: 1.7; }
.nutrition-card { align-self: start; padding: 36px; border: 1px solid var(--line); background: rgba(255,255,255,.2); }
.nutrition-card > p { margin: -14px 0 20px; color: #756d60; font-size: 11px; }
.nutrition-row { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-top: 1px solid rgba(155,111,35,.22); font-size: 12px; }
.nutrition-row span:last-child { font-weight: 700; }
.responsible { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); color: #645d52; font-size: 11px; line-height: 1.7; }

.sommelier-section { position: relative; min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; color: #f1eade; background: #0b0a08; }
.sommelier-visual { position: relative; min-height: 560px; overflow: hidden; background: radial-gradient(circle at 50% 44%, rgba(183,135,47,.2), transparent 34%), #090806; }
.sommelier-visual img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 25px 30px rgba(0,0,0,.55)); transform: scale(.86); }
.sommelier-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, #0b0a08 100%); }
.sommelier-copy { position: relative; z-index: 2; align-self: center; padding: 72px 8vw 72px 5vw; }
.sommelier-copy h2 { font-size: clamp(52px,6vw,88px); line-height: .88; }
.sommelier-copy p { max-width: 590px; margin: 28px 0 32px; color: #bfb7aa; font-size: 14px; line-height: 1.75; }
.sommelier-copy .sommelier-product-copy { margin-top: -18px; color: #8f887c; font-size: 12px; }
.sommelier-copy .sommelier-capabilities { margin: 22px 0 0; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.sommelier-copy .sommelier-note { margin: 20px 0 0; color: #817b70; font-size: 10px; letter-spacing: .05em; }
.primary-action { color: #f5eddf; background: transparent; min-width: 238px; }
.sommelier-section-primary { border-top: 1px solid rgba(215,181,111,.3); border-bottom: 1px solid rgba(215,181,111,.3); }

.support-section { background: #e5ded1; }
.support-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; max-width: 1420px; margin: 0 auto; }
.support-inner h2 { margin: 0; font-family: var(--font-serif); font-size: clamp(46px,5vw,74px); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.support-copy p { margin: 0 0 18px; color: #5f584d; font-size: 13px; line-height: 1.75; }
.support-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.support-links a { padding: 11px 13px; border: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.passport-footer { color: #aaa294; background: #080806; }
.footer-inner { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 50px; padding: 58px clamp(24px,7vw,108px); }
.footer-brand img { width: 56px; margin-bottom: 18px; }
.footer-brand p { max-width: 290px; margin: 0; font-family: var(--font-serif); font-size: 22px; line-height: 1.35; }
.footer-column h3 { margin: 0 0 15px; color: var(--gold-light); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { display: block; margin: 9px 0; font-size: 11px; }
.footer-base { display: flex; justify-content: space-between; gap: 24px; padding: 18px clamp(24px,7vw,108px); border-top: 1px solid rgba(183,135,47,.2); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.passport-switcher { position: fixed; z-index: 14; right: 18px; bottom: 18px; }
.passport-switcher details { position: relative; }
.passport-switcher summary { list-style: none; padding: 11px 14px; color: #eee7da; border: 1px solid rgba(215,181,111,.5); background: rgba(9,9,7,.92); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; backdrop-filter: blur(10px); }
.passport-switcher summary::-webkit-details-marker { display: none; }
.switcher-menu { position: absolute; right: 0; bottom: calc(100% + 7px); width: 240px; padding: 8px; color: #e7dfd2; background: rgba(9,9,7,.97); border: 1px solid rgba(215,181,111,.42); }
.switcher-menu a { display: block; padding: 11px; border-bottom: 1px solid rgba(215,181,111,.12); font-family: var(--font-serif); font-size: 18px; }
.switcher-menu a:last-child { border-bottom: 0; }

.passport-index { min-height: 100vh; color: #eee7da; background: radial-gradient(circle at 78% 12%, rgba(183,135,47,.15), transparent 32%), #090907; }
.passport-index-main { min-height: calc(100vh - 140px); padding: clamp(150px,18vh,220px) clamp(24px,7vw,108px) 90px; }
.passport-index-main h1 { max-width: 1050px; margin: 20px 0 28px; font-family: var(--font-serif); font-size: clamp(72px,10vw,154px); font-weight: 400; letter-spacing: -.055em; line-height: .82; }
.passport-index-intro { max-width: 720px; margin: 0 0 58px; color: #bdb5a8; font-family: var(--font-serif); font-size: clamp(22px,2.1vw,32px); line-height: 1.35; }
.passport-index-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(215,181,111,.42); border-left: 1px solid rgba(215,181,111,.42); }
.passport-index-grid a { display: flex; min-height: 260px; flex-direction: column; justify-content: flex-end; padding: 28px; border-right: 1px solid rgba(215,181,111,.42); border-bottom: 1px solid rgba(215,181,111,.42); background: rgba(255,255,255,.015); transition: background .35s ease, color .35s ease; }
.passport-index-grid a:hover { color: #fff; background: rgba(183,135,47,.13); }
.passport-index-grid span { margin-bottom: auto; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.passport-index-grid strong { font-family: var(--font-serif); font-size: clamp(28px,2.5vw,42px); font-weight: 400; line-height: .98; }
.passport-index-grid small { margin-top: 12px; color: #a9a194; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.passport-index-footer { display: flex; gap: 28px; align-items: center; padding: 20px clamp(24px,7vw,108px); color: #8f887c; border-top: 1px solid rgba(215,181,111,.2); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.passport-index-footer button { padding: 0; color: inherit; border: 0; background: transparent; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.noscript-fallback { min-height: 100vh; padding: 18vh 8vw; color: #e9e2d6; background: #090907; }
.noscript-fallback h1 { margin: 0 0 24px; font-family: var(--font-serif); font-size: clamp(58px,9vw,120px); font-weight: 400; }
.noscript-fallback p { max-width: 680px; color: #bdb5a8; font-size: 16px; line-height: 1.7; }

@media (max-width: 920px) {
  .passport-header { padding: 20px 24px; }
  .header-links a:not(:first-child) { display: none; }
  .passport-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 116px 7vw 36px; }
  .hero-copy h1 { font-size: clamp(66px,15vw,104px); }
  .hero-product { min-height: 520px; padding: 0 7vw; }
  .hero-product img { width: min(68%, 390px); max-height: 520px; }
  .hero-product.is-editorial img { width: 100%; height: 440px; }
  .product-number { right: 7vw; bottom: 28px; }
  .section-head, .identity-grid, .lot-inner, .information-grid, .support-inner { grid-template-columns: 1fr; gap: 36px; }
  .section-head { align-items: start; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .analysis-grid { grid-template-columns: 1fr; }
  .sommelier-section { grid-template-columns: 1fr; }
  .sommelier-visual { min-height: 420px; }
  .sommelier-visual::after { background: linear-gradient(0deg, #0b0a08 0%, transparent 42%); }
  .sommelier-copy { padding: 38px 7vw 72px; }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .passport-index-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .passport-brand span { font-size: 21px; }
  .header-links { gap: 0; }
  .hero-copy { padding-top: 105px; }
  .hero-copy h1 { font-size: 68px; }
  .hero-subtitle { font-size: 26px; }
  .hero-intro { font-size: 14px; }
  .hero-app-action-row { gap: 8px; }
  .hero-sommelier { flex: 1 1 auto; padding-inline: 14px; }
  .hero-sommelier-preview { width: 78px; min-width: 78px; }
  .hero-product { min-height: 445px; }
  .hero-product img { width: 78%; max-height: 445px; }
  .hero-product.is-editorial img { width: 100%; height: 365px; }
  .passport-nav { justify-content: flex-start; }
  .section { padding: 72px 7vw; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: 50px; }
  .section-lead { font-size: 23px; }
  .identity-statement { padding: 34px 28px; }
  .fact-row { grid-template-columns: 112px 1fr; gap: 16px; }
  .fact-row dd { font-size: 19px; }
  .lot-card { padding: 28px 22px; }
  .lot-controls { grid-template-columns: 1fr; gap: 9px; }
  .lot-controls input { border-right: 1px solid rgba(215,181,111,.5); }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 240px; }
  .process-card h3 { margin-top: 46px; }
  .analysis-panel { min-height: 350px; }
  .nutrition-card { padding: 28px 22px; }
  .sommelier-visual { min-height: 350px; }
  .sommelier-copy h2 { font-size: 54px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; }
  .passport-switcher { right: 10px; bottom: 10px; }
  .passport-index-main { padding-top: 125px; }
  .passport-index-main h1 { font-size: 64px; }
  .passport-index-grid { grid-template-columns: 1fr; }
  .passport-index-grid a { min-height: 200px; }
  .passport-index-footer { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media print {
  .passport-header, .passport-nav, .passport-switcher, .sommelier-section, .passport-footer { display: none !important; }
  .passport-hero { min-height: 0; color: #111; background: #fff; }
  .hero-copy { padding: 40px; }
  .hero-product { min-height: 460px; padding: 20px; }
  .section { padding: 40px; break-inside: avoid; }
}
