/* 
   ARCHITECTURAL BLUEPRINT: "The Editorial Memory"
   Style Sheet
*/

:root {
    --bg-color: #F9F9F9;
    /* Off-White / Carta Riso */
    --text-color: #111111;
    /* Jet Black */
    --accent-color: #C5A059;
    /* Gold/Sand (Minimal use) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.6s;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-name {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.preloader-line {
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    animation: expandLine 0.8s ease forwards;
    animation-delay: 0.8s;
}

.preloader-role {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 120px;
    }
}

@media (min-width: 768px) {
    .preloader-name {
        font-size: 4rem;
    }

    .preloader-role {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    @keyframes expandLine {
        to {
            width: 180px;
        }
    }
}

/* Reset & Base */
html,
body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: #fff;
    /* Pure white background */
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    /* Airy padding */
    z-index: 1000;
    display: flex;
    justify-content: center;
    transition: background 0.4s ease, padding 0.4s ease;
}

/* Background on scroll (optional via JS later, but base is transparent) */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-item {
    color: var(--text-color);
}

.navbar.scrolled .nav-item::after {
    background: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 4rem;
    /* Wide luxury spacing */
    list-style: none;
}

.nav-item {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
    padding-bottom: 5px;
}

.nav-item:hover {
    opacity: 1;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        /* Tighter on mobile */
    }

    .nav-item {
        font-size: 0.65rem;
    }

    .navbar {
        padding: 1.5rem 1rem;
    }
}

/* Page Specific Navbar (About/Portfolio) - Always Dark Links */
.page-navbar .nav-item {
    color: var(--text-color);
    opacity: 1;
}

.page-navbar .nav-item::after {
    background: var(--text-color);
}

/* Typography Utilities */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Global Section Protection */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vignette + base overlay */
    background:
        radial-gradient(ellipse at center,
            transparent 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.6) 100%),
        rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    /* Force white */
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* "Architectural Giant" Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: 15vw;
    /* Massive responsive size */
    line-height: 0.85;
    font-weight: 400;
    /* Playfair Regular is elegant */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    /* Tighter tracking for fashion look */
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    mix-blend-mode: overlay;
    /* The magic touch */
    opacity: 0.9;
}

.hero-title .line {
    display: block;
}

.hero-title .line-2 {
    font-style: italic;
    /* Elegant contrast */
    margin-left: 15vw;
    /* Asymmetric shift */
}

.hero-title .line-3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.3em;
    letter-spacing: 0.4em;
    font-weight: 500;
    margin-top: 1rem;
    font-style: italic;
    margin-left: 48vw;
    /* Gold shimmer effect */
    background: linear-gradient(90deg,
            #C5A059 0%,
            #C5A059 40%,
            #FFE5A0 50%,
            #C5A059 60%,
            #C5A059 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }

    50% {
        background-position: -100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 15vw;
        /* Lock 2: Safe Width - Increased for impact */
    }

    .hero-title .line-2 {
        margin-left: 0;
    }

    .hero-title .line-3 {
        font-size: 0.3em;
        letter-spacing: 0.4em;
    }
}

.subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    /* Wide spacing */
    text-transform: uppercase;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    /* Longer line */
    background-color: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Manifesto Section */
.manifesto {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    position: relative;
    /* Anchor for the thread */
    background-color: #fff;
    /* Fusion with Showreel */
}

.golden-thread {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 6rem;
    /* Extends from bottom */
    background: var(--accent-color);
    z-index: 2;
    transform-origin: top;
    animation: drawThread 1.5s ease forwards 1s;
    /* Animated entry */
}

@keyframes drawThread {
    from {
        transform: translateX(-50%) scaleY(0);
    }

    to {
        transform: translateX(-50%) scaleY(1);
    }
}

.manifesto blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
    font-style: italic;
}

@media (min-width: 768px) {
    .manifesto blockquote {
        font-size: 3rem;
    }
}

/* Awards Strip (Horizontal Bar) */
.awards-strip {
    padding: 2rem 2rem;
    background-color: #fff;
}

.awards-strip .container {
    max-width: 1000px;
    margin: 0 auto;
}

