  :root {
    --red: #C8382A;
    --gold: #C9A84C;
    --dark: #0D0D0D;
    --dark2: #1A1410;
    --cream: #F5EFE0;
    --muted: #8A7A6A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.2rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
    transition: background 0.3s;
  }
  nav.scrolled { background: rgba(13,13,13,0.97); }
  .nav-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem; color: var(--gold); letter-spacing: 2px;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: var(--cream); text-decoration: none;
    font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase;
    opacity: 0.8; transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }

  /* HERO */
  .hero {
    height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    position: relative;
    background:
      radial-gradient(ellipse at 50% 60%, rgba(200,56,42,0.12) 0%, transparent 70%),
      linear-gradient(to bottom, #0D0D0D, #1A1410);
    overflow: hidden;
  }

  .hero::before {
    content: '龍';
    position: absolute;
    font-family: 'Noto Serif SC', serif;
    font-size: 45vw;
    color: rgba(201,168,76,0.03);
    line-height: 1;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .hero-tag {
    font-size: 0.75rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem; opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--cream); line-height: 1;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero h1 span { color: var(--gold); }

  .hero-sub {
    font-style: italic; font-size: 1.3rem;
    color: var(--muted); margin-top: 1rem;
    opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-divider {
    width: 60px; height: 1px; background: var(--gold);
    margin: 2rem auto;
    opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
  }

  .btn {
    display: inline-block; padding: 0.9rem 2.8rem;
    border: 1px solid var(--gold); color: var(--gold);
    text-decoration: none; letter-spacing: 3px;
    text-transform: uppercase; font-size: 0.8rem;
    transition: background 0.3s, color 0.3s;
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }
  .btn:hover { background: var(--gold); color: var(--dark); }

  /* SECTION BASE */
  section { padding: 6rem 3rem; }

  .section-tag {
    font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; display: block;
  }
  .section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1; margin-bottom: 1.5rem;
  }
  .section-text {
    color: var(--muted); font-size: 1.1rem; line-height: 1.8;
    max-width: 480px;
  }

  /* ABOUT */
  .about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: 1100px; margin: 0 auto;
  }

  .about-img {
    position: relative;
  }
  .about-img-box {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2A1F10, #1A1410);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Serif SC', serif;
    font-size: 8rem; color: rgba(201,168,76,0.15);
    overflow: hidden;
  }

  .about-img-box img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
  }

  .about-accent {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    width: 60%; aspect-ratio: 1;
    border: 1px solid rgba(201,168,76,0.15);
    z-index: -1;
  }

  /* MENU */
  .menu-section { background: var(--dark2); }
  .menu-inner { max-width: 1100px; margin: 0 auto; }
  .menu-header { text-align: center; margin-bottom: 4rem; }
  .menu-header .section-text { margin: 0 auto; }

  .menu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .menu-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(201,168,76,0.08);
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
  }
  .menu-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }

  .menu-card-icon {
    font-size: 2rem; margin-bottom: 1rem; display: block;
  }
  .menu-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem; color: var(--cream); margin-bottom: 0.5rem;
  }
  .menu-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
  .menu-card .price {
    margin-top: 1.2rem; color: var(--gold);
    font-size: 1.1rem; font-style: italic;
  }

  /* HORAIRES */
  .horaires { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

  .schedule { margin-top: 2rem; }
  .schedule-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .schedule-row .day { color: var(--cream); }
  .schedule-row .time { color: var(--gold); font-style: italic; }
  .schedule-row.closed .time { color: var(--muted); }

  .map-placeholder {
    aspect-ratio: 4/3;
    background: #1A1410;
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem; color: var(--muted);
    font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
  }
  .map-placeholder span { font-size: 2.5rem; }

  /* CTA */
  .cta-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--dark2), var(--dark));
    padding: 7rem 3rem;
  }

  .cta-section .section-title { margin-bottom: 2rem; }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem 3rem;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--muted); font-size: 0.85rem;
  }
  .footer-logo {
    font-family: 'Noto Serif SC', serif; color: var(--gold); font-size: 1.1rem;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .horaires { grid-template-columns: 1fr; gap: 2.5rem; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
  }