
    :root {
      --cream: #f5f0e8;
      --dark: #1a1714;
      --gold: #b8924a;
      --gold-light: #d4a96a;
      --gray: #6b6560;
      --border: rgba(184,146,74,0.3);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'EB Garamond', serif;
      background: var(--dark);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 4vw;
      height: 72px;
      background: rgba(26,23,20,0.95);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }
    .nav-logo img { height: 42px; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      letter-spacing: .12em;
      color: var(--cream);
      text-decoration: none;
      opacity: .75;
      transition: opacity .2s, color .2s;
    }
    .nav-links a:hover { opacity: 1; color: var(--gold-light); }
    .nav-cta {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      letter-spacing: .12em;
      padding: .55rem 1.4rem;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      text-decoration: none;
      transition: background .25s, color .25s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--dark); }

    /* ── HERO ── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 100px 6vw 60px;
      overflow: hidden;
    }
    .hero-video-wrap {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero-video-wrap iframe {
      width: 100%; height: 100%;
      pointer-events: none;
    }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(26,23,20,.72) 0%,
        rgba(26,23,20,.55) 50%,
        rgba(26,23,20,.92) 100%
      );
    }
    .hero-content { position: relative; z-index: 2; max-width: 820px; }
    .hero-label {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .25em;
      color: var(--gold-light);
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp .8s .2s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: .02em;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp .9s .4s forwards;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-divider {
      width: 60px; height: 1px;
      background: var(--gold);
      margin: 2rem auto;
      opacity: 0;
      animation: fadeUp .6s .6s forwards;
    }
    .hero-subtitle {
      font-family: 'EB Garamond', serif;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      font-weight: 400;
      line-height: 1.7;
      color: rgba(245,240,232,.78);
      opacity: 0;
      animation: fadeUp .8s .75s forwards;
    }

    /* ── GRATUITÀ BANNER ── */
    .gratuita-banner {
      position: relative; z-index: 2;
      margin-top: 3.5rem;
      display: inline-block;
      opacity: 0;
      animation: fadeUp .8s 1s forwards;
    }
    .gratuita-inner {
      border: 1px solid var(--gold);
      padding: 1.8rem 3rem;
      background: rgba(184,146,74,.08);
      backdrop-filter: blur(6px);
      max-width: 680px;
    }
    .gratuita-tag {
      font-family: 'Cinzel', serif;
      font-size: .65rem;
      letter-spacing: .25em;
      color: var(--gold);
      margin-bottom: .8rem;
    }
    .gratuita-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      font-weight: 600;
      line-height: 1.3;
      color: var(--cream);
    }
    .gratuita-text span { color: var(--gold-light); font-style: italic; }
    .gratuita-note {
      font-family: 'EB Garamond', serif;
      font-size: .95rem;
      color: rgba(245,240,232,.65);
      margin-top: .6rem;
      font-style: italic;
    }

    /* ── SEZIONI COMUNI ── */
    section { padding: 100px 8vw; }
    .section-label {
      font-family: 'Cinzel', serif;
      font-size: .68rem;
      letter-spacing: .28em;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }
    .gold-line { width: 48px; height: 1px; background: var(--gold); margin-bottom: 2.5rem; }
    .section-body {
      font-size: 1.1rem;
      line-height: 1.85;
      color: rgba(245,240,232,.75);
      max-width: 640px;
    }

    /* ── CHI SIAMO ── */
    #chi-siamo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: center;
      background: #141210;
    }
    .chi-siamo-img {
      position: relative;
    }
    .chi-siamo-img::before {
      content: '';
      position: absolute;
      inset: -12px -12px 12px 12px;
      border: 1px solid var(--border);
      z-index: 0;
    }
    .chi-siamo-img img {
      width: 100%; display: block;
      position: relative; z-index: 1;
      filter: sepia(.15) brightness(.85);
    }
    .chi-siamo-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #2a2520 0%, #1a1714 100%);
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }
    .chi-siamo-placeholder svg { opacity: .3; }

    /* ── GALLERY MEZZI ── */
    #mezzi {
      background: #0e0c0a;
      padding: 80px 8vw;
    }
    .mezzi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 3rem;
    }
    .mezzo-card {
      position: relative;
      overflow: hidden;
    }
    .mezzo-card::before {
      content: '';
      position: absolute;
      inset: 10px -10px -10px 10px;
      border: 1px solid var(--border);
      z-index: 0;
      transition: inset .35s;
    }
    .mezzo-card:hover::before { inset: 6px -6px -6px 6px; }
    .mezzo-card img {
      width: 100%; display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: sepia(.1) brightness(.88);
      transition: filter .4s, transform .5s;
      position: relative; z-index: 1;
    }
    .mezzo-card:hover img { filter: sepia(0) brightness(.95); transform: scale(1.02); }
    .mezzo-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 1.4rem 1.6rem .9rem;
      background: linear-gradient(to top, rgba(14,12,10,.9) 0%, transparent 100%);
    }
    .mezzo-label span {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      letter-spacing: .18em;
      color: var(--gold-light);
    }
    @media (max-width: 700px) {
      .mezzi-grid { grid-template-columns: 1fr; }
    }

    /* ── SERVIZI NUOVI ── */
    #servizi { background: var(--dark); padding-bottom: 80px; }

    .serv-category {
      margin-top: 3.5rem;
      border: 1px solid var(--border);
      background: #141210;
    }
    .serv-category.serv-highlight {
      border-color: var(--gold);
      background: rgba(184,146,74,.04);
    }
    .serv-cat-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 2rem;
      border-bottom: 1px solid var(--border);
      background: rgba(184,146,74,.05);
    }
    .serv-cat-header svg {
      width: 28px; height: 28px; flex-shrink: 0;
    }
    .serv-cat-header span {
      font-family: 'Cinzel', serif;
      font-size: .82rem;
      letter-spacing: .18em;
      color: var(--gold-light);
      display: flex; align-items: center; gap: .8rem;
    }
    .serv-free-badge {
      font-style: normal;
      font-size: .68rem;
      background: var(--gold);
      color: var(--dark);
      padding: .2rem .7rem;
      letter-spacing: .12em;
      border-radius: 0;
    }
    .serv-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 0;
    }
    .serv-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding: 1.6rem 2rem;
      border-bottom: 1px solid rgba(184,146,74,.12);
      border-right: 1px solid rgba(184,146,74,.12);
      transition: background .25s;
    }
    .serv-item:hover { background: rgba(184,146,74,.04); }
    .serv-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: .55rem;
    }
    .serv-item-title {
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      letter-spacing: .06em;
      color: var(--cream);
      margin-bottom: .4rem;
    }
    .serv-item-desc {
      font-size: .95rem;
      line-height: 1.65;
      color: rgba(245,240,232,.55);
    }
    .serv-highlight-note {
      text-align: center;
      padding: 1rem 2rem;
      font-family: 'Cinzel', serif;
      font-size: .7rem;
      letter-spacing: .2em;
      color: var(--gold);
      border-top: 1px solid var(--border);
    }

    /* ── SERVIZI OLD (remove old grid) ── */
    .servizi-grid { display: none; }
    .servizio-card, .servizio-icon, .servizio-title, .servizio-desc { display: none; }

    /* ── CASA DEL COMMIATO BLOCKS ── */
    #casa-del-commiato { padding: 100px 0 0; background: var(--dark); }
    #casa-del-commiato > .reveal:first-child { padding: 0 8vw 4rem; }

    .cdc-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
    }
    .cdc-block--dark { background: #141210; }
    .cdc-block--cream { background: #0e0c0a; }

    .cdc-block-text {
      padding: 5rem 6vw;
    }
    .cdc-block-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 1.2rem;
    }
    .cdc-block-title em { font-style: italic; color: var(--gold-light); }

    .cdc-block-gallery { display: grid; height: 100%; overflow: hidden; }
    .cdc-block-gallery--1 { grid-template-columns: 1fr; }
    .cdc-block-gallery--2 { grid-template-columns: 1fr 1fr; }
    .cdc-block-gallery--3 { grid-template-columns: 1fr 1fr 1fr; }

    .cdc-block-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 240px;
      filter: sepia(.08) brightness(.88);
      transition: filter .4s, transform .5s;
      display: block;
    }
    .cdc-block-gallery img:hover { filter: sepia(0) brightness(.96); transform: scale(1.03); }

    /* Strip of 3 equal images */
    .cdc-strip {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
    }
    .cdc-strip img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: sepia(.1) brightness(.85);
      transition: filter .4s;
    }
    .cdc-strip img:hover { filter: sepia(0) brightness(.95); }

    /* Feature list */
    .cdc-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .cdc-feat {
      display: flex;
      align-items: center;
      gap: .7rem;
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .08em;
      color: rgba(245,240,232,.7);
    }
    .cdc-feat svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* Gratuità final banner */
    .cdc-gratuita-final {
      padding: 6rem 8vw;
      background: linear-gradient(135deg, #0e0c0a 0%, #141210 100%);
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .cdc-gratuita-inner {
      max-width: 640px;
      margin: 0 auto;
      border: 1px solid var(--gold);
      padding: 3.5rem;
      background: rgba(184,146,74,.05);
      position: relative;
    }
    .cdc-gratuita-inner::before {
      content: '✦';
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: #0e0c0a;
      padding: 0 14px;
      color: var(--gold);
      font-size: 1rem;
    }
    .cdc-gratuita-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 600;
      line-height: 1.3;
      color: var(--cream);
      margin-bottom: .3rem;
    }
    .cdc-gratuita-title span { color: var(--gold-light); font-style: italic; }
    .cdc-cta {
      display: inline-block;
      margin-top: 2rem;
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      letter-spacing: .14em;
      padding: .9rem 2.2rem;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      text-decoration: none;
      transition: background .25s, color .25s;
    }
    .cdc-cta:hover { background: var(--gold); color: var(--dark); }

    @media (max-width: 900px) {
      .cdc-block { grid-template-columns: 1fr; }
      .cdc-block--cream .cdc-block-gallery { order: -1; }
      .cdc-block-gallery--2,
      .cdc-block-gallery--3 { grid-template-columns: 1fr 1fr; }
      .cdc-block-gallery img { min-height: 180px; }
      .cdc-strip { grid-template-columns: 1fr; }
      .cdc-strip img { aspect-ratio: 16/9; }
      .cdc-features { grid-template-columns: 1fr; }
    }

    /* ── CONTATTI ── */
    #contatti {
      background: #0e0c0a;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: start;
    }

    /* ── CONTATTI EXTRA ── */
    .contact-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.2vw, 1.4rem);
      font-style: italic;
      color: var(--gold-light);
      margin-top: 1.5rem;
      line-height: 1.5;
    }
    .contact-quote-src {
      font-family: 'Cinzel', serif;
      font-size: .68rem;
      letter-spacing: .18em;
      color: rgba(245,240,232,.4);
      margin-top: .4rem;
    }

    /* ── MAP ── */
    .contact-map { margin-top: 2.5rem; }
    .map-buttons {
      display: flex;
      gap: 1rem;
      margin-top: .8rem;
      flex-wrap: wrap;
    }
    .map-btn {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .1em;
      color: var(--gold-light);
      text-decoration: none;
      padding: .55rem 1.2rem;
      border: 1px solid var(--border);
      transition: border-color .2s, color .2s;
    }
    .map-btn svg { width: 16px; height: 16px; }
    .map-btn:hover { border-color: var(--gold); color: var(--gold); }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(14,12,10,.97);
      border-top: 1px solid var(--border);
      padding: 1.2rem 6vw;
      transform: translateY(100%);
      transition: transform .45s cubic-bezier(.4,0,.2,1);
      backdrop-filter: blur(8px);
    }
    .cookie-banner.visible { transform: translateY(0); }
    .cookie-banner-inner {
      display: flex;
      align-items: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }
    .cookie-banner-text {
      flex: 1;
      font-size: .9rem;
      color: rgba(245,240,232,.7);
      line-height: 1.6;
      min-width: 240px;
    }
    .cookie-banner-text a { color: var(--gold-light); }
    .cookie-banner-btns { display: flex; gap: .8rem; flex-shrink: 0; }
    .cookie-btn {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .1em;
      padding: .6rem 1.5rem;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: .2s;
    }
    .cookie-btn--accept {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }
    .cookie-btn--accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
    .cookie-btn--decline {
      background: transparent;
      color: rgba(245,240,232,.6);
    }
    .cookie-btn--decline:hover { color: var(--cream); border-color: rgba(245,240,232,.4); }

    /* ── COOKIE POLICY MODAL ── */
    .cpolicy-overlay {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(8,7,6,.85);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
      padding: 1rem;
    }
    .cpolicy-overlay.open { opacity: 1; pointer-events: all; }
    .cpolicy-modal {
      background: #141210;
      border: 1px solid var(--border);
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      transition: transform .3s;
    }
    .cpolicy-overlay.open .cpolicy-modal { transform: translateY(0); }
    .cpolicy-close {
      position: absolute; top: 1.2rem; right: 1.5rem;
      background: none; border: none;
      color: var(--gold); font-size: 1.1rem;
      cursor: pointer; z-index: 2;
      padding: .3rem .6rem;
      transition: opacity .2s;
    }
    .cpolicy-close:hover { opacity: .6; }
    .cpolicy-body { padding: 3rem 3rem 2.5rem; }
    .cpolicy-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300;
      color: var(--cream); margin-bottom: 1.2rem;
    }
    .cpolicy-title em { font-style: italic; color: var(--gold-light); }
    .cpolicy-h3 {
      font-family: 'Cinzel', serif;
      font-size: .8rem; letter-spacing: .15em;
      color: var(--gold-light);
      margin: 2rem 0 .8rem;
      padding-bottom: .5rem;
      border-bottom: 1px solid var(--border);
    }
    .cpolicy-body p {
      font-size: .97rem; line-height: 1.8;
      color: rgba(245,240,232,.7);
      margin-bottom: .8rem;
    }
    .cpolicy-body strong { color: var(--cream); }
    .cpolicy-body a { color: var(--gold-light); }
    .cpolicy-list {
      list-style: none;
      padding: 0; margin: .5rem 0 1rem;
    }
    .cpolicy-list li {
      padding: .4rem 0;
      border-bottom: 1px solid rgba(184,146,74,.1);
      font-size: .95rem;
      color: rgba(245,240,232,.6);
    }
    .cpolicy-list li a { color: var(--gold-light); text-decoration: none; }
    .cpolicy-list li a:hover { text-decoration: underline; }
    .cpolicy-third { display: flex; flex-direction: column; gap: 1.2rem; margin: .8rem 0; }
    .cpolicy-third-item {
      padding: 1.2rem 1.5rem;
      background: rgba(184,146,74,.04);
      border-left: 2px solid var(--gold);
    }
    .cpolicy-third-item strong {
      font-family: 'Cinzel', serif; font-size: .78rem;
      letter-spacing: .1em; display: block; margin-bottom: .5rem;
    }
    .cpolicy-third-item p { margin-bottom: 0; }
    .cpolicy-footer-note {
      margin-top: 2rem; padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-size: .85rem !important;
      color: rgba(245,240,232,.4) !important;
    }
    .cpolicy-footer-note p { font-size: .85rem; color: rgba(245,240,232,.4); }
    @media (max-width: 600px) {
      .cpolicy-body { padding: 2rem 1.5rem; }
      .cookie-banner-inner { flex-direction: column; gap: 1rem; }
    }

    /* ── PRIVACY RIGHTS ── */
    .privacy-rights { display: flex; flex-direction: column; gap: 1.2rem; margin: 1rem 0; }
    .privacy-right-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding: 1.2rem 1.5rem;
      background: rgba(184,146,74,.03);
      border-left: 2px solid var(--border);
    }
    .privacy-right-num {
      font-family: 'Cinzel', serif;
      font-size: .9rem;
      color: var(--gold);
      font-weight: 600;
      flex-shrink: 0;
      width: 24px;
      text-align: center;
      margin-top: .1rem;
    }
    .privacy-right-item p { margin-bottom: 0; }
    .contact-info-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--border);
    }
    .contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .contact-info-icon {
      width: 36px; height: 36px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: .1rem;
    }
    .contact-info-label {
      font-family: 'Cinzel', serif;
      font-size: .68rem;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: .4rem;
    }
    .contact-info-value {
      font-size: 1rem;
      color: rgba(245,240,232,.8);
      line-height: 1.6;
    }
    .contact-info-value a { color: inherit; text-decoration: none; }
    .contact-info-value a:hover { color: var(--gold-light); }

    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-form input,
    .contact-form textarea {
      background: #141210;
      border: 1px solid var(--border);
      color: var(--cream);
      font-family: 'EB Garamond', serif;
      font-size: 1rem;
      padding: 1rem 1.2rem;
      outline: none;
      transition: border-color .2s;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: var(--gold); }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(245,240,232,.3); }
    .contact-form textarea { min-height: 130px; }
    .btn-submit {
      font-family: 'Cinzel', serif;
      font-size: .8rem;
      letter-spacing: .15em;
      padding: 1rem 2.5rem;
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold-light);
      cursor: pointer;
      transition: background .25s, color .25s;
      align-self: flex-start;
    }
    .btn-submit:hover { background: var(--gold); color: var(--dark); }

    /* ── HOME SLIDESHOW ── */
    .home-slider {
      position: relative;
      width: 100%;
      height: clamp(300px, 55vw, 680px);
      overflow: hidden;
      background: #0e0c0a;
    }
    .slider-track {
      display: flex;
      height: 100%;
      transition: transform .7s cubic-bezier(.77,0,.18,1);
      will-change: transform;
    }
    .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.82) sepia(.08);
      transition: transform 6s ease;
      transform: scale(1.04);
    }
    .slide.active img { transform: scale(1); }
    .slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2.5rem 3rem 2rem;
      background: linear-gradient(to top, rgba(14,12,10,.82) 0%, transparent 100%);
      z-index: 2;
    }
    .slide-caption span {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      letter-spacing: .22em;
      color: var(--gold-light);
      display: block;
      margin-bottom: .4rem;
    }
    .slide-caption p {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-style: italic;
      color: var(--cream);
      margin: 0;
    }

    /* Slider buttons */
    .slider-btn {
      position: absolute; top: 50%; z-index: 3;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      background: rgba(26,23,20,.7);
      border: 1px solid var(--border);
      color: var(--cream);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, border-color .2s;
      backdrop-filter: blur(4px);
    }
    .slider-btn svg { width: 20px; height: 20px; }
    .slider-btn:hover { background: rgba(184,146,74,.25); border-color: var(--gold); }
    .slider-btn--prev { left: 1.5rem; }
    .slider-btn--next { right: 1.5rem; }

    /* Slider dots */
    .slider-dots {
      position: absolute;
      bottom: 1.4rem; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: .6rem;
      z-index: 3;
    }
    .slider-dot {
      width: 28px; height: 2px;
      background: rgba(245,240,232,.35);
      border: none; cursor: pointer;
      padding: 0;
      transition: background .3s, width .3s;
    }
    .slider-dot.active {
      background: var(--gold);
      width: 48px;
    }

    @media (max-width: 600px) {
      .slider-btn { width: 36px; height: 36px; }
      .slide-caption { padding: 1.5rem 1.5rem 1rem; }
    }
    footer {
      background: #080706;
      border-top: 1px solid var(--border);
      padding: 3.5rem 8vw 2rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }
    .footer-brand img { height: 38px; margin-bottom: 1rem; }
    .footer-brand p {
      font-size: .95rem;
      color: rgba(245,240,232,.5);
      line-height: 1.7;
      font-style: italic;
    }
    .footer-col-title {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .2em;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .6rem; }
    .footer-col ul li a {
      font-size: .95rem;
      color: rgba(245,240,232,.55);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-address {
      font-size: .95rem;
      color: rgba(245,240,232,.55);
      line-height: 1.8;
    }
    .footer-address a { color: inherit; text-decoration: none; }
    .footer-address a:hover { color: var(--gold-light); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      font-size: .82rem;
      color: rgba(245,240,232,.3);
    }
    .footer-bottom a { color: inherit; text-decoration: none; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s, transform .7s;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── BURGER MOBILE ── */
    .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .burger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links, .nav-cta { display: none; }
      .burger { display: flex; }
      #chi-siamo, #contatti { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
    }

    /* ── MOBILE NAV DRAWER ── */
    .mobile-nav {
      display: none;
      position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
      background: rgba(14,12,10,.98);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 6vw 2rem;
      flex-direction: column; gap: 1.2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Cinzel', serif;
      font-size: .85rem;
      letter-spacing: .12em;
      color: var(--cream);
      text-decoration: none;
      padding: .5rem 0;
      border-bottom: 1px solid var(--border);
    }

    /* ── VIDEO EMBED ── */
    .video-container {
      position: absolute; inset: 0; overflow: hidden;
    }
    .video-container iframe {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 177.78vh; /* 16:9 aspect ratio */
      height: 100vh;
      min-width: 100%;
      min-height: 56.25vw;
      border: none;
      pointer-events: none;
    }
  

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 8vw 60px;
  background: linear-gradient(135deg, #141210 0%, #0e0c0a 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,146,74,.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero .section-title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero-sub {
  font-size: 1.15rem;
  color: rgba(245,240,232,.65);
  line-height: 1.7;
  font-style: italic;
  font-family: 'EB Garamond', serif;
}
.page-hero-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── VIDEO FALLBACK ── */
#home {
  background-image: url('01slid.jpg');
  background-size: cover;
  background-position: center;
}
.video-container iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  border: none;
  pointer-events: none;
}

