:root {
    --bg: #0b0b0b;
    --bg-2: #121212;
    --txt: #e9e9e9;
    --muted: #9a9a9a;
    --gold: #c5a46d;
    --gold-2: #a88a56;
    --card: #161616;
    --border: #242424;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  }
  
  /* RESET & BASE */
  * {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.5;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: var(--txt);
    text-decoration: none;
  }
  
  .container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-family: "Playfair Display", serif;
    letter-spacing: .2px;
  }
  
  h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin: 0;
  }
  
  .section-head {
    text-align: center;
    margin-bottom: 36px;
  }
  
  .section-head p {
    color: var(--muted);
    margin-top: 10px;
  }
  

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    backdrop-filter: saturate(120%) blur(6px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
  }
  
  h3, h2{
      color: var(--gold);
  }
  .desc{
    text-align: center;
  }
  .active{
    color: var(--gold);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .brand-logo {
    height: 54px;
    width: auto;
  }
  
  .brand-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    letter-spacing: .6px;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  
  .nav a {
    opacity: .9;
  }
  .nav a:hover{
      opacity: 1;
      color: var(--gold);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: .25s;
    cursor: pointer;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .btn-primary {
    background: var(--gold);
    color: #111;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background: var(--gold-2);
  }
  

  
  .btn-outline:hover {
    background: var(--gold);
    color: #111;
  }
  
  .btn-ghost {
    border-color: #333;
    color: var(--txt);
    background: transparent;
  }
  
  .burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
  }
  
  .burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
  }
  
  /* HERO */
  .hero {
    position: relative;
    height: 100dvh;
    display: grid;
    place-items: center;
    text-align: center;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
  }
  
  .hero-content {
    position: relative;
  }
  
  .eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .hero-title {
    font-size: clamp(36px, 6vw, 64px);
    margin: 10px 0 6px;
    color: #fff;
  }
  
  .hero-sub {
    color: var(--muted);
    margin-bottom: 22px;
  }
  
  .hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
  }
  
  /* STRIP */
  .strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px 0;
    text-align: center;
    font-weight: 600;
  }
  
  .strip-item {
    color: var(--muted);
  }
  
  /* CATALOGO */
  .catalogo {
    padding: 80px 0;
    background: var(--bg);
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  
  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s;
  }
  
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card-media {
    position: relative;
    aspect-ratio: 4/3;
    background: #000;
  }
  
  .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
    transition: .35s;
  }
  
  .card:hover .card-media img {
    opacity: 1;
  }
  
  .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(197, 164, 109, .95);
    color: #111;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .55));
    opacity: 0;
    transition: .25s;
  }
  
  .card:hover .overlay {
    opacity: 1;
  }
  
  .card-body {
    padding: 18px;
  }
  
  .card h3 {
    margin: 0 0 8px;
    font-size: 20px;
  }
  
  .card p {
    color: var(--muted);
    margin: 0;
  }
  
  /* PLUS */
  .plus {
    padding: 60px 0;
    background: var(--bg-2);
  }
  
  .plus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .plus-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
  }
  
  .plus-item h4 {
    margin: 0 0 8px;
  }
  
  /* BRANDS */
  .brands {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #000;
  }
  
  .brands-row {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: center;
    opacity: .8;
  }
  
  .brands-row img {
    height: 102px;
    filter: grayscale(100%);
  }
  
  /* CONTATTI */
  .contatti {
    padding: 80px 0;
  }
  
  .contact-wrap {
    max-width: 840px;
    margin: 0 auto;
  }
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  input,
  textarea {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--txt);
    font-size: 16px;
    outline: none;
  }
  
  input:focus,
  textarea:focus {
    border-color: var(--gold);
  }
  
  .check {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
    align-items: flex-start;
  }
  
  .small {
    font-size: 14px;
  }
  
  .muted {
    color: var(--muted);
  }
  
  /* FOOTER */
  .site-footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    background: #0b0b0b;
  }
  
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-left, .footer-right{
    font-size: 12px;
  }
  .footer-left a:hover, .footer-right a:hover{
    opacity: 0.7;
  }
  
  /* MODAL */
  .modal {
    position: fixed;
    inset: 0;
    display: none;
  }
  
  .modal[aria-hidden="false"] {
    display: block;
  }
  
  .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
  }
  
  .modal-dialog {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 10vh auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }
  
  .modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: 0;
    color: var(--txt);
    font-size: 28px;
    cursor: pointer;
  }
  
  .model-line {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 18px;
    margin: -4px 0 16px;
  }

  /* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: #121212;
    border-top: 1px solid var(--border);
    display: none;
  }
  .cookie-banner[aria-hidden="false"] {
    display: block;
  }
  .cookie-banner__inner {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
  }
  .cookie-banner__text p {
    margin: 6px 0 0 0;
    color: var(--muted);
  }
  .cookie-links .cookie-link {
    color: var(--gold);
    text-decoration: underline;
  }
  .cookie-banner__actions {
    display: flex;
    gap: 10px;
  }
  
  /* SWITCH (toggle) */
  .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
  }
  .switch input {
    display: none;
  }
  .switch span {
    position: absolute;
    cursor: pointer;
    background: #2a2a2a;
    border: 1px solid var(--border);
    border-radius: 999px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .25s;
  }
  .switch span:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 2px;
    background: #888;
    border-radius: 50%;
    transition: .25s;
  }
  .switch input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
  }
  .switch input:checked + span:before {
    transform: translateX(20px);
    background: #111;
  }
  
  /* Cookie settings rows */
  .cookie-group {
    margin: 16px 0 6px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
  }
  
  
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .strip-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* ===== Off-canvas mobile nav ===== */
body.nav-open {
  overflow: hidden;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 60;
}

body.nav-open .mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 720px) {
  .burger {
    display: block;
  }
  .nav {
    /* da inline → drawer */
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(82vw, 320px);
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 40px rgba(0,0,0,.45);
    display: flex; 
    flex-direction: column;
    padding: 90px 18px 20px;
    gap: 14px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 90;
    align-items: baseline;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .nav a {
    display: block;
    padding: 12px 10px;
    font-size: 16px;
    opacity: 1;
  }

  .nav a.btn,
  .btn.btn-outline {
    width: 100%;
    text-align: center;
  }

  /* icona burger → X */
  .burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .burger span {
    transition: .25s;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .plus-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
    color: #fff;
  }
  .footer-inner{
    display: block;
  }
  .section-head, .desc{
    margin: 0 20px;
  }
  .plus-item{
    text-align: center;
  }
}

