/* ===== Cantine Rasore — editorial Italian ===== */
:root {
  --paper: #EFEAE0;
  --paper-2: #E6E0D2;
  --paper-3: #FBF8F2;
  --ink: #1A1311;
  --ink-2: #3A322D;
  --ink-3: #6E665E;
  --bordeaux: #3D1419;
  --bordeaux-2: #5C1F2A;
  --gold: #A8864A;
  --gold-2: #8C6E35;
  --rule: rgba(26, 19, 17, 0.18);
  --rule-2: rgba(26, 19, 17, 0.08);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ----- typography utilities ----- */
.serif { font-family: var(--serif); }
.italic { font-style: italic; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.eyebrow-thin {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -0.015em;
  line-height: 0.98;
  margin: 0;
}
.h-it { font-style: italic; color: var(--bordeaux); }

/* ----- nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  mix-blend-mode: difference;
  color: #EFEAE0;
}
.nav.solid {
  mix-blend-mode: normal;
  background: rgba(239, 234, 224, 0.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
}
.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-brand small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  margin-top: 4px;
  opacity: 0.8;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links button { opacity: 0.85; transition: opacity .2s; }
.nav-links button:hover { opacity: 1; }
.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lang-switch { opacity: 0.7; display: flex; gap: 8px; }
.lang-switch span { padding: 2px 4px; }
.lang-switch .on { border-bottom: 1px solid currentColor; opacity: 1; }
.nav-cta {
  border: 1px solid currentColor;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* ----- hero ----- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--bordeaux);
  color: var(--paper-3);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(168,134,74,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(92,31,42,0.6), transparent 60%),
    linear-gradient(180deg, #4A1A1F 0%, #2B0E13 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: 0 36px 60px;
  gap: 24px;
}
.hero-marks {
  position: absolute;
  top: 50%;
  left: 36px;
  right: 36px;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--paper-3);
  display: block;
}
.hero-wordmark .w-2 {
  display: block;
  font-style: normal;
  font-weight: 300;
  margin-left: 1.2em;
  color: var(--gold);
  opacity: 0.95;
}
.hero-bottles {
  position: absolute;
  right: 4vw;
  bottom: 0;
  top: 0;
  width: 50vw;
  pointer-events: none;
}
.hero-bottle {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.hero-bottle img { height: 100%; width: auto; }
.hero-bottle.b1 { right: 22%; height: 86%; z-index: 3; }
.hero-bottle.b2 { right: 4%;  height: 76%; z-index: 2; opacity: 0.95; }
.hero-bottle.b3 { right: 40%; height: 70%; z-index: 1; opacity: 0.6; }

.hero-meta-l {
  position: relative;
  z-index: 5;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251, 248, 242, 0.85);
}
.hero-meta-l .rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 0 18px;
}
.hero-meta-r {
  position: relative;
  z-index: 5;
  justify-self: end;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.6);
}

.hero-ticker {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  border-top: 1px solid rgba(251,248,242,0.18);
  padding: 14px 0;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.7);
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  gap: 0;
}
.hero-ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 60s linear infinite;
  padding-right: 48px;
}
.hero-ticker-track span:nth-child(odd) { color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-scroll {
  position: absolute;
  bottom: 80px; left: 36px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* ----- intro / story ----- */
section { padding: 110px 36px; position: relative; }
.section-rule {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 60px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.section-rule .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bordeaux);
}
.section-rule .lbl {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-rule .spacer { flex: 1; }
.section-rule .ital {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
}

/* ----- story two-col ----- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-lede {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 0 0 28px;
}
.story-lede em { font-style: italic; color: var(--bordeaux); }
.story-body { columns: 2; column-gap: 36px; column-rule: 1px solid var(--rule-2); font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }
.story-body p { margin: 0 0 14px; break-inside: avoid; }
.story-body p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.4em;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--bordeaux);
}
.story-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.story-stats .stat .n {
  font-family: var(--serif);
  font-size: 42px;
  font-style: italic;
  line-height: 1;
  color: var(--bordeaux);
}
.story-stats .stat .l {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}

/* ----- lines (horizontal collection) ----- */
.lines-section { padding-top: 60px; }
.lines-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.line-card {
  position: relative;
  padding: 28px 22px 32px;
  border-right: 1px solid var(--rule-2);
  cursor: pointer;
  background: var(--paper);
  transition: background .35s, color .35s;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.line-card:last-child { border-right: 0; }
.line-card:hover,
.line-card.active {
  background: var(--accent, var(--bordeaux));
  color: var(--paper-3);
}
.line-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.6;
}
.line-card .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 14px 0 8px;
}
.line-card .tag {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.line-card .preview {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  margin: 12px 0;
}
.line-card .preview img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,0.18));
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.line-card:hover .preview img { transform: translateY(-6px); }
.line-card .motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.line-card .count {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
}