.awards-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .awards-strip-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.award-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    cursor: default;
    transition: transform 0.3s ease;
}

.award-strip-item:hover {
    transform: translateY(-3px);
}

.award-icon {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--accent-color);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.award-strip-item:hover .award-icon {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.award-name {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
}

.award-desc {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 1px;
}

.award-logo {
    height: 40px;
    /* Altezza controllata */
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.award-strip-item:hover .award-logo {
    transform: scale(1.1);
}

/* Desktop Awards Sizing */
@media (min-width: 900px) {
    .award-logo {
        height: 80px;
        /* Increased from 60px */
    }

    .award-name {
        font-size: 0.8rem;
        /* Increased from 0.65rem */
    }

    .award-desc {
        font-size: 0.7rem;
        /* Increased from 0.6rem */
    }
}

/* Golden Thread Connector (between Awards Strip and Showreel) */
.golden-thread-connector {
    width: 1px;
    height: 6rem;
    background: var(--accent-color);
    margin: 0 auto;
}

/* Portfolio Section - Custom Design */
.portfolio {
    padding: 6rem 2rem;
    background-color: #fff;
    /* Ensure white bg */
}

.portfolio .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Header */
.portfolio-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 1rem;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.title-composite {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    line-height: 1;
}

.serif-part {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
}

.script-part {
    font-family: 'Pinyon Script', cursive;
    font-size: 5rem;
    font-weight: 400;
    margin-left: -0.5rem;
    transform: translateY(10px);
    /* Adjust alignment visually */
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.project-card {
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Vertical Portrait */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s ease;
    filter: grayscale(100%);
    /* Default Black & White */
}

/* On hover, slightly zoom and bring color back */
.project-card:hover .project-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
    /* Color on hover */
}

/* Overlay Info */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.project-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.project-info p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* View All Link */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.view-all-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.view-all-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.view-all-link:hover {
    color: var(--accent-color);
    letter-spacing: 4px;
}

.view-all-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Awards Section */
.awards {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
}

.awards .container {
    max-width: 1000px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.laurel-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.award-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.award-item p {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}





/* About Section */
.about {
    padding: 0 0 12rem 0;
    /* Extended bottom padding for connector */
    background-color: #fff;
    /* Force White Background */
    /* Full bleed layout potentially */
    position: relative;
    /* Anchor for thread */
}

.split-layout {
    display: flex;
    flex-direction: column;
}

@media (min-width: 900px) {
    .split-layout {
        flex-direction: row;
        min-height: 90vh;
        /* Increased height for content */
    }
}

/* Fix phantom spacing below image */
.about-image {
    flex: 1;
    position: relative;
    min-height: auto;
    /* Allow image to define height on mobile */
    line-height: 0;
    /* Kill inline-block spacing */
}

/* ... existing desktop media query for about-image ... */

.bio-text p:first-child,
.bio-text .lead:first-child {
    margin-top: 0;
    /* Ensure first text element has no top gap */
}

.bio-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
    color: #333;
}

@media (min-width: 900px) {
    .about-image {
        min-height: auto;
    }
}

/* Clean Image - No Overlay */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    /* Image remains clean */
}

/* New Stats Grid (White Background) */
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Slightly larger */
    font-weight: 400;
    color: var(--accent-color);
    /* Gold */
    line-height: 1;
}

.stat-item .label {
    display: block;
    font-size: 0.75rem;
    /* Slightly larger */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    color: #000;
    /* Pure black for max contrast */
    font-weight: 600;
    /* Bolder to fix "too fine" */
}

.stat-item .stat-logo-img {
    height: 3rem;
    /* Matches the font-size of the numbers */
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: sepia(100%) hue-rotate(5deg) saturate(90%) contrast(90%);
    /* Gold-ish filter approach or keep natural? User didn't specify, but gold theme implies tint. For now, let's keep it clean or just apply height. */
    /* Reseting filter to keep original logo colors as usually preferred for associations unless requested monochrome */
    filter: none;
}


.about-content {
    flex: 1;
    padding: 1.5rem 2rem 4rem 2rem;
    /* Breathing room: 1.5rem */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Fix: Align content to top */
    /* Clean White Canvas */
}

