  :root{
    --paper:#FBFBF8;
    --paper-2:#F1F5EC;
    --sage-100:#EDF3E6;
    --sage-300:#C7DAB4;
    --sage-500:#8CB06E;
    --sage-700:#5C7A48;
    --ink:#2B3428;
    --ink-soft:#6f7d68;
    --line: rgba(43,52,40,0.12);
    --shadow: 0 2px 14px rgba(92,122,72,0.08);
  }

  *{box-sizing:border-box;}

  html{scroll-behavior:smooth; scroll-padding-top:130px;}

  html,body{
    margin:0;
    padding:0;
    background:var(--paper);
    /* background-image: url('images/background.jpeg'); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    /* color:var(--ink); */
    font-family:'Inter',sans-serif;

  }

  a{color:inherit;}

  /* ===== HERO ===== */
  .hero{
    text-align:center;
    /* padding:52px 24px 30px; */
    background:linear-gradient(180deg, var(--sage-100) 0%, var(--paper) 100%);
    position:relative;
    overflow:hidden;
  }

  .hero::before{
    content:"";
    position:absolute;
    top:-60px; right:-60px;
    width:220px; height:220px;
    border-radius:50%;
    border:1.5px solid var(--sage-300);
  }
  .hero::after{
    content:"";
    position:absolute;
    bottom:-70px; left:-70px;
    width:180px; height:180px;
    border-radius:50%;
    /* background:var(--sage-100); */
  }

  .logo{
    width:300px;
    height:300px;
    margin:0 auto 2px;
    position:relative;
    object-fit:contain;
  }

  /* .eyebrow{
    font-size:11.5px;
    letter-spacing:0.28em;
    text-transform:uppercase;
    color:var(--sage-700);
    font-weight:700;
    margin-bottom:10px;
    position:relative;
  } */

  .hero h1{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:clamp(38px,7vw,58px);
    line-height:1;
    margin:0 0 10px;
    letter-spacing:-0.01em;
    position:relative;
  }

  /* .hero .tagline{
    font-style:italic;
    font-family:'Fraunces', serif;
    font-size:16px;
    color:var(--ink-soft);
    font-weight:500;
    margin:0 0 14px;
    position:relative;
  } */

  .hero .address{
    font-size:12.5px;
    color:var(--ink-soft);
    letter-spacing:0.02em;
    position:relative;
  }

  /* ===== STICKY NAV ===== */
  .menu-nav{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(251,251,248,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
    padding:14px 20px;
  }

  .menu-nav-inner{
    max-width:980px;
    margin:0 auto;
  }

  .nav-groups{
    display:flex;
    justify-content:center;
    gap:36px;
    flex-wrap:wrap;
  }

  .nav-group-title{
    font-size:10px;
    letter-spacing:0.16em;
    text-transform:uppercase;
    color:var(--sage-700);
    font-weight:700;
    margin-bottom:6px;
    text-align:center;
  }

  .nav-links{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav-links a{
    font-size:12.5px;
    font-weight:600;
    text-decoration:none;
    color:var(--ink-soft);
    padding:6px 12px;
    border-radius:20px;
    border:1px solid var(--line);
    white-space:nowrap;
    transition:all .15s ease;
  }

  .nav-links a:hover{
    background:var(--sage-500);
    border-color:var(--sage-500);
    color:#fff;
  }

  /* ===== CONTENT ===== */
  .content{
    max-width:980px;
    margin:0 auto;
    padding:44px 24px 30px;
  }

  .category{
    margin-bottom:52px;
    scroll-margin-top:130px;
  }

  .category-head{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
  }

  .category-head h2{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:26px;
    margin:0;
    white-space:nowrap;
    color:var(--sage-700);
  }

  .category-head .rule{
    height:1px;
    flex:1;
    background:var(--line);
  }

  .grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
  }

  .card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    padding:16px 18px;
    box-shadow:var(--shadow);
    display:flex;
    gap:14px;
  }

  .card-icon{
    flex-shrink:0;
    width:100px;
    height:120px;
    border-radius:12px;
    background:var(--sage-100);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .card-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

  .card-icon svg{
    width:26px;
    height:26px;
    stroke:var(--sage-700);
    fill:none;
  }

  .card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
  }

  .card-top{
    display:flex;
    justify-content:space-between;
    align-items:baseline;
    gap:10px;
  }

  .card-name{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:16.5px;
    letter-spacing:0.01em;
  }

  .card-price{
    font-family:'Fraunces', serif;
    font-weight:600;
    font-size:16px;
    color:var(--sage-700);
    white-space:nowrap;
    flex-shrink:0;
  }

  .card-desc{
    font-size:12.5px;
    color:var(--ink-soft);
    line-height:1.5;
  }

  .card-meta{
    display:flex;
    gap:8px;
    align-items:center;
    margin-top:2px;
  }

  .kcal{
    font-size:10.5px;
    color:var(--sage-700);
    background:var(--sage-100);
    padding:2px 8px;
    border-radius:20px;
    font-weight:600;
  }

  .tag{
    font-size:10px;
    letter-spacing:0.03em;
    padding:2px 8px;
    border-radius:20px;
    border:1px solid var(--sage-300);
    color:var(--sage-700);
    font-weight:600;
  }

  .full-width{
    grid-column:1 / -1;
  }

  /* ===== ALLERGEN TABLE ===== */
  .allergens{
    margin-top:16px;
    padding:26px;
    background:var(--sage-100);
    border-radius:16px;
  }

  .allergens h3{
    font-family:'Fraunces', serif;
    font-size:18px;
    margin:0 0 14px;
    color:var(--sage-700);
  }

  .allergen-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
  }

  .allergen-item{
    background:#fff;
    border-radius:10px;
    padding:10px 12px;
    font-size:12.5px;
    font-weight:600;
    text-align:center;
    border:1px solid var(--line);
  }

  footer{
    max-width:980px;
    margin:0 auto;
    padding:28px 24px 60px;
    text-align:center;
    font-size:12px;
    color:var(--ink-soft);
    letter-spacing:0.02em;
  }

  footer strong{
    color:var(--sage-700);
  }

  /* back to top */
  .top-btn{
    position:fixed;
    bottom:22px;
    right:22px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--sage-500);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 4px 16px rgba(92,122,72,0.30);
    font-size:18px;
    opacity:0.9;
  }

  @media (max-width:640px){
    .grid{grid-template-columns:1fr;}
    .allergen-grid{grid-template-columns:repeat(2,1fr);}
    .nav-groups{gap:20px;}
    .menu-nav{padding:12px 14px;}
    .content{padding:34px 16px 20px;}
  }

  @media print{
    .menu-nav, .top-btn{display:none;}
  }