:root {
    --maroon: #5C2C2C;
    --maroon-deep: #3D1A1A;
    --maroon-light: #7A3F3F;
    --gold: #C9A84C;
    --gold-light: #E2C87A;
    --gold-pale: #F0E0B0;
    --cream: #F7F3EC;
    --cream-dark: #EDE5D8;
    --ink: #1C1410;
    --warm-grey: #8A7F75;
    --white: #FDFAF6;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.75;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.cinzel { font-family: 'Cinzel', serif; }

/* ─── NAVIGATION ─── */
/*header {
    background: rgba(28, 20, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(28, 20, 16, 0.99);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}*/

header {
    /* Schiarito ulteriormente il punto di partenza (grigio pietra chiaro) 
       e allungata la transizione fino al 60% della larghezza dello schermo */
    background: linear-gradient(to right, 
        rgba(180, 172, 165, 0.95) 0%, 
        rgba(28, 20, 16, 0.96) 60%, 
        rgba(28, 20, 16, 0.96) 100%
    ) !important;
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: all 0.4s ease;
}

header.scrolled {
    /* Mantiene la stessa identica sfumatura estesa anche durante lo scroll, 
       regolando solo la compattezza dello sfondo per coprire i testi che passano sotto */
    background: linear-gradient(to right, 
        rgba(180, 172, 165, 0.98) 0%, 
        rgba(28, 20, 16, 0.99) 60%, 
        rgba(28, 20, 16, 0.99) 100%
    ) !important;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    position: relative;
    cursor: pointer; /* Forza la manina sul logo */
}

.logo-img-wrap {
    position: relative;
    height: 72px;
    width: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding-left: 14px;
    border-left: 1px solid rgba(201,168,76,0.3);
    margin-left: 14px;
    height: 52px;
}

.logo-text .arp {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.18em;
    line-height: 1;
}

.logo-text .full-name {
    font-family: 'Jost', sans-serif;
    font-size: 0.56rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-img-wrap img {
    height: 68px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    filter: drop-shadow(0 3px 18px rgba(201,168,76,0.18)) drop-shadow(0 4px 10px rgba(0,0,0,0.45));
    transform-origin: bottom center;
}

.logo-img-wrap2 img {
    height: 60px; /* Ridotto leggermente per creare un'asola elegante */ 
    width: 60px;
    object-fit: cover;
    border-radius: 50%; /* Trasforma il rettangolo in un medaglione circolare */ 
    border: 1px solid rgba(201, 168, 76, 0.4); /* Crea un sottile anello color oro attorno alla scultura */
    position: relative;
    z-index: 1;
    background: var(--cream); /* Mantiene lo sfondo crema morbido del sito dentro al cerchio */
    padding: 4px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transform-origin: bottom center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ─── LANGUAGE TOGGLE SYSTEM ─── */
.lang-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 4px 6px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active { color: var(--gold); font-weight: 700; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to bottom, rgba(28,20,16,0.7) 0%, rgba(28,20,16,0.5) 50%, rgba(28,20,16,0.85) 100%),
        url('images/photo-1541961017774-22349e4a1262.jpg?w=1800&q=80&fit=crop');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}

.hero-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-ornament::before {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201,168,76,0.06);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 0 30px;
    animation: heroReveal 1.4s ease forwards;
    opacity: 0;
}

@keyframes heroReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
}

.hero .subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.85;
    color: var(--gold-pale);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    padding: 15px 44px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,168,76,0.25);
}

.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 15px 44px;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.4s ease;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: scrollPulse 2s ease infinite;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: white;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, white, transparent);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(5px); }
}

/* ─── SECTIONS COMMON ─── */
.section-wrap { padding: 120px 5%; }
.section-inner { max-width: 1300px; margin: 0 auto; }

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    color: var(--maroon);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--maroon-light); }
.title-rule { width: 60px; height: 2px; background: var(--gold); margin-bottom: 2.5rem; }
.title-rule.centered { margin: 0 auto 2.5rem; }

/* ─── MANIFESTO STRIP ─── */
.manifesto-strip {
    background: var(--maroon-deep);
    padding: 50px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto-strip::before, .manifesto-strip::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.manifesto-strip::before { top: 0; }
.manifesto-strip::after { bottom: 0; }

.manifesto-strip p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--gold-pale);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* ─── MISSION ─── */
.mission-wrap { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mission-text p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #4a3f38;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.mission-image { position: relative; height: 520px; }
.mission-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(201,168,76,0.3);
    z-index: 0;
}

.mission-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92,44,44,0.15), transparent);
    z-index: 2;
}

