/* Intro Studio */
.studio-intro {
    background-color: #fff;
    padding: 70px 60px 0 60px;
    margin-top: 35px;
    text-align: center;
}

.studio-intro .hover-letters {
    display: block;
}

.studio-intro p {
    max-width: 950px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #80BABA;
    text-align: center;
}

.studio-intro .studio-intro-claim {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #033D37;
    margin: 0 auto 18px;
}

/* Hero Studio */
.hero-studio {
    display: flex;
    width: 100%;
    min-height: 65vh;
    background-color: #fff;
    box-shadow: 0 -40px 0 0 #fff;
    padding: 80px 60px 20px 60px;
    margin-top: 35px;
}

.hero-studio-left,
.hero-studio-right {
    flex: 1;
    display: flex;
    padding: 0;
}

.hero-studio .hero-studio-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-box-left,
.hero-box-right {
    width: 100%;
    max-width: 450px;
}

.hero-box-left.hero-box-top {
    align-self: flex-start;
    max-width: 520px;
    padding-top: 50px;
}

.hero-box-right {
    align-self: flex-end;
    margin-left: auto;
    max-width: 520px;
    padding-bottom: 50px;
}

.hero-box-left h3,
.hero-box-right h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #033D37;
    margin-bottom: 15px;
}

.hero-box-left p,
.hero-box-right p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #80BABA;
}

.hero-box-right .why-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-box-right .why-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #80BABA;
    padding-left: 0;
}

.hero-box-right .why-item strong {
    color: #033D37;
    font-weight: 600;
}

.hero-studio-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: none;
}

.hero-studio .hero-studio-claim {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #033D37;
    text-align: center;
    line-height: 1.3;
    margin: 24px auto 0;
    max-width: 520px;
    letter-spacing: 0;
}

.studio-page {
    min-height: 100vh;
    padding: 80px 60px;
    background-color: #fff;
}