/* ── SERVIZI IN HOME ── */
#servizi-home {
  background: #0e0c0a;
  padding: 90px 8vw 80px;
  border-top: 1px solid var(--border);
}
.sh-header { margin-bottom: 4rem; }

.sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sh-card {
  background: #141210;
  padding: 2.8rem 2.2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.sh-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.2rem; right: 2.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sh-card:hover { background: #1a1714; }
.sh-card:hover::after { transform: scaleX(1); }

.sh-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.6rem;
  opacity: .7;
  transition: opacity .3s;
}
.sh-card:hover .sh-icon { opacity: 1; }

.sh-title {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: .9rem;
}

.sh-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,240,232,.6);
}

.sh-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sh-cta-btn {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .15em;
  padding: 1rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  transition: background .25s, color .25s;
}
.sh-cta-btn:hover { background: var(--gold); color: var(--dark); }
.sh-cta-secondary {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(245,240,232,.5);
  text-decoration: none;
  transition: color .2s;
}
.sh-cta-secondary:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .sh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sh-grid { grid-template-columns: 1fr; }
}

/* ── CDC CATEGORY LAYOUT (ordinato) ── */
.cdc-category {
  padding: 70px 8vw;
  background: #141210;
  border-top: 1px solid var(--border);
}
.cdc-category--alt { background: #0e0c0a; }

.cdc-cat-label {
  margin-bottom: 2.5rem;
  max-width: 640px;
}
.cdc-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  margin: .6rem 0 1rem;
  line-height: 1.2;
}
.cdc-cat-title em { font-style: italic; color: var(--gold-light); }
.cdc-cat-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,240,232,.65);
}

