/* ============================================================
   THE EMPTY DROPS — Private Cellar
   Visual system: cellar darkness, a single gold light, the void as luxury.
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  --ink:        #0B0B0D;   /* near-black, dominant background (cellar dark) */
  --ink-warm:   #141118;   /* warm black, layered panels */
  --ink-line:   #221E26;   /* hairline borders in the dark */
  --gold:       #B08D57;   /* aged gold — the droplet, the single accent */
  --gold-soft:  #C9A877;   /* lit gold for hover */
  --bone:       #E8E2D6;   /* primary text, bone white */
  --bone-dim:   #8B857A;   /* secondary text, muted */
  --wine:       #3A1820;   /* deep wine, used sparingly */

  --serif: "Cormorant Garamond", "Hoefler Text", Garamond, "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --step--1: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --step-0:  clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-2:  clamp(2.2rem, 1.8rem + 2.2vw, 3.6rem);
  --step-3:  clamp(3rem, 2.2rem + 4.5vw, 6rem);
  --step-4:  clamp(4rem, 2.6rem + 7vw, 9rem);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  background:var(--ink);
  color:var(--bone);
  font-family:var(--sans);
  font-size:var(--step-0);
  line-height:1.7;
  font-weight:300;
  letter-spacing:.01em;
  overflow-x:hidden;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }

/* ---------- Typographic primitives ---------- */
h1,h2,h3{ font-family:var(--serif); font-weight:400; line-height:1.05; letter-spacing:.005em; }
.serif{ font-family:var(--serif); }

.eyebrow{
  font-family:var(--sans);
  font-size:var(--step--1);
  font-weight:400;
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
}
.muted{ color:var(--bone-dim); }

/* a hairline gold rule that feels like a single thread of light */
.thread{
  width:64px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:1.5rem 0;
}
.thread.center{ margin-inline:auto; }

/* ---------- Layout ---------- */
.wrap{ max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
section{ padding-block:clamp(3.5rem,6vw,6.5rem); }
.section-label{
  display:flex; align-items:center; gap:1rem;
  margin-bottom:2.5rem;
}
.section-label span{ white-space:nowrap; }
.section-label::after{
  content:""; flex:1; height:1px; background:var(--ink-line);
}

/* ---------- Top bar ---------- */
.topbar{
  position:fixed; inset:0 0 auto 0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem var(--gutter);
  background:rgba(11,11,13,0);
  transition:background .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom:1px solid transparent;
}
.topbar.scrolled{
  background:rgba(11,11,13,.82);
  backdrop-filter:blur(10px);
  border-bottom-color:var(--ink-line);
  padding-block:.8rem;
}
.brand{
  font-family:var(--serif);
  font-size:1.15rem;
  letter-spacing:.12em;
  color:var(--bone);
  display:flex; align-items:center; gap:.6rem;
}
.brand .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); display:inline-block; }
.nav{ display:flex; gap:2.2rem; }
.nav a{
  font-family:var(--sans);
  font-size:var(--step--1);
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--bone-dim);
  transition:color .35s ease;
  position:relative;
}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background:var(--gold); transition:width .35s ease;
}
.nav a:hover,.nav a[aria-current="page"]{ color:var(--bone); }
.nav a:hover::after,.nav a[aria-current="page"]::after{ width:100%; }

.nav-toggle{ display:none; background:none; border:0; color:var(--bone); cursor:pointer; font-size:1.5rem; line-height:1; }

/* ---------- Hero ---------- */
.hero{
  min-height:100svh;
  display:flex; flex-direction:column; justify-content:center;
  position:relative;
  padding-block:8rem 6rem;
  overflow:hidden;
  background:var(--ink);
}
/* Cellar atmosphere built in layers — a single warm light falling into the dark,
   the suggestion of bottles standing in shadow. No photograph. */
.hero .atmos{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(58% 50% at 76% 2%, rgba(196,168,119,.22), rgba(176,141,87,.06) 38%, transparent 62%),
    radial-gradient(46% 60% at 8% 30%, rgba(58,40,52,.34), transparent 58%),
    radial-gradient(90% 55% at 50% 118%, rgba(58,24,32,.42), transparent 60%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0) 0px,
      rgba(255,255,255,.014) 2px,
      rgba(0,0,0,.05) 5px,
      rgba(255,255,255,0) 9px,
      rgba(255,255,255,0) 46px),
    var(--ink);
}
.hero .atmos::after{
  content:""; position:absolute; inset:-20%;
  background:radial-gradient(40% 38% at 72% 8%, rgba(196,168,119,.10), transparent 60%);
  animation:breathe 11s ease-in-out infinite;
}
/* fine grain to kill the flat digital look */
.hero .grain{
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}
/* A bottle silhouette barely emerging from shadow on the right — home only.
   Pure SVG shape lit by the gradient, never a photograph. */
