  :root {
	--logold: #e8a410;
    --gold: #b8976a;
    --gold-light: #d4b483;
    --gold-pale: #f0e4cc;
    --navy: #0d1b2a;
    --navy-mid: #162435;
    --navy-light: #1e3448;
    --white: #faf8f4;
    --offwhite: #f2ede4;
    --text: #2a2a2a;
    --text-light: #6b6b6b;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    background: rgba(13, 27, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,151,106,0.2);
    transition: padding 0.4s;
  }
  nav.scrolled { padding: 14px 60px; }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--logold);
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
  }
  .nav-logo span { color: var(--white); font-weight: 300; }

  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--logold);
    transition: width 0.35s ease;
  }
  .nav-links a:hover { color: var(--logold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--logold); }
  .nav-links a.active::after { width: 100%; }

  /* ── PAGES ── */
  .page { display: none; padding-top: 80px; min-height: 100vh; }
  .page.active { display: block; }

  /* ── HERO SLIDER ── */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .slider { position: relative; width: 100%; height: 100%; }

  .slide {
    position: absolute; inset: 0;
    opacity: 0;pointer-events: none;
    transition: opacity 1.2s ease;
  }
  .slide.active { opacity: 1;pointer-events: auto; }

  .slide-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
  }

  /* SVG placeholder backgrounds for slides */
  .slide-placeholder {
    width: 100%; height: 100%;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .slide-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    opacity: 0.35;
  }
  .slide-1 .slide-placeholder {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 40%, #0d2035 70%, #091520 100%);
  }
  .slide-1 .slide-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cdefs%3E%3CradialGradient id='g1' cx='50%25' cy='60%25'%3E%3Cstop offset='0%25' stop-color='%23b8976a' stop-opacity='0.15'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23g1)' width='800' height='600'/%3E%3Cellipse cx='400' cy='480' rx='350' ry='80' fill='none' stroke='%23b8976a' stroke-width='0.5' opacity='0.3'/%3E%3Cellipse cx='400' cy='490' rx='300' ry='60' fill='none' stroke='%23b8976a' stroke-width='0.3' opacity='0.2'/%3E%3Cpath d='M50 400 Q200 320 400 340 Q600 360 750 300' fill='none' stroke='%23b8976a' stroke-width='1' opacity='0.2'/%3E%3Cpath d='M0 450 Q200 380 400 400 Q600 420 800 360' fill='none' stroke='%23d4b483' stroke-width='0.8' opacity='0.15'/%3E%3C/svg%3E") center/cover no-repeat;
  }
  .slide-2 .slide-placeholder {
    background: linear-gradient(160deg, #071018 0%, #0e2233 50%, #162840 80%, #0a1825 100%);
  }
  .slide-2 .slide-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3ClinearGradient id='g2' x1='0' y1='1' x2='1' y2='0'%3E%3Cstop offset='0%25' stop-color='%23b8976a' stop-opacity='0.12'/%3E%3Cstop offset='100%25' stop-color='%23d4b483' stop-opacity='0.05'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g2)' width='800' height='600'/%3E%3Ccircle cx='600' cy='150' r='200' fill='none' stroke='%23b8976a' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='600' cy='150' r='150' fill='none' stroke='%23b8976a' stroke-width='0.3' opacity='0.15'/%3E%3Cline x1='0' y1='550' x2='800' y2='380' stroke='%23d4b483' stroke-width='0.5' opacity='0.2'/%3E%3C/svg%3E") center/cover no-repeat;
  }
  .slide-3 .slide-placeholder {
    background: linear-gradient(110deg, #0c1a28 0%, #152540 45%, #0a1e32 75%, #060e18 100%);
  }
  .slide-3 .slide-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cdefs%3E%3CradialGradient id='g3' cx='30%25' cy='70%25'%3E%3Cstop offset='0%25' stop-color='%23d4b483' stop-opacity='0.18'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23g3)' width='800' height='600'/%3E%3Cpolygon points='400,50 450,200 600,200 480,290 530,440 400,360 270,440 320,290 200,200 350,200' fill='none' stroke='%23b8976a' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E") center/cover no-repeat;
  }

  /* Overlay icon per ogni slide */
  .slide-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
  }
  .slide-icon svg { opacity: 0.06; }

  .slide-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: var(--white);
  }

  .slide-tag {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s 0.3s, transform 1s 0.3s;
  }
  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s 0.5s, transform 1s 0.5s;
  }
  .slide-sub {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 1s 0.7s;
  }
  .slide-cta {
    display: inline-block;
    border: 1px solid var(--logold);
    color: var(--logold);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 14px 38px;
    transition: background 0.35s, color 0.35s;
    opacity: 0;
    transition: opacity 1s 0.9s, background 0.35s, color 0.35s;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--logold);
  }
  .slide-cta:hover { background: var(--logold); color: var(--navy); }

  .slide.active .slide-tag,
  .slide.active .slide-title,
  .slide.active .slide-sub,
  .slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* Slider controls */
  .slider-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
  }
  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active { background: var(--logold); transform: scale(1.4); }

  .slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(13,27,42,0.4);
    border: 1px solid rgba(184,151,106,0.3);
    color: var(--logold);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.2rem;
    transition: background 0.3s;
  }
  .slider-arrow:hover { background: rgba(184,151,106,0.2); }
  .slider-arrow.prev { left: 30px; }
  .slider-arrow.next { right: 30px; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: bounce 2s infinite;
  }
  .scroll-hint::after {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(184,151,106,0.6), transparent);
    animation: extend 2s infinite;
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

  /* ── SECTION COMMONS ── */
  .section-header {
    text-align: center;
    padding: 80px 20px 60px;
  }
  .section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 20px;
  }
  .section-rule {
    width: 60px; height: 1px;
    background: var(--logold);
    margin: 0 auto 24px;
  }
  .section-lead {
    font-size: 0.88rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
  }

  /* ── HOME: FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gold-pale);
    margin: 0 60px 100px;
  }
  .feature-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    transition: background 0.4s;
  }
  .feature-card:hover { background: var(--navy); }
  .feature-card:hover .feature-icon svg { stroke: var(--logold); }
  .feature-card:hover .feature-title { color: var(--white); }
  .feature-card:hover .feature-text { color: rgba(255,255,255,0.55); }
  .feature-icon { margin-bottom: 28px; }
  .feature-icon svg { stroke: var(--logold); width: 40px; height: 40px; fill: none; stroke-width: 1.2; transition: stroke 0.4s; }
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
    transition: color 0.4s;
  }
  .feature-text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
    transition: color 0.4s;
  }

  /* ── HOME: NUMBERS ── */
  .numbers-band {
    background: var(--navy);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .numbers-band::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Ccircle cx='200' cy='100' r='180' fill='none' stroke='%23b8976a' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E") center/cover;
    opacity: 0.5;
  }
  .number-item { position: relative; }
  .number-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--logold);
    line-height: 1;
    margin-bottom: 10px;
  }
  .number-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* ── HOME: QUOTE ── */
  .quote-band {
    padding: 100px 60px;
    text-align: center;
    background: var(--offwhite);
    position: relative;
  }
  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--logold);
    line-height: 0;
    position: absolute;
    top: 70px; left: 50%; transform: translateX(-50%);
    user-select: none;
  }
  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.55;
    position: relative;
  }
  .quote-author {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--logold);
  }

  /* ── CHI SIAMO ── */
  .about-hero {
    height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .about-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #162840 50%, #0d2035 100%);
  }
  .about-hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400'%3E%3Cpath d='M0 200 Q150 100 300 180 Q450 260 600 150' fill='none' stroke='%23b8976a' stroke-width='0.8' opacity='0.2'/%3E%3Cpath d='M0 250 Q150 150 300 230 Q450 310 600 200' fill='none' stroke='%23d4b483' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E") center/cover;
  }
  .about-hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    padding: 0 20px;
  }
  .about-hero-content .section-eyebrow { color: var(--logold); }
  .about-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.03em;
  }

  .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 30px;
    line-height: 1.25;
  }
  .about-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 22px;
  }
  .about-text .gold-rule {
    width: 50px; height: 1px;
    background: var(--logold);
    margin-bottom: 30px;
  }
  .about-img-wrap {
    position: relative;
  }
  .about-img-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(145deg, #0d1b2a 0%, #1e3448 60%, #0d2035 100%);
    position: relative;
    overflow: hidden;
  }
  .about-img-placeholder::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='600'%3E%3Cdefs%3E%3CradialGradient id='rg' cx='40%25' cy='55%25'%3E%3Cstop offset='0%25' stop-color='%23b8976a' stop-opacity='0.25'/%3E%3Cstop offset='100%25' stop-color='transparent'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23rg)' width='500' height='600'/%3E%3Cpath d='M50 500 Q150 350 250 400 Q350 450 450 300 L500 280 L500 600 L0 600Z' fill='%23b8976a' opacity='0.06'/%3E%3Ccircle cx='250' cy='280' r='120' fill='none' stroke='%23b8976a' stroke-width='0.8' opacity='0.3'/%3E%3Ccircle cx='250' cy='280' r='90' fill='none' stroke='%23d4b483' stroke-width='0.4' opacity='0.2'/%3E%3Ctext x='250' y='290' text-anchor='middle' font-family='serif' font-size='80' fill='%23b8976a' opacity='0.12'%3E⚓%3C/text%3E%3C/svg%3E") center/cover;
  }
  .about-img-placeholder::after {
    content: 'YACHT · LUSSO · ESCLUSIVITÀ';
    position: absolute; bottom: 30px; left: 0; right: 0;
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--logold);
  }
  .about-img-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 1px solid var(--logold);
    opacity: 0.3;
  }
  .about-img-accent2 {
    position: absolute;
    top: -20px; left: -20px;
    width: 80px; height: 80px;
    border: 1px solid var(--logold);
    opacity: 0.2;
  }

  .about-values {
    background: var(--offwhite);
    padding: 80px 80px 100px;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .value-item {
    padding: 40px 30px;
    border-top: 1px solid var(--logold);
  }
  .value-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--logold);
    line-height: 1;
    margin-bottom: 16px;
  }
  .value-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
  }
  .value-text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 300;
  }

  /* ── SERVIZI ── */
  .servizi-intro {
    padding: 100px 80px 60px;
    text-align: center;
  }
  .servizi-grid {
    padding: 20px 60px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gold-pale);
  }
  .servizio-card {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transition: background 0.3s;
  }
  .servizio-card:nth-child(even) { direction: rtl; }
  .servizio-card:nth-child(even) > * { direction: ltr; }
  .servizio-img {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
  }
  .servizio-img-bg {
    width: 100%; height: 100%;
    transition: transform 0.6s ease;
  }
  .servizio-card:hover .servizio-img-bg { transform: scale(1.06); }

  /* Service image placeholders */
  .srv-1 { background: linear-gradient(135deg, #0a1628 0%, #1a3050 100%); }
  .srv-2 { background: linear-gradient(135deg, #0e1e30 0%, #1b3448 100%); }
  .srv-3 { background: linear-gradient(135deg, #0d2030 0%, #162840 100%); }
  .srv-4 { background: linear-gradient(135deg, #0a1520 0%, #142035 100%); }
  .srv-5 { background: linear-gradient(135deg, #0c1825 0%, #182d40 100%); }
  .srv-6 { background: linear-gradient(135deg, #081015 0%, #132030 100%); }

  .srv-inner-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
  }
  .srv-inner-icon svg { opacity: 0.2; stroke: var(--logold); fill: none; stroke-width: 1; width: 60px; height: 60px; }
  .srv-inner-icon span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(184,151,106,0.4);
    text-transform: uppercase;
  }

  .servizio-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .servizio-tag {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 16px;
  }
  .servizio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.2;
  }
  .servizio-text {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
  }
  .servizio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--logold);
    text-decoration: none;
    cursor: pointer;
  }
  .servizio-link::after {
    content: '→';
    transition: transform 0.3s;
  }
  .servizio-link:hover::after { transform: translateX(6px); }

  /* ── CONTATTI ── */
  .contatti-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: calc(100vh - 80px);
  }
  .contatti-left {
    background: var(--navy);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .contatti-left::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='700'%3E%3Ccircle cx='400' cy='600' r='300' fill='none' stroke='%23b8976a' stroke-width='0.4' opacity='0.15'/%3E%3Ccircle cx='400' cy='600' r='200' fill='none' stroke='%23b8976a' stroke-width='0.3' opacity='0.1'/%3E%3C/svg%3E") bottom right/cover no-repeat;
  }
  .contatti-left .section-eyebrow { color: var(--logold); margin-bottom: 20px; }
  .contatti-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
    position: relative;
  }
  .contatti-rule {
    width: 50px; height: 1px;
    background: var(--logold);
    margin-bottom: 40px;
    position: relative;
  }
  .contatti-lead {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 380px;
    position: relative;
  }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    position: relative;
  }
  .contact-item-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(184,151,106,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-item-icon svg { width: 16px; height: 16px; stroke: var(--logold); fill: none; stroke-width: 1.5; }
  .contact-item-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 4px;
  }
  .contact-item-val {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.5;
  }

  .contatti-right { position: relative; }
  .map-container {
    width: 100%; height: 100%;
    min-height: 600px;
    background: var(--offwhite);
    position: relative;
  }
  .map-container iframe {
    width: 100%; height: 100%;
    border: none;
    min-height: 600px;
  }
  .map-overlay-label {
    position: absolute;
    bottom: 30px; left: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 22px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    border-left: 3px solid var(--logold);
    pointer-events: none;
  }
  .map-overlay-label strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--logold);
    margin-bottom: 2px;
  }

  /* ── FOOTER ── */
  footer {
    background: #07101a;
    color: rgba(255,255,255,0.45);
    padding: 80px 80px 40px;
    border-top: 1px solid rgba(184,151,106,0.15);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(184,151,106,0.1);
  }
  .footer-brand {}
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--logold);
    margin-bottom: 6px;
    cursor: pointer;
  }
  .footer-logo span { color: rgba(255,255,255,0.7); font-weight: 300; }
  .footer-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 24px;
  }
  .footer-brand-text {
    font-size: 0.8rem;
    line-height: 1.85;
    font-weight: 300;
    max-width: 280px;
  }
  .footer-col-title {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--logold);
    margin-bottom: 24px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 300;
    transition: color 0.3s;
    cursor: pointer;
  }
  .footer-links a:hover { color: var(--logold); }
  .footer-contact-item {
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.6;
  }
  .footer-contact-item strong {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--logold);
    font-weight: 400;
    margin-bottom: 3px;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 300;
  }
  .footer-legal { display: flex; gap: 30px; }
  .footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover { color: var(--logold); }
  .footer-gold-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--logold), transparent);
    margin-bottom: 60px;
    opacity: 0.4;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 0.65rem; }
    .features-grid { grid-template-columns: 1fr; margin: 0 24px 60px; }
    .numbers-band { grid-template-columns: repeat(2,1fr); padding: 60px 30px; }
    .about-split { grid-template-columns: 1fr; padding: 60px 30px; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .servizi-grid { grid-template-columns: 1fr; padding: 20px 24px 60px; }
    .servizio-card { grid-template-columns: 1fr; }
    .servizio-card:nth-child(even) { direction: ltr; }
    .contatti-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
