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

  :root {
    --etna: #1a0a00;
    --lava: #8B1A0A;
    --arancio: #D4520A;
    --oro: #C8992A;
    --limone: #F2D060;
    --panna: #FAF3E0;
    --bianco: #FFFDF8;
    --grigio: #6B6256;
  }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--etna);
    color: var(--panna);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── CUSTOM CURSOR ─────────────────────────────── */
  .cursor {
    width: 12px; height: 12px;
    background: var(--arancio);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.2s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid var(--oro);
    border-radius: 50%;
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.6;
  }

  /* ─── NAV ────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(26,10,0,0.95), transparent);
    transition: all 0.4s;
  }
  nav.scrolled {
    background: rgba(26,10,0,0.97);
    padding: 16px 60px;
    border-bottom: 1px solid rgba(200,153,42,0.2);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 88px;
    width: auto;
    display: block;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--panna);
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s, color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--oro);
    transition: width 0.3s;
  }
  .nav-links a:hover { opacity: 1; color: var(--oro); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--etna);
    background: var(--oro);
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--limone); }

  /* ─── HERO ───────────────────────────────────────── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    padding: 180px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 6px;
    color: var(--oro);
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--panna);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--oro);
    display: block;
  }
  .hero-title strong {
    font-weight: 600;
    color: var(--arancio);
    display: block;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(250,243,224,0.65);
    max-width: 380px;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
    letter-spacing: 0.5px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
  }
  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--etna);
    background: var(--arancio);
    padding: 18px 36px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lava);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; color: var(--panna); }
  .btn-secondary {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--oro);
    text-decoration: none;
    border-bottom: 1px solid var(--oro);
    padding-bottom: 4px;
    transition: color 0.3s;
  }
  .btn-secondary:hover { color: var(--limone); border-color: var(--limone); }

  .hero-right {
    position: relative;
    overflow: hidden;
  }
  .hero-image-container {
    width: 100%; height: 100%;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s 0.4s forwards;
  }
  .hero-bg {
    width: 100%; height: 100%;
    background:
      radial-gradient(ellipse at 60% 40%, rgba(212,82,10,0.35) 0%, transparent 60%),
      radial-gradient(ellipse at 30% 70%, rgba(139,26,10,0.4) 0%, transparent 50%),
      url('../images/hero.jpg') left center/cover no-repeat;
    transform: scale(1.08);
    animation: heroZoom 12s ease-in-out infinite alternate;
  }
  @keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--etna) 0%, rgba(26,10,0,0.2) 40%, transparent 70%);
    z-index: 1;
  }
  .hero-right::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--etna), transparent);
    z-index: 1;
  }

  /* Sicily label */
  .sicily-badge {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 10;
    width: 110px;
    height: 110px;
    border: 1px solid var(--oro);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards, rotateSpin 20s linear infinite;
  }
  @keyframes rotateSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .sicily-badge-inner {
    animation: rotateSpin 20s linear infinite reverse;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sicily-badge .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--limone);
    line-height: 1;
  }
  .sicily-badge .label {
    font-family: 'Cinzel', serif;
    font-size: 6px;
    letter-spacing: 2px;
    color: var(--oro);
    text-transform: uppercase;
  }

  /* diagonal divider */
  .diagonal { width: 100%; height: 80px; background: var(--panna); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0); }

  /* ─── MARQUEE ────────────────────────────────────── */
  .marquee-wrap {
    background: var(--lava);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(200,153,42,0.3);
    border-bottom: 1px solid rgba(200,153,42,0.3);
  }
  .marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 0;
  }
  .marquee-track span {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--limone);
    text-transform: uppercase;
    padding: 0 32px;
  }
  .marquee-track .dot {
    color: var(--oro);
    font-size: 18px;
    line-height: 1;
    padding: 0 8px;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ─── SECTION BASE ───────────────────────────────── */
  section { padding: 120px 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--oro);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--oro);
    display: inline-block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.05;
  }
  .section-title em { font-style: italic; color: var(--arancio); }

  /* ─── ABOUT / STORIA ─────────────────────────────── */
  #storia { background: var(--bianco); color: var(--etna); }
  .storia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .storia-img {
    position: relative;
    height: 600px;
  }
  .storia-img-main {
    width: 100%;
    height: 100%;
    background: url('../images/storia-ambiance.jpg') center/cover no-repeat;
  }
  .storia-img-frame {
    position: absolute;
    inset: -20px;
    border: 2px solid var(--oro);
    opacity: 0.4;
    pointer-events: none;
  }
  .storia-img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--arancio);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
  }
  .storia-img-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 600; color: var(--panna); line-height: 1; }
  .storia-img-badge .small { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 2px; color: rgba(250,243,224,0.8); text-transform: uppercase; }
  .storia-content .section-label { color: var(--lava); }
  .storia-content .section-label::before { background: var(--lava); }
  .storia-content .section-title { color: var(--etna); margin-bottom: 32px; }
  .storia-text {
    font-size: 15px;
    line-height: 2;
    color: var(--grigio);
    margin-bottom: 24px;
  }
  .storia-text strong { color: var(--lava); font-weight: 700; }
  .marco-sig {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-style: italic;
    color: var(--arancio);
    margin-top: 32px;
  }
  .marco-sig small { display: block; font-style: normal; font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--grigio); margin-top: 4px; }

  /* ─── PRODUITS ───────────────────────────────────── */
  #produits { background: var(--etna); position: relative; overflow: hidden; }
  #produits::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,82,10,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .produits-header { text-align: center; margin-bottom: 80px; }
  .produits-header .section-label { justify-content: center; }
  .produits-header .section-label::before { display: none; }
  .produits-header .section-title { color: var(--panna); }
  .produits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .produit-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .produit-card .bg {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .produit-card:hover .bg { transform: scale(1.1); }
  .produit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.9) 0%, rgba(26,10,0,0.1) 60%, transparent 100%);
    z-index: 1;
  }
  .produit-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 24px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s;
  }
  .produit-card:hover .produit-info { transform: translateY(0); }
  .produit-cat {
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--oro);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .produit-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--panna);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .produit-desc {
    font-size: 12px;
    color: rgba(250,243,224,0.6);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
  }
  .produit-card:hover .produit-desc { opacity: 1; transform: translateY(0); }
  .produit-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--oro);
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s 0.2s;
  }
  .produit-card:hover .produit-price { opacity: 1; }



  /* card backgrounds — images réelles */
  .bg-vins {
    background:
      linear-gradient(rgba(26,10,0,0.15), rgba(26,10,0,0.5)),
      url('../images/vins-nero-davola.jpg') center/cover no-repeat;
  }
  .bg-huiles {
    background:
      linear-gradient(rgba(26,10,0,0.1), rgba(26,10,0,0.5)),
      url('../images/huile-truffe.jpg') center/cover no-repeat;
  }
  .bg-sauces {
    background:
      linear-gradient(rgba(26,10,0,0.1), rgba(26,10,0,0.5)),
      url('../images/sauce-tomate.jpg') center/cover no-repeat;
  }
  .bg-gourmandises {
    background:
      linear-gradient(rgba(26,10,0,0.1), rgba(26,10,0,0.5)),
      url('../images/praline.jpg') center/cover no-repeat;
  }

  /* ─── TRAITEUR / PLATS ───────────────────────────── */
  #traiteur { background: var(--lava); position: relative; overflow: hidden; }
  #traiteur::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/traiteur-bg.jpg') center/cover no-repeat;
    opacity: 0.07;
  }
  .traiteur-inner { position: relative; z-index: 1; }
  .traiteur-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
  .traiteur-content .section-title { color: var(--panna); margin-bottom: 32px; }
  .traiteur-content .section-label::before { background: var(--limone); }
  .traiteur-content .section-label { color: var(--limone); }
  .traiteur-text { font-size: 15px; line-height: 2; color: rgba(250,243,224,0.75); margin-bottom: 40px; }
  .menu-list { list-style: none; }
  .menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,153,42,0.2);
    transition: all 0.3s;
  }
  .menu-item:hover { padding-left: 12px; }
  .menu-item:hover .menu-num { color: var(--limone); }
  .menu-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--oro);
    min-width: 28px;
    transition: color 0.3s;
  }
  .menu-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--panna);
    flex: 1;
  }
  .menu-name small { display: block; font-size: 11px; font-family: 'Lato', sans-serif; color: rgba(250,243,224,0.5); margin-top: 2px; font-style: italic; }
  .menu-dots { flex: 1; border-bottom: 1px dotted rgba(200,153,42,0.3); margin: 0 16px; }
  .menu-prix { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--oro); }

  .cta-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-limone {
    color: var(--limone);
    border-color: var(--limone);
  }

  /* ─── AVIS / TESTIMONIALS ────────────────────────── */
  #avis { background: var(--panna); color: var(--etna); }
  .avis-header { text-align: center; margin-bottom: 80px; }
  .avis-header .section-label { justify-content: center; }
  .avis-header .section-label::before { display: none; }
  .avis-header .section-label { color: var(--lava); }
  .avis-header .section-title { color: var(--etna); }
  .stars { color: var(--arancio); font-size: 18px; letter-spacing: 2px; }
  .avis-score-wrapper { margin-top: 24px; }
  .avis-score {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--lava);
    line-height: 1;
    font-weight: 300;
  }
  .avis-source { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; color: var(--grigio); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 60px;
  }
  .review-card {
    background: white;
    padding: 44px 36px;
    position: relative;
    transition: transform 0.3s;
  }
  .review-card:hover { transform: translateY(-6px); }
  .review-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    color: var(--arancio);
    opacity: 0.12;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
    pointer-events: none;
  }
  .review-stars { color: var(--arancio); font-size: 14px; margin-bottom: 20px; }
  .review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: var(--etna);
    margin-bottom: 28px;
  }
  .review-author {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--grigio);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-author::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--arancio);
    display: inline-block;
  }

  /* ─── BOUTIQUE ÉPICERIE ───────────────────────────── */
  #boutique { background: var(--etna); }
  .boutique-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .boutique-header .section-title { color: var(--panna); }
  .boutique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .epicerie-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,153,42,0.15);
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
  }
  .epicerie-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,82,10,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .epicerie-card:hover { border-color: rgba(200,153,42,0.5); transform: translateY(-4px); }
  .epicerie-card:hover::before { opacity: 1; }
  .epicerie-icon { font-size: 36px; margin-bottom: 20px; }
  .epicerie-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--panna);
    margin-bottom: 12px;
  }
  .epicerie-origine {
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--oro);
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .epicerie-desc { font-size: 13px; line-height: 1.8; color: rgba(250,243,224,0.55); margin-bottom: 28px; }
  .epicerie-prix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--oro);
  }
  .epicerie-prix small { font-size: 13px; color: rgba(200,153,42,0.6); }
  .epicerie-btn {
    display: block;
    margin-top: 24px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--arancio);
    text-decoration: none;
    border-bottom: 1px solid var(--arancio);
    padding-bottom: 3px;
    width: fit-content;
    transition: all 0.3s;
  }
  .epicerie-btn:hover { color: var(--oro); border-color: var(--oro); }

  /* ─── COMMANDER ──────────────────────────────────── */
  #commander {
    background: var(--arancio);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #commander::before {
    content: 'SICILIA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 200px;
    font-weight: 700;
    color: rgba(26,10,0,0.07);
    letter-spacing: 20px;
    pointer-events: none;
    white-space: nowrap;
  }
  .commander-inner { position: relative; z-index: 1; }
  .commander-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 70px);
    color: var(--etna);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .commander-title em { font-style: italic; }
  .commander-sub { font-size: 14px; color: rgba(26,10,0,0.65); margin-bottom: 48px; letter-spacing: 0.5px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .commander-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-dark {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--panna);
    background: var(--etna);
    padding: 18px 36px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .btn-dark:hover { background: var(--lava); }
  .btn-outline-dark {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--etna);
    background: transparent;
    border: 2px solid var(--etna);
    padding: 16px 36px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline-dark:hover { background: var(--etna); color: var(--panna); }

  /* ─── CARTE / CONTACT ────────────────────────────── */
  #contact { background: var(--bianco); color: var(--etna); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .contact-info .section-title { margin-bottom: 48px; color: var(--etna); }
  .contact-info .section-label { color: var(--lava); }
  .contact-info .section-label::before { background: var(--lava); }
  .info-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
  }
  .info-icon {
    font-size: 22px;
    min-width: 32px;
    color: var(--arancio);
  }
  .info-label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--grigio);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--etna);
    line-height: 1.5;
  }
  .info-value a { color: var(--lava); text-decoration: none; }
  .map-placeholder {
    height: 400px;
    background:
      linear-gradient(rgba(26,10,0,0.3), rgba(26,10,0,0.3)),
      url('../images/contact-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .map-pin {
    width: 48px;
    height: 48px;
    background: var(--arancio);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: bounce 2s ease-in-out infinite;
  }
  .map-pin span { transform: rotate(45deg); font-size: 20px; }
  @keyframes bounce { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-10px); } }
  .map-address {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--etna);
    color: var(--panna);
    padding: 16px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
  }

  /* ─── MAP EMBED ──────────────────────────────────── */
  .map-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid rgba(200,153,42,0.2);
  }
  .map-iframe {
    border: 0;
    filter: sepia(20%) saturate(90%) hue-rotate(10deg);
  }
  .map-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,10,0,0.7), transparent);
    height: 80px;
    pointer-events: none;
  }
  .map-directions-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--arancio);
    color: var(--panna);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    text-decoration: none;
  }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    background: var(--etna);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(200,153,42,0.15);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand .logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--oro);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .footer-brand .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(250,243,224,0.5);
    margin-bottom: 24px;
  }
  .footer-brand p { font-size: 13px; line-height: 1.9; color: rgba(250,243,224,0.45); max-width: 280px; }
  .footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--oro);
    margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    font-size: 13px;
    color: rgba(250,243,224,0.5);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.5px;
  }
  .footer-col a:hover { color: var(--oro); }
  .footer-bottom {
    border-top: 1px solid rgba(200,153,42,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p { font-size: 11px; color: rgba(250,243,224,0.3); letter-spacing: 1px; }
  .footer-trinacria { font-size: 32px; opacity: 0.3; }
  .footer-socials { display: flex; gap: 20px; }
  .footer-socials a {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--oro);
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s;
  }
  .footer-socials a:hover { opacity: 1; }
  .social-links { display: flex; gap: 20px; margin-top: 20px; }
  .social-links a {
    width: 40px; height: 40px;
    border: 1px solid rgba(200,153,42,0.3);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 14px;
    color: rgba(250,243,224,0.5);
    transition: all 0.3s;
  }
  .social-links a:hover { border-color: var(--oro); color: var(--oro); background: rgba(200,153,42,0.1); }

  /* ─── ANIMATIONS ─────────────────────────────────── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .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.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 1024px) {
    #hero { grid-template-columns: 1fr; }
    .hero-right { height: 50vh; }
    .hero-bg { background-position: left top; }
    .storia-grid, .traiteur-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .produits-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .boutique-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    nav { padding: 20px 30px; }
    .nav-links { display: none; }
    .container { padding: 0 30px; }
    .hero-left { padding: 120px 30px 60px; }
  }

/* ─── TAB NAV ──────────────────────────────────────────── */
.nav-tabs {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.tab-btn {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--panna);
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oro);
  transition: width 0.3s;
}