.line-detail {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 28px 0;
}
.line-detail .blurb {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.25;
  color: var(--bordeaux);
}
.line-detail .meta {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 540px;
}

/* ----- cellar grid ----- */
.cellar { background: var(--paper-3); }
.cellar-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.chip {
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  transition: all .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.on {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--paper-3);
}
.cellar-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-3);
  margin-left: auto;
  align-self: center;
}

.cellar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.bottle-card {
  position: relative;
  padding: 26px 20px 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-3);
  cursor: pointer;
  transition: background .25s;
  display: flex;
  flex-direction: column;
  min-height: 460px;
}
.bottle-card:hover {
  background: var(--paper);
}
.bottle-card .topline {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bottle-card .photo {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 14px 0;
  position: relative;
}
.bottle-card .photo img {
  max-height: 250px;
  width: auto;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.12));
  transition: transform .4s;
}
.bottle-card:hover .photo img { transform: translateY(-4px); }
.bottle-card .photo .type-dot {
  position: absolute;
  top: 0; right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.bottle-card .name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
}
.bottle-card .name em { font-style: italic; }
.bottle-card .footline {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11.5px;
  color: var(--ink-3);
}
.bottle-card .footline .grape {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.bottle-card .footline .reg {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* type dot */
.dot-red { background: #6B1A23; }
.dot-white { background: #D6C77F; }
.dot-rose { background: #E5A4A4; }
.dot-sparkling { background: #C9B673; box-shadow: 0 0 0 2px rgba(168,134,74,0.3); }

/* ----- bottle drawer ----- */
.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(26, 19, 17, 0.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(680px, 100vw);
  background: var(--paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 2;
}
.drawer-head .crumb {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.drawer-head .close {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-family: var(--serif);
  transition: background .2s;
}
.drawer-head .close:hover { background: var(--ink); color: var(--paper-3); }
.drawer-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 28px 32px;
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
.drawer-hero .photo {
  display: flex;
  justify-content: center;
  height: 380px;
}
.drawer-hero .photo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,0.18));
}
.drawer-hero .name {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 12px 0 8px;
}
.drawer-hero .name em { font-style: italic; color: var(--bordeaux); }
.drawer-hero .app {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
}
.drawer-section {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
}
.drawer-section h3 {
  margin: 0 0 14px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.drawer-section p {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.tasting-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tasting-chip {
  border: 1px solid var(--rule);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-2);
}
.scale-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.scale {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--rule);
  padding: 12px;
}
.scale .l {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.scale .bars {
  display: flex;
  gap: 4px;
}
.scale .bars i {
  flex: 1;
  height: 6px;
  background: var(--rule);
}
.scale .bars i.on { background: var(--bordeaux); }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.spec {
  border-bottom: 1px dashed var(--rule);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.spec .l {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.spec .v { font-family: var(--serif); font-style: italic; color: var(--ink); }

.drawer-cta {
  padding: 24px 32px 40px;
  display: flex;
  gap: 12px;
}
.btn {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid var(--ink);
}
.btn.primary { background: var(--ink); color: var(--paper-3); }
.btn.primary:hover { background: var(--bordeaux); border-color: var(--bordeaux); }
.btn.ghost:hover { background: var(--ink); color: var(--paper-3); }

/* ----- heritage timeline ----- */
.heritage { background: var(--ink); color: var(--paper-3); }
.heritage .section-rule { border-color: rgba(251,248,242,0.18); }
.heritage .section-rule .lbl { color: rgba(251,248,242,0.6); }
.heritage .section-rule .num { color: var(--gold); }
.heritage h2 { color: var(--paper-3); }
.heritage h2 em { color: var(--gold); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(251,248,242,0.2);
}
.t-step {
  padding: 32px 22px 32px 0;
  border-right: 1px solid rgba(251,248,242,0.12);
  position: relative;
}
.t-step:last-child { border-right: 0; }
.t-step .dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 0;
}
.t-step .year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}
.t-step .t {
  font-family: var(--serif);
  font-size: 22px;
  margin: 14px 0 8px;
}
.t-step .b {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251,248,242,0.75);
}

/* ----- italy map ----- */
.italy {
  background: var(--paper-2);
}
.italy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.italy-map {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.italy-map svg { width: 100%; height: 100%; display: block; }
.italy-map .region-dot {
  position: absolute;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--bordeaux);
  cursor: pointer;
  transition: transform .2s;
}
.italy-map .region-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--bordeaux);
  border-radius: 50%;
  opacity: 0.35;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.italy-map .region-dot:hover { transform: scale(1.3); }
.italy-map .region-label {
  position: absolute;
  transform: translate(14px, -50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  pointer-events: none;
}
.italy-map .region-label .c {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  color: var(--gold-2);
  margin-left: 6px;
  letter-spacing: 0.16em;
}
.region-list {
  border-top: 1px solid var(--rule);
}
.region-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-2);
}
.region-row .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bordeaux);
}
.region-row .name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
}
.region-row .c {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.region-row .grapes {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  grid-column: 2 / -1;
  margin-top: -8px;
}

/* ----- global ----- */
.global { background: var(--bordeaux); color: var(--paper-3); }
.global .section-rule { border-color: rgba(251,248,242,0.2); }
.global .section-rule .lbl { color: rgba(251,248,242,0.6); }
.global .section-rule .num { color: var(--gold); }
.global h2 em { color: var(--gold); }
.world {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.world-board {
  position: relative;
  background:
    linear-gradient(rgba(251,248,242,0.06), rgba(251,248,242,0)) ,
    radial-gradient(circle at 30% 40%, rgba(168,134,74,0.12), transparent 60%);
  border: 1px solid rgba(251,248,242,0.18);
  aspect-ratio: 2 / 1.1;
  overflow: hidden;
}
.world-board svg { width: 100%; height: 100%; opacity: 0.45; }
.world-pin {
  position: absolute;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168,134,74,0.25);
}
.world-pin .lbl {
  position: absolute;
  left: 14px;
  top: -8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-3);
  white-space: nowrap;
  background: rgba(26,19,17,0.6);
  padding: 3px 8px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.world-pin:hover .lbl { opacity: 1; }
.world-list {
  columns: 2;
  column-gap: 36px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}
.world-list .country {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(251,248,242,0.15);
  padding: 6px 0;
  break-inside: avoid;
}
.world-list .country .r {
  font-family: var(--sans);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.5);
}