.about-header-container {
    padding-top: 4rem;
    /* Match previous mobile padding */
    width: 100%;
}

@media (min-width: 900px) {
    .about-content {
        padding: 6rem;
    }
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 3rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
    color: #333;
}

.bio-text .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Pinyon Script', cursive;
    font-size: 3.5rem !important;
    /* Adjusted for full name */
    font-weight: 400;
    text-align: right;
    margin-top: 2rem;
    padding-right: 1rem;
    opacity: 1;
    line-height: 1;
    transform: rotate(-5deg);
}

@media (min-width: 768px) {
    .signature {
        font-size: 5rem !important;
        /* Adjusted for full name */
        margin-top: 4rem;
    }
}

/* Contact Section (Editorial Split) */
.contact-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    /* Allow natural height based on content */
}

.contact-visual {
    width: 100%;
    height: 40vh;
    /* Reduced on mobile */
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    transition: transform 1.2s ease;
}

.contact-split:hover .contact-visual img {
    transform: scale(1.05);
}

.contact-form-area {
    width: 100%;
    min-height: auto;
    /* Content-based height */
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem 4rem;
    /* More vertical padding */
    text-align: center;
}

.content-wrapper {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.content-wrapper .eyebrow {
    color: var(--accent-color);
    letter-spacing: 4px;
    font-size: 0.8rem;
}

.content-wrapper .section-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.whatsapp-btn-editorial {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.whatsapp-btn-editorial:hover {
    background-color: #A07F3E;
    /* Darker Gold */
    border-color: #A07F3E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
    color: #fff;
}

@media (min-width: 900px) {
    .contact-split {
        flex-direction: row;
        height: 100vh;
    }

    .contact-visual,
    .contact-form-area {
        width: 50%;
        height: 100%;
    }

    .content-wrapper .section-title {
        font-size: 4.5rem;
    }
}

/* Footer */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 6rem 2rem 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center image */
    gap: 0.5rem;
}

.footer-logo {
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.6;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
}

.contact-item,
.legal-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    margin-bottom: 0.2rem;
}

.footer-info a,
.footer-info span {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-info a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

.copyright {
    font-size: 0.7rem;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    letter-spacing: 3px;
}

@media (min-width: 768px) {
    .footer-container {
        gap: 6rem;
    }

    .footer-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        padding: 0 4rem;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 3rem;
    }
}

/* Page Styles (Portfolio) */
.page-hero {
    padding: 12rem 2rem 4rem;
    text-align: center;
    background-color: #fff;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #666;
}

/* Navbar on pages without hero video */
.page-navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-navbar .nav-item {
    color: var(--text-color);
}

.page-navbar .nav-item::after {
    background: var(--text-color);
}

.page-navbar .nav-item.active {
    opacity: 1;
    border-bottom: 1px solid var(--text-color);
}

/* Visibility Utilities */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 900px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background: transparent;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Love Letters / Testimonials Section */
.testimonials {
    padding: 5rem 2rem 8rem;
    background-color: #1a1a1a;
    /* Dark background for contrast */
}