.studio-page .container {
    max-width: 1400px;
    margin: 0 auto;
}

    .studio-page h1 {
        font-family: 'Syne', sans-serif;
        color: #033D37;
        margin-bottom: 60px;
        text-align: center;
    }

    /* Studio Text Section */
    .studio-text-section {
        padding: 80px 60px;
        background-color: #fff;
    }

    .studio-text-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .studio-text-container h2 {
        display: block;
        font-family: 'Syne', sans-serif;
        font-size: 2.5rem;
        color: #033D37;
        margin-bottom: 30px;
        text-align: center;
    }

    .studio-text-container p {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: center;
        color: #80BABA;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
    }

    /* Hover Letters Effect */
    .hover-letters {
        display: inline-block;
    }

    .letter-hover {
        display: inline;
        transition: color 0.2s ease;
        white-space: normal;
    }

    .letter-hover:empty {
        display: none !important;
    }

    .letter-hover:hover {
        color: #033D37;
    }

    /* Location Section Hover Letters */
    .location-left .hover-letters {
        display: block;
    }

    .location-left .letter-hover {
        font-size: inherit;
        line-height: inherit;
    }

    .struttura-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 380px) 560px;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .grid-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 32px;
    }

    .grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
        filter: brightness(0.85);
    }

    .grid-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(3, 61, 55, 0.8) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 30px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .grid-overlay span {
        font-family: 'Syne', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        transform: translateY(20px);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .grid-item:hover {
        transform: scale(1.03);
        z-index: 2;
    }

    .grid-item:hover img {
        transform: scale(1.15);
        filter: brightness(1);
    }

    .grid-item:hover .grid-overlay {
        opacity: 1;
    }

    .grid-item:hover .grid-overlay span {
        transform: translateY(0);
    }

    /* Layout uniforme per 6 elementi (2 colonne × 3 righe) */
    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .item-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .item-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .item-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .item-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .item-7 {
        grid-column: 1 / 3;
        grid-row: 4 / 5;
        width: calc((100% - 20px) / 2);
        justify-self: center;
    }

    @media (max-width: 768px) {
        .studio-intro {
            padding: 50px 20px 0 20px;
        }

        .studio-intro p {
            font-size: 1.05rem;
        }

        .studio-intro .studio-intro-claim {
            font-size: 1.5rem;
            margin-bottom: 14px;
        }

        .struttura-section {
            padding: 60px 20px;
        }

        .struttura-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .grid-item {
            height: 400px !important;
        }

        .struttura-container h2 {
            font-size: 2rem;
            margin-bottom: 40px;
        }
    }

    /* Struttura Nav - Hidden on Desktop */
    .struttura-nav {
        display: none;
    }

    /* Preparati alla prima visita Section */
    .prima-visita-section {
        padding: 100px 60px;
        background-color: #fff;
    }

    .prima-visita-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 70px;
        align-items: center;
    }

    .prima-visita-content {
        max-width: 680px;
    }

    .prima-visita-content h2 {
        font-family: 'Syne', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.1;
        color: #033D37;
        margin-bottom: 24px;
    }

    .prima-visita-content p,
    .prima-visita-list {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #80BABA;
    }

    .prima-visita-content p {
        margin-bottom: 30px;
    }

    .prima-visita-content h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: #033D37;
        margin-bottom: 18px;
    }

    .prima-visita-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 34px;
    }

    .prima-visita-list li {
        position: relative;
        padding-left: 24px;
    }

    .prima-visita-list li::before {
        content: '';
        position: absolute;
        top: 0.75em;
        left: 0;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #033D37;
    }

    .prima-visita-list strong {
        color: #033D37;
        font-weight: 600;
    }

    .prima-visita-cta {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, #033D37 0%, #065a52 100%);
        border: none;
        padding: 16px 42px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(3, 61, 55, 0.12);
    }

    .prima-visita-cta:hover {
        color: #fff;
        background: linear-gradient(135deg, #80BABA 0%, #5a9e9e 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(3, 61, 55, 0.15);
    }

    .prima-visita-image-wrap {
        width: 100%;
        max-height: 520px;
        aspect-ratio: 4 / 3.4;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(3, 61, 55, 0.08);
    }

    .prima-visita-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
    }

    .prima-visita-image-wrap:hover .prima-visita-image {
        transform: scale(1.04);
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 100px 60px;
        background-color: #fff;
    }

    .why-choose-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .why-choose-container h2 {
        font-family: 'Syne', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        color: #033D37;
        text-align: center;
        margin-bottom: 80px;
    }

    .why-choose-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .why-choose-item {
        padding: 40px;
        background-color: #f8f9fa;
        border-radius: 32px;
        transition: all 0.3s ease;
    }

    .why-choose-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(3, 61, 55, 0.1);
    }

    .why-choose-number {
        font-family: 'Syne', sans-serif;
        font-size: 3rem;
        font-weight: 700;
        color: #80BABA;
        margin-bottom: 20px;
    }

    .why-choose-item h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #033D37;
        margin-bottom: 15px;
    }

    .why-choose-item p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
    }

    /* Dove ci Troviamo Section */
    .location-section {
        display: flex;
        width: 100%;
        height: 100vh;
        font-family: Arial, sans-serif;
        background-color: #fff;
    }

    .location-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-left: 60px;
        box-sizing: border-box;
        color: #333;
    }

    .location-left h2 {
        font-family: 'Syne', sans-serif;
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
        color: #033D37;
    }

    .location-left p {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 600px;
        color: #80BABA;
    }

    .location-info {
        margin-top: 1rem;
    }

    .location-info p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        color: #033D37;
        margin-bottom: 0.8rem;
    }

    .location-info strong {
        font-weight: 600;
        color: #033D37;
    }

    .location-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: #fff;
        padding-right: 60px;
    }

    .location-map-container {
        width: 80%;
        height: 70%;
        background-color: #fff;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #777;
        position: relative;
        overflow: hidden;
        border-radius: 32px;
    }

    .location-map-box {
        position: absolute;
        width: 85%;
        height: 70%;
        object-fit: cover;
        border-radius: 40px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .location-map-shape {
        position: absolute;
        width: 85%;
        height: 70%;
        background-color: #033D37;
        border-radius: 40px;
        top: 50%;
        left: 50%;
        transform: translate(calc(-50% + 10px), calc(-50% + 10px));
        z-index: 1;
    }

    @media (max-width: 768px) {
        .location-section {
            flex-direction: column;
            height: auto;
        }

        .location-left,
        .location-right {
            width: 100%;
            padding: 40px 20px;
        }

        .location-map-container {
            width: 100%;
            height: 400px;
        }

        .location-left h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .hero-studio {
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
            padding: 0px 20px 20px 20px;
            margin-bottom: 40px;
        }

        .hero-studio-left,
        .hero-studio-right,
        .hero-studio-center {
            flex: none;
            width: 100%;
            padding: 20px 0;
        }

        .hero-box-left,
        .hero-box-right {
            max-width: 100%;
            margin: 0;
            padding: 0;
            min-height: auto;
        }

        .hero-box-left h3,
        .hero-box-right h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .hero-box-left p,
        .hero-box-right p {
            font-size: 0.95rem;
        }

        .hero-studio-img {
            max-height: 400px;
            width: 100%;
            border-radius: 32px;
        }

        .hero-studio .hero-studio-claim {
            font-size: 1.2rem;
            margin-top: 18px;
        }

        .studio-page {
            padding: 60px 20px;
        }

        .studio-page h1 {
            font-size: 2rem;
        }

        /* Studio Text Section */
        .studio-text-section {
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .studio-text-container h2 {
            font-size: 2rem;
            margin-bottom: 30px;
        }

        .studio-text-container p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .studio-text-section::before {
            width: 250px;
            height: 250px;
            top: 10%;
            left: -50px;
        }

        .studio-text-section::after {
            width: 200px;
            height: 200px;
            bottom: 10%;
            right: -50px;
        }

        /* Struttura Section */
        .struttura-section {
            padding: 60px 20px 40px 20px;
            margin-bottom: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .struttura-nav {
            display: flex !important;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .struttura-nav-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #D9EBEB;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .struttura-nav-btn span {
            color: #033D37;
            font-size: 2rem;
            font-weight: 300;
            line-height: 1;
            display: block;

        }

        .struttura-nav-btn:hover {
            background: #80BABA;
            transform: scale(1.05);
        }

        .struttura-nav-btn:active {
            transform: scale(0.95);
        }

        .struttura-container {
            overflow: hidden;
        }

        .struttura-grid {
            display: flex;
            gap: 0;
            scroll-snap-type: x mandatory;
            overflow-x: auto;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 0;
        }

        .struttura-grid::-webkit-scrollbar {
            display: none;
        }

        .grid-item {
            flex: 0 0 100%;
            height: 400px !important;
            scroll-snap-align: center;
            border-radius: 32px;
            margin: 0;
        }

        .grid-item img {
            border-radius: 32px;
        }

        .struttura-text-container h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .grid-overlay {
            opacity: 1;
            background: linear-gradient(to top, rgba(3, 61, 55, 0.85) 0%, transparent 50%);
        }

        .grid-overlay span {
            font-size: 1.3rem;
            padding: 25px;
            transform: translateY(0);
        }

        .struttura-section::before {
            width: 250px;
            height: 250px;
            top: 20%;
            right: -50px;
        }

        .struttura-section::after {
            width: 200px;
            height: 200px;
            bottom: 15%;
            left: -50px;
        }

        /* Preparati alla prima visita Section */
        .prima-visita-section {
            padding: 60px 20px;
            margin-bottom: 40px;
        }

        .prima-visita-container {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .prima-visita-content {
            max-width: 100%;
        }

        .prima-visita-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .prima-visita-content p,
        .prima-visita-list {
            font-size: 1rem;
            line-height: 1.6;
        }

        .prima-visita-content h3 {
            font-size: 1.3rem;
        }

        .prima-visita-list {
            gap: 15px;
            margin-bottom: 28px;
        }

        .prima-visita-cta {
            width: 100%;
            text-align: center;
            padding: 15px 24px;
        }

        .prima-visita-image-wrap {
            max-height: 340px;
            aspect-ratio: 4 / 3;
            border-radius: 32px;
            order: -1;
        }

        .prima-visita-image {
            border-radius: 32px;
        }

        /* Location Section */
        .location-section {
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
            margin-bottom: 40px;
        }

        .location-left {
            padding: 60px 20px 40px 20px;
        }

        .location-left h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .location-left p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .location-info p {
            font-size: 0.95rem;
        }

        .location-right {
            padding: 40px 20px;
            justify-content: flex-end;
        }

        .location-map-container {
            width: 100%;
            height: 350px;
            margin-right: 0;
        }

        .location-map-box,
        .location-map-shape {
            width: 90%;
            height: 80%;
        }

        /* Why Choose Section - Mobile */
        .why-choose-section {
            padding: 60px 20px;
        }

        .why-choose-container h2 {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        .why-choose-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .why-choose-item {
            padding: 30px;
        }

        .why-choose-number {
            font-size: 2rem;
        }

        .why-choose-item h3 {
            font-size: 1.3rem;
        }

        .why-choose-item p {
            font-size: 0.95rem;
        }
    }