/* ─── NUMBERS ─── */
.numbers-wrap { background: var(--maroon); padding: 80px 5%; }
.numbers-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.number-item { padding: 50px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.number-item:last-child { border-right: none; }

.number-item::before {
    content: '';
    position: absolute;
    top: 0; left: 30px; right: 30px;
    height: 1px;
    background: rgba(201,168,76,0.2);
}

.number-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.number-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* ─── SERVICES ─── */
.services-wrap { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(201,168,76,0.15); }

.service-card { background: var(--white); padding: 55px 40px; transition: all 0.5s ease; position: relative; overflow: hidden; }

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--maroon), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(92,44,44,0.12); z-index: 2; }

.service-icon {
    width: 60px; height: 60px;
    border: 1px solid rgba(92,44,44,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; transition: all 0.4s;
}

.service-card:hover .service-icon { background: var(--maroon); border-color: var(--maroon); }
.service-card:hover .service-icon i { color: var(--gold); }
.service-icon i { font-size: 1.5rem; color: var(--maroon); transition: color 0.4s; }

.service-card h3 { font-size: 1.45rem; font-weight: 600; color: var(--maroon); margin-bottom: 1rem; line-height: 1.2; }
.service-card p { font-size: 0.9rem; color: var(--warm-grey); font-weight: 300; line-height: 1.8; }

.service-number {
    position: absolute; top: 30px; right: 35px;
    font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300;
    color: rgba(92,44,44,0.06); line-height: 1; transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(92,44,44,0.1); }

/* ─── ARTWORK GALLERY ─── */
.gallery-wrap { background: var(--ink); padding: 100px 0 0; overflow: hidden; }
.gallery-header { padding: 0 5%; margin-bottom: 60px; }
.gallery-header .section-title { color: var(--cream); }
.gallery-header .section-title em { color: var(--gold-light); }

.gallery-row { display: flex; gap: 3px; margin-bottom: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(28,20,16,0.85) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 25px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption { color: var(--gold-pale); font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; }

.gallery-row-1 .gallery-item:nth-child(1) { flex: 2; height: 380px; }
.gallery-row-1 .gallery-item:nth-child(2) { flex: 1; height: 380px; }
.gallery-row-1 .gallery-item:nth-child(3) { flex: 1.5; height: 380px; }
.gallery-row-2 .gallery-item:nth-child(1) { flex: 1; height: 300px; }
.gallery-row-2 .gallery-item:nth-child(2) { flex: 1.5; height: 300px; }
.gallery-row-2 .gallery-item:nth-child(3) { flex: 2; height: 300px; }

/* ─── PROVENIENZA / APPROCCIO ─── */
.approach-wrap { background: var(--white); }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.approach-image { position: relative; height: 600px; }
.approach-image img { width: 100%; height: 100%; object-fit: cover; }

.approach-image-badge {
    position: absolute; bottom: -30px; right: -30px;
    width: 150px; height: 150px; background: var(--maroon);
    display: flex; align-items: center; justify-content: center; padding: 20px; text-align: center; z-index: 2;
}
.approach-image-badge p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--gold-pale); line-height: 1.4; }

.approach-content .section-title { margin-bottom: 1rem; }
.approach-list { list-style: none; margin-top: 2.5rem; }
.approach-list li { padding: 18px 0; border-bottom: 1px solid rgba(201,168,76,0.15); display: flex; gap: 20px; align-items: flex-start; }
.approach-list li:last-child { border-bottom: none; }

.approach-list-icon { width: 36px; height: 36px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.approach-list-icon i { font-size: 0.85rem; color: var(--maroon); }

.approach-list-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--maroon); margin-bottom: 0.3rem; }
.approach-list-text p { font-size: 0.88rem; font-weight: 300; color: var(--warm-grey); line-height: 1.7; }

/* ─── ARTISTI ─── */
.artists-wrap { background: var(--cream-dark); }
.artists-header { text-align: center; margin-bottom: 70px; }
.artists-header p { max-width: 700px; margin: 0 auto; font-size: 1.05rem; font-weight: 300; color: #5a4f48; line-height: 1.9; }
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.artist-card { background: var(--white); overflow: hidden; transition: all 0.4s ease; }
.artist-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); }
.artist-card-img { height: 280px; overflow: hidden; position: relative; }
.artist-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; filter: grayscale(20%); }
.artist-card:hover .artist-card-img img { transform: scale(1.08); filter: grayscale(0%); }

.artist-card-body { padding: 30px 28px; border-top: 2px solid var(--gold); }
.artist-card-body h3 { font-size: 1.5rem; font-weight: 600; color: var(--maroon); margin-bottom: 0.4rem; }
.artist-card-body .medium { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: 'Cinzel', serif; margin-bottom: 1rem; }
.artist-card-body p { font-size: 0.88rem; font-weight: 300; color: var(--warm-grey); line-height: 1.8; }