.tab-btn:hover { opacity: 1; color: var(--oro); }
.tab-btn:hover::after { width: 100%; }

.tab-btn.active { opacity: 1; color: var(--limone); }
.tab-btn.active::after { width: 100%; background: var(--arancio); height: 2px; }

/* ─── TAB PAGES ────────────────────────────────────────── */
.tab-page { display: none; }
.tab-page.active { display: block; animation: tabFadeIn 0.4s ease forwards; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TRAITEUR INTRO BANNER ───────────────────────────── */
.traiteur-intro-banner {
  background: var(--etna);
  padding: 160px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(200,153,42,0.15);
}
.traiteur-intro-banner .section-label { justify-content: center; }
.traiteur-intro-banner .section-label::before { display: none; }
.traiteur-intro-banner .section-title { color: var(--panna); }
.traiteur-intro-banner .intro-sub {
  font-size: 15px;
  line-height: 2;
  color: rgba(250,243,224,0.65);
  max-width: 560px;
  margin: 24px auto 0;
  letter-spacing: 0.5px;
}

/* ─── SERVICE TRAITEUR DESCRIPTION ───────────────────── */
.service-traiteur-desc {
  background: var(--bianco);
  color: var(--etna);
  padding: 100px 0;
}
.service-traiteur-desc .section-label { color: var(--lava); }
.service-traiteur-desc .section-label::before { background: var(--lava); }
.service-traiteur-desc .section-title { color: var(--etna); margin-bottom: 48px; }

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.service-feature { display: flex; flex-direction: column; gap: 16px; }
.service-feature-icon { font-size: 28px; }
.service-feature-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lava);
}
.service-feature-text { font-size: 14px; line-height: 1.9; color: var(--grigio); }

