/* =========================================================
   MONETTI OROLOGI · CORE STYLESHEET
   Palette Monetti (chiaro/oro) + raffinatezza editoriale.
   Base condivisa fra tutte le pagine.
   ========================================================= */

:root {
    /* Palette Monetti */
    --bg:            #ffffff;
    --bg-soft:       #ffffff;   /* sezioni bianche (richiesta cliente: niente fondi avorio) */
    --bg-ivory:      #efe9dd;
    --dark:          #221f21;   /* nero caldo Monetti */
    --dark-soft:     #2c282a;
    --text-primary:  #221f21;
    --text-secondary:#8f8f8f;
    --text-on-dark:  #f3efe7;
    --text-on-dark-soft: #b6afa4;
    --accent:        #b5a27e;   /* oro Monetti */
    --accent-deep:   #9c8862;
    --accent-soft:   rgba(181, 162, 126, 0.45);
    --border-subtle: rgba(34, 31, 33, 0.12);
    --border-soft:   rgba(34, 31, 33, 0.22);
    --border-on-dark:rgba(243, 239, 231, 0.16);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 1rem;
    --space-sm: 2.5rem;
    --space-md: 5rem;
    --space-lg: 9rem;
    --space-xl: 14rem;

    --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

input, select, textarea, button { font: inherit; }
::selection { background: var(--accent); color: #fff; }

img { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; }

/* ---------- Custom Cursor (solo desktop con pointer fine) ---------- */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .4s var(--ease-out), height .4s var(--ease-out),
                background-color .4s ease, border .4s ease, opacity .3s ease;
    mix-blend-mode: multiply;
}
.custom-cursor.hover {
    width: 46px; height: 46px;
    background: rgba(181, 162, 126, 0.12);
    border: 1px solid var(--accent);
    mix-blend-mode: normal;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display-text {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.005em;
}
h1 em, h2 em, h3 em, .display-text em { font-style: italic; color: var(--accent-deep); }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--accent-deep);
    margin-bottom: 1.2rem;
    display: block;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--accent); }

/* ---------- Reveal Animations ---------- */
.reveal-text {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(34px);
    transition: opacity 1.3s var(--ease-soft),
                filter 1.3s var(--ease-soft),
                transform 1.3s var(--ease-soft);
}
.reveal-text.active { opacity: 1; filter: blur(0); transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .60s; }

.reveal-img { overflow: hidden; position: relative; }
.reveal-img img, .reveal-img .reveal-img-inner {
    transform: scale(1.14);
    opacity: 0;
    transition: opacity 1.5s var(--ease-soft), transform 1.7s var(--ease-soft);
}
.reveal-img.active img, .reveal-img.active .reveal-img-inner {
    transform: scale(1); opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .reveal-text, .reveal-img img, .reveal-img .reveal-img-inner {
        opacity: 1 !important; filter: none !important; transform: none !important;
    }
}

/* ---------- Navigation ---------- */
nav.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.9rem 4rem;
    background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 100%);
    transition: background .5s, padding .5s, box-shadow .5s, border-color .5s;
}
nav.site-nav.scrolled {
    background: rgba(255,255,255,0.96);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Variante su pagine con hero scuro full-bleed: nav trasparente con testo chiaro */
nav.site-nav.nav-over-dark:not(.scrolled) { background: linear-gradient(to bottom, rgba(34,31,33,0.5) 0%, rgba(34,31,33,0) 100%); }
nav.site-nav.nav-over-dark:not(.scrolled) .nav-links a,
nav.site-nav.nav-over-dark:not(.scrolled) .nav-cta { color: var(--text-on-dark); }
nav.site-nav.nav-over-dark:not(.scrolled) .nav-burger span { background: var(--text-on-dark); }
nav.site-nav.nav-over-dark:not(.scrolled) .nav-burger span:nth-child(2){ background: var(--accent); }

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 60px; width: auto; object-fit: contain; transition: height .5s; }
nav.site-nav.scrolled .logo-img { height: 46px; }
nav.site-nav.nav-over-dark:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }

/* Menu orizzontale desktop disattivato: navigazione sempre via burger full-screen */
.nav-links {
    display: none;
    gap: 2.6rem; list-style: none;
    font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 400;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color .3s;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease-out);
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { color: var(--accent-deep); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
    font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
    border: 1px solid var(--border-soft); padding: 0.7rem 1.6rem;
    color: var(--text-primary); transition: all .4s;
    font-weight: 400; text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Gruppo destro nav: segnaposto Rolex + burger ---------- */
.nav-right { display: flex; align-items: center; gap: 1.6rem; }

/* ---------- Segnaposto Rolex ufficiale (Rivenditore Autorizzato) ---------- */
.rolex-plaque { display: flex; align-items: center; text-decoration: none; transition: opacity .4s; }
.rolex-plaque:hover { opacity: .85; }
.rolex-plaque img { height: 50px; width: auto; display: block; transition: height .5s; }
nav.site-nav.scrolled .rolex-plaque img { height: 42px; }
@media (max-width: 600px) {
    .rolex-plaque img { height: 38px; }
    .nav-right { gap: 1.1rem; }
}

/* ---------- Hamburger (sempre visibile: navigazione full-screen) ---------- */
.nav-burger {
    display: block;
    width: 44px; height: 44px;
    position: relative; z-index: 210;
    background: transparent; border: none; padding: 0; cursor: pointer;
}
.nav-burger span {
    position: absolute; left: 8px; right: 8px; height: 1.5px;
    background: var(--text-primary);
    transition: transform .5s var(--ease-out), opacity .3s ease, top .4s var(--ease-out), background-color .3s;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; width: 18px; left: auto; right: 8px; background: var(--accent); }
.nav-burger span:nth-child(3) { top: 28px; }
body.menu-open .nav-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); background: var(--text-on-dark); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: translateX(20px); }
body.menu-open .nav-burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); background: var(--text-on-dark); }

/* ---------- Menu full-screen · layout split editoriale (distinto da Trucchi) ---------- */
.mobile-menu {
    position: fixed; inset: 0; z-index: 200;
    background: var(--bg-soft);
    pointer-events: none; opacity: 0; visibility: hidden;
    transition: opacity .5s var(--ease-out), visibility 0s linear .5s;
    display: grid; grid-template-columns: 0.92fr 1.25fr; overflow: hidden;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .6s var(--ease-out); }

/* Pulsante chiudi (sopra il pannello chiaro) */
.mobile-menu-close { position: absolute; top: 1.7rem; right: 1.7rem; z-index: 10; width: 46px; height: 46px; border-radius: 50%; background: transparent; border: 1px solid var(--border-soft); cursor: pointer; opacity: 0; transform: scale(.8); transition: opacity .5s ease .1s, transform .6s var(--ease-out) .1s, border-color .3s, background .3s; }
body.menu-open .mobile-menu-close { opacity: 1; transform: scale(1); }
.mobile-menu-close:hover { border-color: var(--accent); background: rgba(181,162,126,.12); }
.mobile-menu-close::before, .mobile-menu-close::after { content: ''; position: absolute; top: 50%; left: 14px; right: 14px; height: 1.5px; background: var(--text-primary); }
.mobile-menu-close::before { transform: translateY(-50%) rotate(45deg); }
.mobile-menu-close::after  { transform: translateY(-50%) rotate(-45deg); }

