/* =========================================================================
   MAISON YAME — ultra-luxury wholesale site
   Deep-green / ivory / gold · Cormorant (display) · EB Garamond (body) · Jost (labels)
   ========================================================================= */

:root {
  --noir:      #0C1611;
  --green:     #16291F;
  --green-2:   #1F3A2E;
  --green-mid: #3E5A48;
  --ivory:     #F6F2E7;
  --cream:     #ECE6D4;
  --gold:      #C9A24B;
  --gold-lt:   #E0C58A;
  --line:      rgba(246,242,231,.16);   /* structural hairlines = ivory (gold is rationed) */
  --line-iv:   rgba(246,242,231,.14);
  --line-gold: rgba(201,162,75,.42);

  --maxw: 1320px;
  --gutter: clamp(22px, 5.2vw, 110px);

  --display: 'Cormorant', 'Cormorant Garamond', Georgia, serif;
  --body:    'EB Garamond', Georgia, serif;
  --label:   'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(.19,1,.22,1);
  --slow: 1.2s;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  margin: 0; background: var(--green); color: var(--ivory);
  font-family: var(--body); font-size: clamp(17px, 1.12vw, 20px); line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-variant-numeric: oldstyle-figures proportional-nums;   /* figures sit on the baseline rhythm */
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--noir); }

/* keyboard focus — visible only during keyboard nav, invisible to the mouse */
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px; }
.object :focus-visible { outline-color: var(--green); }
.cta:focus-visible { outline-offset: 4px; }
form input:focus-visible, form textarea:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 1px 0 0 var(--gold); }

/* ---------- shared type ---------- */
.label {
  font-family: var(--label); font-weight: 400;
  font-size: clamp(10px, .8vw, 12px); letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.0; letter-spacing: -.005em; }
.display  { font-size: clamp(50px, 9.4vw, 168px); font-weight: 300; line-height: .96; letter-spacing: -.02em; }
h2.chapter { font-size: clamp(38px, 6vw, 104px); font-weight: 300; }
h3 { font-size: clamp(24px, 2.5vw, 38px); }
em { font-style: italic; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(19px, 1.55vw, 27px); line-height: 1.5; font-weight: 400; }
.muted { color: var(--cream); opacity: .66; }
.serif-accent { font-family: var(--display); font-style: italic; }

.rn { font-family: var(--display); font-weight: 300; font-style: italic; }  /* roman numerals */

/* hairline + tick */
.tick { display: inline-flex; align-items: center; gap: 14px; }
.tick .ln { width: clamp(40px,5vw,90px); height: 1px; background: var(--gold); }
.tick .dm { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); }

/* ---------- buttons / links ---------- */
.cta {
  position: relative; display: inline-flex; align-items: center; gap: .9em;
  font-family: var(--label); font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  padding: 19px 34px; border: 1px solid var(--gold); color: var(--gold);
  overflow: hidden; transition: color .5s var(--ease);
}
.cta::before { content:""; position:absolute; inset:0; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index:-1; }
.cta:hover { color: var(--noir); }
.cta:hover::before { transform: scaleX(1); }
.cta--solid { background: var(--gold); color: var(--noir); }
.cta--solid::before { background: var(--ivory); }
.cta--solid:hover { color: var(--noir); border-color: var(--ivory); }
.cta--ivory { border-color: var(--ivory); color: var(--ivory); }
.cta--ivory::before { background: var(--ivory); }
.cta--ivory:hover { color: var(--noir); }
.cta::after { /* a single gold shimmer sweep on hover — a quiet, expensive tell */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.55) 46%, transparent 72%);
  transform: translateX(-140%); mix-blend-mode: overlay;
}
.cta:hover::after { transition: transform .85s cubic-bezier(.16,.84,.44,1); transform: translateX(140%); }
@media (prefers-reduced-motion: reduce) { .cta::after { display: none; } }

.ulink { position: relative; }
.ulink::after { content:""; position:absolute; left:0; bottom:-3px; width:100%; height:1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.ulink:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- film grain over everything ---------- */
.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- scroll progress (a quiet, expensive-feeling detail) ---------- */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 110; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); transform: scaleX(0); transform-origin: 0 50%; }
@media (prefers-reduced-motion: reduce) { .progress { display: none; } }

/* ========================================================================
   PRELOADER
   ======================================================================== */