.hero .silhouette{
  position:absolute; z-index:0; right:6vw; bottom:0; height:88vh; width:auto;
  opacity:.5; pointer-events:none;
  -webkit-mask-image:linear-gradient(transparent 4%, #000 34%, #000 86%, transparent 100%);
  mask-image:linear-gradient(transparent 4%, #000 34%, #000 86%, transparent 100%);
  animation:fade 2.4s 1s ease forwards; opacity:0;
}
@media (max-width:980px){ .hero .silhouette{ opacity:0 !important; display:none; } }
/* Signature: a single thread of gold light descending — the drop's path */
.hero::before{
  content:""; position:absolute; top:0; left:clamp(1.25rem,5vw,4rem); z-index:1;
  width:1px; height:0;
  background:linear-gradient(var(--gold),rgba(176,141,87,.04));
  animation:descend 2.4s 1.1s cubic-bezier(.6,0,.2,1) forwards;
}
@keyframes descend{ to{ height:min(42vh,420px); } }
.hero .wrap{ position:relative; z-index:2; }
.hero .eyebrow{ opacity:0; transform:translateY(14px); animation:rise .9s .15s ease forwards; }
.hero h1{
  font-size:var(--step-4);
  margin:1.4rem 0 0;
  max-width:14ch;
  opacity:0; transform:translateY(20px); animation:rise 1s .3s ease forwards;
}
.hero h1 em{ font-style:italic; color:var(--gold); }
.hero .lede{
  margin-top:2rem; max-width:46ch;
  font-size:var(--step-1); line-height:1.4; color:var(--bone);
  font-family:var(--serif); font-weight:300;
  opacity:0; transform:translateY(20px); animation:rise 1s .5s ease forwards;
}
.hero .hero-meta{
  margin-top:3.5rem; display:flex; gap:2.5rem; flex-wrap:wrap;
  opacity:0; animation:fade 1.2s .9s ease forwards;
}
.hero .hero-meta div{ display:flex; flex-direction:column; gap:.35rem; }
.hero .hero-meta dt{ font-size:var(--step--1); letter-spacing:.28em; text-transform:uppercase; color:var(--gold); }
.hero .hero-meta dd{ font-family:var(--serif); font-size:1.2rem; color:var(--bone); }

.scrollcue{
  position:absolute; left:50%; bottom:2.2rem; transform:translateX(-50%);
  font-size:var(--step--1); letter-spacing:.3em; text-transform:uppercase; color:var(--bone-dim);
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  opacity:0; animation:fade 1.2s 1.3s ease forwards;
}
.scrollcue .line{ width:1px; height:34px; background:linear-gradient(var(--gold),transparent); animation:cue 2.4s ease-in-out infinite; }

/* ---------- Manifesto lines ---------- */
.manifesto{ background:var(--ink); }
.manifesto-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(2rem,7vw,6rem); align-items:center; }
.manifesto .lines{ display:flex; flex-direction:column; gap:1.4rem; max-width:24ch; }
.manifesto .lines p{
  font-family:var(--serif); font-size:var(--step-2); line-height:1.12; color:var(--bone);
}
.manifesto .lines p:last-child{ color:var(--gold); }
.manifesto .aside{ margin-top:3rem; max-width:42ch; color:var(--bone-dim); }

/* Manifesto visual — a drop of gold light falling into a still pool.
   Built in CSS, no image. The brand mark made motion. */
.manifesto-visual{ display:flex; flex-direction:column; align-items:center; justify-content:center; }
.vial{
  position:relative; width:100%; max-width:300px; aspect-ratio:3/4;
  border:1px solid var(--ink-line);
  background:
    radial-gradient(60% 40% at 50% 16%, rgba(196,168,119,.14), transparent 60%),
    linear-gradient(180deg, #16141b, #0b0b0f);
  overflow:hidden;
}
.vial .drop{
  position:absolute; left:50%; top:14%; width:7px; height:11px; margin-left:-3.5px;
  background:radial-gradient(circle at 50% 35%, var(--gold-soft), var(--gold));
  border-radius:50% 50% 50% 50% / 38% 38% 62% 62%;
  box-shadow:0 0 14px 2px rgba(176,141,87,.4);
  animation:drop-fall 3.6s cubic-bezier(.55,0,.45,1) infinite;
}
.vial .pool{
  position:absolute; left:50%; bottom:20%; width:8px; height:8px; margin-left:-4px;
  border-radius:50%; border:1px solid rgba(176,141,87,.5);
  animation:pool-ring 3.6s cubic-bezier(.4,0,.2,1) infinite;
}
.vial::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:22%;
  background:radial-gradient(60% 100% at 50% 100%, rgba(176,141,87,.14), transparent 70%);
}
.vial-cap{ margin-top:1.4rem; font-family:var(--serif); font-style:italic; color:var(--bone-dim); font-size:1.05rem; text-align:center; max-width:30ch; }

@keyframes drop-fall{
  0%{ top:14%; opacity:0; transform:scaleY(.7); }
  12%{ opacity:1; }
  55%{ top:62%; opacity:1; transform:scaleY(1.15); }
  68%{ top:66%; opacity:0; transform:scaleY(.4); }
  100%{ top:66%; opacity:0; }
}
@keyframes pool-ring{
  0%,60%{ width:8px; height:8px; margin-left:-4px; opacity:0; }
  70%{ opacity:.7; }
  100%{ width:54px; height:14px; margin-left:-27px; opacity:0; }
}

/* ---------- Pillars ---------- */
.pillars{ background:var(--ink-warm); }
.pillars-intro{ max-width:52ch; color:var(--bone-dim); margin:-1rem 0 2.5rem; font-family:var(--serif); font-size:1.2rem; font-style:italic; }
.pillar-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1px; background:var(--ink-line); border:1px solid var(--ink-line); }
.pillar{
  background:var(--ink-warm); padding:2.4rem 2rem; min-height:280px;
  display:flex; flex-direction:column;
  transition:background .5s ease;
  position:relative;
}
.pillar:hover{ background:#17131d; }
.pillar .idx{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.2em; color:var(--gold); }
.pillar-icon{ width:34px; height:34px; margin:1.4rem 0 .4rem; fill:none; stroke:var(--gold); stroke-width:1.3; opacity:.75; }
.pillar h3{ font-size:var(--step-1); margin-top:.6rem; }
.pillar-line{ margin-top:.7rem; color:var(--bone); font-size:.98rem; }
.pillar-why{ margin-top:1rem; color:var(--bone-dim); font-size:.88rem; line-height:1.6; }

/* ---------- Archive gallery ---------- */
.archive-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:clamp(1.5rem,3vw,2.5rem);
}
.bottle{
  position:relative; background:#1a1722; border:1px solid #2a2533;
  overflow:hidden; transition:border-color .5s ease, transform .5s ease, box-shadow .5s ease;
  box-shadow:0 1px 0 rgba(255,255,255,.03) inset, 0 18px 40px rgba(0,0,0,.35);
}
.bottle:hover{ border-color:rgba(176,141,87,.45); transform:translateY(-4px); }
.bottle .frame{
  position:relative; aspect-ratio:4/5; overflow:hidden; background:#000;
}
.bottle .frame img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s cubic-bezier(.2,.8,.2,1), opacity .6s ease; opacity:.92; }
.bottle:hover .frame img{ transform:scale(1.05); opacity:1; }

