  :root {
    --ink:        #0a0807;
    --ink-soft:   #15110f;
    --paper:      #f4efe6;
    --paper-warm: #ebe4d6;
    --line:       rgba(244, 239, 230, 0.14);
    --line-strong:rgba(244, 239, 230, 0.32);
    --mute:       #9a928a;
    --red:        #b41e2c;
    --red-deep:   #8d1622;
    --red-glow:   rgba(180, 30, 44, 0.45);

    --display: "Cormorant Garamond", "EB Garamond", Garamond, serif;
    --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

    --maxw: 1320px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .label.red { color: var(--red); }

  .container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- Marquee announcement ---------- */
  .marquee {
    background: var(--red);
    color: var(--paper);
    overflow: hidden;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }
  .marquee__track {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    animation: marq 42s linear infinite;
    padding-left: 60px;
  }
  .marquee__track span::before {
    content: "◯";
    margin-right: 18px;
    color: rgba(244,239,230,0.7);
  }
  @keyframes marq {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---------- Nav ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 8, 7, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 72px;
  }
  .nav__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: start;
  }
  .nav__brand .seal {
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: var(--red);
    background: var(--ink);
  }
  .nav__brand b {
    font-family: var(--display);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .nav__brand b em {
    color: var(--red); font-style: normal; font-weight: 600;
  }
  .nav__menu {
    display: flex; gap: 36px;
    justify-self: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
  }
  .nav__menu a { opacity: .78; transition: opacity .2s, color .2s; position: relative; padding: 8px 0; }
  .nav__menu a:hover { opacity: 1; color: var(--red); }
  .nav__cta {
    justify-self: end;
    display: flex; align-items: center; gap: 14px;
  }
  .nav__cta .lang {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    border-left: 1px solid var(--line-strong);
    padding-left: 14px;
  }
  .nav__cta .lang span.on { color: var(--paper); }

  .nav__toggle {
    display: none;
    background: transparent; border: none; cursor: pointer; padding: 10px;
    justify-self: end;
  }
  .nav__toggle span {
    display: block; width: 22px; height: 1px; background: var(--paper); margin-bottom: 5px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav__toggle span:last-child { margin-bottom: 0; }
  
  .nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    border: 1px solid var(--paper);
    color: var(--paper);
    background: transparent;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: background .25s, color .25s, border-color .25s, transform .2s;
  }
  .btn:hover { background: var(--paper); color: var(--ink); }
  .btn--red { background: var(--red); border-color: var(--red); color: var(--paper); }
  .btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--paper); }
  .btn--ghost { border-color: var(--line-strong); color: var(--paper); }
  .btn--ghost:hover { border-color: var(--paper); background: transparent; color: var(--paper); }
  .btn .arr { font-family: var(--display); font-size: 14px; letter-spacing: 0; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    min-height: calc(100vh - 72px - 32px);
    padding: 80px 0 120px;
    overflow: hidden;
    background:
      radial-gradient(80% 60% at 80% 30%, rgba(180,30,44,0.10), transparent 60%),
      radial-gradient(50% 40% at 15% 80%, rgba(180,30,44,0.06), transparent 70%),
      var(--ink);
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero__copy { position: relative; z-index: 2; }
  .hero__eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 32px;
  }
  .hero__eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--red);
    box-shadow: 0 0 0 4px rgba(180,30,44,0.18);
  }
  h1.hero__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(58px, 7.4vw, 124px);
    line-height: 0.92;
    letter-spacing: -0.018em;
    margin: 0 0 28px;
    color: var(--paper);
  }
  h1.hero__title em {
    font-style: italic;
    color: var(--red);
    font-weight: 500;
  }
  h1.hero__title .small {
    display: block;
    font-size: 0.34em;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-family: var(--mono);
    font-weight: 500;
    color: var(--mute);
    margin-bottom: 18px;
  }
  .hero__lede {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.55;
    color: rgba(244,239,230,0.78);
    max-width: 520px;
    margin: 0 0 44px;
  }
  .hero__lede em { color: var(--paper); font-style: italic; }

  .hero__meta {
    display: grid; grid-template-columns: repeat(3, auto);
    gap: 36px 56px;
    margin: 44px 0 48px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .hero__meta dt {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 6px;
  }
  .hero__meta dd {
    font-family: var(--display);
    font-size: 22px; font-weight: 500;
    margin: 0;
    letter-spacing: 0.01em;
  }
  .hero__meta dd em { color: var(--red); font-style: italic; }

  .hero__cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .hero__price {
    margin-left: 8px;
    display: flex; align-items: baseline; gap: 8px;
  }
  .hero__price .pp {
    font-size: 32px; font-weight: 500; letter-spacing: -0.01em;
  }
  .hero__price .pl {
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
  }

  /* hero bottle column */
  .hero__bottle {
    position: relative;
    z-index: 1;
    display: grid; place-items: center;
  }
  .hero__bottle .ring {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(88%, 560px);
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero__bottle .ring::after {
    content: "";
    position: absolute;
    inset: -6%;
    border: 1px solid rgba(180,30,44,0.22);
    border-radius: 50%;
    border-style: dashed;
  }
  .hero__bottle img {
    position: relative;
    width: 100%;
    max-width: 720px;
    object-fit: contain;
    filter: drop-shadow(0 60px 80px rgba(0,0,0,0.6));
  }
  .hero__crest {
    position: absolute;
    top: 4%;
    right: -2%;
    width: 130px; height: 130px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    display: grid; place-items: center;
    text-align: center;
    background: rgba(10,8,7,0.7);
    backdrop-filter: blur(6px);
  }
  .hero__crest .n {
    font-family: var(--display);
    font-size: 44px; font-weight: 500; line-height: 1;
    color: var(--paper);
  }
  .hero__crest .l {
    font-family: var(--mono);
    font-size: 8px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--red);
    margin-top: 4px;
  }

  .hero__seal {
    position: absolute;
    bottom: 6%;
    left: 4%;
    display: flex; align-items: center; gap: 14px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mute);
  }

  /* hero side index */
  .hero__index {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--mute);
    z-index: 2;
  }

  /* ---------- Section common ---------- */
  section { position: relative; }
  .section__head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  .section__num { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.22em; text-transform: uppercase; }
  .section__title {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.015em;
    margin: 18px 0 0;
  }
  .section__title em { color: var(--red); font-style: italic; font-weight: 500; }
  .section__lede {
    font-size: 21px;
    color: rgba(244,239,230,0.74);
    max-width: 560px;
    margin: 0;
  }

  /* ---------- POEM (signature) ---------- */
  .poem {
    padding: 140px 0;
    background:
      radial-gradient(60% 80% at 50% 50%, rgba(180,30,44,0.08), transparent 70%),
      var(--ink);
    text-align: center;
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .poem .label { margin-bottom: 28px; display: inline-block; }
  .poem .stack {
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.55;
    color: var(--paper);
    max-width: 920px;
    margin: 0 auto;
  }
  .poem .stack p { margin: 0.05em 0; }
  .poem .stack p:nth-child(1) { color: var(--paper); }
  .poem .stack p:nth-child(2) { color: rgba(244,239,230,0.85); }
  .poem .stack p:nth-child(3) { color: rgba(244,239,230,0.78); }
  .poem .stack p:nth-child(4) { color: rgba(244,239,230,0.68); }
  .poem .stack p:nth-child(5) { color: rgba(244,239,230,0.58); }
  .poem .stack p:nth-child(6) { color: rgba(244,239,230,0.48); }
  .poem .sig {
    margin-top: 56px;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--red);
  }
  .poem .sig::before {
    content: "—  ";
  }

  /* ---------- HISTORIA ---------- */
  .historia {
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
  }
  .historia__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  .historia__media {
    position: relative;
  }
  .historia__media img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
  }
  .historia__media .frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(244,239,230,0.18);
    pointer-events: none;
  }
  .historia__media .stamp {
    position: absolute;
    bottom: 28px; right: 28px;
    width: 130px; height: 130px;
    border: 1px solid var(--paper);
    border-radius: 50%;
    background: rgba(10,8,7,0.55);
    display: grid; place-items: center;
    text-align: center;
    color: var(--paper);
    font-family: var(--display);
    font-style: italic;
  }
  .historia__media .stamp .y {
    font-size: 36px; line-height: 1;
  }
  .historia__media .stamp .t {
    font-family: var(--mono); font-style: normal;
    font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    margin-top: 6px;
  }
  .historia__copy h2 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(40px, 4.4vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.012em;
    margin: 18px 0 28px;
  }
  .historia__copy h2 em { color: var(--red); font-style: italic; }
  .historia__copy p {
    color: rgba(244,239,230,0.78);
    font-size: 19px; line-height: 1.65;
    margin: 0 0 22px;
    max-width: 540px;
  }
  .historia__copy p strong { color: var(--paper); font-weight: 500; }
  .historia__pull {
    margin-top: 36px;
    padding-left: 24px;
    border-left: 2px solid var(--red);
    font-family: var(--display);
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    color: var(--paper);
    max-width: 480px;
  }

  /* ---------- WINE / TASTING ---------- */
  .wine {
    padding: 140px 0;
    background:
      linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
    border-bottom: 1px solid var(--line);
  }
  .wine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .wine__bottle {
    position: relative;
    aspect-ratio: 4/5;
    background: #050403;
    overflow: hidden;
  }
  .wine__bottle img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .wine__bottle .corner {
    position: absolute;
    top: 18px; left: 18px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
  }
  .wine__bottle .corner.tr { left: auto; right: 18px; text-align: right; }

  .wine__notes h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    margin: 14px 0 8px;
  }
  .wine__notes h3 em { color: var(--red); font-style: italic; }

  .tasting {
    margin-top: 56px;
    display: grid; gap: 0;
  }
  .tasting__row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 32px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    align-items: baseline;
  }
  .tasting__row:last-child { border-bottom: 1px solid var(--line); }
  .tasting__row .k {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
  }
  .tasting__row .v {
    font-family: var(--display);
    font-size: 19px;
    line-height: 1.55;
    color: var(--paper);
  }
  .tasting__row .vmute { color: rgba(244,239,230,0.7); font-size: 17px; }
  .tasting__row .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
  }

  .specs {
    margin-top: 64px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .specs > div {
    padding: 22px 28px 22px 28px;
    border-right: 1px solid var(--line);
  }
  .specs > div:last-child { border-right: 0; padding-right: 0; }
  .specs .k {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--mute);
    margin-bottom: 8px;
  }
  .specs .v {
    font-family: var(--display);
    font-size: 26px; font-weight: 500;
    line-height: 1.05;
  }
  .specs .v small { font-size: 13px; color: var(--mute); margin-left: 4px; font-weight: 400; }

  /* ---------- TERROIR / 6 viñedos ---------- */
  .terroir {
    padding: 140px 0;
    border-bottom: 1px solid var(--line);
  }
  .terroir__map {
    margin: 60px 0 80px;
    position: relative;
    aspect-ratio: 16 / 5;
    background: var(--ink-soft);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .terroir__map img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) brightness(0.55) contrast(1.1);
  }
  .terroir__map .pin {
    position: absolute;
    color: var(--red);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .terroir__map .pin .dot {
    display: block;
    width: 12px; height: 12px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    margin: 0 auto 8px;
    background: var(--ink);
    position: relative;
  }
  .terroir__map .pin .dot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(180,30,44,0.4);
    border-radius: 50%;
  }
  .terroir__map .pin span { color: var(--paper); }
  .terroir__map .legend {
    position: absolute;
    bottom: 18px; left: 18px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
  }
  .terroir__map .legend b { color: var(--red); font-weight: 500; }

  .vinedos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .vinedo {
    padding: 32px 28px 32px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column;
    min-height: 280px;
    position: relative;
    transition: background .25s;
  }
  .vinedo:hover { background: rgba(180,30,44,0.04); }
  .vinedo:nth-child(4n) { border-right: 0; padding-right: 0; }
  .vinedo .role {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 22px;
  }
  .vinedo h4 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.005em;
  }
  .vinedo h4 em { font-style: italic; color: var(--red); }
  .vinedo p {
    font-size: 16px;
    color: rgba(244,239,230,0.7);
    line-height: 1.55;
    margin: 0;
    max-width: 320px;
  }
  .vinedo .meta {
    margin-top: auto;
    padding-top: 24px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mute);
  }
  .vinedo .meta b { color: var(--paper); font-weight: 500; }

  /* one large 'columna vertebral' card spans 2 cols */
  .vinedo--big {
    grid-column: span 2;
    background:
      linear-gradient(135deg, rgba(180,30,44,0.06), transparent 50%),
      transparent;
  }

  /* ---------- AWARDS ---------- */
  .awards {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
    background: var(--ink);
  }
  .awards__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
  }
  .awards__score {
    display: flex; align-items: center; gap: 28px;
  }
  .awards__score .num {
    font-family: var(--display);
    font-weight: 400;
    font-size: 168px;
    line-height: 0.85;
    color: var(--paper);
    letter-spacing: -0.04em;
  }
  .awards__score .num em { font-style: italic; color: var(--red); }
  .awards__score .by {
    border-left: 1px solid var(--line);
    padding-left: 28px;
  }
  .awards__score .by .pub {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
  }
  .awards__score .by .pub em { color: var(--red); font-style: italic; }
  .awards__score .by .yr {
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--mute);
    margin-top: 8px;
  }
  .awards__quote {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.5;
    color: rgba(244,239,230,0.86);
    max-width: 640px;
    border-left: 2px solid var(--red);
    padding-left: 28px;
  }
  .awards__quote cite {
    display: block;
    margin-top: 22px;
    font-style: normal;
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--mute);
  }

  /* ---------- BUY ---------- */
  .buy {
    padding: 140px 0;
    background:
      radial-gradient(60% 60% at 70% 40%, rgba(180,30,44,0.10), transparent 65%),
      var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .buy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .buy__card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.014), transparent);
    padding: 0;
    display: flex; flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color .25s;
  }
  .buy__card:hover { border-color: var(--line-strong); }
  .buy__card.featured {
    border-color: var(--red);
    background:
      linear-gradient(180deg, rgba(180,30,44,0.05), transparent 40%);
  }
  .buy__media {
    aspect-ratio: 4/3;
    position: relative;
    background: #050403;
    overflow: hidden;
  }
  .buy__media img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .buy__media .badge {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--red);
    color: var(--paper);
    padding: 6px 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .buy__body {
    padding: 32px 32px 36px;
    display: flex; flex-direction: column;
    flex: 1;
  }
  .buy__body .role {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    margin-bottom: 12px;
  }
  .buy__body h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.05;
    margin: 0 0 14px;
  }
  .buy__body h3 em { font-style: italic; color: var(--red); }
  .buy__body p {
    color: rgba(244,239,230,0.7);
    font-size: 17px; line-height: 1.55;
    margin: 0 0 24px;
  }
  .buy__pricerow {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
  }
  .buy__price {
    font-family: var(--display);
    font-weight: 500;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .buy__price small {
    font-family: var(--mono); font-size: 11px;
    color: var(--mute); display: block;
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 400;
    margin-top: 8px;
  }

  .buy__qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line-strong);
  }
  .buy__qty button {
    width: 40px; height: 44px;
    border: 0; background: transparent;
    color: var(--paper);
    font-family: var(--display);
    font-size: 22px;
    transition: background .2s;
  }
  .buy__qty button:hover { background: rgba(244,239,230,0.08); }
  .buy__qty input {
    width: 44px; height: 44px;
    border: 0; background: transparent;
    color: var(--paper);
    font-family: var(--display);
    font-size: 18px;
    text-align: center;
    -moz-appearance: textfield;
  }
  .buy__qty input::-webkit-outer-spin-button,
  .buy__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .buy__addrow { display: flex; gap: 14px; margin-top: 22px; }

  .buy__guarantees {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .buy__guarantees > div {
    padding: 28px 28px 28px 28px;
    border-right: 1px solid var(--line);
  }
  .buy__guarantees > div:last-child { border-right: 0; padding-right: 0; }
  .buy__guarantees .k {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 8px;
  }
  .buy__guarantees .v {
    font-family: var(--display);
    font-size: 19px; font-weight: 500;
  }
  .buy__guarantees p { font-size: 14px; color: var(--mute); margin: 6px 0 0; line-height: 1.5; }

  /* ---------- FOOTER ---------- */
  footer {
    padding: 100px 0 40px;
    background: #050403;
  }
  footer .ftop {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
  }
  footer h4 {
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    margin: 0 0 20px;
    font-weight: 500;
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: 10px; }
  footer a { color: rgba(244,239,230,0.78); transition: color .2s; }
  footer a:hover { color: var(--red); }
  footer .brand {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  footer .brand em { color: var(--red); font-style: italic; }
  footer .brand small {
    display: block;
    font-family: var(--mono); font-size: 10px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
    margin-top: 14px;
    font-weight: 400;
  }
  footer .fbot {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 32px;
    font-family: var(--mono);
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mute);
  }
  footer .fbot a:hover { color: var(--paper); }

  /* ---------- Cart drawer ---------- */
  .cart-toggle {
    background: transparent; border: 1px solid var(--line-strong);
    padding: 10px 14px; color: var(--paper);
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
    transition: border-color .25s;
  }
  .cart-toggle:hover { border-color: var(--paper); }
  .cart-toggle .count {
    background: var(--red); color: var(--paper);
    font-family: var(--mono); font-size: 10px;
    padding: 2px 7px; border-radius: 100px;
    min-width: 22px; text-align: center;
  }

  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(440px, 92vw);
    background: var(--ink);
    border-left: 1px solid var(--line-strong);
    z-index: 100;
    transform: translateX(110%);
    transition: transform .35s cubic-bezier(.7,0,.3,1);
    display: flex; flex-direction: column;
  }
  .drawer.open { transform: translateX(0); }
  .drawer__head {
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
  }
  .drawer__head h3 {
    font-family: var(--display);
    font-weight: 500;
    font-size: 22px;
    margin: 0;
    letter-spacing: 0.02em;
  }
  .drawer__close {
    background: transparent; border: 0; color: var(--paper);
    font-family: var(--display); font-size: 26px;
    cursor: pointer;
  }
  .drawer__body {
    flex: 1; overflow-y: auto; padding: 24px 28px;
  }
  .drawer__empty {
    color: var(--mute);
    font-style: italic;
    padding: 40px 0;
    text-align: center;
  }
  .drawer__item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .drawer__item img { width: 64px; height: 80px; object-fit: cover; background: #050403; }
  .drawer__item h5 { font-family: var(--display); font-weight: 500; font-size: 17px; margin: 0 0 4px; }
  .drawer__item .q {
    font-family: var(--mono); font-size: 10px; color: var(--mute);
    letter-spacing: 0.18em; text-transform: uppercase;
  }
  .drawer__item .p { font-family: var(--display); font-size: 18px; font-weight: 500; }
  .drawer__item .rm {
    background: transparent; border: 0; color: var(--mute);
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
    text-transform: uppercase; cursor: pointer; margin-top: 4px;
    padding: 0;
  }
  .drawer__item .rm:hover { color: var(--red); }
  .drawer__foot {
    padding: 24px 28px;
    border-top: 1px solid var(--line);
  }
  .drawer__total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 18px;
  }
  .drawer__total .l {
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
  }
  .drawer__total .v {
    font-family: var(--display); font-size: 32px; font-weight: 500;
  }
  .drawer__cta {
    width: 100%; display: flex; justify-content: center; gap: 10px;
  }
  .drawer__note {
    margin-top: 14px;
    font-family: var(--mono); font-size: 9px;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute);
    text-align: center;
  }

  .scrim {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .scrim.open { opacity: 1; pointer-events: auto; }

  /* ---------- Add-to-cart toast ---------- */
  .toast {
    position: fixed;
    bottom: 28px; left: 50%;
    transform: translate(-50%, 200%);
    background: var(--paper); color: var(--ink);
    padding: 14px 22px;
    font-family: var(--mono); font-size: 11px;
    letter-spacing: 0.22em; text-transform: uppercase;
    z-index: 110;
    transition: transform .35s cubic-bezier(.7,0,.3,1);
    border: 1px solid var(--ink);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  }
  .toast.show { transform: translate(-50%, 0); }
  .toast em { color: var(--red); font-style: normal; font-weight: 600; }

  /* ---------- Responsive ---------- */
  @media (max-width: 1100px) {
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__index { display: none; }
    .historia__grid, .wine__grid, .buy__grid, .awards__grid { grid-template-columns: 1fr; gap: 48px; }
    .vinedos { grid-template-columns: repeat(2, 1fr); }
    .vinedo:nth-child(4n) { border-right: 1px solid var(--line); padding-right: 28px; }
    .vinedo:nth-child(2n) { border-right: 0; padding-right: 0; }
    .vinedo--big { grid-column: span 2; }
    .specs { grid-template-columns: repeat(2, 1fr); }
    .specs > div:nth-child(2n) { border-right: 0; padding-right: 0; }
    .specs > div:nth-child(2n+1) { border-right: 1px solid var(--line); padding-right: 24px; }
    footer .ftop { grid-template-columns: 1fr 1fr; }
    .section__head { grid-template-columns: 1fr; gap: 24px; }
    .awards__score .num { font-size: 130px; }
    .buy__guarantees { grid-template-columns: repeat(2, 1fr); }
    .buy__guarantees > div:nth-child(2n) { border-right: 0; padding-right: 0; }
  }
  @media (max-width: 720px) {
    .container { padding: 0 22px; }
    .nav__inner { grid-template-columns: 1fr auto; }
    .nav__toggle { display: block; z-index: 60; }
    .nav.menu-open {
      height: 100vh;
      background: var(--ink);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .nav__menu {
      display: flex;
      position: absolute;
      top: 72px; left: 0; right: 0; bottom: 0;
      background: transparent;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
      gap: 24px;
      font-size: 18px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      z-index: 55;
    }
    .nav__menu.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav__cta { display: none; }
    
    .hero__grid { display: flex; flex-direction: column; gap: 24px; }
    .hero__copy { display: contents; }
    .hero__eyebrow { order: 1; }
    h1.hero__title { font-size: 52px; line-height: 1.05; order: 2; margin-bottom: 0; }
    .hero__bottle { order: 3; margin: 32px 0; }
    .hero__lede { font-size: 16px; line-height: 1.5; order: 4; margin-bottom: 12px; }
    .hero__meta { grid-template-columns: 1fr 1fr; gap: 22px 28px; order: 5; }
    .hero__cta { order: 6; }
    
    .hero__crest { width: 96px; height: 96px; right: 4%; }
    .hero__crest .n { font-size: 32px; }
    
    .vinedos {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 22px;
      gap: 16px;
      padding: 22px;
      border-top: none;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
    }
    .vinedos::-webkit-scrollbar { display: none; /* Safari and Chrome */ }
    .vinedo, .vinedo--big {
      flex: 0 0 82vw;
      scroll-snap-align: start;
      border: 1px solid var(--line) !important;
      padding: 32px 28px !important;
    }
    
    .specs { grid-template-columns: 1fr; }
    .specs > div { border-right: 0 !important; padding-right: 0 !important; border-bottom: 1px solid var(--line); }
    .specs > div:last-child { border-bottom: 0; }
    
    footer .ftop { grid-template-columns: 1fr; }
    .awards__score { flex-direction: column; align-items: flex-start; gap: 14px; }
    .awards__score .by { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
  }

  /* fade-in on view */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.shown { opacity: 1; transform: translateY(0); }