/* Griglie foto */
.cdc-photo-grid {
  display: grid;
  gap: 4px;
}
.cdc-photo-grid--3   { grid-template-columns: 1fr 1fr 1fr; }
.cdc-photo-grid--2   { grid-template-columns: 1fr 1fr; }
.cdc-photo-grid--1   { grid-template-columns: 1fr; }
.cdc-photo-grid--2-1 { grid-template-columns: 2fr 1fr; }
.cdc-photo-grid--1-2 { grid-template-columns: 1fr 2fr; }

.cdc-photo-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cdc-photo-col .cdc-photo { flex: 1; }

.cdc-photo {
  position: relative;
  overflow: hidden;
  background: #0a0908;
}
.cdc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  filter: brightness(.88) sepia(.06);
  transition: filter .4s, transform .5s;
}
.cdc-photo:hover img {
  filter: brightness(.96) sepia(0);
  transform: scale(1.03);
}
.cdc-photo--tall img  { min-height: 420px; }
.cdc-photo--wide img  { min-height: 340px; max-height: 420px; object-position: center 35%; }

/* Caption sulla foto */
.cdc-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .8rem 1.2rem .6rem;
  background: linear-gradient(to top, rgba(14,12,10,.85) 0%, transparent 100%);
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--gold-light);
}