/* Bottles are pre-framed on a uniform 3:4 transparent canvas, centred.
   No box: the bottle floats on the cellar-dark, lifted only by its own shadow. */
.frame-product{
  aspect-ratio:3/4;
  background:
    radial-gradient(42% 50% at 50% 52%, rgba(176,141,87,.07), transparent 72%);
}
.frame-product img{
  width:100%; height:100%;
  object-fit:contain;
  padding:1.4rem;
  opacity:.96;
  filter:drop-shadow(0 22px 30px rgba(0,0,0,.55));
  transition:opacity .6s ease, filter .6s ease, transform 1s cubic-bezier(.2,.8,.2,1);
}
.bottle:hover .frame-product img{ opacity:1; filter:drop-shadow(0 26px 36px rgba(0,0,0,.62)); transform:scale(1.03); }
.bottle .tag{
  position:absolute; top:1rem; left:1rem; z-index:2;
  font-family:var(--sans); font-size:.65rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); background:rgba(11,11,13,.7); padding:.4rem .7rem; border:1px solid rgba(176,141,87,.3);
  backdrop-filter:blur(4px);
}
.bottle .body{ padding:1.6rem 1.5rem 1.8rem; }
.bottle .body h3{ font-size:1.45rem; line-height:1.15; }
.bottle .body .sub{ margin-top:.4rem; color:var(--bone-dim); font-size:.9rem; font-style:italic; font-family:var(--serif); }
.bottle .body .data{ margin-top:1rem; font-family:var(--sans); font-size:.78rem; letter-spacing:.1em; color:var(--bone-dim); text-transform:uppercase; }
.bottle .quiet{ margin-top:1.2rem; padding-top:1.2rem; border-top:1px solid var(--ink-line); font-family:var(--serif); font-style:italic; color:var(--bone); font-size:1rem; }
.bottle .cta{
  margin-top:1.5rem; display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--sans); font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  transition:gap .35s ease, color .35s ease;
}
.bottle .cta:hover{ gap:1rem; color:var(--gold-soft); }
.bottle .cta .arrow{ transition:transform .35s ease; }
.bottle:hover .cta .arrow{ transform:translateX(4px); }

.archive-note{ margin-top:3.5rem; max-width:48ch; color:var(--bone-dim); }

/* Archive pulse — signals the archive is alive and changes */
.archive-pulse{
  display:flex; align-items:center; gap:.7rem; margin:-1.5rem 0 2.5rem;
  font-family:var(--sans); font-size:.8rem; letter-spacing:.08em; color:var(--bone-dim);
}
.pulse-dot{
  width:7px; height:7px; border-radius:50%; background:var(--gold); flex-shrink:0;
  box-shadow:0 0 0 0 rgba(176,141,87,.5); animation:pulse 2.8s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(176,141,87,.45); }
  70%{ box-shadow:0 0 0 8px rgba(176,141,87,0); }
  100%{ box-shadow:0 0 0 0 rgba(176,141,87,0); }
}

/* ---------- Generic content blocks (about / contact) ---------- */
.lead{ font-family:var(--serif); font-size:var(--step-2); line-height:1.15; max-width:18ch; }
.prose{ max-width:60ch; }
.prose p{ margin-bottom:1.4rem; color:var(--bone); }
.prose p.dim{ color:var(--bone-dim); }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,6vw,6rem); align-items:start; }

.values{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2.5rem; margin-top:1rem; }
.value h3{ font-size:var(--step-1); color:var(--bone); }
.value .thread{ margin:1rem 0; }
.value p{ color:var(--bone-dim); font-size:.95rem; }

/* ---------- Custody chain diagram ---------- */
.chain-section{ background:var(--ink-warm); }
.chain-intro{ max-width:56ch; color:var(--bone-dim); font-family:var(--serif); font-size:1.25rem; font-style:italic; margin:-1rem 0 3rem; }
.chain{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; align-items:start; gap:0;
}
.chain-node{ text-align:center; padding:0 1rem; }
.chain-icon{
  width:72px; height:72px; margin:0 auto 1.4rem; border-radius:50%;
  border:1px solid var(--ink-line); display:flex; align-items:center; justify-content:center;
  background:radial-gradient(60% 60% at 50% 40%, rgba(176,141,87,.10), transparent 70%);
  transition:border-color .5s ease, background .5s ease;
}
.chain-icon svg{ width:34px; height:34px; fill:none; stroke:var(--gold); stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round; opacity:.85; }
.chain-node:hover .chain-icon{ border-color:rgba(176,141,87,.5); background:radial-gradient(60% 60% at 50% 40%, rgba(176,141,87,.18), transparent 70%); }
.chain-node h4{ font-family:var(--serif); font-size:1.4rem; font-weight:400; color:var(--bone); margin-bottom:.6rem; }
.chain-node p{ font-size:.84rem; line-height:1.6; color:var(--bone-dim); max-width:24ch; margin:0 auto; }
.chain-link{ display:flex; align-items:center; height:72px; padding:0 .4rem; }
.chain-link span{
  display:block; width:100%; min-width:24px; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:.5;
}
.chain-foot{ max-width:58ch; margin:3rem auto 0; text-align:center; color:var(--bone); font-family:var(--serif); font-size:1.15rem; line-height:1.5; }

