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

    :root {
      --gold: #F5C842;
      --gold-light: #FFE07A;
      --gold-dim: #A88A1A;
      --bg: #0C0A07;
      --bg2: #131008;
      --bg3: #1A1508;
      --surface: #1E1A0E;
      --surface2: #252015;
      --text: #F0E8D0;
      --text-muted: #8A7A5A;
      --border: rgba(245,200,66,0.12);
    }

    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }


    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(12,10,7,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s;
    }
    .nav-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem; font-weight: 900;
      color: var(--gold);
      letter-spacing: -0.02em;
    }
    .nav-logo span { color: var(--text); }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold); color: var(--bg); padding: 0.6rem 1.4rem;
      border-radius: 4px; font-weight: 600; font-size: 0.85rem;
      text-decoration: none; letter-spacing: 0.03em; transition: all 0.2s;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 0 5%;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,200,66,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,200,66,0.04) 0%, transparent 50%);
    }
    .hero-grain {
      position: absolute; inset: 0; opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px;
    }
    .hero-content { position: relative; z-index: 2; max-width: 700px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25);
      border-radius: 100px; padding: 0.4rem 1rem;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
    }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 900; line-height: 0.95;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { color: var(--gold); }
    .hero-sub {
      font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
      max-width: 480px; margin-bottom: 2.5rem; font-weight: 300;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-gold {
      background: var(--gold); color: var(--bg);
      padding: 0.9rem 2rem; border-radius: 4px;
      font-weight: 700; font-size: 0.95rem; text-decoration: none;
      letter-spacing: 0.02em; transition: all 0.2s; display: inline-block;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,200,66,0.25); }
    .btn-outline {
      border: 1px solid rgba(245,200,66,0.4); color: var(--gold);
      padding: 0.9rem 2rem; border-radius: 4px;
      font-weight: 500; font-size: 0.95rem; text-decoration: none;
      letter-spacing: 0.02em; transition: all 0.2s; display: inline-block;
    }
    .btn-outline:hover { background: rgba(245,200,66,0.08); border-color: var(--gold); }

    .hero-stats {
      margin-top: 3.5rem; display: flex; gap: 2.5rem;
      padding-top: 2rem; border-top: 1px solid var(--border);
    }
    .hero-stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2rem; font-weight: 700; color: var(--gold); display: block;
    }
    .hero-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

    /* FLOATING COFFEE CUP */
    .hero-visual {
      position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
      width: 380px; height: 380px;
      display: flex; align-items: center; justify-content: center;
    }
    .cup-ring {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(245,200,66,0.12);
      animation: spin-slow linear infinite;
    }
    .cup-ring:nth-child(1) { width: 380px; height: 380px; animation-duration: 30s; }
    .cup-ring:nth-child(2) { width: 300px; height: 300px; animation-duration: 20s; animation-direction: reverse; border-color: rgba(245,200,66,0.18); }
    .cup-ring:nth-child(3) { width: 220px; height: 220px; animation-duration: 15s; }
    @keyframes spin-slow { to { transform: rotate(360deg); } }
    .cup-emoji { font-size: 7rem; position: relative; z-index: 2; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(245,200,66,0.3)); }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

    /* MENU SECTION */
    .section { padding: 6rem 5%; }
    .section-eyebrow {
      font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold); font-weight: 600; margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
      line-height: 1.1; margin-bottom: 1rem;
    }
    .section-title em { color: var(--gold); }
    .section-sub { color: var(--text-muted); font-size: 1rem; max-width: 480px; line-height: 1.7; margin-bottom: 3.5rem; }

    .menu-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5px; background: var(--border);
      border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    }
    .menu-card {
      background: var(--surface);
      padding: 2rem 1.8rem;
      transition: background 0.2s;
      position: relative; overflow: hidden;
    }
    .menu-card:hover { background: var(--surface2); }
    .menu-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .menu-card:hover::after { opacity: 1; }
    .menu-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
    .menu-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
    .menu-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
    .menu-price { color: var(--gold); font-weight: 700; font-size: 1.1rem; font-family: 'Space Grotesk', sans-serif; }
    .menu-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
    .btn-commander {
      background: transparent; border: 1px solid rgba(245,200,66,0.35);
      color: var(--gold); padding: 0.5rem 1.1rem; border-radius: 4px;
      font-size: 0.82rem; font-weight: 600; cursor: pointer;
      font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.04em;
      transition: all 0.2s;
    }
    .btn-commander:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

    /* ATMOSPHERE */
    .atmo-section {
      padding: 6rem 5%;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .atmo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .atmo-visual {
      aspect-ratio: 4/3;
      background: var(--surface);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      border: 1px solid var(--border);
    }
    .atmo-visual-inner { font-size: 6rem; filter: drop-shadow(0 10px 30px rgba(245,200,66,0.2)); }
    .atmo-visual::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(245,200,66,0.08) 0%, transparent 70%);
    }
    .atmo-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
    .atmo-feat {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem; background: var(--surface);
      border-radius: 8px; border: 1px solid var(--border);
    }
    .atmo-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
    .atmo-feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
    .atmo-feat-desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

    /* TESTIMONIAL */
    .testi-section { padding: 6rem 5%; text-align: center; }
    .testi-quote {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.3rem, 3vw, 2rem);
      line-height: 1.5;
      max-width: 700px; margin: 0 auto 2rem;
      color: var(--text);
    }
    .testi-quote::before { content: '"'; color: var(--gold); font-size: 3rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }
    .testi-author { color: var(--text-muted); font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; }
    .testi-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 1.5rem; letter-spacing: 0.2em; }

    /* CTA */
    .cta-section {
      padding: 6rem 5%; text-align: center;
      background: var(--bg2);
      border-top: 1px solid var(--border);
    }
    .cta-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem;
    }
    .cta-section h2 em { color: var(--gold); }
    .cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem; }

    /* FOOTER */
    footer {
      padding: 2rem 5%; border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.82rem; color: var(--text-muted);
    }
    footer .f-logo { font-family: 'Space Grotesk', sans-serif; color: var(--gold); font-weight: 700; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-visual { display: none; }
      .atmo-grid { grid-template-columns: 1fr; gap: 2rem; }
      .nav-links { display: none; }
      .hero-stats { gap: 1.5rem; }
    }