/* Responsive */
@media (max-width: 900px) {
  .cdc-photo-grid--3   { grid-template-columns: 1fr 1fr; }
  .cdc-photo-grid--2-1,
  .cdc-photo-grid--1-2 { grid-template-columns: 1fr; }
  .cdc-photo-col { flex-direction: row; }
  .cdc-photo--tall img { min-height: 260px; }
}
@media (max-width: 580px) {
  .cdc-photo-grid--3,
  .cdc-photo-grid--2  { grid-template-columns: 1fr; }
  .cdc-photo-col { flex-direction: column; }
  .cdc-category { padding: 50px 5vw; }
}

/* ── CONTATTI NUOVO LAYOUT ── */

/* Card recapiti in fila */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #0e0c0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ct-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .25s;
}
.ct-card:last-child { border-right: none; }
.ct-card:hover { background: rgba(184,146,74,.05); }
.ct-card svg { width: 32px; height: 32px; flex-shrink: 0; margin-top: .2rem; }
.ct-card-label {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.ct-card-value {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
}
.ct-card-sub {
  display: block;
  font-size: .9rem;
  color: rgba(245,240,232,.5);
  margin-top: .2rem;
  line-height: 1.5;
}

/* Mappa grande */
.ct-map-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  background: #0a0908;
}
.ct-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(.35) brightness(.9);
}
.ct-map-btns {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}
.ct-map-btns .map-btn {
  background: rgba(14,12,10,.92);
  backdrop-filter: blur(6px);
  padding: .7rem 1.4rem;
}