.testimonials .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Dark section title adjustments */
.testimonials .portfolio-header .eyebrow {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials .portfolio-header .serif-part {
    color: #fff;
}

.testimonials .portfolio-header .script-part {
    color: var(--accent-color);
}

/* Testimonials Carousel */
.testimonials-carousel {
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.carousel-track .testimonial-card.quote-style {
    flex: 0 0 100%;
    /* Mobile: 1 card visible */
}

@media (min-width: 768px) {
    .carousel-track .testimonial-card.quote-style {
        flex: 0 0 calc((100% - 4rem) / 3);
        /* Desktop: 3 cards visible (accounting for 2 gaps of 2rem) */
    }
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
    /* Extra space for hover scale effect */
}

.carousel-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Quote Style Cards */
.testimonial-card.quote-style {
    background: #2a2a2a;
    padding: 3rem 2.5rem;
    min-height: 400px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 20px;
    /* Parchment/scroll style curves */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card.quote-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.reviews-disclaimer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.reviews-disclaimer a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.reviews-disclaimer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.review-title {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.giant-quote {
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card.quote-style blockquote {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    margin: 0 0 1.2rem 0;
    padding-left: 0;
    border: none;
}

.testimonial-card.quote-style .attribution {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card.quote-style .attribution cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-style: normal;
    font-weight: 500;
}

.testimonial-card.quote-style .attribution .divider {
    color: var(--accent-color);
    font-weight: 300;
}

.testimonial-card.quote-style .attribution .location {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Horizontal Split Card */
.testimonial-card.horizontal {
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card.horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .testimonial-card.horizontal {
        flex-direction: row;
        height: 140px;
        /* Slim banner height */
    }

    /* Alternate layout: even cards have image on right */
    .testimonial-card.horizontal:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.testimonial-card.horizontal .testimonial-image {
    width: 100%;
    height: 180px;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-card.horizontal .testimonial-image {
        width: 30%;
        height: 100%;
        min-height: unset;
    }
}

.testimonial-card.horizontal .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.testimonial-card.horizontal:hover .testimonial-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.testimonial-card.horizontal .testimonial-content {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.testimonial-card.horizontal .testimonial-content blockquote {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

.testimonial-card.horizontal .attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-card.horizontal .attribution cite {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    font-style: normal;
    font-weight: 500;
}

.testimonial-card.horizontal .attribution .location {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 1px;
}

/* Showreel Section */
.showreel {
    padding: 6rem 2rem 12rem 2rem;
    /* Extended bottom padding for connector */
    background-color: #fff;
    text-align: center;
    position: relative;
    /* Anchor for thread */
}

.showreel .container {
    max-width: 1000px;
    margin: 0 auto;
}

.showreel-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showreel-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

.showreel-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.showreel-container:hover .showreel-cover {
    transform: scale(1.03);
    opacity: 0.6;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.play-button-overlay::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 5px;
    transition: border-left-color 0.3s ease;
}

.showreel-container:hover .play-button-overlay {
    background: #fff;
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.showreel-container:hover .play-button-overlay::before {
    border-left-color: #000;
}

/* ========================================
   ABOUT PAGE - CHI SONO
   ======================================== */

/* SEZIONE 1: HERO (IMPATTO) */
.about-hero {
    background-color: #fff;
    padding: 0;
    padding-top: 100px;
    /* Spacer for fixed white navbar */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* Mobile: Image first, then text */
.about-hero-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.15);
}

.about-hero-content {
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-color);
    margin: 0;
}

.about-hero-lead {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

.about-hero-body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
}

/* Desktop: Side-by-side layout */
@media (min-width: 900px) {
    .about-hero-layout {
        flex-direction: row;
        min-height: 100vh;
    }

    .about-hero-image {
        width: 50%;
        height: 100vh;
        min-height: auto;
    }

    .about-hero-content {
        width: 50%;
        padding: 6rem 5rem;
        gap: 2rem;
    }

    .about-hero-title {
        font-size: 3.5rem;
    }

    .about-hero-lead {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }

    .about-hero-body {
        font-size: 1.05rem;
        line-height: 1.9;
    }
}

/* SEZIONE 2: LE ORIGINI (STORYTELLING) */
.about-origins {
    background-color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-origins-layout {
    display: flex;
    flex-direction: column-reverse;
    /* Mobile: photo first (top), text second (bottom) */
    width: 100%;
    min-height: 100vh;
}

.about-origins-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-origins-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.15);
}

.about-origins-content {
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-origins-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0;
}

.about-origins-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-origins-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
}

/* Desktop: Side-by-side layout (TEXT LEFT, PHOTO RIGHT) */
@media (min-width: 900px) {
    .about-origins-layout {
        flex-direction: row;
        min-height: 100vh;
    }

    .about-origins-content {
        width: 50%;
        padding: 6rem 5rem;
        gap: 2rem;
        order: 1;
        /* Left side */
    }

    .about-origins-image {
        width: 50%;
        height: 100vh;
        min-height: auto;
        order: 2;
        /* Right side */
    }

    .about-origins-title {
        font-size: 3rem;
    }

    .about-origins-text {
        gap: 2rem;
    }

    .about-origins-text p {
        font-size: 1.05rem;
        line-height: 1.9;
    }
}

/* SEZIONE 2.5: I MAESTRI E LA VISIONE */
.about-masters {
    background-color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-masters-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* Mobile: Image first */
.about-masters-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-masters-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.15);
}

.about-masters-content {
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.about-masters-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0;
}

.about-masters-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-masters-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
}

/* Desktop: Side-by-side layout (Split Screen) */
@media (min-width: 900px) {
    .about-masters-layout {
        flex-direction: row;
        min-height: 100vh;
    }

    .about-masters-image {
        width: 50%;
        height: 100vh;
        min-height: auto;
    }

    .about-masters-content {
        width: 50%;
        padding: 6rem 5rem;
        gap: 2rem;
    }

    .about-masters-title {
        font-size: 3rem;
    }

    .about-masters-text p {
        font-size: 1.05rem;
        line-height: 1.9;
    }
}

/* SEZIONE 3: LA FILOSOFIA (IL VALORE) - INVERSIONE TOTALE */
.about-philosophy {
    background-color: #000;
    /* Nero Assoluto */
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Image Texture (bassa opacità) */
.about-philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-philosophy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    /* Appena visibile, come una presenza nell'ombra */
    filter: grayscale(100%) contrast(1.2);
}

.about-philosophy-container {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-philosophy-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
    /* Bianco puro */
    margin: 0;
}

.about-philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-philosophy-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    /* Grigio Argento */
    margin: 0;
    text-align: center;
}

/* Desktop: larger typography */
@media (min-width: 900px) {
    .about-philosophy {
        padding: 8rem 2rem;
    }

    .about-philosophy-container {
        gap: 2.5rem;
    }

    .about-philosophy-title {
        font-size: 2.8rem;
    }

    .about-philosophy-text p {
        font-size: 1.15rem;
        line-height: 2;
    }
}

/* SEZIONE 4: HALL OF FAME (AUTORITÀ) */
.about-awards {
    background-color: #fff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-awards-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* Mobile: Image first */
.about-awards-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-awards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) contrast(1.15);
}

.about-awards-content {
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.about-awards-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0;
}

.about-awards-intro,
.about-awards-closing {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
}

.about-awards-closing {
    font-style: italic;
    color: #555;
    margin-top: 1rem;
}

/* Awards List */
.awards-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
}

.award-entry {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.award-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    line-height: 1;
    flex-shrink: 0;
}

.award-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.award-details strong {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

.award-year {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop: Side-by-side layout */
@media (min-width: 900px) {
    .about-awards-layout {
        flex-direction: row;
        min-height: 100vh;
    }

    .about-awards-image {
        width: 50%;
        height: 100vh;
        min-height: auto;
    }

    .about-awards-content {
        width: 50%;
        padding: 6rem 5rem;
        gap: 2rem;
    }

    .about-awards-title {
        font-size: 3rem;
    }

    .about-awards-intro,
    .about-awards-closing {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .awards-list {
        gap: 2rem;
        margin: 1.5rem 0;
    }

    .award-icon {
        font-size: 1.8rem;
    }

    .award-details strong {
        font-size: 1.1rem;
    }

    .award-year {
        font-size: 0.9rem;
    }
}

/* SEZIONE 5: FOOTER CTA */
.about-cta {
    background-color: #fff;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-container {
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-color);
    margin: 0;
}

.about-cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.about-cta-button:hover {
    background-color: #A07F3E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

/* Desktop: larger typography */
@media (min-width: 900px) {
    .about-cta {
        padding: 8rem 2rem;
    }

    .about-cta-container {
        gap: 3rem;
    }

    .about-cta-title {
        font-size: 3rem;
    }

    .about-cta-button {
        padding: 1.4rem 4rem;
        font-size: 1rem;
    }
}

/* ========================================
   SERVICES SECTION (Editorial Boutique)
   ======================================== */
.editorial-services {
    background-color: #F9F9F9;
    /* Grigio Perla leggero per stacco */
    padding: 6rem 2rem;
    color: var(--text-color);
}

.editorial-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header .eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.services-header .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #111;
}

.services-header .section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.service-column {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #111;
    position: relative;
    padding-bottom: 1.5rem;
    /* Spazio per la linea decorativa sotto il titolo, se presente */
}

/* Rimuovo la linea sotto il titolo per pulizia, visto che ora abbiamo linee verticali forti */
/* .service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
} */

.service-desc {
    font-family: var(--font-body);
    /* Torno a Sans-Serif Regular */
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    /* Nero/Grigio Scuro solido */
    margin-bottom: 3rem;
    font-weight: 400;
    /* Regular, non Italic */
}

.service-list-container {
    margin-top: auto;
    /* Spinge la lista in basso se necessario */
}

.list-label {
    display: flex;
    /* Flex per allineare label e linea */
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    /* Oro solido */
    margin-bottom: 1.5rem;
    font-weight: 600;
    /* Più peso */
}

.list-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    background-color: var(--accent-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-family: var(--font-body);
    font-size: 0.8rem;
    /* Leggermente più piccolo */
    font-weight: 600;
    /* Bold/Medium */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
    /* Quasi nero */
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    /* Spazio per bullet */
    line-height: 1.4;
}

.service-list li::before {
    content: '';
    /* Quadratino */
    position: absolute;
    left: 0;
    top: 6px;
    /* Aggiustamento ottico */
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
}

/* Mobile Services Refinement (Golden Divider & Sizes) */
@media (max-width: 899px) {
    .services-header .section-title {
        font-size: 1.8rem;
        /* Fix Overflow "CINEMATOGRAFICA" */
        padding: 0 10px;
    }

    .services-grid {
        gap: 0;
    }

    .service-column:not(:last-child)::after {
        content: '';
        display: block;
        width: 60px;
        height: 1px;
        background-color: var(--accent-color);
        margin: 40px auto;
    }

    .list-label::after {
        display: none;
    }
}

/* Desktop Layout */
@media (min-width: 900px) {
    .editorial-services {
        padding: 8rem 2rem;
    }

    .services-header .section-title {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
    }

    .service-column {
        padding: 0 4rem;
        /* Più spazio orizzontale */
    }

    /* Linee Verticali Solide e Continue */
    .service-column:not(:last-child) {
        border-right: 1px solid rgba(197, 160, 89, 0.4);
        /* Oro solido con leggera trasparenza per non essere pesante */
    }

    .service-title {
        text-align: center;
        min-height: 80px;
        /* Altezza minima per allineamento titoli */
        display: flex;
        align-items: flex-end;
        /* Allinea testo in basso nel box */
        justify-content: center;
    }

    /* .service-title::after {
        left: 50%;
        transform: translateX(-50%);
    } */

    .service-desc {
        text-align: center;
        min-height: 110px;
        /* Altezza minima allineata */
    }

    .list-label {
        justify-content: center;
        /* Centrato */
        flex-direction: column;
        /* Label sopra, linea sotto */
        gap: 0.5rem;
    }

    .list-label::after {
        display: block;
        width: 30px;
        height: 1px;
        background-color: var(--accent-color);
    }

    .service-list {
        text-align: left;
        /* Reset text-align per il contenitore */
        display: inline-block;
        /* Il contenitore si stringe al contenuto */
        margin: 0 auto;
        /* Centra il contenitore nella colonna */
        max-width: 100%;
        /* Sicurezza */
    }

    .service-list li {
        padding-left: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        /* Allinea a sinistra DENTRO il contenitore centrato */
        text-align: left;
        gap: 0.8rem;
        max-width: 100%;
        /* Rimuovo max-width rigida */
        margin-left: 0;
        margin-right: 0;
    }

    .service-list li::before {
        position: static;
        /* Bullet sopra il testo o nascosto? */
        /* "Quadratino oro prima di ogni voce" */
        /* Se centrato, il bullet a sinistra sta male. */
        /* Mettiamo un quadratino piccolo SOPRA il testo o IN LINEA. */
        display: inline-block;
        margin-top: 6px;
        /* Allineamento ottico con la prima riga di testo (basato su line-height e font size) */
        margin-bottom: 0;
        /* Rimuovo margine sotto */
        flex-shrink: 0;
    }
}