.veil { position: fixed; inset: 0; z-index: 150; background: var(--noir); display: grid; place-items: center; transition: transform 1.1s var(--ease); }
.veil__in { text-align: center; }
.veil__seal { width: 92px; height: 92px; margin: 0 auto 26px; }
.veil__seal circle, .veil__seal path { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw .9s var(--ease) forwards; }
.veil__word { font-family: var(--display); font-weight: 300; font-size: clamp(26px,4vw,46px); letter-spacing: .26em; color: var(--ivory); opacity: 0; animation: fadeup 1s var(--ease) .5s forwards; }
.veil__jp { font-family: var(--display); font-size: 20px; letter-spacing: .5em; color: var(--gold); opacity:0; animation: fadeup 1s var(--ease) .75s forwards; margin-top: 8px; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeup { from { opacity:0; transform: translateY(12px);} to { opacity:1; transform:none; } }
body.loaded .veil { transform: translateY(-100%); }
body:not(.loaded) { overflow: hidden; }

/* ========================================================================
   SCROLL REVEAL
   ======================================================================== */
.rv { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-2 { transition-delay: .12s; } .rv-3 { transition-delay: .24s; } .rv-4 { transition-delay: .36s; }
.clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease); }
.clip.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  .hero__bg::after, .interlude__bg::after { animation: none; }
  .rv, .clip { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .veil { display: none; } body:not(.loaded){ overflow:auto; }
  .veil__seal circle,.veil__seal path{ animation:none; stroke-dashoffset:0; }
}

/* ========================================================================
   NAV
   ======================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--gutter); transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent; }
.nav.scrolled { padding-top: 15px; padding-bottom: 15px; background: rgba(12,22,17,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__brand { display:flex; align-items:center; gap: 13px; }
.nav__brand .seal { width: 36px; height: 36px; }
.nav__word { font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: .3em; }
.nav__links { display:flex; align-items:center; gap: clamp(20px,2.4vw,40px); }
.nav__links a { font-family: var(--label); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); }
.nav__lang { font-family: var(--label); font-size: 11px; letter-spacing: .18em; color: var(--cream); }
.nav__lang b { color: var(--gold); }
.nav__toggle { display:none; background:none; border:0; color: var(--ivory); cursor: pointer; }

.menu { position: fixed; inset: 0; z-index: 95; background: var(--noir); display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 var(--gutter); transform: translateY(-100%); visibility: hidden; transition: transform .7s var(--ease), visibility .7s var(--ease); }
body.menu-open .menu { visibility: visible; }
.menu a { font-family: var(--display); font-weight: 300; font-size: clamp(34px,8vw,64px); color: var(--ivory); padding: 8px 0; border-bottom: 1px solid var(--line-iv); }
.menu .lead { color: var(--gold); margin-top: 22px; font-size: 14px; }
body.menu-open .menu { transform: translateY(0); }
body.menu-open { overflow: hidden; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position:absolute; inset:0; z-index:0; overflow:hidden;
  background:
    radial-gradient(85% 55% at 50% 6%, rgba(201,162,75,.20) 0%, rgba(201,162,75,0) 55%),
    radial-gradient(120% 90% at 50% -4%, rgba(62,90,72,.5) 0%, rgba(62,90,72,0) 46%),
    radial-gradient(130% 100% at 50% 124%, #0A130E 0%, rgba(10,19,14,0) 58%),
    linear-gradient(176deg, #1C3829 0%, #224235 38%, #18301F 72%, #0E1A13 100%); }
.hero__bg::before { content:""; position:absolute; inset:-12%;
  background: repeating-linear-gradient(98deg, rgba(246,242,231,.05) 0 1px, transparent 1px 52px), repeating-linear-gradient(98deg, rgba(10,19,14,.2) 0 2px, transparent 2px 104px);
  -webkit-mask-image: linear-gradient(180deg, transparent 28%, #000 80%); mask-image: linear-gradient(180deg, transparent 28%, #000 80%); }
.hero__bg::after { content:""; position:absolute; inset:-22%; background: radial-gradient(55% 38% at 32% 24%, rgba(156,184,122,.16), transparent 70%); animation: fog 24s ease-in-out infinite alternate; }
@keyframes fog { from { transform: translate3d(-3%,0,0) scale(1);} to { transform: translate3d(5%,-2%,0) scale(1.1);} }
.hero::after { content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(12,22,17,.5) 0%, rgba(12,22,17,.04) 22%, rgba(12,22,17,.36) 60%, rgba(10,19,14,.92) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) clamp(70px,11vh,150px); }
.hero .display { max-width: 15ch; margin: .22em 0 .5em; }
.hero .lead { max-width: 44ch; color: var(--cream); }
.hero__cta { display:flex; flex-wrap:wrap; gap: 18px; margin-top: 40px; }
.hero__side { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 2; writing-mode: vertical-rl; font-family: var(--label); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--cream); opacity: .8; }
.hero__scroll { position:absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index:2; font-family: var(--label); font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--cream); opacity:.72; }
.hero__scroll span { display:block; width:1px; height: 46px; margin: 12px auto 0; background: linear-gradient(var(--gold), transparent); }

/* ========================================================================
   SECTIONS / SPREADS
   ======================================================================== */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(96px,16vh,220px) var(--gutter); }
.rn-mark { font-family: var(--display); font-style: italic; font-weight: 300; font-size: clamp(20px,2vw,28px); color: var(--gold); }