/* Form */
.ct-form-wrap {
  background: #141210;
  border-top: 1px solid var(--border);
  padding: 70px 8vw;
}
.ct-form-inner { max-width: 680px; margin: 0 auto; }
.ct-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.ct-form-title em { font-style: italic; color: var(--gold-light); }
.ct-form-inner .contact-form textarea { min-height: 110px; }

/* Nascondi vecchio stile contatti su questa pagina */
#contatti { display: none; }

@media (max-width: 900px) {
  .ct-cards { grid-template-columns: 1fr 1fr; }
  .ct-card { border-bottom: 1px solid var(--border); }
  .ct-map-wrap { height: 380px; }
}
@media (max-width: 560px) {
  .ct-cards { grid-template-columns: 1fr; }
  .ct-map-wrap { height: 300px; }
  .ct-map-btns { flex-direction: column; align-items: center; }
  .ct-form-wrap { padding: 50px 5vw; }
}

/* ── FORM FEEDBACK ── */
.form-feedback {
  padding: .9rem 1.2rem;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  line-height: 1.5;
  border-left: 3px solid;
  margin-bottom: .5rem;
}
.form-feedback--ok {
  background: rgba(184,146,74,.08);
  border-color: var(--gold);
  color: var(--gold-light);
}
.form-feedback--error {
  background: rgba(180,60,60,.08);
  border-color: #b43c3c;
  color: #d47070;
}
