:root{
  --wine:#5e1224;
  --wine-dark:#420a18;
  --wine-light:#8a2b42;
  --gold:#c9a227;
  --gold-light:#e3c766;
  --cream:#faf6ef;
  --cream-dark:#f1e9da;
  --ink:#2b2018;
  --muted:#7a6a5c;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Jost',system-ui,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{font-size:15px}
body{
  font-family:var(--sans);
  color:var(--ink);
  background:var(--cream);
  line-height:1.55;
  -webkit-print-color-adjust:exact;
  print-color-adjust:exact;
}
img{max-width:100%;display:block}
a{color:var(--wine-light)}

.sheet-toolbar{
  position:sticky;top:0;z-index:10;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 5vw;
  background:rgba(250,246,239,.94);
  border-bottom:1px solid var(--cream-dark);
  backdrop-filter:blur(8px);
}
.sheet-toolbar a{
  font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted);text-decoration:none;
}
.sheet-toolbar a:hover{color:var(--wine)}
.sheet-toolbar__actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.sheet-toolbar__lang{
  display:inline-flex;border:1px solid var(--cream-dark);border-radius:999px;overflow:hidden;background:#fff;
}
.sheet-toolbar__lang a{
  padding:10px 14px;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--muted);text-decoration:none;transition:.2s;
}
.sheet-toolbar__lang a.is-active{background:var(--wine);color:#fff}
.sheet-toolbar__lang a:not(.is-active):hover{color:var(--wine-dark)}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 22px;border-radius:999px;border:none;
  font-family:var(--sans);font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;
  font-weight:500;cursor:pointer;text-decoration:none;transition:.25s;
}
.btn-gold{background:var(--gold);color:var(--wine-dark)}
.btn-gold:hover{background:var(--gold-light)}
.btn-outline{background:transparent;border:1px solid var(--wine);color:var(--wine)}
.btn-outline:hover{background:var(--wine);color:#fff}

.sheet{
  max-width:980px;margin:0 auto;
  padding:48px 5vw 64px;
}
.sheet__header{
  display:grid;
  grid-template-columns:auto 1fr minmax(220px,34%);
  grid-template-rows:auto auto;
  gap:20px 32px;
  align-items:center;
  padding-bottom:32px;margin-bottom:28px;
  border-bottom:2px solid var(--wine);
}
.sheet__logo{
  grid-column:1;grid-row:1 / 3;align-self:start;
  display:flex;align-items:center;justify-content:center;
  background:var(--wine-dark);
  padding:12px 14px;
  border-radius:14px;
}
.sheet__logo img{height:72px;width:auto}
.sheet__brand{grid-column:2;grid-row:1;text-align:left;padding-top:6px}
.sheet__brand small{
  display:block;font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold);font-weight:600;margin-bottom:6px;
}
.sheet__brand h1{
  font-family:var(--serif);font-size:clamp(1.75rem,3.2vw,2.45rem);
  color:var(--wine-dark);line-height:1.08;font-weight:600;
  max-width:18ch;
}
.sheet__brand p{
  margin-top:10px;font-size:.92rem;color:var(--muted);font-style:italic;
  max-width:36ch;
}
.sheet__bottle{
  grid-column:3;
  grid-row:1 / 3;
  justify-self:end;
  align-self:stretch;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  width:auto;
  min-width:220px;
  padding:18px 20px 8px;
  background:linear-gradient(165deg,#fff 0%,rgba(241,233,218,.55) 100%);
  border:1px solid var(--cream-dark);
  border-radius:22px;
  box-shadow:0 16px 40px rgba(94,18,36,.08);
}
.sheet__bottle img{
  height:min(420px,52vh);
  width:auto;
  max-width:100%;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 14px 28px rgba(0,0,0,.22));
}

.sheet__meta{
  display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px;
}
.sheet__meta span{
  padding:7px 14px;border-radius:999px;
  background:#fff;border:1px solid var(--cream-dark);
  font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--wine);
}

.sheet__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:28px 36px;
}
.sheet__block{
  background:#fff;border:1px solid var(--cream-dark);border-radius:16px;
  padding:24px 26px 26px;position:relative;overflow:hidden;
}
.sheet__block::before{
  content:"";position:absolute;left:0;top:22px;bottom:22px;width:3px;
  background:linear-gradient(180deg,var(--gold),var(--wine-light));border-radius:0 3px 3px 0;
}
.sheet__block h2{
  font-family:var(--serif);font-size:1.05rem;color:var(--wine);
  margin-bottom:16px;letter-spacing:.04em;
}
.sheet__block--wide{grid-column:1/-1}