/* manifesto */
.manifesto { background: var(--green-2); border-top: 1px solid var(--line); }
.manifesto .wrap { text-align: center; }
.manifesto h2 { font-size: clamp(30px,4.6vw,68px); font-weight: 300; max-width: 20ch; margin: 30px auto; letter-spacing: -.01em; }
.manifesto h2 em { color: var(--gold-lt); }

/* full-bleed duotone plate */
.plate { position: relative; height: clamp(60vh, 86vh, 920px); overflow: hidden; }
.plate__img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; filter: grayscale(.85) brightness(.92) contrast(1.06) sepia(.12); transform: scale(1.06); }
.plate__duo { position:absolute; inset:0; mix-blend-mode: multiply; background: linear-gradient(180deg, #2C5140 0%, #1F3A2E 60%, #16291F 100%); }
.plate__glow { position:absolute; inset:0; mix-blend-mode: screen; background: radial-gradient(60% 70% at 50% 26%, rgba(201,162,75,.20), transparent 68%); }
.plate__scrim { position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,19,14,.32), rgba(10,19,14,0) 38%, rgba(10,19,14,.62)); }
.plate__cap { position:absolute; left: var(--gutter); bottom: clamp(30px,6vh,70px); z-index: 2; max-width: 30ch; }
.plate__cap .label { color: var(--gold-lt); }
.plate__cap h3 { font-weight: 300; margin-top: 14px; font-size: clamp(30px,4vw,60px); }

/* editorial two-column spread */
.spread { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,110px); align-items: center; }
.spread--text-first .spread__media { order: 2; }