/* Aside scuro */
.mm-aside { position: relative; background: var(--dark); color: var(--text-on-dark); display: flex; flex-direction: column; justify-content: space-between; padding: 3rem 3rem 2.6rem; overflow: hidden; clip-path: inset(0 100% 0 0); transition: clip-path .8s var(--ease-out); }
body.menu-open .mm-aside { clip-path: inset(0 0 0 0); }
.mm-aside::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 20% 90%, rgba(181,162,126,.16), transparent 60%); pointer-events: none; }
.mm-logo { position: relative; z-index: 2; opacity: 0; transform: translateY(-10px); transition: opacity .6s ease .35s, transform .6s var(--ease-out) .35s; }
.mm-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
body.menu-open .mm-logo { opacity: 1; transform: translateY(0); }
.mm-aside-body { position: relative; z-index: 2; opacity: 0; transform: translateY(14px); transition: opacity .7s ease .5s, transform .7s var(--ease-out) .5s; }
body.menu-open .mm-aside-body { opacity: 1; transform: translateY(0); }
.mm-aside-eyebrow { display: block; font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.mm-aside-line { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); line-height: 1.18; color: var(--text-on-dark); }
.mm-aside-foot { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1rem; opacity: 0; transform: translateY(14px); transition: opacity .7s ease .62s, transform .7s var(--ease-out) .62s; }
body.menu-open .mm-aside-foot { opacity: 1; transform: translateY(0); }
.mm-contact { display: flex; flex-direction: column; gap: .35rem; }
.mm-contact a { color: var(--text-on-dark-soft); text-decoration: none; font-size: .82rem; letter-spacing: .04em; transition: color .3s; }
.mm-contact a:hover { color: var(--accent); }
.mm-socials { display: flex; gap: .8rem; }
.mm-socials a { width: 38px; height: 38px; border: 1px solid var(--border-on-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; }
.mm-socials a:hover { border-color: var(--accent); background: rgba(181,162,126,.12); }
.mm-socials img { width: 15px; height: 15px; filter: brightness(0) invert(1); opacity: .8; }

/* Pannello principale chiaro */
.mm-main { display: flex; flex-direction: column; justify-content: center; padding: 4rem 4.5rem; overflow-y: auto; }
.mm-links { list-style: none; }
.mm-links li { border-top: 1px solid var(--border-subtle); overflow: hidden; }
.mm-links li:last-child { border-bottom: 1px solid var(--border-subtle); }
.mm-links a {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
    padding: 1.05rem .4rem; text-decoration: none; position: relative;
    opacity: 0; transform: translateX(-26px);
    transition: opacity .6s var(--ease-out), transform .7s var(--ease-out), padding-left .4s var(--ease-out);
}
body.menu-open .mm-links a { opacity: 1; transform: translateX(0); }
.mm-links a::after { content: ''; position: absolute; left: .4rem; right: .4rem; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.mm-links a:hover { padding-left: 1.1rem; }
.mm-links a:hover::after { transform: scaleX(1); }
.mm-name { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.9rem); font-weight: 400; line-height: 1; color: var(--text-primary); transition: color .3s; }
.mm-links a:hover .mm-name { color: var(--accent-deep); }
.mm-meta { font-family: var(--font-body); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--text-secondary); white-space: nowrap; transition: color .3s; }
.mm-links a:hover .mm-meta { color: var(--accent); }
body.menu-open .mm-links li:nth-child(1) a { transition-delay: .34s; }
body.menu-open .mm-links li:nth-child(2) a { transition-delay: .40s; }
body.menu-open .mm-links li:nth-child(3) a { transition-delay: .46s; }
body.menu-open .mm-links li:nth-child(4) a { transition-delay: .52s; }
body.menu-open .mm-links li:nth-child(5) a { transition-delay: .58s; }
body.menu-open .mm-links li:nth-child(6) a { transition-delay: .64s; }

.mm-sub { margin-top: 2.6rem; opacity: 0; transform: translateY(14px); transition: opacity .7s ease .7s, transform .7s var(--ease-out) .7s; }
body.menu-open .mm-sub { opacity: 1; transform: translateY(0); }
.mm-sub-label { display: block; font-size: .56rem; letter-spacing: .35em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 1rem; }
.mm-sub ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.mm-sub a { color: var(--text-primary); text-decoration: none; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; position: relative; transition: color .3s; }
.mm-sub a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out); }
.mm-sub a:hover { color: var(--accent-deep); }
.mm-sub a:hover::after { transform: scaleX(1); transform-origin: left; }

body.menu-open { overflow: hidden; }

