    :root {
      --black: #0a0705;
      --deep: #110d09;
      --amber: #c8843a;
      --amber-light: #e0a05a;
      --cream: #f0e6d3;
      --off-white: #faf5ee;
      --gray: #7a6e63;
      --border: rgba(200, 132, 58, 0.25);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      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)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 10;
      opacity: 0.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 3rem;
      background: linear-gradient(to bottom, rgba(10,7,5,0.95), transparent);
      transition: background 0.4s;
    }
    nav.scrolled {
      background: rgba(10, 7, 5, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.12em;
      color: var(--amber);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      opacity: 0.75;
      transition: opacity 0.3s, color 0.3s;
    }
    .nav-links a:hover { opacity: 1; color: var(--amber-light); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(200,132,58,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 30%, rgba(200,132,58,0.06) 0%, transparent 60%);
    }
    .hero-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .hero-lines::before, .hero-lines::after {
      content: '';
      position: absolute;
      width: 1px;
      top: 0; bottom: 0;
      background: linear-gradient(to bottom, transparent, var(--border), transparent);
    }
    .hero-lines::before { left: 20%; }
    .hero-lines::after { right: 20%; }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 2rem;
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(5rem, 14vw, 13rem);
      font-weight: 300;
      line-height: 0.88;
      letter-spacing: -0.02em;
      color: var(--off-white);
      opacity: 0;
      animation: fadeUp 1.2s 0.5s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--amber-light);
      display: block;
    }
    .hero-sub {
      margin-top: 2rem;
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray);
      opacity: 0;
      animation: fadeUp 1s 0.9s forwards;
    }
    .hero-cta {
      margin-top: 3rem;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 1s 1.1s forwards;
    }
    .btn-primary {
      padding: 0.9rem 2.4rem;
      background: var(--amber);
      color: var(--black);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s, transform 0.3s;
    }
    .btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
    .btn-ghost {
      padding: 0.9rem 2.4rem;
      border: 1px solid var(--border);
      color: var(--cream);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-ghost:hover { border-color: var(--amber); color: var(--amber-light); }

    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeIn 1s 1.6s forwards;
    }
    .scroll-indicator span {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--amber), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* ── DIVIDER ── */
    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
      margin: 0;
    }

    /* ── ABOUT ── */
    .about {
      padding: 8rem 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }
    .about-label {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }
    .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--off-white);
    }
    .about-title em { font-style: italic; color: var(--amber-light); }
    .about-text {
      margin-top: 2rem;
      font-size: 0.95rem;
      line-height: 1.85;
      color: var(--gray);
      max-width: 480px;
    }
    .about-text p + p { margin-top: 1.2rem; }
    .about-visual {
      position: relative;
    }
    .about-frame {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--deep);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-frame-inner {
      position: absolute;
      inset: 1.5rem;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-frame-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 7rem;
      color: rgba(200,132,58,0.08);
      letter-spacing: 0.05em;
      text-align: center;
    }
    .about-corner {
      position: absolute;
      width: 20px; height: 20px;
      border-color: var(--amber);
      border-style: solid;
    }
    .about-corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
    .about-corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
    .about-corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
    .about-corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
    .about-stat {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      background: var(--amber);
      color: var(--black);
      padding: 1.5rem 2rem;
      text-align: center;
    }
    .about-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      line-height: 1;
    }
    .about-stat-label {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 0.25rem;
    }

    /* ── MENU ── */
    .menu-section {
      padding: 8rem 3rem;
      background: var(--deep);
    }
    .section-header {
      text-align: center;
      margin-bottom: 5rem;
    }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 5.5rem);
      font-weight: 300;
      color: var(--off-white);
      line-height: 1;
    }
    .section-title em { font-style: italic; color: var(--amber-light); }

    .menu-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 4rem;
      border: 1px solid var(--border);
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
    .menu-tab {
      padding: 0.75rem 2rem;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: none;
      border: none;
      color: var(--gray);
      cursor: pointer;
      transition: all 0.3s;
      border-right: 1px solid var(--border);
    }
    .menu-tab:last-child { border-right: none; }
    .menu-tab.active { background: var(--amber); color: var(--black); font-weight: 500; }
    .menu-tab:not(.active):hover { color: var(--amber-light); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
    }
    .menu-item {
      padding: 2rem 2.5rem;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      transition: background 0.3s;
    }
    .menu-item:nth-child(even) { border-right: none; }
    .menu-item:hover { background: rgba(200,132,58,0.04); }
    .menu-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--off-white);
      margin-bottom: 0.4rem;
    }
    .menu-item-desc {
      font-size: 0.78rem;
      color: var(--gray);
      line-height: 1.5;
    }
    .menu-item-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      color: var(--amber);
      white-space: nowrap;
    }
    .menu-panel { display: none; }
    .menu-panel.active { display: block; }

    /* ── EXPERIENCE ── */
    .experience {
      padding: 8rem 3rem;
      max-width: 1300px;
      margin: 0 auto;
    }
    .exp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 5rem;
      background: var(--border);
    }
    .exp-card {
      background: var(--black);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: background 0.4s;
    }
    .exp-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200,132,58,0.06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .exp-card:hover { background: var(--deep); }
    .exp-card:hover::before { opacity: 1; }
    .exp-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      color: rgba(200,132,58,0.12);
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .exp-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--off-white);
      margin-bottom: 1rem;
    }
    .exp-text {
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--gray);
    }
    .exp-icon {
      position: absolute;
      top: 2.5rem;
      right: 2.5rem;
      font-size: 1.5rem;
      opacity: 0.4;
    }

    /* ── ORARI ── */
    .hours-section {
      background: var(--deep);
      padding: 7rem 3rem;
    }
    .hours-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .hours-table { width: 100%; }
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
    }
    .hours-row:first-child { border-top: 1px solid var(--border); }
    .hours-day {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .hours-time {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--cream);
    }
    .hours-closed { color: var(--gray); font-style: italic; font-size: 0.85rem; }
    .hours-address {
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .address-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.75rem;
    }
    .address-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--off-white);
      line-height: 1.5;
    }
    .hours-right { }
    .reserve-card {
      border: 1px solid var(--border);
      padding: 3rem;
      position: relative;
    }
    .reserve-card::before {
      content: '';
      position: absolute;
      inset: 0.6rem;
      border: 1px solid rgba(200,132,58,0.1);
      pointer-events: none;
    }
    .reserve-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--off-white);
      margin-bottom: 0.75rem;
    }
    .reserve-title em { font-style: italic; color: var(--amber-light); }
    .reserve-sub {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      border: 1px solid var(--border);
      color: var(--cream);
      text-decoration: none;
      font-size: 0.82rem;
      transition: border-color 0.3s, background 0.3s;
    }
    .contact-link:hover { border-color: var(--amber); background: rgba(200,132,58,0.05); }
    .contact-link-icon { color: var(--amber); font-size: 1rem; }

    /* ── GALLERY ── */
    .gallery-section {
      padding: 8rem 0;
    }
    .gallery-header {
      text-align: center;
      padding: 0 3rem;
      margin-bottom: 4rem;
    }
    .gallery-strip {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr 1.1fr;
      height: 380px;
      gap: 3px;
    }
    .gallery-cell {
      background: var(--deep);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-cell-content {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      color: rgba(200,132,58,0.07);
      letter-spacing: 0.05em;
      user-select: none;
      transition: transform 0.5s, color 0.5s;
    }
    .gallery-cell:hover .gallery-cell-content {
      transform: scale(1.1);
      color: rgba(200,132,58,0.14);
    }
    .gallery-cell-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,7,5,0.7), transparent 40%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
    /* Color variations */
    .gallery-cell:nth-child(1) { background: linear-gradient(135deg, #1a0f08, #110d09); }
    .gallery-cell:nth-child(2) { background: linear-gradient(135deg, #0d0b08, #16100a); }
    .gallery-cell:nth-child(3) { background: linear-gradient(135deg, #160d05, #0d0905); }
    .gallery-cell:nth-child(4) { background: linear-gradient(135deg, #111008, #0a0807); }
    .gallery-cell:nth-child(5) { background: linear-gradient(135deg, #1a0f08, #0e0a06); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid var(--border);
      padding: 4rem 3rem 2.5rem;
    }
    .footer-inner {
      max-width: 1300px;
      margin: 0 auto;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }
    .footer-brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: var(--amber);
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    .footer-brand-text {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 280px;
    }
    .footer-col-title {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1.5rem;
    }
    .footer-links { list-style: none; }
    .footer-links li + li { margin-top: 0.75rem; }
    .footer-links a {
      font-size: 0.85rem;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--cream); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .footer-copy {
      font-size: 0.72rem;
      color: var(--gray);
      letter-spacing: 0.08em;
    }
    .social-links {
      display: flex;
      gap: 1.2rem;
    }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      text-decoration: none;
      font-size: 0.85rem;
      transition: border-color 0.3s, color 0.3s;
    }
    .social-link:hover { border-color: var(--amber); color: var(--amber); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.15); }
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 1.5rem; }
      .nav-links { display: none; }
      .about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
      .about-stat { right: 0; bottom: -1.5rem; }
      .menu-section { padding: 5rem 1.5rem; }
      .menu-grid { grid-template-columns: 1fr; }
      .menu-item:nth-child(even) { border-right: 1px solid var(--border); }
      .menu-item { border-right: none; }
      .exp-grid { grid-template-columns: 1fr; }
      .hours-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0; }
      .hours-section { padding: 5rem 1.5rem; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .gallery-strip { grid-template-columns: 1fr 1fr 1fr; height: 280px; }
      .gallery-cell:nth-child(4), .gallery-cell:nth-child(5) { display: none; }
      .experience { padding: 5rem 1.5rem; }
    }