 * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Libre Baskerville', serif;
    background-color: #ffffff;
    color: #243325;
    padding: 40px;
  }

  .menu-wrapper {
    border: 1px solid rgba(0,0,0,0.1);
    max-width: 1100px;
    margin: auto;
  }

  .menu-card {
    display: flex;
    min-height: 680px;
  }

 img {
    margin-bottom: -5em;
 }
  /* LEFT PANEL */
  .left-panel {
    background-color: #324937;
    color: #f7f5ef;
    width: 32%;
    padding: 9px;
    flex-direction: column;
  }

  .left-panel h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 90px;
  }

  .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    line-height: 1.4;
    margin-left: 2em;
  }

  .menu-item .details {
    width: 78%;
  }

  .menu-item strong {
    letter-spacing: 0.5px;
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
  }

  .menu-item small {
    font-style: italic;
    font-size: 13px;
    color: rgba(247,245,239,0.9);
  }

  .menu-item .price {
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    min-width: 40px;
    margin-right: 2em;
  }

  /* DIVIDER */
  .divider-vertical {
    width: 1px;
    background-color: #45634b;
  }

  /* RIGHT PANEL */
  .right-panel {
    width: 68%;
    background-color: #f2eee2;
    padding: 70px 70px 70px 90px;
    display: flex;
    flex-direction: column;
  }

  .brand {
    text-align: center;
    margin-bottom: 55px;
  }

  .brand h1 {
    font-family: 'Cinzel', serif;
    font-size: 34px;
    letter-spacing: 13px;
    color:  #45634b;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .brand h2 {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 6px;
    color: #324937;
    font-weight: 400;
  }

  /* DRINK SECTION */
  .drink-header {
    font-size: 12px;
    letter-spacing: 6px;
    margin-bottom: 6px;
    color: #324937;
  }

  .drink-divider {
    height: 1px;
    background-color: #324937;
    margin-bottom: 25px;
  }

  /* two-column layout */
  .drink-columns {
    display: grid;
    grid-template-columns: 1.6fr 1fr; 
    column-gap: 35px; 
    row-gap: 35px;
    align-items: start;
  }

  .drink-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .drink-item .left {
    max-width: 72%;
  }

  .drink-item strong {
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .drink-item .note {
    display: block;
    font-size: 13px;
    font-style: italic;
    color: #45634b;
    margin-top: 3px;
    line-height: 1.3;
  }

  .drink-item .price {
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    color: #324937;
    min-width: 90px;
  }

  /* MODIFIERS BOX THING */
  .modifiers {
    border: 2.2px dashed rgba(50,73,55,0.5);
    padding: 10px 10px;
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    color: #324937;
  }

  .modifiers strong {
    display: block;
    font-size: 13px;
    margin-bottom: 3px;
  }

  .orig {
    margin-top: 6em;
    text-align: center;
  }


