  @import url('https://fonts.googleapis.com/css2?family=Parisienne&family=Cormorant:wght@600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Work+Sans:wght@400;500;600&display=swap');

  :root{
    --paper: #fffdf8;
    --sky: #eaf6fb;
    --orange: #f2803c;
    --orange-deep: #e8672a;
    --blue: #4fb3d9;
    --blue-deep: #2f8fb3;
    --ink: #2c4450;
    --ink-soft: #5c7480;
    --line: rgba(79,179,217,0.28);

    /* Justera denna för att styra hur genomskinliga platshållarbilderna är (0 = helt osynlig, 1 = helt synlig) */
    --placeholder-opacity: 0.55;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }

  body{
    background: linear-gradient(160deg, var(--sky) 0%, #e4f1f6 45%, #fef2e4 100%);
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
    display:flex;
    justify-content:center;
    padding: 48px 16px;
  }

  .frame{
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .menu{
    position: relative;
    border-radius: 16px;
    padding: 44px 40px 36px;
    background: var(--paper);
    box-shadow: 0 30px 60px -20px rgba(47,143,179,0.25), 0 0 0 1px rgba(79,179,217,0.15);
    overflow: hidden;
  }

  .menu::before{
    content:"";
    position:absolute;
    top:-60px; right:-60px;
    width:180px; height:180px;
    background: radial-gradient(circle, rgba(242,128,60,0.18), transparent 70%);
    border-radius:50%;
  }
  .menu::after{
    content:"";
    position:absolute;
    bottom:-70px; left:-70px;
    width:200px; height:200px;
    background: radial-gradient(circle, rgba(79,179,217,0.18), transparent 70%);
    border-radius:50%;
  }

  header{
    text-align:center;
    margin-bottom: 6px;
    position: relative;
  }

  .eyebrow{
    font-family:'Work Sans', sans-serif;
    letter-spacing: 0.32em;
    font-size: 11px;
    color: var(--blue-deep);
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .script{
    font-family: 'Parisienne', cursive;
    font-size: 46px;
    line-height: 1.15;
    color: var(--orange-deep);
    display:block;
  }

  .sub{
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-soft);
    margin-top: 8px;
  }

  .divider{
    display:flex;
    align-items:center;
    gap: 12px;
    margin: 24px 0 30px;
  }
  .divider .rule{
    flex:1;
    height:1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
  }

  .grid{
    display:flex;
    flex-direction: column;
    gap: 8px;
  }

  .drink-card{
    position: relative;
    padding: 22px 0 26px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .drink-card:last-child{ border-bottom: none; }

  /* ---- image placeholder, sits behind the title ---- */
  .drink-img{
    position: absolute;
    top: 14px;
    left: 150px;
    width: 328px;
    height: 120px;
    z-index: 0;
    opacity: var(--placeholder-opacity);
    border-radius: 10px;
    overflow: hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events: none;
  }
  /* nudge every second drink's image slightly to the left */
  .drink-card:nth-child(even) .drink-img{
    left: 75px;
  }
  .drink-img img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit: contain;
  }
  .drink-img .ph-label{
    position:relative;
    z-index:0;
    font-family:'Work Sans', sans-serif;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    color: var(--blue-deep);
    text-align:center;
    padding: 6px;
  }
  .drink-img .ph-label b{
    display:block;
    color: var(--orange-deep);
    font-size: 10.5px;
    margin-bottom: 2px;
  }

  .drink-body{
    position: relative;
    z-index: 1;
  }

  .drink h2{
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .drink p{
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14.5px;
    line-height: 1.4;
    color: var(--ink-soft);
    max-width: 420px;
  }

  .drink .note{
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--orange-deep);
    margin-top: 4px;
  }

  .howto{
    margin-top: 14px;
  }

  .howto-label{
    font-family:'Work Sans', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 8px;
  }

  .howto ol{
    list-style: none;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .howto ol li{
    counter-increment: step;
    font-family: 'Work Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--ink);
    opacity: 0.88;
    padding-left: 26px;
    position: relative;
  }

  .howto ol li::before{
    content: counter(step);
    position:absolute;
    left:0; top:0;
    width: 18px; height:18px;
    border-radius:50%;
    border: 1px solid var(--orange);
    color: var(--orange-deep);
    font-family:'Cormorant', serif;
    font-weight: 700;
    font-size: 11px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  footer{
    text-align:center;
    margin-top: 30px;
    position: relative;
  }

  .seal{
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .seal span{
    font-family:'Parisienne', cursive;
    font-weight:700;
    font-size: 32px;
    color: var(--orange-deep);
    letter-spacing: 0.03em;
  }

  @media print{
    body{ background: var(--paper); padding:0; }
    .menu{ box-shadow:none; border-radius:0; }
    .frame{ max-width:none; }
  }

  /* ---- mobile ---- */
  @media (max-width: 600px){
    body{ padding: 16px 10px; }
    .menu{ padding: 28px 20px 26px; border-radius: 12px; }

    .script{ font-size: 34px; }
    .sub{ font-size: 14px; }
    .divider{ margin: 18px 0 22px; }

    /* watermark images: mirror the desktop leftward placement, shrunk so
       they still fit the narrow screen */
    .drink-img{
      right: auto;
      left: 150px;
      top: 10px;
      width: 130px;
      height: 92px;
    }
    .drink-card:nth-child(even) .drink-img{
      left: 120px;
    }

    .drink h2{ font-size: 18px; }
    .drink p{ font-size: 14px; max-width: none; }
    .drink .note{ font-size: 12.5px; }
    .howto ol li{ font-size: 13px; }
    .seal span{ font-size: 28px; }
  }



  /* ---- shared nav ---- */
  .nav{
    display:flex;
    justify-content:center;
    gap: 10px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
  .nav a{
    font-family:'Work Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--blue-deep);
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: background .15s ease, color .15s ease;
  }
  .nav a:hover{ background: var(--sky); }
  .nav a[aria-current="page"]{
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }

  /* ---- rating form ---- */
  .rate-item{
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .rate-item:last-of-type{ border-bottom: none; }
  .rate-item h2{
    font-family:'Cormorant', serif;
    font-weight:700;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
  }

  /* star rating: radios styled as stars, reversed row so :hover lights left */
  .stars{
    display:inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
  }
  .stars input{ display:none; }
  .stars label{
    font-size: 26px;
    line-height: 1;
    color: var(--line);
    cursor: pointer;
    transition: color .1s ease;
  }
  .stars label:hover,
  .stars label:hover ~ label,
  .stars input:checked ~ label{
    color: var(--orange);
  }

  .field{ margin: 18px 0; }
  .field label{
    display:block;
    font-family:'Work Sans', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-deep);
    margin-bottom: 8px;
  }
  .field input[type="text"],
  .field input[type="email"],
  .field textarea,
  .field select{
    width: 100%;
    font-family:'Work Sans', sans-serif;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 13px;
  }
  .field textarea{ min-height: 90px; resize: vertical; }
  .field input:focus,
  .field textarea:focus,
  .field select:focus{
    outline: none;
    border-color: var(--orange);
  }

  .submit{
    display:block;
    width:100%;
    margin-top: 8px;
    font-family:'Work Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color:#fff;
    background: var(--orange);
    border:none;
    border-radius: 999px;
    padding: 14px;
    cursor:pointer;
    transition: background .15s ease;
  }
  .submit:hover{ background: var(--orange-deep); }

  .rate-item .recipe{
    font-family:'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin: -2px 0 10px;
    max-width: 460px;
  }