/* ─── VISION ─── */
.vision-wrap { background: var(--maroon-deep); position: relative; overflow: hidden; }
.vision-wrap::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('photo-1570126618953-d437176e8c79.jpg?w=1600&q=60&fit=crop');
    background-size: cover; background-position: center; opacity: 0.08;
}

.vision-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.vision-inner .section-title { color: var(--gold-pale); font-size: clamp(2.5rem, 4.5vw, 4.5rem); font-weight: 300; margin-bottom: 0; }
.vision-inner .section-title em { color: var(--gold); }

.vision-body { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem, 2vw, 1.55rem); font-style: italic; font-weight: 300; color: rgba(247,243,236,0.8); max-width: 750px; margin: 2.5rem auto 0; line-height: 1.8; }
.vision-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 70px; }

.vision-pillar { padding: 40px 30px; border: 1px solid rgba(201,168,76,0.2); text-align: center; transition: all 0.4s; }
.vision-pillar:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.5); }
.vision-pillar i { font-size: 2rem; color: var(--gold); margin-bottom: 1.2rem; }
.vision-pillar h4 { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 0.8rem; }
.vision-pillar p { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.8; }

/* ─── PARTNER / NETWORK ─── */
.network-wrap { background: var(--cream); text-align: center; }
.network-statement { max-width: 820px; margin: 2.5rem auto 0; text-align: center; padding: 50px 40px; border: 1px solid rgba(201,168,76,0.25); position: relative; }

.network-statement::before, .network-statement::after {
    content: ''; position: absolute; width: 40px; height: 40px; border-color: var(--gold); border-style: solid; opacity: 0.4;
}
.network-statement::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.network-statement::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.network-statement p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2vw, 1.6rem); font-style: italic; font-weight: 300; color: var(--maroon); line-height: 1.75; letter-spacing: 0.01em; }

/* ─── CONTATTI ─── */
.contact-wrap { background: var(--ink); padding: 120px 5%; position: relative; overflow: hidden; }
.contact-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.contact-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-info .section-title { color: var(--cream); }
.contact-info .section-title em { color: var(--gold-light); }
.contact-info p { color: rgba(247,243,236,0.6); font-size: 0.95rem; font-weight: 300; margin-bottom: 3rem; line-height: 1.9; }

.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-details li:last-child { border: none; }
.contact-details i { color: var(--gold); font-size: 0.9rem; margin-top: 3px; width: 20px; flex-shrink: 0; }
.contact-details span { color: rgba(247,243,236,0.75); font-size: 0.9rem; font-weight: 300; line-height: 1.7; }
.contact-details a { color: rgba(247,243,236,0.75); text-decoration: none; transition: color 0.3s; }
.contact-details a:hover { color: var(--gold); }

.contact-form input, .contact-form textarea {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px; color: white; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.3s; margin-bottom: 12px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.25); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form button {
    background: var(--gold); color: var(--ink); border: none; padding: 15px 44px;
    font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer; transition: all 0.4s; width: 100%;
}
.contact-form button:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer { background: #0e0a08; padding: 50px 5%; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo .arp { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 0.15em; }
.footer-logo .tagline { font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.2em; text-transform: uppercase; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }

.footer-links { display: flex; gap: 25px; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none; position: fixed; top: 90px; left: 0; right: 0; background: rgba(28,20,16,0.98);
    padding: 30px 5%; z-index: 999; border-top: 1px solid rgba(201,168,76,0.2); flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.75); text-decoration: none; font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .mission-grid, .approach-grid, .contact-inner { gap: 50px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
    .mission-grid, .approach-grid, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .mission-image, .approach-image { height: 380px; }
    .approach-image-badge { width: 120px; height: 120px; right: -10px; bottom: -10px; }
    .services-grid, .artists-grid, .vision-pillars { grid-template-columns: 1fr 1fr; }
    .gallery-row-1, .gallery-row-2 { flex-direction: column; }
    .gallery-row-1 .gallery-item, .gallery-row-2 .gallery-item { height: 260px !important; flex: unset; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 3.2rem; }
    .section-wrap { padding: 80px 5%; }
    .services-grid, .artists-grid, .vision-pillars { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .contact-inner { grid-template-columns: 1fr; }
}

/* ─── NUOVA REGOLA: CURSORE MANINA OBBLIGATORIO ─── */
/* Forza la comparsa del puntatore a manina su tutti i finti link privati di href */
.nav-links a, 
.mobile-menu a, 
.footer-links a,
.hero-buttons a {
    cursor: pointer;
}