    :root {
      --terracotta: #C4622D;
      --burnt: #8B3A1A;
      --sand: #F2E8D9;
      --cream: #FAF6F0;
      --deep-green: #1A2E1F;
      --sage: #5A7A5E;
      --gold: #C9923A;
      --dark: #0E1A12;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--dark);
      color: var(--sand);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
      line-height: 1.6;
      min-width: 1300px;
    }

    /* Noise Overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.35;
    }

    /* NAVIGATION */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 3rem;
      background: rgba(14, 26, 18, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201, 146, 58, 0.2);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      color: var(--sand);
      text-decoration: none;
    }

    .nav-logo em {
      color: var(--terracotta);
      font-style: normal;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(242, 232, 217, 0.7);
      text-decoration: none;
      transition: var(--transition);
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--gold);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    .cart-trigger {
      background: none;
      border: none;
      color: var(--sand);
      font-size: 1.2rem;
      cursor: pointer;
      position: relative;
      transition: var(--transition);
    }

    .cart-trigger:hover {
      color: var(--gold);
    }

    .cart-count {
      position: absolute;
      top: -8px;
      right: -10px;
      background: var(--terracotta);
      color: white;
      font-size: 0.6rem;
      padding: 2px 6px;
      border-radius: 50%;
      font-family: 'Space Mono', monospace;
    }

    .nav-cta {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--terracotta);
      color: var(--cream);
      padding: 0.65rem 1.4rem;
      text-decoration: none;
      transition: var(--transition);
    }

    .nav-cta:hover {
      background: var(--burnt);
      transform: translateY(-2px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--sand);
      transition: var(--transition);
    }

    /* MOBILE MENU */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transform: translateX(100%);
      transition: transform 0.5s ease-in-out;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--sand);
      text-decoration: none;
    }

    .close-mobile {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2rem;
      background: none;
      border: none;
      color: var(--sand);
      cursor: pointer;
    }

    /* PAGE HERO */
    .page-hero {
      height: 60vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: 60px;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80') center/cover no-repeat;
      opacity: 0.3;
      transform: scale(1.1);
      animation: zoomOut 20s infinite alternate;
    }

    @keyframes zoomOut {
      from { transform: scale(1.1); }
      to { transform: scale(1); }
    }

    .page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(14, 26, 18, 0.4), rgba(14, 26, 18, 0.9));
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 0 2rem;
    }

    .label {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      display: block;
    }

    .page-hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 10vw, 7rem);
      font-weight: 900;
      color: var(--sand);
      line-height: 1;
    }

    .page-hero-content h1 em {
      color: var(--terracotta);
      font-style: italic;
    }

    .page-hero-content p {
      font-size: 1.2rem;
      font-style: italic;
      color: rgba(242, 232, 217, 0.7);
      margin-top: 1.5rem;
    }

    /* MENU TABS */
    .menu-tabs {
      position: sticky;
      top: 60px;
      z-index: 100;
      background: rgba(14, 26, 18, 0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201, 146, 58, 0.15);
      display: flex;
      justify-content: center;
      padding: 0 1rem;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .menu-tabs::-webkit-scrollbar { display: none; }

    .tab-btn {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242, 232, 217, 0.5);
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      padding: 1.5rem 2rem;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
      text-decoration: none;
    }

    .tab-btn:hover { color: var(--sand); }
    .tab-btn.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    /* MENU SECTIONS */
    .menu-section {
      padding: 8rem 3rem;
      min-width: 1400px;
      margin: 0 auto;
    }

    .cat-header {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      margin-bottom: 4rem;
    }

    .cat-num {
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      color: var(--terracotta);
      writing-mode: vertical-lr;
      transform: rotate(180deg);
    }

    .cat-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      color: var(--sand);
    }

    .cat-title em {
      font-style: italic;
      color: var(--terracotta);
    }

    .cat-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(201, 146, 58, 0.4), transparent);
    }

    /* MENU GRID */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2.5rem;
    }

    .menu-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(201, 146, 58, 0.1);
      overflow: hidden;
      transition: var(--transition);
      position: relative;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
            margin-right: 3rem;
    }

    .menu-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(201, 146, 58, 0.3);
      transform: translateY(-5px);
    }

    .item-img-wrap {
      height: 250px;
      width: 250px;
      overflow: hidden;
      position: relative;
    }

    .item-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
      filter: saturate(0.8);
      display: flex;
      justify-content: center;margin-left: 1rem;
    }

    .menu-item:hover .item-img {
      transform: scale(1.1);
      filter: saturate(1.1);
    }

    .item-body {
      padding: 2rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      margin-left: 1rem;
    }

    .item-tag {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: var(--sage);
      text-transform: uppercase;
      margin-left: 1rem;
    }

    .item-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--sand);
    }

    .item-desc {
      font-size: 1rem;
      font-style: italic;
      color: rgba(242, 232, 217, 0.6);
      margin-bottom: 2rem;
      flex-grow: 1;
    }

    .item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }

    .item-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--gold);
    }

    .add-btn {
      background: var(--terracotta);
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      font-family: 'Space Mono', monospace;
      font-size: 0.7rem;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
    }

    .add-btn:hover {
      background: var(--burnt);
    }

    /* FEATURED ITEM */
    .menu-item.featured {
      grid-column: span 2;
      flex-direction: row;
    }

    .menu-item.featured .item-img-wrap {
      width: 50%;
      height: auto;
    }

    .menu-item.featured .item-body {
      width: 50%;
      padding: 3rem;
    }

    .featured-badge {
      font-family: 'Space Mono', monospace;
      font-size: 0.6rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* DRINKS SECTION */
    .drinks-band {
      background: linear-gradient(135deg, var(--dark), #1a2e1f);
      padding: 8rem 3rem;
    }

    /* CART DRAWER */
    .cart-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 400px;
      background: var(--dark);
      z-index: 1001;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      box-shadow: -10px 0 30px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      border-left: 1px solid rgba(201, 146, 58, 0.2);
    }

    .cart-drawer.open {
      transform: translateX(0);
    }

    .cart-header {
      padding: 2rem;
      border-bottom: 1px solid rgba(201, 146, 58, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-header h2 {
      font-family: 'Playfair Display', serif;
      color: var(--sand);
    }

    .close-cart {
      background: none;
      border: none;
      color: var(--sand);
      font-size: 1.5rem;
      cursor: pointer;
    }

    .cart-items {
      flex-grow: 1;
      overflow-y: auto;
      padding: 2rem;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .cart-item-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
    }

    .cart-item-info p {
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: var(--gold);
    }

    .remove-item {
      background: none;
      border: none;
      color: var(--terracotta);
      cursor: pointer;
      font-size: 0.8rem;
    }

    .cart-footer {
      padding: 2rem;
      border-top: 1px solid rgba(201, 146, 58, 0.1);
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
    }

    .checkout-btn {
      width: 100%;
      background: var(--terracotta);
      color: white;
      border: none;
      padding: 1rem;
      font-family: 'Space Mono', monospace;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
    }

    .checkout-btn:hover {
      background: var(--burnt);
    }

    /* FOOTER */
    footer {
      background: rgba(0,0,0,0.4);
      padding: 6rem 3rem 3rem;
      border-top: 1px solid rgba(201, 146, 58, 0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-brand .logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--sand);
      margin-bottom: 1.5rem;
      display: block;
      text-decoration: none;
    }

    .footer-brand .logo em { color: var(--terracotta); font-style: normal; }

    .footer-col h4 {
      font-family: 'Space Mono', monospace;
      font-size: 0.8rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 2rem;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 1rem; }
    .footer-col ul a {
      color: rgba(242, 232, 217, 0.5);
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-col ul a:hover { color: var(--sand); }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201, 146, 58, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sand);
      text-decoration: none;
      transition: var(--transition);
    }

    .social-links a:hover {
      border-color: var(--terracotta);
      color: var(--terracotta);
    }

    /* REVEAL ANIMATION */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* RESPONSIVENESS */
    @media (max-width: 1024px) {
      .nav-logo a{
      display: flex;
      justify-content: center;
    }
      .menu-item.featured { 
        grid-column: span 1;
         flex-direction: column;
         }
      .menu-item.featured .item-img-wrap, .menu-item.featured .item-body { width: 100%;
       }
      .footer-grid { 
        grid-template-columns: 1fr 1fr;
       }
    }
    
        body {
      background: var(--dark);
      color: var(--sand);
      font-family: 'Cormorant Garamond', serif;
      overflow-x: hidden;
      line-height: 1.6;
      width: 500px;
    }

    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem;
       }
      .nav-links, .nav-cta { display: none;
       }
      .hamburger { display: flex;
       }
      .menu-section { padding: 4rem 1.5rem;
       }
      .cart-drawer { width: 100%;
       }
      .footer-grid { grid-template-columns: 1fr;
       }
    }