/* ----- retailers ----- */
.retailers {
  margin-top: 80px;
  border-top: 1px solid rgba(251,248,242,0.2);
  padding-top: 30px;
}
.retailers .lbl {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.5);
  margin-bottom: 22px;
}
.retailers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--paper-3);
}
.retailers-row span {
  padding: 0 24px;
  border-right: 1px solid rgba(251,248,242,0.2);
}
.retailers-row span:last-child { border-right: 0; }

/* ----- inquiry ----- */
.inquiry { background: var(--paper); }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.inquiry-grid .lede {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.15;
  margin: 0 0 24px;
}
.inquiry-grid .lede em { font-style: italic; color: var(--bordeaux); }
.inquiry-form { display: grid; gap: 20px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px;
}
.field label {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 22px;
  outline: none;
  resize: none;
  color: var(--ink);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-3); font-style: italic; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ----- footer ----- */
.footer {
  background: var(--ink);
  color: var(--paper-3);
  padding: 80px 36px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(251,248,242,0.15);
  padding-bottom: 50px;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper-3);
}
.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.footer-col h4 {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.footer-credit {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(251,248,242,0.10);
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.42);
}
.footer-credit a {
  color: var(--gold);
  border-bottom: 1px solid rgba(196,146,58,0.45);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-credit a:hover { color: var(--paper-3); border-color: var(--paper-3); }
.footer-col ul li { font-style: italic; overflow-wrap: break-word; }
.footer-col ul li a { border-bottom: 1px solid rgba(251,248,242,0.25); transition: border-color 0.2s; }
.footer-col ul li a:hover { border-color: var(--paper-3); }
.footer-col .addr {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,248,242,0.45);
}
.footer-bot .legal { display: flex; gap: 24px; }