@media (max-width:820px){
  .chain{ grid-template-columns:1fr; gap:0; }
  .chain-node{ padding:1.6rem 0; }
  .chain-link{ height:40px; justify-content:center; }
  .chain-link span{ width:1px; min-width:1px; height:100%; background:linear-gradient(180deg, transparent, var(--gold), transparent); }
}
/* ---------- Field Notes: index ---------- */
.notes-index{ display:flex; flex-direction:column; gap:1px; background:var(--ink-line); border:1px solid var(--ink-line); }
.note-entry{
  display:block; background:#1a1722; padding:clamp(1.8rem,3.5vw,2.8rem) clamp(1.5rem,4vw,3.5rem);
  transition:background .5s ease; cursor:pointer;
}
.note-entry:hover{ background:#211c2b; }
.note-entry-meta{ display:flex; align-items:center; gap:1.2rem; margin-bottom:1rem; flex-wrap:wrap; }
.note-date{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.14em; text-transform:uppercase; color:var(--bone-dim); margin-left:auto; }
.note-entry h2{ font-size:var(--step-2); max-width:22ch; line-height:1.08; transition:color .4s ease; }
.note-entry:hover h2{ color:var(--gold-soft); }
.note-entry-excerpt{ margin-top:1rem; font-family:var(--serif); font-size:1.25rem; line-height:1.45; color:var(--bone-dim); max-width:62ch; font-style:italic; }
.note-entry-more{
  display:inline-flex; align-items:center; gap:.6rem; margin-top:1.4rem;
  font-family:var(--sans); font-size:.7rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  transition:gap .35s ease;
}
.note-entry:hover .note-entry-more{ gap:1rem; }

/* ---------- Field Notes: single page ---------- */
.wrap-narrow{ max-width:760px; margin-inline:auto; padding-inline:var(--gutter); }
.note-page{ padding-block:clamp(7rem,12vw,10rem) clamp(4rem,8vw,7rem); }
.note-back{
  display:inline-block; margin-bottom:3rem;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color:var(--bone-dim);
  transition:color .35s ease;
}
.note-back:hover{ color:var(--gold); }
.note-page-meta{ display:flex; align-items:center; gap:1.2rem; margin-bottom:1.6rem; flex-wrap:wrap; }
.note-page-title{ font-size:var(--step-3); line-height:1.05; max-width:20ch; margin-bottom:1.8rem; }
.note-page-excerpt{
  font-family:var(--serif); font-size:clamp(1.4rem,2.4vw,1.9rem); line-height:1.4; font-style:italic;
  color:var(--bone); max-width:60ch; margin-bottom:2.5rem;
  padding-bottom:2.5rem; border-bottom:1px solid var(--ink-line);
}
.note-page-body p{ font-size:1.12rem; line-height:1.9; color:var(--bone); max-width:64ch; }
.note-page-body p + p{ margin-top:1.5rem; }
.note-share{ margin-top:3.5rem; padding-top:2rem; border-top:1px solid var(--ink-line); display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; }
.note-share-label{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.2em; text-transform:uppercase; color:var(--bone-dim); }
.note-share-links{ display:flex; gap:1.4rem; }
.note-share-links a{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold);
  border-bottom:1px solid transparent; transition:border-color .35s ease; cursor:pointer;
}
.note-share-links a:hover{ border-bottom-color:var(--gold); }
.note-nav{ margin-top:4rem; padding-top:2.5rem; border-top:1px solid var(--ink-line); display:flex; justify-content:space-between; gap:2rem; }
.note-nav-link{ display:flex; flex-direction:column; gap:.5rem; max-width:45%; }
.note-nav-link.next{ text-align:right; margin-left:auto; }
.note-nav-link .dir{ font-family:var(--sans); font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
.note-nav-link .t{ font-family:var(--serif); font-size:1.15rem; color:var(--bone-dim); transition:color .4s ease; line-height:1.2; }
.note-nav-link:hover .t{ color:var(--bone); }
@media (max-width:560px){
  .note-nav{ flex-direction:column; gap:2rem; }
  .note-nav-link{ max-width:100%; }
  .note-nav-link.next{ text-align:left; }
  .note-date{ margin-left:0; }
}

.notes-list{ display:flex; flex-direction:column; gap:1px; background:var(--ink-line); border:1px solid var(--ink-line); }
.note{ background:var(--ink-warm); padding:clamp(2rem,4vw,3.2rem) clamp(1.5rem,4vw,3.5rem); transition:background .5s ease; }
.note:hover{ background:#17131d; }
.note-meta{ display:flex; align-items:center; gap:1.2rem; margin-bottom:1.2rem; }
.note-no{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.24em; color:var(--gold); }
.note-tag{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.2em; text-transform:uppercase; color:var(--bone-dim); padding-left:1.2rem; border-left:1px solid var(--ink-line); }
.note h2{ font-size:var(--step-2); max-width:20ch; line-height:1.08; }
.note-excerpt{ margin-top:1.2rem; font-family:var(--serif); font-size:1.3rem; line-height:1.45; color:var(--bone); max-width:60ch; font-style:italic; }
.note-body{ margin-top:1.4rem; max-width:62ch; line-height:1.8; }
/* ---------- Quiet list invitation ---------- */
.keep-line{
  margin-top:3rem; max-width:640px;
  border:1px solid var(--ink-line); background:linear-gradient(180deg, #1a1722, #131019);
  padding:clamp(2rem,4vw,2.8rem);
  display:flex; flex-direction:column; gap:1.6rem;
}
.keep-line-text .eyebrow{ display:block; margin-bottom:1rem; }
.keep-line-text p{ color:var(--bone-dim); font-family:var(--serif); font-size:1.2rem; line-height:1.55; font-style:italic; max-width:52ch; }
.keep-line .btn{ align-self:flex-start; }

.contact-card{
  border:1px solid var(--ink-line); background:var(--ink-warm);
  padding:clamp(2rem,5vw,4rem); max-width:640px;
}
.contact-card .eyebrow{ margin-bottom:1.2rem; }
.contact-card h2{ font-size:var(--step-2); }
.contact-row{ margin-top:2rem; display:flex; flex-direction:column; gap:1.5rem; }
.contact-row a{
  display:flex; align-items:baseline; justify-content:space-between; gap:1rem;
  padding-bottom:1rem; border-bottom:1px solid var(--ink-line);
  transition:border-color .4s ease;
}
.contact-row a:hover{ border-bottom-color:var(--gold); }
.contact-row .k{ font-family:var(--sans); font-size:var(--step--1); letter-spacing:.22em; text-transform:uppercase; color:var(--bone-dim); }
.contact-row .v{ font-family:var(--serif); font-size:1.3rem; color:var(--bone); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--ink); background:var(--gold);
  padding:1rem 1.8rem; border:1px solid var(--gold);
  transition:background .4s ease, color .4s ease, gap .35s ease;
}
.btn:hover{ background:transparent; color:var(--gold); gap:1.1rem; }
.btn.ghost{ background:transparent; color:var(--gold); }
.btn.ghost:hover{ background:var(--gold); color:var(--ink); }

/* ---------- Footer ---------- */
.footer{ background:var(--ink); border-top:1px solid var(--ink-line); padding-block:4rem 3rem; }
.footer .grid{ display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; align-items:flex-start; }
.footer .brand{ font-size:1.4rem; }
.footer .tagline{ margin-top:1rem; color:var(--bone-dim); max-width:30ch; font-family:var(--serif); font-style:italic; }
.footer .fnav{ display:flex; flex-direction:column; gap:.8rem; }
.footer .fnav a{ font-size:var(--step--1); letter-spacing:.2em; text-transform:uppercase; color:var(--bone-dim); transition:color .35s ease; }
.footer .fnav a:hover{ color:var(--gold); }
.footer .legal{ margin-top:3rem; padding-top:2rem; border-top:1px solid var(--ink-line); display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; color:var(--bone-dim); font-size:.78rem; letter-spacing:.08em; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s ease, transform 1s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Animations ---------- */
@keyframes rise{ to{ opacity:1; transform:none; } }
@keyframes fade{ to{ opacity:1; } }
@keyframes cue{ 0%,100%{ transform:scaleY(.4); transform-origin:top; opacity:.4; } 50%{ transform:scaleY(1); opacity:1; } }
@keyframes breathe{ 0%,100%{ opacity:.5; transform:translate(0,0); } 50%{ opacity:1; transform:translate(-2%,1%); } }

/* ---------- Responsive ---------- */
@media (max-width:820px){
  .manifesto-grid{ grid-template-columns:1fr; gap:3rem; }
  .manifesto-visual{ order:-1; }
  .vial{ max-width:240px; }
  .nav{
    position:fixed; inset:0 0 0 auto; width:min(78vw,320px);
    background:var(--ink-warm); border-left:1px solid var(--ink-line);
    flex-direction:column; justify-content:center; gap:2rem; padding:3rem;
    transform:translateX(100%); transition:transform .5s cubic-bezier(.2,.8,.2,1); z-index:60;
  }
  .nav.open{ transform:none; }
  .nav a{ font-size:1rem; }
  .nav-toggle{ display:block; z-index:61; }
  .two-col{ grid-template-columns:1fr; }
  .hero .hero-meta{ gap:1.5rem 2.5rem; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ── Individual bottle pages ─────────────────────────── */
.bottle-page{ padding: clamp(5rem,9vw,7rem) 0 clamp(2rem,6vw,5rem); }
.bottle-page-grid{
  display:grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1fr);
  gap: clamp(1.5rem,5vw,4rem); align-items:center; margin-top:1.5rem;
}
.bottle-page-frame .frame-product{ max-width:340px; margin-inline:auto; background:radial-gradient(40% 44% at 50% 54%, rgba(176,141,87,.05), transparent 70%); }
.bottle-page-detail .tag{ margin-bottom:1rem; }
.bottle-page-title{
  font-family:var(--serif); font-weight:500; line-height:1.05;
  font-size:var(--step-2); margin:.2rem 0 .3rem;
}
.bottle-page-sub{
  font-family:var(--serif); font-style:italic; color:var(--bone);
  font-size:var(--step-0); margin:0 0 .4rem;
}
.bottle-page-line{ color:var(--bone-dim); font-size:.92rem; letter-spacing:.02em; margin:0 0 1.6rem; }
.bottle-page-data{
  display:flex; flex-wrap:wrap; gap:1.5rem 2.2rem;
  border-top:1px solid var(--ink-line); border-bottom:1px solid var(--ink-line);
  padding:1.2rem 0; margin:0 0 1.4rem;
}
.bottle-page-data div{ display:flex; flex-direction:column; gap:.25rem; }
.bottle-page-data dt{
  font-family:var(--sans); font-size:.66rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--bone-dim);
}
.bottle-page-data dd{ margin:0; font-family:var(--serif); font-size:1.15rem; color:var(--bone); }
.bottle-page-note{ color:var(--bone-dim); font-size:.92rem; line-height:1.65; max-width:42ch; margin:0 0 1.6rem; }
@media (max-width:680px){
  .bottle-page-grid{ grid-template-columns:1fr; }
  .bottle-page-frame .frame-product{ max-width:260px; }
}

/* Archive card frame as link */
.frame-link{ display:block; text-decoration:none; cursor:pointer; }
.frame-link .frame-product{ transition:transform .4s ease, box-shadow .4s ease; }
.frame-link:hover .frame-product{ transform:translateY(-3px); }

/* ═══════════════════════════════════════════════════
   ZINE / EDITORIAL HOME — distinctive broken-grid layout
   ═══════════════════════════════════════════════════ */
.zine{ padding: clamp(2rem,6vw,4.5rem) 0 0; overflow:hidden; }
.zine-wrap{ max-width:var(--maxw); margin:0 auto; padding:0 var(--gutter); position:relative; }

.zine-issueline{
  display:flex; justify-content:space-between; align-items:baseline;
  font-family:var(--sans); font-size:.66rem; letter-spacing:.26em;
  text-transform:uppercase; color:var(--bone-dim);
  border-bottom:1px solid var(--ink-line); padding-bottom:1rem; margin-bottom:.5rem;
}
.zine-issueline .roman{ color:var(--gold); }

/* floating side note, breaks the grid */
.zine-sidenote{
  position:absolute; right:var(--gutter); top:clamp(3rem,7vw,5rem);
  width:min(34vw,230px); text-align:right;
  font-family:var(--sans); font-size:.82rem; line-height:1.75; color:var(--bone-dim);
  border-top:1px solid var(--gold); padding-top:.85rem; z-index:3;
}

/* the giant staggered headline */
.zine-h1{
  font-family:var(--serif); font-weight:400;
  font-size:clamp(4rem,16vw,12rem); line-height:.82; letter-spacing:-.05em;
  margin:clamp(1.5rem,4vw,3rem) 0 0; color:var(--bone);
}
.zine-h1 .l2{ display:block; padding-left:clamp(3rem,14vw,11rem); }
.zine-h1 .l3{ display:block; color:var(--gold); font-style:italic; }

/* three editorial columns */
.zine-cols{
  display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.5rem,4vw,2.6rem);
  margin-top:clamp(2rem,5vw,3.4rem); border-top:1px solid var(--ink-line); padding-top:1.6rem;
}
.zine-col .eyebrow{ color:var(--gold); }
.zine-col p{ font-family:var(--sans); font-size:.82rem; line-height:1.75; color:var(--bone-dim); margin:.6rem 0 0; }

.zine-enter{
  display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap;
  margin-top:clamp(1.8rem,4vw,2.6rem); border-top:1px solid var(--ink-line);
  padding:1.3rem 0 clamp(2.5rem,6vw,4rem);
}
.zine-enter .big{ font-family:var(--serif); font-style:italic; font-size:clamp(1.6rem,4vw,2.1rem); color:var(--bone); }
.zine-enter a{ text-decoration:none; color:var(--gold); font-family:var(--sans); font-size:.8rem; letter-spacing:.18em; }
.zine-enter .meta{ margin-left:auto; font-family:var(--sans); font-size:.68rem; letter-spacing:.06em; color:var(--bone-dim); }

/* record strip — bottles as ledger rows, not a card grid */
.ledger{ border-top:1px solid var(--ink-line); }
.ledger-head{
  font-family:var(--sans); font-size:.66rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--bone-dim); padding:1.4rem 0 .9rem;
}
.ledger-row{
  display:grid; grid-template-columns:2.4rem 1.4fr 1fr auto; gap:clamp(.8rem,2.5vw,2rem);
  align-items:baseline; padding:1.15rem 0; border-top:1px solid #16161a;
  text-decoration:none; color:inherit; transition:padding-left .35s ease,background .35s ease;
}
.ledger-row:hover{ padding-left:.7rem; background:linear-gradient(90deg,rgba(176,141,87,.06),transparent 60%); }
.ledger-row .rno{ font-family:var(--sans); font-size:.72rem; color:var(--bone-dim); }
.ledger-row .rname{ font-family:var(--serif); font-size:clamp(1.15rem,2.6vw,1.5rem); color:var(--bone); }
.ledger-row .rname em{ display:block; font-style:normal; font-family:var(--sans); font-size:.7rem; letter-spacing:.04em; color:var(--bone-dim); margin-top:.2rem; }
.ledger-row .rmeta{ font-family:var(--sans); font-size:.74rem; color:var(--bone-dim); letter-spacing:.03em; }
.ledger-row .rtag{ font-family:var(--sans); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }

@media (max-width:760px){
  .zine-sidenote{ position:static; width:auto; text-align:left; margin-top:1.4rem; }
  .zine-h1 .l2{ padding-left:2rem; }
  .zine-cols{ grid-template-columns:1fr; gap:1.4rem; }
  .ledger-row{ grid-template-columns:1.6rem 1fr; }
  .ledger-row .rmeta,.ledger-row .rtag{ grid-column:2; }
}

/* Ledger thumbnails — small, discreet bottle image beside the name (ezine touch) */
.ledger-row.has-thumb{ grid-template-columns:2.4rem 40px 1.4fr 1fr auto; }
.ledger-thumb{
  width:40px; height:74px; object-fit:contain; object-position:center;
  align-self:center; opacity:.9; transition:opacity .35s ease, transform .35s ease;
}
.ledger-row:hover .ledger-thumb{ opacity:1; transform:translateY(-2px); }
@media (max-width:760px){
  .ledger-row.has-thumb{ grid-template-columns:1.6rem 32px 1fr; }
  .ledger-thumb{ width:32px; height:58px; }
  .ledger-row.has-thumb .rmeta,.ledger-row.has-thumb .rtag{ grid-column:3; }
}

/* Breadcrumb on bottle pages */
.crumb{ font-family:var(--sans); font-size:.72rem; letter-spacing:.08em; color:var(--bone-dim); margin-bottom:1.4rem; display:block; }
.crumb a{ color:var(--bone-dim); text-decoration:none; transition:color .3s ease; }
.crumb a:hover{ color:var(--gold); }
.crumb span{ margin:0 .4rem; color:#4a463e; }
.crumb .crumb-current{ color:var(--bone); margin:0; }

/* Custody band — visualises "ownership changes, bottle stays" */
.custody-band{ margin:-1rem 0 3.2rem; display:flex; flex-direction:column; gap:.6rem; max-width:680px; }
.cb-row{ display:grid; grid-template-columns:6.5rem 1fr 7rem; align-items:center; gap:1rem; padding:.7rem 0; }
.cb-ownership{ border-bottom:1px dashed #2a2630; }
.cb-label{ font-family:var(--sans); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--bone-dim); }
.cb-track{ display:flex; align-items:center; gap:.6rem; flex-wrap:wrap; }
.cb-pip{ font-family:var(--serif); font-size:.92rem; color:var(--bone); padding:.18rem .7rem; border:1px solid #2a2630; border-radius:2px; }
.cb-arrow{ color:var(--gold); font-size:.8rem; }
.cb-static .cb-pip-fixed{ border-color:rgba(176,141,87,.45); color:var(--gold-soft); background:radial-gradient(80% 100% at 50% 50%, rgba(176,141,87,.10), transparent); letter-spacing:.02em; }
.cb-note{ font-family:var(--sans); font-size:.66rem; letter-spacing:.06em; color:#6a665e; text-align:right; font-style:italic; }
@media (max-width:680px){
  .cb-row{ grid-template-columns:1fr; gap:.4rem; }
  .cb-note{ text-align:left; }
}

/* Archive filters — editorial index, not e-commerce chips */
.archive-filters{ display:flex; align-items:center; flex-wrap:wrap; gap:.2rem .9rem; padding:.4rem 0 1.4rem; }
.af-btn{
  background:none; border:none; cursor:pointer; padding:.2rem 0;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--bone-dim); transition:color .3s ease; position:relative;
}
.af-btn::after{ content:""; position:absolute; left:0; bottom:-3px; width:0; height:1px; background:var(--gold); transition:width .3s ease; }
.af-btn:hover{ color:var(--bone); }
.af-btn.is-active{ color:var(--gold); }
.af-btn.is-active::after{ width:100%; }
.af-sep{ color:#3a362e; font-size:.7rem; }
.af-count{ font-family:var(--sans); font-size:.68rem; letter-spacing:.06em; color:#6a665e; margin:-.6rem 0 1rem; min-height:1em; }
.ledger-row.is-hidden{ display:none; }

/* Note reading time in the index meta */
.note-read{ font-family:var(--sans); font-size:.66rem; letter-spacing:.1em; color:var(--gold); text-transform:uppercase; }
.note-read::before{ content:"· "; color:#4a463e; }

/* Atmospheric image bands — texture only, faded into cellar-darkness */
.atmos-band{
  max-width:var(--maxw); margin:1.5rem auto 2.5rem; padding:0 var(--gutter);
  position:relative;
}
.atmos-band img{
  width:100%; height:clamp(140px,22vw,260px); object-fit:cover; object-position:center 38%;
  display:block; opacity:.62; filter:saturate(.9);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent);
}
/* small inline atmospheric detail (e.g. wax seal) */
.atmos-detail{ position:relative; overflow:hidden; border-radius:2px; }
.atmos-detail img{
  width:100%; height:100%; object-fit:cover; opacity:.7; display:block;
  filter:saturate(.85) brightness(.9);
}

/* Home hero — atmospheric tunnel background, melts into cellar-black */
/* Home hero — atmospheric tunnel background, now scroll-aware.
   Parallax remains atmospheric: the cellar texture breathes, it never claims inventory proof. */
.zine-hero-bg{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  --ted-hero-image-y:0px;
  --ted-hero-copy-y:0px;
  --ted-hero-copy-opacity:1;
  /* Raised from .54: the hero image must remain visible, not buried. */
  --ted-hero-image-opacity:.86;
}
.zine-hero-img{
  position:absolute; inset:-8% -5%; z-index:0; pointer-events:none;
  background-image:url('../img/atmos/cellar-tunnel.jpg');
  background-size:cover; background-position:center 42%;
  opacity:var(--ted-hero-image-opacity);
  /* Lighter grade: keeps the cellar mood while recovering the existing image detail. */
  filter:brightness(1.18) contrast(1.06) saturate(.92);
  transform:translate3d(0,var(--ted-hero-image-y),0) scale(1.08);
  transform-origin:center;
  will-change:transform, opacity;
  -webkit-mask-image:radial-gradient(125% 98% at 61% 40%, #000 42%, rgba(0,0,0,.78) 70%, transparent 92%);
          mask-image:radial-gradient(125% 98% at 61% 40%, #000 42%, rgba(0,0,0,.78) 70%, transparent 92%);
}
.zine-hero-img::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,11,13,.06) 0%, rgba(11,11,13,.32) 74%, #0B0B0D 100%);
}
.zine-hero-bg::before{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(11,11,13,.92) 0%, rgba(11,11,13,.56) 36%, rgba(11,11,13,.08) 66%, rgba(11,11,13,.62) 100%),
    radial-gradient(56% 50% at 72% 32%, rgba(176,141,87,.14), transparent 66%);
}
.zine-hero-bg .zine-wrap{
  position:relative; z-index:2;
  transform:translate3d(0,var(--ted-hero-copy-y),0);
  opacity:var(--ted-hero-copy-opacity);
  will-change:transform, opacity;
}

/* Fundido de entrada: sólo se arma si JS está activo, así el contenido nunca queda oculto sin JavaScript. */
.zine-hero-bg.is-hero-motion-armed .zine-issueline,
.zine-hero-bg.is-hero-motion-armed .zine-sidenote,
.zine-hero-bg.is-hero-motion-armed .zine-h1,
.zine-hero-bg.is-hero-motion-armed .zine-cols,
.zine-hero-bg.is-hero-motion-armed .zine-enter{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 1200ms ease, transform 1200ms ease;
}
.zine-hero-bg.is-hero-motion-armed.is-visible .zine-issueline,
.zine-hero-bg.is-hero-motion-armed.is-visible .zine-sidenote,
.zine-hero-bg.is-hero-motion-armed.is-visible .zine-h1,
.zine-hero-bg.is-hero-motion-armed.is-visible .zine-cols,
.zine-hero-bg.is-hero-motion-armed.is-visible .zine-enter{
  opacity:1;
  transform:translateY(0);
}
.zine-hero-bg.is-hero-motion-armed .zine-sidenote{ transition-delay:120ms; }
.zine-hero-bg.is-hero-motion-armed .zine-h1{ transition-delay:210ms; }
.zine-hero-bg.is-hero-motion-armed .zine-cols{ transition-delay:360ms; }
.zine-hero-bg.is-hero-motion-armed .zine-enter{ transition-delay:500ms; }

@media (max-width:760px){
  .zine-hero-bg{ min-height:auto; }
  .zine-hero-img{ opacity:.68; inset:-5%; }
}
@media (prefers-reduced-motion:reduce){
  .zine-hero-bg,
  .zine-hero-img,
  .zine-hero-bg .zine-wrap,
  .zine-hero-bg.is-hero-motion-armed .zine-issueline,
  .zine-hero-bg.is-hero-motion-armed .zine-sidenote,
  .zine-hero-bg.is-hero-motion-armed .zine-h1,
  .zine-hero-bg.is-hero-motion-armed .zine-cols,
  .zine-hero-bg.is-hero-motion-armed .zine-enter{
    transform:none !important;
    transition:none !important;
    opacity:1 !important;
  }
}

/* ═══ OPENED — real bottle photographs ═══ */
.opened-feature{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.6rem,4vw,3.4rem); align-items:center; }
.opened-feature-img{ position:relative; }
.opened-feature-img img{
  width:100%; aspect-ratio:3/4; object-fit:cover; display:block;
  border:1px solid var(--ink-line); border-radius:2px;
}
.opened-feature-text .eyebrow{ color:var(--gold); }
.opened-h2{ font-family:var(--serif); font-size:clamp(2.4rem,5vw,3.6rem); font-weight:400; letter-spacing:-.02em; margin:.6rem 0 .2rem; color:var(--bone); line-height:1; }
.opened-cuvee{ font-family:var(--serif); font-style:italic; font-size:1.15rem; color:#C9C3B6; margin:0 0 .3rem; }
.opened-meta{ font-family:var(--sans); font-size:.74rem; letter-spacing:.06em; color:var(--bone-dim); margin:0 0 1.1rem; }
.opened-note{ font-family:var(--sans); font-size:.92rem; line-height:1.8; color:var(--bone-dim); max-width:46ch; }

.opened-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,3vw,2rem); margin-top:1.4rem; }
.opened-card-img img{
  width:100%; aspect-ratio:3/4; object-fit:cover; display:block;
  border:1px solid var(--ink-line); border-radius:2px;
  filter:saturate(.97); transition:transform .5s ease, filter .5s ease;
}
.opened-card:hover .opened-card-img img{ transform:translateY(-4px); filter:saturate(1.05); }
.opened-card-text h3{ font-family:var(--serif); font-size:1.4rem; font-weight:400; color:var(--bone); margin:.8rem 0 .15rem; line-height:1.05; }
.opened-card-text .opened-cuvee{ font-size:.98rem; }
.opened-card-text .opened-note{ font-size:.82rem; line-height:1.7; margin-top:.5rem; }

@media (max-width:860px){
  .opened-feature{ grid-template-columns:1fr; }
  .opened-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .opened-grid{ grid-template-columns:1fr; }
}

/* Note header atmospheric band — texture, faded into cellar-black */
.note-hero-band{ margin:1rem 0 2rem; border-radius:2px; overflow:hidden; }
.note-hero-band img{
  width:100%; height:clamp(120px,18vw,200px); object-fit:cover; display:block;
  opacity:.55; filter:saturate(.88);
  -webkit-mask-image:linear-gradient(180deg,#000 60%,transparent);
          mask-image:linear-gradient(180deg,#000 60%,transparent);
}
