 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --terracotta: #B88A2E;
      --terracotta-light: #B88A2E;
      --terracotta-dark: #B88A2E;
      --ivory: #F7F2E8;
      --cream: #EDE5D0;
      --warm-white: #FDFAF5;
      --charcoal: #1C1A17;
      --warm-gray: #6B6459;
      --gold: #C9973A;
      --gold-light: #E5B85A;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--warm-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ─── CURSOR ─── */
    .cursor {
      width: 10px; height: 10px;
      background: var(--terracotta);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s ease;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--terracotta);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      opacity: 0.6;
    }
    body:hover .cursor, body:hover .cursor-ring { opacity: 1; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 48px;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
      background: rgba(28,26,23,0.97);
      box-shadow: 0 1px 0 rgba(201,151,58,0.2);
      backdrop-filter: blur(12px);
    }
    .nav-brand {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: white;
      letter-spacing: 0.5px;
      text-decoration: none;
    }
    .nav-brand span { color: var(--gold-light); }
    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -3px; left: 0; right: 0;
      height: 1px; background: var(--gold-light);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: white; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      background: var(--terracotta);
      color: white !important;
      padding: 9px 22px;
      border-radius: 2px;
      font-size: 12px !important;
      font-weight: 500 !important;
      letter-spacing: 1.5px !important;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: var(--terracotta-light) !important; transform: translateY(-1px); }
    .nav-cta::after { display: none !important; }

    /* ─── HAMBURGER ─── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 1.5px; background: white; transition: 0.3s; }

    /* ─── HERO ─── */
    .hero {
      height: 100vh; min-height: 680px;
      position: relative;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('../Images/Logo/Logo_Insegna.jpeg') center/cover;
    }
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(28,26,23,0.88) 0%,
        rgba(28,26,23,0.6) 50%,
        rgba(139,46,5,0.2) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 80px;
      max-width: 700px;
    }
    .eyebrow {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px; height: 1px;
      background: var(--gold-light);
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(52px, 7vw, 88px);
      font-weight: 700;
      color: white;
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero p {
      font-size: 17px;
      font-weight: 300;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 44px;
    }
    .hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--terracotta);
      color: white;
      padding: 16px 36px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      display: inline-block;
    }
    .btn-primary:hover {
      background: var(--terracotta-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(193,68,14,0.4);
    }
    .btn-ghost {
      color: white;
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: white; color: white; }

    .hero-scroll {
      position: absolute; bottom: 40px; left: 80px; z-index: 2;
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,0.5);
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: rgba(255,255,255,0.3);
      position: relative; overflow: hidden;
    }
    .scroll-line::after {
      content: '';
      position: absolute; top: -100%; left: 0;
      width: 100%; height: 100%;
      background: var(--gold-light);
      animation: scrollDown 1.8s ease infinite;
    }
    @keyframes scrollDown {
      0% { top: -100%; }
      100% { top: 200%; }
    }

    .hero-stats {
      position: absolute; right: 80px; bottom: 60px; z-index: 2;
      display: flex; gap: 40px;
    }
    .stat { text-align: right; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 36px; font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }
    .stat-label {
      font-size: 11px; color: rgba(255,255,255,0.5);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-top: 4px;
    }

    /* ─── TICKER ─── */
    .ticker {
      background: var(--terracotta);
      color: white;
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-inner {
      display: inline-flex; gap: 0;
      animation: ticker 22s linear infinite;
    }
    .ticker-item {
      font-size: 12px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 400;
      padding: 0 48px;
    }
    .ticker-dot {
      color: var(--gold-light); font-size: 18px;
      vertical-align: middle;
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: 100px 0; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

    .section-eyebrow {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; color: var(--terracotta);
      font-weight: 500; margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px; height: 1px; background: var(--terracotta);
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-title em { font-style: italic; color: var(--terracotta); }
    .section-sub {
      font-size: 16px; color: var(--warm-gray);
      font-weight: 300; line-height: 1.7;
      max-width: 520px;
    }

    /* ─── CHI SIAMO ─── */
    .about { background: var(--ivory); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-images {
      position: relative; height: 540px;
    }
    .about-img-main {
      position: absolute;
      width: 75%; height: 82%;
      right: 0; top: 0;
      object-fit: cover;
      border-radius: 2px;
    }
    .about-img-accent {
      position: absolute;
      width: 52%; height: 50%;
      left: 0; bottom: 0;
      object-fit: cover;
      border-radius: 2px;
      border: 6px solid var(--ivory);
    }
    .about-badge {
      position: absolute;
      right: -20px; top: 50%;
      transform: translateY(-50%);
      background: var(--terracotta);
      color: white; padding: 20px;
      text-align: center; border-radius: 2px;
      box-shadow: 0 12px 40px rgba(193,68,14,0.3);
      z-index: 2;
    }
    .about-badge-num {
      font-family: var(--font-display);
      font-size: 44px; font-weight: 900;
      line-height: 1; display: block;
    }
    .about-badge-txt {
      font-size: 11px; letter-spacing: 1.5px;
      text-transform: uppercase; opacity: 0.85;
      margin-top: 4px; display: block;
    }
    .about-text { padding: 20px 0; }
    .about-text p {
      font-size: 16px; line-height: 1.8;
      color: var(--warm-gray); margin-bottom: 20px;
    }
    .about-list {
      list-style: none;
      margin: 28px 0 36px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .about-list li {
      font-size: 13px; color: var(--charcoal);
      font-weight: 500; display: flex; align-items: flex-start; gap: 10px;
    }
    .about-list li::before {
      content: '';
      width: 6px; height: 6px; min-width: 6px;
      background: var(--terracotta);
      border-radius: 50%;
      margin-top: 5px;
    }

    /* ─── CATEGORIES STRIP ─── */
    .categories {
      background: var(--charcoal);
      padding: 0;
    }
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .cat-item {
      padding: 52px 32px;
      display: flex; flex-direction: column; align-items: center; gap: 16px;
      border-right: 1px solid rgba(255,255,255,0.06);
      cursor: pointer;
      position: relative; overflow: hidden;
      transition: background 0.3s;
    }
    .cat-item:last-child { border-right: none; }
    .cat-item::before {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--terracotta);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .cat-item:hover { background: rgba(255,255,255,0.03); }
    .cat-item:hover::before { transform: scaleX(1); }
    .cat-icon { font-size: 36px; }
    .cat-label {
      font-family: var(--font-display);
      font-size: 17px; color: white;
      font-weight: 500;
      text-align: center;
    }
    .cat-sub {
      font-size: 12px; color: rgba(255,255,255,0.4);
      letter-spacing: 1px; text-transform: uppercase;
      text-align: center;
    }

    /* ─── SPECIALI ─── */
    .speciali { background: var(--warm-white); }
    .speciali-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 52px;
    }
    .today-badge {
      display: flex; align-items: center; gap: 8px;
      background: var(--terracotta);
      color: white; padding: 10px 20px;
      border-radius: 2px; font-size: 12px;
      letter-spacing: 1px; text-transform: uppercase;
    }
    .today-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--gold-light);
      border-radius: 50%;
      animation: pulse 1.5s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .speciali-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2px;
    }
    .spec-main { grid-row: 1 / 3; position: relative; overflow: hidden; cursor: pointer; }
    .spec-small { position: relative; overflow: hidden; cursor: pointer; }
    .spec-img {
      width: 100%; height: 100%; min-height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .spec-main .spec-img { min-height: 500px; }
    .spec-main:hover .spec-img,
    .spec-small:hover .spec-img { transform: scale(1.05); }

    .spec-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(28,26,23,0.92) 0%, rgba(28,26,23,0.1) 60%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 28px;
    }
    .spec-tag {
      display: inline-block;
      font-size: 10px; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold-light);
      font-weight: 500; margin-bottom: 8px;
    }
    .spec-overlay h3 {
      font-family: var(--font-display);
      font-size: 26px; color: white; font-weight: 700;
      margin-bottom: 8px; line-height: 1.2;
    }
    .spec-overlay h4 {
      font-family: var(--font-display);
      font-size: 19px; color: white; font-weight: 600;
      margin-bottom: 6px; line-height: 1.2;
    }
    .spec-overlay p {
      font-size: 13px; color: rgba(255,255,255,0.65);
      line-height: 1.5; margin-bottom: 16px;
    }
    .spec-bottom { display: flex; align-items: center; justify-content: space-between; }
    .spec-price {
      font-family: var(--font-display);
      font-size: 22px; color: var(--gold-light);
      font-weight: 700;
    }
    .spec-small .spec-price { font-size: 18px; }
    .btn-order {
      background: rgba(255,255,255,0.12);
      color: white; border: 1px solid rgba(255,255,255,0.25);
      padding: 8px 18px; border-radius: 2px;
      font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
      cursor: pointer; transition: background 0.2s, border-color 0.2s;
      font-family: var(--font-body);
    }
    .btn-order:hover {
      background: var(--terracotta);
      border-color: var(--terracotta);
    }

    /* ─── PIATTI FORTI ─── */
    .piatti { background: var(--ivory); }
    .piatti-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 52px;
    }
    .card {
      background: white;
      border-radius: 2px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(28,26,23,0.12);
    }
    .card-img {
      width: 100%; height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .card:hover .card-img { transform: scale(1.04); }
    .card-img-wrap { overflow: hidden; position: relative; }
    .card-badge {
      position: absolute; top: 12px; left: 12px;
      background: var(--terracotta);
      color: white; font-size: 10px;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 1px;
    }
    .card-body { padding: 22px; }
    .card-title {
      font-family: var(--font-display);
      font-size: 19px; font-weight: 600;
      color: var(--charcoal); margin-bottom: 8px;
    }
    .card-desc {
      font-size: 13px; color: var(--warm-gray);
      line-height: 1.6; margin-bottom: 18px;
    }
    .card-footer {
      display: flex; align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--cream);
      padding-top: 16px;
    }
    .price {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 700;
      color: var(--terracotta);
    }
    .btn-card-order {
      background: var(--charcoal);
      color: white; border: none;
      padding: 9px 20px; border-radius: 2px;
      font-size: 11px; letter-spacing: 1px;
      text-transform: uppercase; cursor: pointer;
      font-family: var(--font-body);
      transition: background 0.2s;
    }
    .btn-card-order:hover { background: var(--terracotta); }

    /* ─── DOLCI ─── */
    .dolci { background: var(--charcoal); }
    .dolci .section-eyebrow { color: var(--gold-light); }
    .dolci .section-eyebrow::before { background: var(--gold-light); }
    .dolci .section-title { color: white; }
    .dolci .section-sub { color: rgba(255,255,255,0.5); }

    .dolci-scroll-wrap {
      position: relative;
      margin-top: 52px;
    }
    .dolci-scroll {
      display: flex; gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding-bottom: 8px;
    }
    .dolci-scroll::-webkit-scrollbar { display: none; }
    .dolci-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      background: rgba(255,255,255,0.05);
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      transition: border-color 0.3s;
    }
    .dolci-card:hover { border-color: var(--gold); }
    .dolci-card img {
      width: 100%; height: 190px;
      object-fit: cover; display: block;
    }
    .dolci-card-body { padding: 20px; }
    .dolci-card-title {
      font-family: var(--font-display);
      font-size: 18px; color: white;
      font-weight: 600; margin-bottom: 8px;
    }
    .dolci-card-desc {
      font-size: 13px; color: rgba(255,255,255,0.5);
      line-height: 1.6; margin-bottom: 16px;
    }
    .dolci-card-footer {
      display: flex; justify-content: space-between; align-items: center;
    }
    .dolci-price {
      font-family: var(--font-display);
      font-size: 20px; color: var(--gold-light);
      font-weight: 700;
    }

    .scroll-nav {
      display: flex; gap: 10px; margin-top: 28px; justify-content: flex-end;
    }
    .scroll-btn {
      width: 44px; height: 44px;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent; color: white;
      border-radius: 2px; cursor: pointer;
      font-size: 20px; display: flex;
      align-items: center; justify-content: center;
      transition: background 0.2s, border-color 0.2s;
    }
    .scroll-btn:hover { background: var(--terracotta); border-color: var(--terracotta); }

    /* ─── GALLERY ─── */
    .gallery { background: var(--ivory); padding: 100px 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 220px 220px;
      gap: 4px;
      margin-top: 52px;
    }
    .g-item {
      overflow: hidden; cursor: pointer;
      position: relative;
    }
    .g-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.6s ease;
      filter: saturate(0.85);
    }
    .g-item:hover img { transform: scale(1.06); filter: saturate(1); }
    .g-item::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(28,26,23,0.25);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .g-item:hover::after { opacity: 1; }
    .g1 { grid-column: span 4; }
    .g2 { grid-column: span 5; }
    .g3 { grid-column: span 3; }
    .g4 { grid-column: span 3; }
    .g5 { grid-column: span 4; }
    .g6 { grid-column: span 5; }

    /* ─── TESTIMONIALS ─── */
    .reviews { background: white; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 52px;
    }
    .review-card {
      padding: 36px;
      background: var(--warm-white);
      border-radius: 2px;
      border: 1px solid var(--cream);
      position: relative;
      transition: border-color 0.3s, transform 0.3s;
    }
    .review-card:hover { border-color: var(--terracotta); transform: translateY(-4px); }
    .review-card::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 80px;
      color: var(--cream);
      position: absolute;
      top: 12px; left: 28px;
      line-height: 1;
      font-weight: 700;
    }
    .stars {
      color: var(--gold);
      font-size: 14px; letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .review-text {
      font-size: 15px; line-height: 1.75;
      color: var(--warm-gray);
      margin-bottom: 24px;
      position: relative; z-index: 1;
    }
    .review-author { display: flex; align-items: center; gap: 14px; }
    .review-avatar {
      width: 44px; height: 44px;
      background: var(--terracotta);
      color: white; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.5px;
    }
    .review-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
    .review-date { font-size: 12px; color: rgba(107,100,89,0.6); margin-top: 2px; }

    /* ─── INFO + CONTATTI ─── */
    .info { background: var(--charcoal); }
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 60px;
    }
    .info-col h3 {
      font-family: var(--font-display);
      font-size: 22px; color: white;
      margin-bottom: 28px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .orari-row {
      display: flex; justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 14px;
    }
    .orari-row .day { color: rgba(255,255,255,0.55); }
    .orari-row .time { color: white; font-weight: 400; }
    .orari-row.oggi .day { color: var(--gold-light); font-weight: 500; }
    .orari-row.oggi .time { color: var(--gold-light); }
    .orari-row.closed .time { color: rgba(255,255,255,0.25); }
    .contact-item {
      display: flex; gap: 16px; align-items: flex-start;
      margin-bottom: 20px;
    }
    .contact-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .contact-label {
      font-size: 11px; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--gold-light);
      margin-bottom: 4px;
    }
    .contact-value {
      font-size: 14px; color: rgba(255,255,255,0.75);
    }
    .contact-value a { color: inherit; text-decoration: none; }
    .contact-value a:hover { color: white; text-decoration: underline; }
    .map-area {
      margin-top: 20px;
      height: 160px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: border-color 0.2s;
    }
    .map-area:hover { border-color: var(--terracotta); }
    .map-area span {
      font-size: 12px; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
    }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: var(--terracotta);
      padding: 80px 0;
    }
    .newsletter-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 60px;
      flex-wrap: wrap;
    }
    .newsletter-text { flex: 1; min-width: 280px; }
    .newsletter h2 {
      font-family: var(--font-display);
      font-size: 36px; color: white;
      font-weight: 700; margin-bottom: 12px;
    }
    .newsletter p {
      font-size: 15px; color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }
    .newsletter-form-wrap { flex: 1; min-width: 280px; }
    .newsletter-form {
      display: flex; gap: 0;
    }
    .newsletter-input {
      flex: 1;
      padding: 16px 20px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-right: none;
      color: white;
      font-size: 14px; font-family: var(--font-body);
      border-radius: 2px 0 0 2px;
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
    .newsletter-input:focus { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
    .newsletter-submit {
      padding: 16px 28px;
      background: var(--charcoal);
      color: white; border: none;
      font-size: 12px; letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer; font-family: var(--font-body);
      border-radius: 0 2px 2px 0;
      font-weight: 500;
      transition: background 0.2s;
    }
    .newsletter-submit:hover { background: #0d0b09; }

    /* ─── FOOTER ─── */
    footer {
      background: #0d0b09;
      padding: 36px 0;
    }
    .footer-inner {
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 18px; color: white;
      font-weight: 700;
    }
    .footer-brand span { color: var(--gold-light); }
    .footer-copy {
      font-size: 12px; color: rgba(255,255,255,0.3);
      letter-spacing: 0.5px;
    }
    .footer-links {
      display: flex; gap: 24px;
    }
    .footer-links a {
      font-size: 12px; color: rgba(255,255,255,0.35);
      text-decoration: none; letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold-light); }

    /* ─── ANIMATIONS ─── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ─── MOBILE ─── */
    @media (max-width: 1024px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(28,26,23,0.98);
        padding: 32px 24px; gap: 20px;
        backdrop-filter: blur(12px);
      }
      .nav-cta { display: none; }
      .hamburger { display: flex; }
      .hero-content { padding: 0 24px; }
      .hero-stats { display: none; }
      .hero-scroll { left: 24px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-images { height: 320px; }
      .about-badge { right: 0; }
      .cat-grid { grid-template-columns: repeat(2, 1fr); }
      .cat-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
      .piatti-grid { grid-template-columns: repeat(2, 1fr); }
      .speciali-grid { grid-template-columns: 1fr 1fr; }
      .spec-main { grid-row: unset; grid-column: span 2; }
      .reviews-grid { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; gap: 40px; }
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
      }
      .g1,.g2,.g3,.g4,.g5,.g6 { grid-column: span 1; }
    }

    @media (max-width: 640px) {
      section { padding: 64px 0; }
      .container { padding: 0 20px; }
      .piatti-grid { grid-template-columns: 1fr; }
      .speciali-grid { grid-template-columns: 1fr; }
      .spec-main { grid-column: span 1; }
      .newsletter-inner { flex-direction: column; gap: 28px; }
      .newsletter-form { flex-direction: column; }
      .newsletter-input { border-right: 1px solid rgba(255,255,255,0.25); border-radius: 2px; }
      .newsletter-submit { border-radius: 2px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; flex-wrap: wrap; }
    }

    /* ─── CART TOAST ─── */
    .toast {
      position: fixed; bottom: 32px; right: 32px; z-index: 500;
      background: var(--charcoal);
      color: white; padding: 16px 24px;
      border-radius: 2px;
      border-left: 3px solid var(--terracotta);
      font-size: 14px;
      transform: translateY(100px); opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
    }
    .toast.show { transform: none; opacity: 1; }
    .toast strong { color: var(--gold-light); }