.data-table{width:100%;border-collapse:collapse}
.data-table tr+tr{border-top:1px solid var(--cream-dark)}
.data-table th,.data-table td{
  padding:10px 0;vertical-align:top;text-align:left;font-size:.88rem;
}
.data-table th{
  width:42%;color:var(--muted);font-weight:500;
  padding-right:16px;
}
.data-table td{color:var(--ink);font-weight:400}

.tasting{margin-top:4px}
.tasting+.tasting{margin-top:14px;padding-top:14px;border-top:1px dashed var(--cream-dark)}
.tasting h3{
  font-family:var(--serif);font-size:.95rem;color:var(--wine);margin-bottom:4px;
}
.tasting p{font-size:.88rem;color:var(--muted)}

.sheet__footer{
  margin-top:36px;padding-top:20px;border-top:1px solid var(--cream-dark);
  text-align:center;
}
.sheet__note{
  font-style:italic;font-size:.74rem;color:var(--muted);letter-spacing:.04em;
}

@media(max-width:720px){
  .sheet__header{
    grid-template-columns:1fr;
    grid-template-rows:auto auto auto;
    text-align:center;
  }
  .sheet__logo{grid-column:1;grid-row:1;justify-self:center}
  .sheet__brand{grid-column:1;grid-row:2;text-align:center;padding-top:0}
  .sheet__brand h1,.sheet__brand p{max-width:none;margin-left:auto;margin-right:auto}
  .sheet__bottle{
    grid-column:1;
    grid-row:3;
    justify-self:center;
    min-width:0;
    width:min(100%,320px);
    margin-top:8px;
    padding:24px 28px 12px;
  }
  .sheet__bottle img{height:min(380px,62vw)}
  .sheet__grid{grid-template-columns:1fr}
  .sheet__footer{margin-top:24px}
}

@media print{
  @page{
    size:A4 portrait;
    margin:11mm 12mm;
  }
  .sheet-toolbar{display:none!important}
  html{font-size:12px}
  body{background:#fff;margin:0}
  .sheet{
    padding:0;
    max-width:none;
    width:100%;
    page-break-after:avoid;
    page-break-inside:avoid;
  }
  .sheet__header{
    grid-template-columns:92px 1fr 138px;
    grid-template-rows:auto;
    gap:12px 18px;
    align-items:center;
    padding-bottom:14px;
    margin-bottom:14px;
    border-bottom:2px solid var(--wine);
  }
  .sheet__logo{
    grid-row:1;
    align-self:stretch;
    padding:10px 8px;
    border-radius:10px;
    -webkit-print-color-adjust:exact;
    print-color-adjust:exact;
  }
  .sheet__logo img{height:56px}
  .sheet__brand{grid-column:2;padding-top:0}
  .sheet__brand small{font-size:.62rem;margin-bottom:4px;letter-spacing:.24em}
  .sheet__brand h1{
    font-size:1.55rem;
    max-width:none;
    line-height:1.08;
  }
  .sheet__brand p{font-size:.82rem;margin-top:5px;max-width:none;line-height:1.35}
  .sheet__bottle{
    grid-column:3;
    grid-row:1;
    min-width:0;
    padding:10px 12px 6px;
    border-radius:12px;
    box-shadow:none;
    background:#fff;
  }
  .sheet__bottle img{height:168px;filter:drop-shadow(0 6px 14px rgba(0,0,0,.12))}
  .sheet__meta{
    margin-bottom:14px;
    gap:8px;
  }
  .sheet__meta span{
    padding:5px 12px;
    font-size:.64rem;
    letter-spacing:.09em;
  }
  .sheet__grid{
    grid-template-columns:1fr 1fr;
    gap:12px 14px;
  }
  .sheet__block{
    padding:14px 16px 15px;
    border-radius:10px;
    break-inside:avoid;
    box-shadow:none;
  }
  .sheet__block::before{top:12px;bottom:12px;width:3px}
  .sheet__block h2{
    font-size:.95rem;
    margin-bottom:10px;
  }
  .sheet__block--wide{
    grid-column:1/-1;
    padding:12px 16px;
  }
  .data-table th,.data-table td{
    padding:5px 0;
    font-size:.78rem;
    line-height:1.4;
  }
  .data-table th{width:36%;padding-right:10px}
  .tasting{margin-top:2px}
  .tasting+.tasting{
    margin-top:9px;
    padding-top:9px;
  }
  .tasting h3{font-size:.82rem;margin-bottom:3px}
  .tasting p{font-size:.78rem;line-height:1.4}
  .sheet__block p{font-size:.78rem;line-height:1.4;color:var(--muted)}
  .sheet__footer{
    margin-top:12px;
    padding-top:8px;
    border-top:1px solid var(--cream-dark);
  }
  .sheet__note{font-size:.68rem;margin:0}
}