/* ----- age gate ----- */
.gate {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(26,19,17,0.94);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--paper-3);
  padding: 24px;
}
.gate-card {
  max-width: 480px;
  text-align: center;
}
.gate-card .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  margin-bottom: 24px;
}
.gate-card .ask {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.gate-card .body {
  font-size: 13px;
  color: rgba(251,248,242,0.65);
  margin-bottom: 30px;
}
.gate-row { display: flex; justify-content: center; gap: 12px; }
.gate-btn {
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.gate-btn.primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ----- reveal ----- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .lines-strip { grid-template-columns: repeat(3, 1fr); }
  .cellar-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 80px 22px; }

  /* ----- nav: две колонки, всё ужимается ----- */
  .nav { grid-template-columns: auto auto; padding: 14px 18px; gap: 12px; }
  .nav-links { display: none; }
  .nav-brand { font-size: 17px; }
  .nav-brand small { font-size: 8px; letter-spacing: 0.24em; margin-top: 3px; }
  .nav-right { gap: 10px; font-size: 11px; }
  .nav-cta { padding: 7px 11px; font-size: 10.5px; letter-spacing: 0.1em; }
  .lang-switch { gap: 5px; }

  /* ----- hero: из абсолютного позиционирования в вертикальный поток -----
     На десктопе слово, бутылки и подписи лежат друг на друге слоями.
     На телефоне ширины на это нет, поэтому раскладываем их по порядку. */
  .hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding-top: 88px;
  }
  .hero-marks {
    position: static;
    transform: none;
    order: 1;
    padding: 0 22px;
  }
  .hero-wordmark { font-size: clamp(44px, 13.5vw, 92px); line-height: 0.9; }
  .hero-wordmark .w-2 { margin-left: 0.6em; }

  .hero-bottles {
    position: relative;
    order: 2;
    inset: auto;
    width: 100%;
    height: 42vh;
    min-height: 230px;
    max-height: 360px;
    margin-top: 20px;
  }
  .hero-bottle.b3 { left: 0;      right: auto; height: 78%; }
  .hero-bottle.b1 { left: 38%;    right: auto; height: 100%; }
  .hero-bottle.b2 { left: auto;   right: 2%;   height: 86%; }
  .hero-bottle { filter: drop-shadow(0 14px 26px rgba(0,0,0,0.5)); }

  .hero-inner {
    order: 3;
    height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 26px 22px 30px;
    gap: 16px;
  }
  .hero-meta-l { max-width: none; }
  .hero-meta-l p { font-size: 17px !important; }
  .hero-meta-r { justify-self: start; text-align: left; }

  .hero-scroll { display: none; }          /* на телефоне подсказка не нужна */
  .hero-ticker { position: relative; order: 4; bottom: auto; }

  /* ----- заголовки секций: три части в строку не влезают ----- */
  .section-rule { flex-wrap: wrap; gap: 8px 12px; margin-bottom: 34px; }
  .section-rule .spacer { display: none; }
  .section-rule .ital { flex-basis: 100%; }

  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-body { columns: 1; }
  .story-stats { gap: 12px; }
  .story-stats .stat .n { font-size: 30px; }

  .lines-strip { grid-template-columns: 1fr; }
  .line-detail { grid-template-columns: 1fr; gap: 22px; }

  .cellar-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cellar-filter { gap: 6px; }

  .italy-grid, .world, .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .region-row { grid-template-columns: 30px 1fr auto; font-size: 13px; }
  .retailers-row { flex-wrap: wrap; row-gap: 10px; }

  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { font-size: 40px; }
  .footer-bot { flex-direction: column; gap: 14px; }
  .drawer { width: 100vw; }
  .drawer-hero { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .nav-brand small { display: none; }
  .cellar-grid { grid-template-columns: 1fr; }
}