@media (max-width: 860px) {
    .mobile-menu { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
    .mm-aside { flex-direction: row; align-items: center; justify-content: flex-start; padding: 1.4rem 1.5rem; clip-path: inset(0 0 100% 0); }
    body.menu-open .mm-aside { clip-path: inset(0 0 0 0); }
    .mm-aside-body, .mm-aside-foot { display: none; }
    .mm-logo img { height: 40px; }
    .mm-main { padding: 1.8rem 1.5rem 2.5rem; justify-content: flex-start; }
    .mm-name { font-size: clamp(1.7rem, 9vw, 2.4rem); }
    .mobile-menu-close { top: 1rem; right: 1.1rem; border-color: var(--border-on-dark); }
    .mobile-menu-close::before, .mobile-menu-close::after { background: var(--text-on-dark); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .7rem;
    padding: 1rem 2.6rem;
    border: 1px solid var(--border-soft);
    color: var(--text-primary);
    text-decoration: none;
    font-size: .72rem; text-transform: uppercase; letter-spacing: .2em; font-weight: 400;
    position: relative; overflow: hidden; transition: color .5s ease, border-color .5s ease;
    background: transparent;
}
.btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--text-primary);
    transform: scaleX(0); transform-origin: right;
    transition: transform .5s cubic-bezier(0.19,1,0.22,1); z-index: -1;
}
.btn:hover { color: #fff; border-color: var(--text-primary); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-accent { border-color: var(--accent); color: var(--accent-deep); }
.btn-accent::before { background: var(--accent); }
.btn-accent:hover { color: #fff; border-color: var(--accent); }

.btn-solid { background: var(--dark); border-color: var(--dark); color: var(--text-on-dark); }
.btn-solid::before { background: var(--accent); }
.btn-solid:hover { color: #fff; border-color: var(--accent); }

/* su sfondo scuro */
.on-dark .btn { color: var(--text-on-dark); border-color: var(--border-on-dark); }
.on-dark .btn::before { background: var(--accent); }
.on-dark .btn:hover { color: #fff; border-color: var(--accent); }

/* ---------- Section base ---------- */
.section { padding: var(--space-lg) 4rem; position: relative; z-index: 5; background: var(--bg); }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--dark); color: var(--text-on-dark); }
.section.dark .section-title, .section.dark h2, .section.dark h3 { color: var(--text-on-dark); }
.section.dark .section-intro, .section.dark p { color: var(--text-on-dark-soft); }
.section-tight { padding: var(--space-md) 4rem; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
    font-weight: 400; line-height: 1.06; color: var(--text-primary);
    letter-spacing: .005em; max-width: 16ch; text-wrap: balance;
}
.section-intro { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.85; max-width: 52ch; margin-top: 1.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 4rem; margin-bottom: 4.5rem; }
.lead { font-size: 1.15rem; line-height: 1.9; color: var(--text-primary); font-weight: 300; }

/* ---------- Page Hero (pagine interne) ---------- */
.page-hero {
    min-height: 78vh;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end; padding: 4rem;
    background: var(--dark);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center; animation: breathe 32s infinite alternate ease-in-out; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(34,31,33,0.35) 0%, rgba(34,31,33,0.45) 55%, rgba(34,31,33,0.88) 100%); }
.page-hero-content { position: relative; z-index: 3; max-width: 1200px; color: var(--text-on-dark); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: 1.05; margin-bottom: 1.4rem; color: #fff; text-wrap: balance; }
.page-hero h1 em { color: var(--accent); }
.page-hero p { font-size: 1.08rem; font-weight: 300; color: var(--text-on-dark); margin-bottom: 0; max-width: 56ch; line-height: 1.8; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.page-hero .breadcrumbs { position: absolute; top: 7.5rem; left: 4rem; z-index: 3; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-on-dark-soft); }
.page-hero .breadcrumbs a { color: var(--text-on-dark-soft); text-decoration: none; transition: color .3s; }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero .breadcrumbs span { color: var(--accent); margin: 0 .5rem; }

/* ---------- Brand marquee ---------- */
.brand-universe {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden; background: var(--bg); position: relative; z-index: 10;
    user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: grab;
}
.brand-universe.is-dragging { cursor: grabbing; }
.brand-universe.is-dragging .marquee { transition: none; }
.brand-universe .marquee-label { text-align: center; font-size: .62rem; letter-spacing: .35em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 2.6rem; }
.marquee { display: flex; align-items: center; will-change: transform; transform: translate3d(0,0,0); }
.marquee-track { display: flex; align-items: center; flex-shrink: 0; }
.brand-slot { flex: 0 0 auto; width: 12rem; height: 60px; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.brand-slot img { height: 40px; width: auto; max-width: 100%; object-fit: contain; opacity: .55; filter: grayscale(1); transition: opacity .4s ease, filter .4s ease, transform .4s ease; pointer-events: none; -webkit-user-drag: none; }
.brand-slot:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.05); }

@media (max-width: 1024px) {
    .brand-slot { width: 8.5rem; padding: 0 1rem; height: 50px; }
    .brand-slot img { height: 30px; }
}

/* ---------- Sticky experience (scroll-driven visuals) ---------- */
.sticky-experience { position: relative; width: 100%; }
.sticky-visuals { position: sticky; top: 0; left: 0; width: 100%; height: 100vh; z-index: 1; overflow: hidden; background: var(--dark); }
.sticky-visuals .visual { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s var(--ease-soft), transform 8s linear; }
.sticky-visuals .visual.is-active { opacity: 1; transform: scale(1.06); }
.sticky-visuals .visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(34,31,33,0.9) 0%, rgba(34,31,33,0.15) 55%, rgba(34,31,33,0.3) 100%); z-index: 50; pointer-events: none; }
.scrolling-content { position: relative; z-index: 4; margin-top: -100vh; }
.scroll-section { min-height: 100vh; width: 100%; display: flex; align-items: flex-end; padding: 4rem; }
.section-content-bottom { max-width: 600px; padding-bottom: 2rem; color: var(--text-on-dark); }
.section-content-bottom .eyebrow { color: var(--accent); }
.section-content-bottom h3 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin-bottom: 1.4rem; color: #fff; text-shadow: 0 4px 16px rgba(0,0,0,.35); }
.section-content-bottom p { color: var(--text-on-dark); text-shadow: 0 2px 10px rgba(0,0,0,.5); line-height: 1.75; margin-bottom: 2.6rem; font-size: 1.08rem; }
.locations { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .6rem; }
.location-item { font-family: var(--font-display); font-size: 1.7rem; color: var(--text-on-dark); }

