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

    :root {
      --cream:    #fdf6ec;
      --cream2:   #f5ead6;
      --terra:    #c0654a;
      --terra-dk: #9b4a32;
      --brown:    #5c3d2e;
      --sand:     #e8d5b7;
      --text:     #3a2a1e;
      --muted:    #8a6f5b;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { background: var(--cream); color: var(--text); font-family: 'Lato', sans-serif; overflow-x: hidden; }

    .flag-icon { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }

    /* ── NAV (hide on scroll down, show on scroll up) ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: var(--brown);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem; height: 64px;
      transform: translateY(0);
      transition: transform .35s ease, box-shadow .35s ease;
    }
    nav.hidden { transform: translateY(-100%); }
    nav.scrolled { box-shadow: 0 4px 20px rgba(30,18,8,.3); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      color: var(--sand); font-size: 1.2rem; text-decoration: none;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      color: var(--sand); text-decoration: none; font-size: .82rem;
      letter-spacing: 1.5px; text-transform: uppercase; opacity: .8;
      transition: opacity .2s;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-menu-btn {
      background: var(--terra); color: #fff; border: none;
      font-family: 'Lato', sans-serif; font-size: .78rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: .55rem 1.4rem; border-radius: 2px; cursor: pointer;
      text-decoration: none; transition: background .2s;
    }
    .nav-menu-btn:hover { background: var(--terra-dk); }

    /* Language switcher inside nav */
    .nav-lang { position: relative; }
    .lang-btn {
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
      border-radius: 4px; color: var(--sand); padding: .38rem .85rem;
      font-size: .8rem; font-family: 'Lato', sans-serif; font-weight: 600;
      cursor: pointer; display: flex; align-items: center; gap: .45rem;
      transition: background .2s;
    }
    .lang-btn:hover { background: rgba(255,255,255,.22); }
    .lang-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: #fff; border: 1px solid var(--sand); border-radius: 6px;
      box-shadow: 0 8px 24px rgba(92,61,46,.18);
      min-width: 130px; display: none; overflow: hidden; z-index: 10;
    }
    .lang-dropdown.open { display: block; }
    .lang-dropdown a {
      display: flex; align-items: center; gap: .6rem;
      padding: .6rem 1rem; text-decoration: none;
      color: var(--text); font-size: .83rem; font-weight: 600;
      transition: background .15s;
    }
    .lang-dropdown a:hover { background: var(--cream2); }
    .lang-dropdown hr { border: none; border-top: 1px solid var(--sand); margin: 0; }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--sand); border-radius: 2px; }

    /* ── HERO ── */
    .hero {
      position: relative; width: 100%; height: 100vh;
      overflow: hidden; background: #1e1208;
    }
    .hero-slides { width: 100%; height: 100%; position: relative; }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0; transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(.55);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(30,18,8,.1) 0%, rgba(30,18,8,.55) 100%);
      z-index: 1;
    }
    .hero-content {
      position: absolute; inset: 0; z-index: 2;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 2rem;
    }
    .hero-logo {
      width: min(420px, 70vw); margin-bottom: 2rem;
      filter: drop-shadow(0 0 40px rgba(0,0,0,.6));
    }
    .hero-eyebrow {
      font-size: .72rem; letter-spacing: 5px; text-transform: uppercase;
      color: var(--sand); opacity: .7; margin-bottom: 1rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      color: #fff; line-height: 1.15; margin-bottom: 1.5rem;
      text-shadow: 0 2px 20px rgba(0,0,0,.5);
    }
    .hero-sub {
      color: var(--sand); opacity: .85; font-weight: 300;
      font-size: clamp(.9rem, 2vw, 1.1rem); max-width: 500px;
      line-height: 1.7; margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .btn-primary-hero {
      background: var(--terra); color: #fff; text-decoration: none;
      font-weight: 700; font-size: .82rem; letter-spacing: 2px;
      text-transform: uppercase; padding: .9rem 2.2rem; border-radius: 2px;
      transition: background .2s, transform .2s;
    }
    .btn-primary-hero:hover { background: var(--terra-dk); transform: translateY(-2px); }
    .btn-secondary-hero {
      background: transparent; color: #fff; text-decoration: none;
      font-weight: 600; font-size: .82rem; letter-spacing: 2px;
      text-transform: uppercase; padding: .9rem 2.2rem; border-radius: 2px;
      border: 1.5px solid rgba(255,255,255,.5); transition: border-color .2s, transform .2s;
    }
    .btn-secondary-hero:hover { border-color: #fff; transform: translateY(-2px); }

    .hero-indicators {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      z-index: 3; display: flex; gap: .6rem;
    }
    .hero-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.4); border: none; cursor: pointer;
      transition: background .3s, transform .3s; padding: 0;
    }
    .hero-dot.active { background: #fff; transform: scale(1.3); }

    /* ── STRIP FEATURES ── */
    .strip {
      background: var(--brown);
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 0; padding: 0;
    }
    .strip-item {
      display: flex; align-items: center; gap: .8rem;
      padding: 1.4rem 2.5rem; color: var(--sand);
      border-right: 1px solid rgba(255,255,255,.1);
      font-size: .85rem;
    }
    .strip-item:last-child { border-right: none; }
    .strip-item i { color: var(--terra); font-size: 1.1rem; }

    /* ── SECTION COMMON ── */
    .section { padding: 5.5rem 1.5rem; }
    .section-alt { background: var(--cream2); }
    .section-dark { background: var(--brown); }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .eyebrow {
      font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
      color: var(--terra); margin-bottom: .8rem; display: block;
    }
    .eyebrow-light { color: var(--sand); opacity: .6; }
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--brown);
    }
    .section-header h2.light { color: #fff; }
    .section-header p {
      margin-top: .8rem; color: var(--muted); font-weight: 300;
      max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
    }
    .section-header p.light { color: var(--sand); opacity: .8; }
    .divider { width: 50px; height: 2px; background: var(--terra); margin: 1.2rem auto 0; }

    /* ── CHI SIAMO ── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
      max-width: 1100px; margin: 0 auto;
    }
    .about-img {
      border-radius: 6px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(92,61,46,.2);
      position: relative;
    }
    .about-img img { width: 100%; display: block; object-fit: cover; height: 460px; }
    .about-img::before {
      content: ''; position: absolute;
      inset: -12px 12px 12px -12px;
      border: 2px solid var(--terra); border-radius: 6px; z-index: -1;
    }
    .about-text .eyebrow { text-align: left; }
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--brown); margin-bottom: 1.5rem; line-height: 1.2;
    }
    .about-text p {
      color: var(--muted); font-weight: 300; line-height: 1.8;
      margin-bottom: 1.2rem; font-size: .95rem;
    }
    .about-divider { width: 50px; height: 2px; background: var(--terra); margin: 1rem 0 1.5rem; }

    /* ── GALLERY ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 240px 240px;
      gap: .8rem;
      max-width: 1200px; margin: 0 auto;
    }
    .gallery-item { overflow: hidden; border-radius: 4px; }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .5s ease;
    }
    .gallery-item:hover img { transform: scale(1.05); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; max-width: 1100px; margin: 0 auto;
      align-items: start;
    }
    .contact-card {
      background: var(--cream); border: 1px solid var(--sand);
      border-radius: 6px; padding: 2.5rem;
    }
    .contact-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.2rem 0; border-bottom: 1px solid var(--sand);
    }
    .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
    .contact-icon {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--cream2); border: 1px solid var(--sand);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--terra); font-size: .95rem;
    }
    .contact-item h5 {
      font-family: 'Playfair Display', serif;
      font-size: .95rem; color: var(--brown); margin-bottom: .35rem;
    }
    .contact-item p, .contact-item a {
      font-size: .88rem; color: var(--muted); font-weight: 300;
      line-height: 1.6; text-decoration: none;
    }
    .contact-item a:hover { color: var(--terra); }
    .map-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 4px 20px rgba(92,61,46,.12); }
    .map-wrap iframe { display: block; }
    .directions-link {
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      margin-top: 1rem; color: var(--terra); text-decoration: none;
      font-size: .85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
      transition: opacity .2s;
    }
    .directions-link:hover { opacity: .7; }

    /* ── FOOTER ── */
    footer {
      background: #1e1208; text-align: center;
      padding: 1.8rem; color: var(--muted); font-size: .75rem;
    }
    footer a { color: var(--muted); text-decoration: none; }

    /* ── COOKIE ── */
    .cookie-modal {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.5); z-index: 9999;
      align-items: flex-end; justify-content: center; padding: 1.5rem;
    }
    .cookie-modal.show { display: flex; animation: fadeUp .3s ease; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .cookie-inner {
      background: #fff; border-radius: 8px; padding: 2rem;
      max-width: 560px; width: 100%;
      box-shadow: 0 20px 60px rgba(0,0,0,.2);
    }
    .cookie-inner h5 { font-family: 'Playfair Display', serif; color: var(--brown); margin-bottom: .8rem; font-size: 1.1rem; }
    .cookie-inner p { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
    .cookie-btns { display: flex; gap: .8rem; justify-content: flex-end; }
    .cookie-btn-reject {
      background: transparent; border: 1.5px solid var(--sand);
      color: var(--muted); padding: .55rem 1.4rem; border-radius: 2px;
      font-size: .82rem; font-weight: 600; cursor: pointer; transition: border-color .2s;
    }
    .cookie-btn-reject:hover { border-color: var(--muted); }
    .cookie-btn-accept {
      background: var(--terra); border: none; color: #fff;
      padding: .55rem 1.4rem; border-radius: 2px;
      font-size: .82rem; font-weight: 700; cursor: pointer; transition: background .2s;
    }
    .cookie-btn-accept:hover { background: var(--terra-dk); }

    /* ── NOVITÀ ── */
    .novita-section { background: var(--brown); }
    .novita-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.8rem; max-width: 1200px; margin: 0 auto;
    }
    .novita-card {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px; overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }
    .novita-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
    .novita-card-img {
      position: relative; aspect-ratio: 4/3; overflow: hidden;
    }
    .novita-card-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85); transition: transform .4s, filter .4s; }
    .novita-card:hover .novita-card-img img { transform: scale(1.06); filter: brightness(1); }
    .novita-tag {
      position: absolute; top: .8rem; left: .8rem;
      background: var(--terra); color: #fff;
      font-size: .65rem; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; padding: .25rem .65rem; border-radius: 20px;
    }
    .novita-card-body { padding: 1.2rem 1.4rem 1.5rem; }
    .novita-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: #fff; margin-bottom: .4rem;
    }
    .novita-card-desc { font-size: .8rem; color: var(--sand); opacity: .75; line-height: 1.6; font-weight: 300; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-img { order: -1; }
      .about-img img { height: 320px; }
      .contact-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item.tall { grid-row: span 1; }
      .gallery-item.wide { grid-column: span 1; }
    }
    @media (max-width: 640px) {
      nav { padding: 0 1.2rem; }
      .nav-links, .nav-menu-btn, .nav-lang { display: none; }
      .hamburger { display: flex; }
      .hero-logo { width: min(280px, 65vw); }
      .strip-item { padding: 1rem 1.5rem; font-size: .78rem; }
      .gallery-grid { grid-template-columns: 1fr; }
      .novita-grid { grid-template-columns: 1fr; }
    }

    /* Mobile nav drawer */
    .mobile-nav {
      position: fixed; inset: 0;
      background: var(--brown); z-index: 999;
      display: flex;
      flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
      /* hidden by default */
      opacity: 0;
      pointer-events: none;
      transform: translateX(100%);
      transition: opacity .3s ease, transform .3s ease;
    }
    .mobile-nav.open {
      opacity: 1;
      pointer-events: all;
      transform: translateX(0);
    }
    .mobile-nav a {
      color: var(--sand); text-decoration: none; font-size: 1.3rem;
      font-family: 'Playfair Display', serif; opacity: .85;
      transition: opacity .2s;
    }
    .mobile-nav a:hover { opacity: 1; }
    .mobile-nav-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: none; border: none; color: var(--sand);
      font-size: 1.5rem; cursor: pointer; padding: .5rem;
      line-height: 1;
    }