
    /* ── RESET & VARIABLES ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg:         hsl(0,0%,5%);
      --fg:         hsl(40,20%,92%);
      --border:     hsl(0,0%,18%);
      --card:       hsl(0,0%,10%);
      --primary:    hsl(45,95%,55%);
      --primary-fg: hsl(0,0%,5%);
      --secondary:  hsl(0,70%,30%);
      --muted-fg:   hsl(40,10%,65%);
      --accent:     hsl(45,85%,45%);
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'Lato', Arial, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: var(--primary); color: var(--primary-fg); }
    img, video { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; }

    /* ── LAYOUT ── */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-scale {
      opacity: 0;
      transform: scale(0.96);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-scale.in { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      border: none;
      transition: background .3s, color .3s, box-shadow .3s, border-color .3s;
      white-space: nowrap;
    }
    .btn-gold {
      background: var(--primary);
      color: var(--primary-fg);
      padding: 0 2rem;
      height: 3rem;
    }
    .btn-gold:hover { background: var(--accent); box-shadow: 0 0 20px hsla(45,95%,55%,.5); }
    .btn-gold-lg { height: 3.5rem; padding: 0 2.75rem; font-size: 1.05rem; }
    .btn-outline-gold {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--primary);
      padding: 0 2rem;
      height: 3rem;
    }
    .btn-outline-gold:hover {
      background: var(--primary);
      color: var(--primary-fg);
      box-shadow: 0 0 20px hsla(45,95%,55%,.4);
    }
    .btn-outline-gold-lg { height: 3.5rem; padding: 0 2.75rem; font-size: 1.05rem; }
    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 1px solid #fff;
      padding: 0 2.75rem;
      height: 3.5rem;
      font-size: 1.05rem;
    }
    .btn-outline-white:hover { background: #fff; color: var(--bg); }
    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--serif);
      text-transform: uppercase;
      letter-spacing: .2em;
      font-size: 1rem;
      color: var(--primary);
      background: none;
      border: none;
      transition: color .2s;
    }
    .btn-link:hover { color: var(--accent); }
    .btn-link .arr { transition: transform .2s; }
    .btn-link:hover .arr { transform: translateX(7px); }

    /* ── DECORATIVE ── */
    .line-pill {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .line-pill::before {
      content: '';
      display: block;
      width: 3rem;
      height: 1px;
      background: var(--primary);
      flex-shrink: 0;
    }
    .pill-label {
      font-family: var(--serif);
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .2em;
      font-size: .75rem;
    }
    .line-center {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: .75rem;
    }
    .line-center::before, .line-center::after {
      content: '';
      display: block;
      width: 3rem;
      height: 1px;
      background: var(--primary);
    }
    .text-gold { color: var(--primary); }
    .text-red  { color: var(--secondary); }
    .text-glow { text-shadow: 0 0 12px hsla(45,95%,55%,.55); }
    .font-serif { font-family: var(--serif); }

    /* ══════════════ NAVBAR ══════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0;
      width: 100%; z-index: 50;
      transition: background .35s, padding .35s, box-shadow .35s;
      padding: 1.5rem 0;
    }
    #nav.stuck {
      background: hsla(0,0%,5%,.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: .75rem 0;
      box-shadow: 0 4px 24px rgba(0,0,0,.5);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo img {
      height: 4.5rem;
      object-fit: contain;
      filter: drop-shadow(0 0 8px hsla(45,95%,55%,.3));
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-links a {
      font-family: var(--serif);
      font-size: .78rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--fg);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--primary); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--fg);
      transition: transform .3s, opacity .3s;
    }
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: var(--card);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border);
      }
      .nav-links.open { display: flex; }
    }

    /* ══════════════ HERO ══════════════ */
    #hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-media {
      position: absolute;
      inset: 0; z-index: 0;
    }
    .hero-media::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom,
        hsla(0,0%,5%,.8) 0%,
        hsla(0,0%,5%,.5) 50%,
        hsl(0,0%,5%) 100%);
      z-index: 1;
    }
    .hero-media video {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-body {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.25rem;
      max-width: 900px;
      margin-top: 9rem;
      animation: heroIn 1.2s ease-out both;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: scale(.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    #hero h1 {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 9vw, 6.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1.25rem;
      text-shadow: 0 4px 30px rgba(0,0,0,.6);
    }
    .hero-sub {
      font-family: var(--serif);
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--fg);
      margin-bottom: 3rem;
    }
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      justify-content: center;
    }
    .scroll-hint {
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: .7;
      animation: scrollBounce 2s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(10px); }
    }
    .scroll-hint span {
      font-family: var(--serif);
      font-size: .6rem;
      text-transform: uppercase;
      letter-spacing: .35em;
      color: var(--primary);
      margin-bottom: .4rem;
    }
    .scroll-line {
      width: 1px; height: 4rem;
      background: linear-gradient(to bottom, var(--primary), transparent);
    }

    /* ══════════════ ABOUT ══════════════ */
    #about {
      padding: 7rem 0 9rem;
      position: relative;
      overflow: hidden;
    }
    .about-blob {
      position: absolute;
      top: 0; right: 0;
      width: 22rem; height: 22rem;
      background: hsla(45,95%,55%,.05);
      border-radius: 50%;
      filter: blur(60px);
      transform: translate(50%,-50%);
      pointer-events: none;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative; z-index: 1;
    }
    @media (max-width: 768px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-img  { order: 2; }
      .about-txt  { order: 1; }
    }
    .about-img {
      position: relative;
    }
    .about-img::before {
      content: '';
      position: absolute;
      inset: -1.5rem;
      background: hsla(45,95%,55%,.1);
      transform: rotate(3deg);
      z-index: 0;
    }
    .about-img::after {
      content: '';
      position: absolute;
      inset: 1rem;
      border: 1px solid hsla(45,95%,55%,.3);
      z-index: 2;
      pointer-events: none;
    }
    .about-img img {
      position: relative; z-index: 1;
      width: 100%;
      box-shadow: 0 25px 50px rgba(0,0,0,.5);
      filter: brightness(.9) contrast(1.25);
    }
    .about-txt h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .about-txt p {
      color: var(--muted-fg);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    /* ══════════════ MENU ══════════════ */
    #menu {
      padding: 7rem 0 9rem;
      background: var(--card);
      border-top: 1px solid hsla(0,0%,18%,.6);
      border-bottom: 1px solid hsla(0,0%,18%,.6);
      position: relative;
      overflow: hidden;
    }
    .menu-pattern {
      position: absolute; inset: 0;
      opacity: .03; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    }
    .menu-head {
      text-align: center;
      margin-bottom: 5rem;
      position: relative; z-index: 1;
    }
    .menu-head h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
    }
    .dish-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2.5rem;
      position: relative; z-index: 1;
    }
    @media (max-width: 900px) { .dish-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
    @media (min-width: 600px) and (max-width: 900px) { .dish-grid { grid-template-columns: repeat(2,1fr); max-width: 100%; } }
    .dish-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 1rem;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: border-color .3s;
      overflow: hidden;
    }
    .dish-card::before {
      content: '';
      position: absolute;
      inset: -.75rem;
      background: hsla(0,70%,30%,.1);
      opacity: 0; transform: scale(.94);
      transition: opacity .5s, transform .5s;
      z-index: -1;
    }
    .dish-card:hover::before  { opacity: 1; transform: scale(1); }
    .dish-card:hover          { border-color: hsla(45,95%,55%,.5); }
    .dish-img {
      overflow: hidden;
      margin-bottom: 1.25rem;
      border: 1px solid var(--border);
    }
    .dish-img img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: brightness(.9);
      transition: transform .7s, filter .3s;
    }
    .dish-card:hover .dish-img img { transform: scale(1.1); filter: brightness(1); }
    .dish-meta {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: .5rem;
      flex-grow: 1;
      margin-bottom: .75rem;
    }
    .dish-name {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 700;
    }
    .dish-price {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
      white-space: nowrap;
    }
    .dish-desc {
      color: var(--muted-fg);
      font-size: .875rem;
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    /* ══════════════ CHEF ══════════════ */
    #chef {
      padding: 7rem 0;
      background: var(--bg);
      overflow: hidden;
    }
    .chef-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }
    @media (max-width: 768px) { .chef-grid { grid-template-columns: 1fr; } }
    .chef-txt h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    .chef-txt p {
      color: var(--muted-fg);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }
    .chef-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
    .stat-box { border-left: 2px solid var(--primary); padding-left: 1rem; }
    .stat-box.red  { border-left-color: var(--secondary); }
    .stat-num {
      font-family: var(--serif);
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }
    .stat-box.red .stat-num { color: var(--secondary); }
    .stat-lbl {
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--muted-fg);
      margin-top: .2rem;
    }
    .chef-img {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .chef-img::before {
      content: '';
      position: absolute; inset: 0;
      background: hsla(45,95%,55%,.2);
      filter: blur(100px);
      border-radius: 50%;
      z-index: 0;
    }
    .chef-img img {
      position: relative; z-index: 1;
      width: 100%; max-width: 28rem;
      filter: drop-shadow(0 25px 50px rgba(0,0,0,.5));
      transition: transform .5s;
    }
    .chef-img img:hover { transform: scale(1.05); }

    /* ══════════════ AMBIANCE ══════════════ */
    #ambiance {
      padding: 8rem 0;
      position: relative;
      overflow: hidden;
    }
    .amb-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .amb-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: hsla(0,0%,5%,.85);
      z-index: 1;
    }
    .amb-bg img { width: 100%; height: 100%; object-fit: cover; }
    .amb-card {
      position: relative; z-index: 2;
      background: hsla(0,0%,10%,.8);
      backdrop-filter: blur(14px);
      border: 1px solid hsla(45,95%,55%,.3);
      padding: 5rem;
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
      box-shadow: 0 25px 50px rgba(0,0,0,.5);
      overflow: hidden;
    }
    @media (max-width: 600px) { .amb-card { padding: 2.5rem 1.25rem; } }
    .amb-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, var(--primary), transparent);
    }
    .amb-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      color: var(--primary);
    }
    .amb-card h2 {
      font-family: var(--serif);
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.75rem;
    }
    .amb-card p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: hsla(40,20%,92%,.9);
      max-width: 40rem;
      margin: 0 auto 2.5rem;
    }

    /* ══════════════ TESTIMONIALS ══════════════ */
    #testimonials {
      padding: 7rem 0;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .test-head {
      text-align: center;
      margin-bottom: 4rem;
    }
    .test-head h2 {
      font-family: var(--serif);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
    }
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 2rem;
    }
    @media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
    @media (min-width: 600px) and (max-width: 900px) { .test-grid { grid-template-columns: repeat(2,1fr); max-width: 100%; } }
    .review-card {
      background: var(--card);
      border: 1px solid hsla(0,0%,18%,.5);
      padding: 2rem;
      position: relative;
      transition: border-color .3s;
    }
    .review-card:hover { border-color: hsla(45,95%,55%,.3); }
    .q-icon {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      width: 2rem; height: 2rem;
      color: var(--primary);
      opacity: .18;
      transition: opacity .3s;
    }
    .review-card:hover .q-icon { opacity: .4; }
    .stars { display: flex; gap: .2rem; margin-bottom: 1.5rem; }
    .star { color: var(--primary); font-size: 1rem; }
    .review-text {
      color: var(--muted-fg);
      font-size: .9rem;
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .review-author {
      font-family: var(--serif);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
    }
    .review-role { font-size: .85rem; color: var(--primary); margin-top: .2rem; }

    /* ══════════════ RESERVATION ══════════════ */
    #reservation {
      padding: 7rem 0;
      background: var(--card);
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    #reservation::before {
      content: '';
      position: absolute; inset: 0;
      background: hsla(45,95%,55%,.04);
      pointer-events: none;
    }
    .res-body {
      position: relative; z-index: 1;
      text-align: center;
    }
    .res-body h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .res-body > p {
      color: var(--muted-fg);
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 38rem;
      margin: 0 auto 2.5rem;
    }
    .res-fields {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 1rem;
      max-width: 46rem;
      margin: 0 auto 1.75rem;
    }
    @media (max-width: 600px) { .res-fields { grid-template-columns: 1fr; } }
    .res-field {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 1rem;
      text-align: left;
      transition: border-color .3s;
    }
    .res-field:hover { border-color: hsla(45,95%,55%,.35); }
    .res-field label {
      display: block;
      font-size: .65rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: var(--primary);
      margin-bottom: .25rem;
    }
    .res-field input,
    .res-field select {
      background: transparent;
      border: none;
      outline: none;
      color: var(--fg);
      font-family: var(--serif);
      font-size: 1.1rem;
      width: 100%;
    }
    .res-field select option { background: var(--bg); }

    /* ══════════════ FOOTER ══════════════ */
    footer {
      background: var(--card);
      border-top: 1px solid var(--border);
      padding: 6rem 0 2.5rem;
      position: relative;
      overflow: hidden;
    }
    footer::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 1px;
      background: linear-gradient(to right, var(--secondary), var(--primary), var(--secondary));
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand {
      display: flex; align-items: center;
      gap: .75rem;
      margin-bottom: 1.25rem;
    }
    .footer-brand img { height: 3rem; object-fit: contain; }
    .footer-brand-name {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: .1em;
      color: var(--primary);
    }
    .footer-tag {
      color: var(--muted-fg);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 1.75rem;
      max-width: 26rem;
    }
    .socials { display: flex; gap: .75rem; }
    .soc-link {
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted-fg);
      transition: color .2s, border-color .2s;
    }
    .soc-link:hover { color: var(--primary); border-color: var(--primary); }
    .soc-link svg { width: 1rem; height: 1rem; }
    .col-title {
      font-family: var(--serif);
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      margin-bottom: 1.5rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid hsla(45,95%,55%,.3);
      display: inline-block;
    }
    .col-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .col-list li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      color: var(--muted-fg);
      font-size: .9rem;
      transition: color .2s;
    }
    .col-list li:hover { color: var(--primary); }
    .col-list li a { color: inherit; }
    .ico {
      width: 1.2rem; height: 1.2rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: .1rem;
    }
    .hrs-lbl {
      font-size: .65rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--fg);
      font-weight: 600;
    }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      text-align: center;
      color: var(--muted-fg);
      font-size: .825rem;
    }
    @media (min-width: 640px) {
      .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a {
      text-transform: uppercase;
      letter-spacing: .1em;
      font-size: .7rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--primary); }
