:root{
    --bg1:#8b2424;
    --bg2:#5a1415;
    --bg3:#3b0c0d;
  
    --card: rgba(255,255,255,.09);
    --card2: rgba(255,255,255,.07);
    --border: rgba(255,255,255,.12);
  
    --txt: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.72);
  
    --radius: 18px;
  }
  
  *{ box-sizing:border-box; margin:0; padding:0; }
  html,body{ height:100%; }
  
  body{
    font-family: "Linden Hill", serif;
  }
  
  /* TOPBAR */
  .topbar{
    height:64px;
    padding:16px 16px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .icon-btn{
    width:44px; height:44px;
    border:none;
    background:transparent;
    padding:10px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
  }
  .burger, .burger::before, .burger::after{
    display:block;
    width:22px;
    height:2px;
    background:#111;
    border-radius:2px;
    position:relative;
  }
  .burger::before, .burger::after{
    content:"";
    position:absolute;
    left:0;
  }
  .burger::before{ top:-7px; }
  .burger::after{ top:7px; }
  .burger--light, .burger--light::before, .burger--light::after{ background:#fff; }
  
  .topbar__logo{
    width:54px;
    height:auto;
    opacity:.95;
  }

  /* =========================
   HOME PAGE
   ========================= */

.page-home{
    background: #fff;
    color: #111;
    min-height: 100vh;
  }
  
  .home{
    min-height: calc(100vh - 64px);
    padding: 14px 18px 40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-align:center;
  }
  
  .home__logo{
    width: min(78vw, 320px);
    height: auto;
    object-fit: contain;
  }
  
  .home__subtitle{
    font-size: 30px;
    font-style: italic;
    color: rgba(0, 0, 0, .75);
    margin-top: -1.5rem;
  }
  
  .home__divider{
    width: 72%;
    height: 1px;
    background: rgba(0,0,0,.22);
    margin: 2px 0 10px;
  }
  
  /* Bottone */
  .cta{
    display:inline-block;
    background: #7a1f1f;
    color:#fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 16px;
    letter-spacing: .6px;
    text-decoration:none;
    box-shadow: 0 10px 24px rgba(122,31,31,.22);
  }
  
  /* Se vuoi hamburger più “leggero” in home */
  .topbar--home .burger,
  .topbar--home .burger::before,
  .topbar--home .burger::after{
    background:#222;
  }
  
  
  /* PAGE WINES */
  .page-wines{
    color: var(--txt);

  background:
    radial-gradient(1100px 600px at 15% 20%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 5%, rgba(255,255,255,.07), transparent 55%),
    linear-gradient(180deg, #8b2424 0%, #5a1415 55%, #3b0c0d 100%);

  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  min-height: 100vh;
  }
  
  .wines{
    padding: 12px 16px 42px;
  }
  
  .wines__title{
    font-size: 34px;
    font-weight: 400; /* Linden Hill non ha bold veri */
    letter-spacing: .4px;
    margin: 10px 2px 4px;
  }
  
  .wines__subtitle{
    font-size: 16px;
    opacity: .75;
    margin: 0 2px 18px;
    font-style: italic;
  }
  
  /* SECTIONS */
  .wine-section{
    margin-top: 18px;
  }
  .section-title{
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: .85;
    margin: 10px 4px 12px;
  }
  
  /* CARD */
  .wine-card{
    background: linear-gradient(180deg, var(--card) 0%, var(--card2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 14px 12px;
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 12px;
  }
  
  .producer{
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: .92;
  }
  
  .wine-list{
    list-style: none;
    display: grid;
    gap: 10px;
  }
  
  .wine-row{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: baseline;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,.14);
  }
  .wine-row:first-child{
    border-top: none;
    padding-top: 0;
  }
  
  .wine-name{
    font-size: 17px;
    line-height: 1.15;
  }
  
  .wine-price{
    font-size: 15px;
    color: var(--txt);
    text-align: right;
    white-space: nowrap;
  }
  
  .tag{
    display:inline-block;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    opacity: .75;
  }
  
  .dot{
    opacity:.55;
    margin: 0 6px;
  }
  
  .hint{
    display:inline-block;
    margin-left: 8px;
    font-size: 12px;
    opacity: .70;
    font-style: italic;
  }
  
  /* FOOTER NOTE */
  .wines-footer{
    margin-top: 18px;
    padding: 0 2px;
  }
  .footnote{
    font-size: 13px;
    opacity: .85;
    line-height: 1.3;
  }
  .chip{
    display:inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    margin-right: 8px;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
  }
  