/* ---------- Footer ---------- */
footer.site-footer { padding: var(--space-md) 4rem 2rem; background: var(--dark); color: var(--text-on-dark-soft); position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1.3fr 1fr 1fr; gap: 3rem; }
.footer-col .footer-logo { height: 54px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.4rem; color: var(--text-on-dark); font-weight: 400; }
.footer-col p, .footer-col a { font-family: var(--font-body); color: var(--text-on-dark-soft); text-decoration: none; font-size: .84rem; line-height: 2; display: block; transition: color .3s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .muted { color: var(--text-secondary); font-size: .78rem; line-height: 1.7; margin-top: .2rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: .4rem; }
.footer-socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--border-on-dark); border-radius: 50%; transition: border-color .3s, background .3s; }
.footer-socials a:hover { border-color: var(--accent); background: rgba(181,162,126,0.12); }
.footer-socials img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); opacity: .8; }
.footer-bottom { margin-top: 4rem; padding-top: 1.8rem; border-top: 1px solid var(--border-on-dark); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--text-secondary); font-size: .72rem; letter-spacing: .08em; }
.footer-bottom a { color: var(--text-secondary); text-decoration: none; transition: color .3s; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Animations ---------- */
@keyframes breathe { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.divider-mark { display: inline-block; width: 46px; height: 1px; background: var(--accent); margin: 0 0 1.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    nav.site-nav { padding: 1.2rem 1.5rem; }
    nav.site-nav.scrolled { padding: .9rem 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }
    .logo-img { height: 46px; }

    .section { padding: var(--space-md) 1.5rem; }
    .section-tight { padding: var(--space-sm) 1.5rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-bottom: 2.6rem; }

    .page-hero { padding: 3rem 1.5rem; min-height: 70vh; }
    .page-hero .breadcrumbs { top: 6rem; left: 1.5rem; }

    .scroll-section { padding: 2rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
    footer.site-footer { padding: var(--space-md) 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }

    .brand-universe { padding: var(--space-sm) 0; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Touch: niente cursore custom */
@media (hover: none), (pointer: coarse) {
    .custom-cursor { display: none; }
}