/* ─── RESPONSIVE ONGLETS ────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-tabs { gap: 20px; }
  .tab-btn { font-size: 8px; letter-spacing: 2px; }
  .service-features { grid-template-columns: 1fr; gap: 32px; }
  .traiteur-intro-banner { padding: 100px 0 40px; }
}
@media (max-width: 480px) {
  .nav-cta { display: none; }
}

/* ─── LANGUE TOGGLE ─────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 16px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--panna);
  opacity: 0.55;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  transition: opacity 0.25s, color 0.25s;
  line-height: 1;
}

.lang-btn.active {
  opacity: 1;
  color: var(--oro);
}

.lang-btn:hover:not(.active) {
  opacity: 0.85;
}

.lang-sep {
  color: var(--panna);
  opacity: 0.25;
  font-size: 9px;
  font-family: 'Cinzel', serif;
  line-height: 1;
  user-select: none;
}

@media (max-width: 1024px) {
  .lang-toggle { margin-left: 10px; }
  .lang-btn { font-size: 9px; letter-spacing: 1px; }
}

@media (max-width: 480px) {
  .lang-toggle { margin-left: 8px; gap: 4px; }
}

/* ═══ CARROUSEL ═══════════════════════════════════════════ */
.carousel-wrap {
  overflow: hidden;
  width: 100%;
  padding: 48px 0;
  background: var(--etna);
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

#carousel-epicerie .carousel-track {
  animation-duration: 65s;
}

.carousel-wrap:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-img {
  height: 260px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ LIGHTBOX ════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 0, 0.92);
}

.lightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--panna);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1;
}

.lightbox-close:hover { opacity: 1; }

@media (max-width: 480px) {
  .carousel-img { height: 180px; }
}

/* ═══ TOOLTIP CARROUSEL ═══════════════════════════════════ */
.carousel-tooltip {
  position: fixed;
  pointer-events: none;
  background: rgba(26, 10, 0, 0.88);
  color: var(--panna);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid rgba(200, 153, 42, 0.45);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.18s ease;
  z-index: 500;
  transform: translate(-50%, calc(-100% - 12px));
}

.carousel-tooltip.visible { opacity: 1; }