/* ---------- museum-plate framing for the rendered artwork ---------- */
.plateframe { position: relative; }
.plateframe__art {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(120% 90% at 30% 15%, rgba(62,90,72,.35), transparent 60%), var(--noir);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), inset 0 0 0 1px rgba(246,242,231,.04);
}
.plateframe__art svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.plateframe__art::before { /* corner registration ticks, like a printer's plate mark */
  content: ""; position: absolute; inset: 14px; pointer-events: none; z-index: 3;
  background:
    linear-gradient(var(--line-gold), var(--line-gold)) 0 0/16px 1px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 0 0/1px 16px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 100% 0/16px 1px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 100% 0/1px 16px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 0 100%/16px 1px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 0 100%/1px 16px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 100% 100%/16px 1px no-repeat,
    linear-gradient(var(--line-gold), var(--line-gold)) 100% 100%/1px 16px no-repeat;
}
.plateframe__cap { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; gap: 12px; }
.plateframe__cap .plate-no { font-family: var(--label); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.plateframe__cap .plate-name { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--cream); opacity: .8; text-align: right; }
.object .plateframe__art { background: radial-gradient(120% 90% at 30% 15%, rgba(201,162,75,.14), transparent 60%), #EFE9D8; box-shadow: 0 40px 80px -32px rgba(31,58,46,.28), inset 0 0 0 1px rgba(31,58,46,.05); }
.object .plateframe__cap .plate-name { color: #4d5a50; opacity: 1; }
.object .plateframe__art::before { background-image: none; }
.object .plateframe__art::before { /* re-declare gold->ink ticks on cream */
  background:
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 0 0/16px 1px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 0 0/1px 16px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 100% 0/16px 1px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 100% 0/1px 16px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 0 100%/16px 1px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 0 100%/1px 16px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 100% 100%/16px 1px no-repeat,
    linear-gradient(rgba(31,58,46,.4), rgba(31,58,46,.4)) 100% 100%/1px 16px no-repeat;
}

/* parallax drift on the plate art (JS sets --py); no-op until app.js writes the var */
.plateframe__art > svg { transform: translateY(var(--py, 0px)); will-change: transform; }
@media (prefers-reduced-motion: reduce) { .plateframe__art > svg { transform: none !important; } }

/* rising steam on the bowl render — finite, gentle, reduced-motion safe */
.steam { animation: steam-rise 6s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom center; }
.steam--2 { animation-delay: -2s; animation-duration: 7s; }
.steam--3 { animation-delay: -4s; animation-duration: 6.5s; }
@keyframes steam-rise { 0%, 100% { opacity: .1; transform: translateY(0) scaleY(1); } 50% { opacity: .2; transform: translateY(-6px) scaleY(1.04); } }
@media (prefers-reduced-motion: reduce) { .steam { animation: none; } }

/* heritage parchment plate */
.parchment { position: absolute; inset: 0; }
.parchment__paper { fill: url(#parchGrad); }
.parchment__grain { mix-blend-mode: overlay; opacity: .4; }

/* ---------- typographic interlude (used until real photography arrives) ---------- */
.interlude { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.interlude__bg { position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(70% 60% at 50% 14%, rgba(201,162,75,.16) 0%, rgba(201,162,75,0) 56%),
    radial-gradient(120% 90% at 50% 120%, #0A130E 0%, rgba(10,19,14,0) 56%),
    linear-gradient(176deg, #1C3829 0%, #16291F 60%, #0E1A13 100%); }
.interlude__bg::after { content:""; position:absolute; inset:-15%; background: radial-gradient(48% 34% at 32% 26%, rgba(156,184,122,.12), transparent 72%); animation: fog 26s ease-in-out infinite alternate; }
.interlude--alt .interlude__bg { background:
    radial-gradient(60% 50% at 50% 100%, rgba(201,162,75,.14), transparent 60%),
    linear-gradient(176deg, #0E1A13 0%, #16291F 55%, #1C3829 100%); }
.interlude .wrap { position: relative; z-index: 1; text-align: center; }
.interlude__line { font-weight: 300; font-size: clamp(34px,5.6vw,92px); line-height: 1.02; letter-spacing: -.015em; max-width: 18ch; margin: 26px auto 0; }
.interlude__line em { color: var(--gold-lt); }
.interlude .lead { margin: 30px auto 0; color: var(--cream); }
.interlude .cite { margin: 22px auto 0; max-width: 60ch; }

/* ---------- location / map — an engraved atlas plate, not a flat diagram ---------- */
.locate { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,96px); align-items: center; }
.locate__map {
  position: relative; aspect-ratio: 4/5; border: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(85% 70% at 32% 30%, rgba(62,90,72,.32), transparent 65%),
    radial-gradient(70% 60% at 78% 82%, rgba(201,162,75,.08), transparent 60%),
    linear-gradient(165deg, #182F22 0%, #14251B 60%, #0E1A13 100%);
  box-shadow: 0 40px 90px -34px rgba(0,0,0,.6), inset 0 0 0 1px rgba(246,242,231,.04);
}
.locate__map::before { /* paper-chart grain, distinct from the global overlay grain so it reads as its own plate */
  content: ""; position: absolute; inset: 0; opacity: .5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.locate__map svg { position: relative; width: 100%; height: 100%; display: block; z-index: 1; }
.jp-grid line { stroke: rgba(246,242,231,.06); stroke-width: .5; }
.jp-contour { fill: none; stroke: rgba(201,162,75,.28); stroke-width: .6; }
.jp-island path { fill: rgba(246,242,231,.1); stroke: rgba(246,242,231,.55); stroke-width: 1; stroke-linejoin: round; }
.jp-compass { stroke: rgba(246,242,231,.4); stroke-width: .6; fill: none; }
.jp-compass text { fill: rgba(246,242,231,.55); font-family: var(--label); font-size: 6px; letter-spacing: .1em; }
.jp-scale { stroke: rgba(246,242,231,.4); stroke-width: .8; }
.jp-scale text { fill: rgba(246,242,231,.55); font-family: var(--label); font-size: 5.5px; letter-spacing: .06em; }
.jp-route { fill: none; stroke: var(--gold); stroke-width: .8; stroke-dasharray: 3 2.5; opacity: .8; }
.jp-city { fill: var(--ivory); opacity: .7; }
.jp-city-label { fill: var(--cream); opacity: .65; font-family: var(--label); font-size: 5.5px; letter-spacing: .1em; }
.jp-route-label { fill: var(--gold-lt); font-family: var(--display); font-style: italic; font-size: 7.5px; }
.jp-cross { stroke: var(--line-gold); stroke-width: .5; stroke-dasharray: 2.5 3; }
.jp-marker { fill: var(--gold); }
.jp-ring { fill: none; stroke: var(--gold); stroke-width: 1; }
.jp-distring { fill: none; stroke: rgba(201,162,75,.22); stroke-width: .5; stroke-dasharray: 1.5 2.5; }
.jp-pulse { fill: none; stroke: var(--gold); stroke-width: 1; transform-box: fill-box; transform-origin: center; transform: scale(1); opacity: .55; animation: jp-pulse 3s ease-out infinite; }
@keyframes jp-pulse { 0% { transform: scale(.5); opacity: .6; } 100% { transform: scale(2.4); opacity: 0; } }
.jp-connector { stroke: var(--gold); stroke-width: .7; }
.jp-label { fill: var(--ivory); font-family: var(--display); font-weight: 500; font-size: 15px; letter-spacing: .04em; }
.jp-sub { fill: var(--gold); font-family: var(--label); font-size: 5.5px; letter-spacing: .22em; }
.jp-tick { fill: var(--cream); opacity: .5; font-family: var(--label); font-size: 6px; letter-spacing: .12em; }
.locate__body .chip { letter-spacing: .1em; }
@media (prefers-reduced-motion: reduce) { .jp-pulse { animation: none; opacity: 0; } }
.spread:hover .spread__media img { transform: scale(1.1); }
.spread__num { font-family: var(--display); font-style: italic; font-weight: 300; font-size: clamp(60px,9vw,150px); color: transparent; -webkit-text-stroke: 1px var(--line); line-height: .8; }
.spread h2 { margin: 8px 0 22px; }
.spread .cite { margin-top: 18px; }

/* ---------- detail triptych (a full shoot bracket, not one lonely photo) ---------- */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,2vw,22px); margin-top: clamp(40px,6vh,72px); }
.trio__item { position: relative; }
.trio__frame {
  aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--line);
  background: radial-gradient(120% 100% at 60% 20%, rgba(62,90,72,.3), transparent 65%), var(--noir);
  box-shadow: 0 24px 46px -24px rgba(0,0,0,.5);
}
.trio__frame svg { width: 100%; height: 100%; display: block; }
.trio__cap { margin-top: 10px; font-family: var(--label); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); text-align: center; }
.object .trio__frame { background: radial-gradient(120% 100% at 60% 20%, rgba(201,162,75,.12), transparent 65%), #EFE9D8; box-shadow: 0 24px 46px -26px rgba(31,58,46,.25); border-color: rgba(31,58,46,.2); }

/* ---------- pull quote (brand voice, not a fabricated testimonial) ---------- */
.quote { background: var(--noir); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.quote .wrap { padding-top: clamp(80px,12vh,150px); padding-bottom: clamp(80px,12vh,150px); }
.quote blockquote { margin: 0 auto; max-width: 22ch; font-family: var(--display); font-style: italic; font-weight: 300; font-size: clamp(28px,4.4vw,58px); line-height: 1.18; color: var(--ivory); }
.quote blockquote::before, .quote blockquote::after { content: none; }
.quote cite { display: block; margin-top: 28px; font-style: normal; font-family: var(--label); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }

.cite { font-family: var(--label); font-size: 10.5px; letter-spacing: .06em; color: var(--cream); opacity: .55; line-height: 1.7; }
.cite a { border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.cite a:hover { color: var(--gold); }

.facts { list-style:none; padding:0; margin: 28px 0 0; }
.facts li { display:flex; gap: 18px; padding: 15px 0; border-top: 1px solid var(--line-iv); }
.facts li:last-child { border-bottom: 1px solid var(--line-iv); }
.facts .k { font-family: var(--label); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); width: 142px; flex:none; padding-top: 5px; }
.chips { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 26px; }
.chip { font-family: var(--label); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line); padding: 9px 16px; color: var(--cream);
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
.chip:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-2px); }
.object .chip:hover { border-color: #8a6a26; color: #6f5417; }

/* distinction (the accolade) — museum label */
.distinction { background: var(--noir); border-top:1px solid var(--line); border-bottom:1px solid var(--line); text-align:center; }
.distinction .wrap { padding-top: clamp(90px,14vh,170px); padding-bottom: clamp(90px,14vh,170px); }
.distinction .num { font-family: var(--display); font-weight: 300; font-size: clamp(120px,22vw,320px); line-height: .8; color: var(--gold); letter-spacing: -.04em; }
.distinction .num sup { font-size: .26em; vertical-align: super; color: var(--gold-lt); }
.distinction h2 { font-weight: 300; font-size: clamp(24px,2.6vw,40px); max-width: 24ch; margin: 28px auto 0; }
.distinction .gi { display:inline-flex; align-items:center; gap:16px; margin-top: 40px; border:1px solid var(--line); padding: 18px 26px; }
.distinction .gi .seal { width: 46px; height:46px; flex:none; }
.distinction .gi b { font-family: var(--display); font-weight: 500; font-size: 21px; display:block; }
.distinction .gi span { font-family: var(--label); font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--cream); opacity:.7; }

/* product / maison object */
.object { background: var(--cream); color: var(--green); position: relative; z-index: 4; }   /* sits above the global grain so the ivory panel stays pristine */
.object .label, .object .rn-mark { color: #6f5417; }
.object .spread__media { border-color: rgba(31,58,46,.2); }
.object .spread__media img { filter: grayscale(.1) brightness(1) contrast(1.02); }
.object .spread__media .plate__duo { display:none; }
.object .facts li { border-color: rgba(31,58,46,.14); }
.object .facts .k { color: #6f5417; }
.object .muted { color: #4d5a50; opacity: 1; }
.object .spread__num { -webkit-text-stroke-color: rgba(31,58,46,.2); }

/* atelier / buyers */
.atelier { background: var(--green-2); }
.atelier .grid3 { display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.atelier .cell { background: var(--green-2); padding: 42px clamp(22px,2.6vw,44px); }
.atelier .cell .rn { color: var(--gold); font-size: 22px; }
.atelier .cell h3 { font-weight: 300; margin: 18px 0 12px; }
.atelier .cell p { color: var(--cream); opacity:.78; margin:0; font-size: .98em; }
.atelier .onboard { margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--line); font-family: var(--display); font-style: italic; font-size: clamp(20px,2vw,28px); max-width: 40ch; }

/* faq */
.faq { background: var(--noir); border-top: 1px solid var(--line); }
.faq__list { margin-top: 50px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style:none; cursor: pointer; position: relative; padding: 30px 56px 30px 0; font-family: var(--display); font-weight: 300; font-size: clamp(22px,2.3vw,34px); transition: color .3s; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; position:absolute; right:8px; top:50%; transform: translateY(-50%); font-family: var(--label); font-size: 28px; color: var(--gold); transition: transform .35s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p { margin: 0 0 30px; max-width: 64ch; color: var(--cream); opacity:.8; }
.faq details b { color: var(--ivory); opacity: 1; }

/* correspondence / contact */
.corr { position: relative; background: var(--green); overflow: hidden; }
.corr__bg { position:absolute; inset:0; z-index:0;
  background: radial-gradient(60% 55% at 78% 20%, rgba(201,162,75,.10), transparent 65%), radial-gradient(70% 60% at 15% 85%, rgba(62,90,72,.22), transparent 65%); }
.corr .wrap { position: relative; z-index: 2; }
.corr__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(44px,6vw,100px); align-items: start; }
.corr h2 { max-width: 12ch; }
.corr dl { display:grid; grid-template-columns: 150px 1fr; gap: 8px 20px; margin: 36px 0 0; }
.corr dt { font-family: var(--label); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); padding-top: 6px; }
.corr dd { margin: 0; }
.corr a.mail { font-family: var(--display); font-size: clamp(22px,2.3vw,32px); border-bottom: 1px solid var(--line); }
.corr a.mail:hover { color: var(--gold); }

form .field { margin-bottom: 22px; }
form label { display:block; font-family: var(--label); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
form input, form textarea { width:100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--ivory); font-family: var(--body); font-size: 18px; padding: 10px 2px; transition: border-color .3s; }
form input:focus, form textarea:focus { outline: none; border-color: var(--gold); }
form textarea { resize: vertical; min-height: 90px; }
form .row { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; }
form .submit { margin-top: 12px; width: 100%; justify-content: center; }
.form-note { font-family: var(--label); font-size: 10px; letter-spacing: .04em; color: var(--cream); opacity:.5; margin-top: 16px; }
.form-status { font-family: var(--label); font-size: 12px; letter-spacing: .04em; margin: 14px 0 0; min-height: 1em; }
.form-status.ok { color: var(--gold); } .form-status.warn { color: #e0a06a; }

/* ========================================================================
   FOOTER / COLOPHON
   ======================================================================== */
.foot { background: var(--noir); border-top: 1px solid var(--line); }
.foot .wrap { padding-top: 80px; padding-bottom: 52px; }
.foot__top { display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.foot__brand .seal { width: 62px; height:62px; margin-bottom: 22px; }
.foot__brand .nm { font-family: var(--display); font-weight: 500; font-size: 26px; letter-spacing: .22em; }
.foot__brand p { color: var(--cream); opacity:.7; max-width: 40ch; margin-top: 14px; }
.foot__supplier { margin-top: 18px; font-family: var(--label); font-size: 11px; letter-spacing: .04em; line-height: 2; color: var(--cream); opacity:.55; }
.foot h4 { font-family: var(--label); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.foot ul { list-style:none; padding:0; margin:0; }
.foot li { margin-bottom: 2px; }
.foot li a { display:inline-block; padding: 7px 0; color: var(--cream); opacity:.78; font-size: .95em; }
.foot li a:hover { color: var(--gold); opacity:1; }
.foot__sources li a { font-family: var(--label); font-size: 11px; letter-spacing:.04em; }
.foot__legal { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line-iv); display:flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot__legal p { margin:0; font-family: var(--label); font-size: 10px; letter-spacing: .05em; color: var(--cream); opacity:.5; max-width: 74ch; line-height: 1.9; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; cursor: pointer; }
  .hero__side { display: none; }
  .spread, .corr__grid, .foot__top, .locate { grid-template-columns: 1fr; }
  .locate__map { aspect-ratio: 1/1; max-height: 70vh; }
  .spread--text-first .spread__media { order: 0; }
  .spread__media { aspect-ratio: 4/3; }
  .atelier .grid3 { grid-template-columns: 1fr; }
  .corr dl { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
}
@media (min-width: 901px) { .menu { display: none; } }

/* ========================================================================
   REAL PHOTOGRAPHY LAYER
   ======================================================================== */
/* hero: real misted gyokuro field, graded into the maison palette */
.hero__photo, .hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__photo img { object-fit: cover; object-position: center 64%; filter: brightness(.8) contrast(1.05) saturate(.82); }
.hero__wash { position: absolute; inset: 0; background: #2A4A34; mix-blend-mode: color; opacity: .55; }
.hero__tint { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(12,22,17,.72) 0%, rgba(16,32,22,.28) 30%, rgba(10,19,14,.4) 66%, rgba(5,12,8,.92) 100%); }
.hero__bg--fogonly { background: none; }
.hero__bg--fogonly::before { display: none; }

/* full-bleed photograph band */
.photostrip { position: relative; height: clamp(380px, 62vh, 700px); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.photostrip img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: brightness(.88) contrast(1.04) saturate(.9); }
.photostrip::after { content: ""; position: absolute; inset: 0; background: #274736; mix-blend-mode: color; opacity: .28; pointer-events: none; }
.photostrip__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,19,14,.55), rgba(10,19,14,0) 32%, rgba(10,19,14,.08) 62%, rgba(6,14,9,.78)); }
.photostrip__cap { position: absolute; left: var(--gutter); bottom: 28px; display: flex; flex-direction: column; gap: 8px; z-index: 2; }
.photostrip__note { font-family: var(--label); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); opacity: .8; }

/* photo inside a plate frame */
.plateframe__art--photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.95) contrast(1.03) saturate(.92); display: block; }

/* the house — founder presence */
.house { background: var(--green-2); border-top: 1px solid var(--line); }
.sig { font-family: var(--display); font-style: italic; font-size: clamp(20px, 2vw, 27px); color: var(--gold-lt); margin-top: 26px; }

/* ========================================================================
   LIMIT EDITION — cinematic & interactive layer
   ======================================================================== */

/* hero mist canvas + photo parallax hooks */
.hero__mist { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__photo img { will-change: transform; transform-origin: 50% 60%; }

/* accolade ticker */
.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--noir); padding: 15px 0; }
.ticker__track { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: tick 46s linear infinite; }
.ticker__track span { font-family: var(--label); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.ticker__track i { font-style: normal; color: var(--gold); opacity: .45; font-size: 8px; }
.ticker__track span, .ticker__track i { margin-right: 34px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker:hover .ticker__track, .ticker.is-paused .ticker__track { animation-play-state: paused; }
.ticker { position: relative; }
.ticker__pause { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); z-index: 2;
  display: inline-flex; gap: 3px; align-items: center; justify-content: center; width: 30px; height: 30px;
  background: var(--noir); border: 1px solid var(--line); cursor: pointer; opacity: 0; transition: opacity .3s; }
.ticker__pause span { width: 2px; height: 10px; background: var(--gold); }
.ticker__pause:focus-visible, .ticker:hover .ticker__pause { opacity: 1; }
.ticker.is-paused .ticker__pause span:first-child { transform: translateX(2px) rotate(0); }
.ticker.is-paused .ticker__pause { opacity: 1; }

/* interactive stir plate */
#stirArt { touch-action: pan-y; }
.stir-ripples { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.stir-ripples circle { fill: none; stroke: #EDF6CF; }
.stir-hint { position: absolute; right: 18px; bottom: 16px; font-family: var(--label); font-size: 10px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--cream); opacity: 0; padding: 8px 14px; border: 1px solid var(--line); backdrop-filter: blur(4px);
  transition: opacity .6s var(--ease); pointer-events: none; }
#stirArt.awake .stir-hint { opacity: .75; }
#stirArt.stirred .stir-hint { opacity: 0; }

/* gold dust over the distinction */
.distinction { position: relative; overflow: hidden; }
.golddust { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.distinction .wrap { position: relative; z-index: 2; }

/* the cup — tasting arcs */
.cup { background: var(--green-2); border-top: 1px solid var(--line); }
.cup__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 4vw, 64px); margin-top: 56px; }
.note { border-top: 1px solid var(--line); padding-top: 30px; }
.note__arc { width: 118px; height: 70px; display: block; margin-bottom: 18px; }
.note__bg, .note__fg { fill: none; stroke-width: 2.6; stroke-linecap: round; }
.note__bg { stroke: rgba(246,242,231,.13); }
.note__fg { stroke: var(--gold); stroke-dasharray: 128; stroke-dashoffset: 128; }
.note.in .note__fg { transition: stroke-dashoffset 1.6s var(--ease) .3s; stroke-dashoffset: calc(128 - 128 * var(--arc, .5)); }
.note h3 { font-weight: 400; font-size: clamp(22px, 2vw, 28px); margin-bottom: 10px; }
.note p { color: var(--cream); opacity: .78; margin: 0; font-size: .97em; }
.cup__spec { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 58px; padding: 22px 26px; border: 1px solid var(--line); }
.cup__spec span { font-family: var(--label); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); }
.cup__spec b { color: var(--gold-lt); font-weight: 400; }
.cup__spec i { width: 4px; height: 4px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: .6; }

/* allocation — quiet scarcity */
.alloc { background: var(--noir); border-top: 1px solid var(--line); }
.alloc__inner { max-width: 760px; margin: 0 auto; text-align: center; padding: clamp(20px, 4vw, 44px) clamp(20px, 4vw, 54px); border: 1px solid var(--line); position: relative; }
.alloc__inner::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(201,162,75,.16); pointer-events: none; }
.alloc h2 { font-weight: 300; font-size: clamp(30px, 4vw, 52px); margin: 18px 0 20px; }
.alloc .lead { color: var(--cream); opacity: .85; margin-bottom: 34px; }

/* photostrip: slow cinematic pan */
@media (prefers-reduced-motion: no-preference) {
  .photostrip img { animation: strippan 44s ease-in-out infinite alternate; will-change: transform; }
  @keyframes strippan { from { transform: scale(1.06) translateX(-1.2%); } to { transform: scale(1.1) translateX(1.2%); } }
}

/* responsive + reduced motion */
@media (max-width: 900px) {
  .cup__grid { grid-template-columns: 1fr; gap: 30px; }
  .cup__spec { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cup__spec i { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .note__fg { transition: none; stroke-dashoffset: calc(128 - 128 * var(--arc, .5)); }
  .stir-hint { display: none; }
}

/* ---------- real footage layer ---------- */
.hero__photo video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  filter: brightness(.78) contrast(1.06) saturate(.86); will-change: transform; transform-origin: 50% 60%; }
.plateframe__art--photo video { width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.96) contrast(1.03) saturate(.95); }
.photostrip--tall { height: clamp(420px, 74vh, 820px); }
.photostrip--tall img { object-position: center 68%; }

/* ========================================================================
   THE SUPPLY LINE (logistics)
   ======================================================================== */
.logi { background: var(--noir); border-top: 1px solid var(--line); }
.route { margin: 54px 0 10px; }
.route svg { width: 100%; height: auto; display: block; overflow: visible; }
.route__line { fill: none; stroke: var(--line-gold); stroke-width: 1.6; stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.route.in .route__line { transition: stroke-dashoffset 2.2s var(--ease) .2s; stroke-dashoffset: 0; }
.route__node { opacity: 0; transform: translateY(8px); }
.route.in .route__node { transition: opacity .8s var(--ease) calc(.5s + var(--d, 0s)), transform .8s var(--ease) calc(.5s + var(--d, 0s)); opacity: 1; transform: none; }
.route__node circle:first-of-type { fill: var(--gold); }
.route__node circle:last-of-type { fill: none; stroke: var(--gold); stroke-width: 1; opacity: .55; }
.route__node text { fill: var(--ivory); font-family: var(--label); font-size: 15px; letter-spacing: .18em; text-anchor: middle; }
.route__node .route__sub { fill: var(--cream); opacity: .6; font-size: 12px; letter-spacing: .1em; text-transform: none; }
.logi__card { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(28px, 5vw, 70px); align-items: center;
  margin-top: 48px; padding: clamp(26px, 3.6vw, 46px); border: 1px solid var(--line); position: relative; }
.logi__card::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(201,162,75,.14); pointer-events: none; }
.logi__name { display: inline-block; font-family: var(--display); font-weight: 300; font-size: clamp(34px, 4vw, 58px); letter-spacing: .08em; color: var(--ivory); margin: 10px 0 12px; }
.logi__hq { font-family: var(--label); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); margin: 0; }
@media (max-width: 900px) {
  .logi__card { grid-template-columns: 1fr; }
  .route__node text { font-size: 19px; }
  .route__node .route__sub { font-size: 14px; }
}

/* logistics film */
.logi__film { margin-top: 44px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.logi__film video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  filter: brightness(.92) contrast(1.04) saturate(.94); }
.logi__filmcap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  margin: 0; padding: 14px 20px; border-top: 1px solid var(--line);
  font-family: var(--label); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); }
.logi__filmcap a { color: var(--gold); }

/* ========================================================================
   THE HARVEST (film diptych)
   ======================================================================== */
.harvest { background: var(--green); border-top: 1px solid var(--line); }
.harvest__duo { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(18px, 2.6vw, 34px); margin-top: 52px; }
.harvest__cell { margin: 0; border: 1px solid var(--line); overflow: hidden; }
.harvest__cell video { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
  filter: brightness(.92) contrast(1.05) saturate(.9); }
.harvest__cell figcaption, .logi__fleet figcaption { display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 12px 16px; border-top: 1px solid var(--line); }
.plate-no { font-family: var(--label); font-size: 10px; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.plate-name { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--cream); }

/* NEXUS official logo + fleet */
.logi__logo { display: inline-block; margin: 16px 0 14px; color: #CBA75A; transition: color .3s ease; }
.logi__logo:hover, .logi__logo:focus-visible { color: var(--gold-lt); }
.logi__logo-svg { width: min(300px, 76%); height: auto; display: block; }
.logi__fleet { margin: 46px 0 0; border: 1px solid var(--line); overflow: hidden; }
.logi__fleet img { width: 100%; max-height: 420px; object-fit: cover; object-position: center 40%; display: block;
  filter: brightness(.95) saturate(.95); }

@media (max-width: 900px) { .harvest__duo { grid-template-columns: 1fr; } }
