 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #fdf6ec; --cream2: #f5ead6; --terra: #c0654a;
      --terra-dk: #9b4a32; --brown: #5c3d2e; --sand: #e8d5b7;
      --text: #3a2a1e; --muted: #8a6f5b;
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { background: var(--cream); color: var(--text); font-family: 'Lato', sans-serif; overflow-x: hidden; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: var(--brown);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: 64px;
      transform: translateY(0);
      transition: transform .35s ease, box-shadow .35s ease;
    }
    nav.hidden { transform: translateY(-100%); }
    nav.scrolled { box-shadow: 0 4px 20px rgba(30,18,8,.3); }
    .nav-logo { font-family: 'Playfair Display', serif; color: var(--sand); font-size: 1.2rem; text-decoration: none; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: var(--sand); text-decoration: none; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .8; transition: opacity .2s; }
    .nav-links a:hover { opacity: 1; }
    .nav-home-btn {
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      color: var(--sand); font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: .55rem 1.4rem; border-radius: 2px; cursor: pointer;
      text-decoration: none; transition: background .2s;
    }
    .nav-home-btn:hover { background: rgba(255,255,255,.22); }

    /* Language switcher */
    .nav-lang { position: relative; }
    .lang-btn {
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      border-radius: 4px; color: var(--sand); padding: .38rem .85rem;
      font-size: .8rem; font-family: 'Lato', sans-serif; font-weight: 600;
      cursor: pointer; display: flex; align-items: center; gap: .45rem;
      transition: background .2s;
    }
    .lang-btn:hover { background: rgba(255,255,255,.22); }
    .lang-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: #fff; border: 1px solid var(--sand); border-radius: 6px;
      box-shadow: 0 8px 24px rgba(92,61,46,.18);
      min-width: 130px; display: none; overflow: hidden; z-index: 10;
    }
    .lang-dropdown.open { display: block; }
    .lang-dropdown a { display: flex; align-items: center; gap: .6rem; padding: .6rem 1rem; text-decoration: none; color: var(--text); font-size: .83rem; font-weight: 600; transition: background .15s; }
    .lang-dropdown a:hover { background: var(--cream2); }
    .lang-dropdown hr { border: none; border-top: 1px solid var(--sand); margin: 0; }
    .flag-icon { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--sand); border-radius: 2px; }

    /* Mobile nav drawer */
    .mobile-nav {
      position: fixed; inset: 0; background: var(--brown); z-index: 999;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
      opacity: 0; pointer-events: none; transform: translateX(100%);
      transition: opacity .3s ease, transform .3s ease;
    }
    .mobile-nav.open { opacity: 1; pointer-events: all; transform: translateX(0); }
    .mobile-nav a { color: var(--sand); text-decoration: none; font-size: 1.3rem; font-family: 'Playfair Display', serif; opacity: .85; transition: opacity .2s; }
    .mobile-nav a:hover { opacity: 1; }
    .mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--sand); font-size: 1.5rem; cursor: pointer; padding: .5rem; line-height: 1; }

    /* offset for fixed nav */
    .menu-hero { padding-top: calc(5rem + 64px); }

    .menu-hero { background: var(--brown); color: var(--cream); text-align: center; padding: 5rem 2rem 4rem; }
    .eyebrow { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--sand); opacity: .65; display: block; margin-bottom: 1rem; }
    .menu-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 1.2rem; }
    .menu-hero p { max-width: 500px; margin: 0 auto; color: var(--sand); opacity: .75; font-weight: 300; line-height: 1.7; }
    .divider { width: 55px; height: 2px; background: var(--terra); margin: 1.5rem auto 0; }

    section { padding: 5rem 1.5rem; }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--brown); }
    .section-header p { margin-top: .8rem; color: var(--muted); font-weight: 300; font-size: .95rem; max-width: 480px; margin-left: auto; margin-right: auto; }

    /* DRINKS */
    .drinks-section { background: var(--cream2); }
    .drinks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; max-width: 960px; margin: 0 auto; }
    .drink-card { background: var(--cream); border: 1px solid var(--sand); border-radius: 4px; padding: 1.4rem 1.8rem; display: flex; justify-content: space-between; align-items: center; transition: box-shadow .2s, transform .2s; }
    .drink-card:hover { box-shadow: 0 8px 24px rgba(92,61,46,.1); transform: translateY(-2px); }
    .drink-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--brown); }
    .drink-desc { font-size: .78rem; color: var(--muted); margin-top: .3rem; font-weight: 300; }
    .drink-price { font-size: 1.05rem; font-weight: 600; color: var(--terra); white-space: nowrap; margin-left: 1rem; }

    /* CUPS */
    .cups-section { background: var(--cream); }
    .cups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
    .cup-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(92,61,46,.08); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
    .cup-card:hover { box-shadow: 0 12px 32px rgba(92,61,46,.16); transform: translateY(-4px); }
    .cup-img-wrap { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--cream2); }
    .cup-img-wrap img { width: 100%; height: 100%; object-fit:cover; transition: transform .4s ease; }
    .cup-card:hover .cup-img-wrap img { transform: scale(1.2); }
    .cup-price-badge { position: absolute; top: .9rem; right: .9rem; background: var(--terra); color: #fff; font-size: .85rem; font-weight: 700; padding: .35rem .7rem; border-radius: 20px; }
    .cup-body { padding: 1.2rem 1.4rem 1.6rem; flex: 1; }
    .cup-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--brown); margin-bottom: .5rem; }
    .cup-ingredients span { display: inline-block; background: var(--cream2); border: 1px solid var(--sand); border-radius: 20px; padding: .15rem .6rem; margin: .2rem .15rem 0 0; font-size: .72rem; color: var(--brown); }
    .cup-note { margin-top: .6rem; font-size: .75rem; color: var(--muted); line-height: 1.5; }

    /* CTA */
    .cta-section { background: var(--brown); color: var(--cream); text-align: center; padding: 6rem 2rem; }
    .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; }
    .cta-section > p { max-width: 520px; margin: 0 auto 2.5rem; color: var(--sand); opacity: .8; font-weight: 300; line-height: 1.8; }
    .cta-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-bottom: 2.8rem; }
    .cta-info-item { font-size: .9rem; color: var(--sand); opacity: .85; }
    .cta-info-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: .3rem; color: #fff; }
    .btn-cta { display: inline-block; background: var(--terra); color: #fff; text-decoration: none; font-weight: 600; font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; padding: 1rem 2.8rem; border-radius: 2px; transition: background .2s, transform .2s; }
    .btn-cta:hover { background: var(--terra-dk); transform: translateY(-2px); }

    footer { background: #1e1208; text-align: center; padding: 1.5rem; color: var(--muted); font-size: .75rem; }

    /* FLAVORS */
    .flavors-section { background: var(--cream2); }

    .flavor-tabs {
      display: flex; justify-content: center; gap: 1rem;
      margin-bottom: 3rem; flex-wrap: wrap;
    }
    .flavor-tab {
      background: transparent; border: 2px solid var(--sand);
      color: var(--brown); font-family: 'Lato', sans-serif;
      font-size: .85rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; padding: .75rem 2rem;
      border-radius: 40px; cursor: pointer;
      transition: all .25s; display: flex; align-items: center; gap: .5rem;
    }
    .flavor-tab:hover { border-color: var(--terra); color: var(--terra); }
    .flavor-tab.active {
      background: var(--terra); border-color: var(--terra);
      color: #fff; box-shadow: 0 4px 16px rgba(192,101,74,.3);
    }
    .tab-icon { font-size: 1.1rem; }

    .flavor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 1.8rem;
      max-width: 1100px; margin: 0 auto;
      animation: fadeIn .3s ease;
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    .flavor-card {
      display: flex; flex-direction: column; align-items: center;
      gap: .7rem; position: relative;
      cursor: default;
    }
    .flavor-circle {
      width: 100px; height: 100px; border-radius: 50%;
      box-shadow: 0 8px 20px rgba(92, 61, 46, 0.25), 0 2px 6px rgba(92, 61, 46, 0.15);
      transition: transform .25s, box-shadow .25s;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
    }
    .flavor-card:hover .flavor-circle {
      transform: scale(1.08) translateY(-3px);
      box-shadow: 0 10px 28px rgba(92,61,46,.25), inset 0 -4px 8px rgba(0,0,0,.1);
    }
    .novita-circle { outline: 3px solid var(--terra); outline-offset: 3px; }

    .flavor-name {
      font-size: .82rem; font-weight: 600; color: var(--brown);
      text-align: center; line-height: 1.3;
    }
    .novita-badge {
      position: absolute; top: -6px; right: calc(50% - 58px);
      background: var(--terra); color: #fff;
      font-size: .6rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; padding: .2rem .5rem; border-radius: 10px;
    }

    @media (max-width: 600px) {
      .nav-links, .nav-home-btn, .nav-lang { display: none; }
      .hamburger { display: flex; }
      .cups-grid { grid-template-columns: 1fr; }
      .flavor-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 1.2rem; }
      .flavor-circle { width: 80px; height: 80px; }
      .cup-img-wrap { aspect-ratio: 4/3; }
    }