:root {
    --echo-black: #050505;
    --echo-charcoal: #1a1a1a;
    --echo-ivory: #f7f7f5;
    --echo-white: #ffffff;
    --echo-gold: #c9a959;
    --echo-grey: #9da3a4;
    --echo-border: rgba(201, 169, 89, 0.35);
    --echo-page-width: 1440px;
    --echo-container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: var(--echo-white);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* CORNICE CENTRALE DEL SITO */

.site-header,
.site-main,
.site-footer {
    width: min(100%, var(--echo-page-width));
    margin-inline: auto;
}

.site-main {
    overflow: hidden;
    background: var(--echo-black);
    box-shadow:
        -20px 0 50px rgba(0, 0, 0, 0.65),
        20px 0 50px rgba(0, 0, 0, 0.65);
}

.site-header,
.site-footer {
    box-shadow:
        -20px 0 50px rgba(0, 0, 0, 0.65),
        20px 0 50px rgba(0, 0, 0, 0.65);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-container {
    width: min(calc(100% - 48px), var(--echo-container));
    margin-inline: auto;
}

/* ACCESSIBILITÀ */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    background: var(--echo-white);
    color: var(--echo-black);
    clip: auto;
    z-index: 9999;
}

/* HEADER */

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid var(--echo-border);
    border-bottom: 1px solid var(--echo-border);
}

.site-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-height: 54px;
}

.site-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.primary-navigation {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    display: block;
    padding: 30px 0;
    color: var(--echo-white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 21px;
    height: 1px;
    background: var(--echo-gold);
    transition: right 0.25s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    color: var(--echo-gold);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after {
    right: 0;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--echo-border);
    background: transparent;
    color: var(--echo-white);
    padding: 10px 14px;
    cursor: pointer;
}

.menu-toggle-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* TESTI GENERALI */

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 1.05;
}

p {
    margin-top: 0;
}

.section-eyebrow,
.home-eyebrow {
    margin-bottom: 18px;
    color: var(--echo-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* PULSANTI */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--echo-gold);
    color: var(--echo-black);
}

.button-primary:hover {
    background: #ddbd6b;
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: var(--echo-white);
}

.button-outline:hover {
    border-color: var(--echo-gold);
    color: var(--echo-gold);
}

.button-dark {
    background: var(--echo-black);
    color: var(--echo-white);
}

.button-dark:hover {
    background: var(--echo-gold);
    color: var(--echo-black);
}

@media (max-width: 980px) {
    .site-header-inner {
        min-height: 74px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 16px 24px 26px;
        background: var(--echo-black);
        border-bottom: 1px solid var(--echo-border);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .primary-menu a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .primary-menu a::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(calc(100% - 30px), var(--echo-container));
    }

    .custom-logo {
        max-height: 42px;
    }

    .button {
        width: 100%;
    }
}

/* HERO */

.home-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--echo-black);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.66) 34%,
            rgba(0, 0, 0, 0.18) 64%,
            rgba(0, 0, 0, 0.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.5) 0%,
            transparent 32%
        );
    z-index: 1;
    pointer-events: none;
}

.home-hero-media {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
}

.home-hero-content h1 {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--echo-white);
    font-size: clamp(56px, 6.4vw, 104px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.home-hero-content h1 span {
    display: block;
    color: var(--echo-gold);
}

.home-hero-description {
    max-width: 580px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* INTRO */

.section-light {
    background: var(--echo-ivory);
    color: var(--echo-charcoal);
}

.home-intro {
    padding: 110px 0;
}

.home-intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
    gap: 90px;
    align-items: start;
}

.home-section-heading {
    position: relative;
}

.home-section-heading::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin-top: 24px;
    background: var(--echo-gold);
}

.home-section-heading h2 {
    margin-bottom: 0;
    color: var(--echo-charcoal);
    font-size: clamp(48px, 5vw, 76px);
}

.home-section-content {
    max-width: 720px;
}

.home-section-content p {
    margin-bottom: 22px;
    color: rgba(26, 26, 26, 0.78);
    font-size: 17px;
}

.home-section-content .button {
    margin-top: 14px;
}

/* SERVIZI */

.home-services {
    background: var(--echo-black);
    scroll-margin-top: 90px;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    border-right: 1px solid rgba(201, 169, 89, 0.3);
    background: var(--echo-charcoal);
}

.service-card:last-child {
    border-right: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.24) 42%,
            rgba(0, 0, 0, 0.94) 100%
        );
    z-index: 1;
    transition: background 0.4s ease;
}

.service-card img {
    width: 100%;
    height: 100%;
    min-height: 630px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover img {
    transform: scale(1.045);
}

.service-card:hover::after {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.35) 38%,
            rgba(0, 0, 0, 0.98) 100%
        );
}

.service-card-overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 34px 42px;
}

.service-card-overlay h2 {
    margin-bottom: 14px;
    color: var(--echo-white);
    font-size: 35px;
}

.service-card-overlay p {
    min-height: 112px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.65;
}

.service-card-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-card-overlay a::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.25s ease;
}

.service-card-overlay a:hover::after {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card:nth-child(2) {
        border-right: 0;
    }

    .service-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(201, 169, 89, 0.3);
    }
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 650px;
    }

    .home-hero::after {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.62) 60%,
                rgba(0, 0, 0, 0.22) 100%
            );
    }

    .home-intro {
        padding: 80px 0;
    }

    .home-intro-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }
}

@media (max-width: 680px) {
    .home-hero {
        min-height: 620px;
        align-items: flex-end;
    }

    .home-hero-media img {
        object-position: 62% center;
    }

    .home-hero-content {
        padding-top: 130px;
        padding-bottom: 54px;
    }

    .home-hero-content h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .home-hero-description {
        font-size: 15px;
    }

    .home-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .service-card,
    .service-card img {
        min-height: 520px;
    }

    .service-card {
        border-right: 0;
        border-bottom: 1px solid rgba(201, 169, 89, 0.3);
    }

    .service-card:last-child {
        border-bottom: 0;
    }

    .service-card-overlay {
        padding: 30px 24px 34px;
    }

    .service-card-overlay p {
        min-height: 0;
    }
}

/* PORTFOLIO */

.home-portfolio {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.74) 42%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        url("../images/portfolio-bg.jpg") center / cover no-repeat;
}

.home-portfolio-intro {
    max-width: 680px;
    padding: 100px 0;
}

.home-portfolio-intro h2 {
    margin-bottom: 24px;
    color: var(--echo-white);
    font-size: clamp(48px, 5vw, 78px);
}

.home-portfolio-intro p {
    max-width: 590px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

/* CTA FINALE */

.home-cta {
    padding: 110px 0;
    background: var(--echo-ivory);
    color: var(--echo-charcoal);
}

.home-cta-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(56px, 6vw, 96px);
}

.home-cta-media {
    position: relative;
    min-height: 410px;
    margin: 0;
    overflow: hidden;
}

.home-cta-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 52%;
    filter: saturate(0.82) contrast(0.96);
}

.home-cta-content {
    max-width: 760px;
}

.home-cta-content h2 {
    margin-bottom: 24px;
    color: var(--echo-charcoal);
    font-size: clamp(50px, 5vw, 82px);
}

.home-cta-content p {
    max-width: 580px;
    margin-bottom: 30px;
    color: rgba(26, 26, 26, 0.75);
    font-size: 17px;
}

/* PAGINA CHI SIAMO */

.standard-page-header {
    padding: 110px 0 90px;
    background: var(--echo-black);
}

.standard-page-header h1 {
    max-width: 900px;
    margin-bottom: 0;
    font-size: clamp(58px, 7vw, 104px);
}

.standard-page-content {
    min-height: 360px;
    padding: 100px 0;
}

.standard-page-prose {
    max-width: 860px;
}

.standard-page-prose > *:last-child {
    margin-bottom: 0;
}

.standard-page-prose h2,
.standard-page-prose h3 {
    margin-top: 50px;
}

.standard-page-prose a {
    color: #8f6f22;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    background: var(--echo-black);
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 42%, rgba(5, 5, 5, 0.22) 78%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, transparent 48%);
}

.about-hero-media {
    position: absolute;
    inset: 0 0 0 46%;
    z-index: -2;
    overflow: hidden;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 54%;
    filter: saturate(0.72) contrast(1.03);
}

.about-hero-content {
    padding-top: 150px;
    padding-bottom: 96px;
}

.about-hero-content h1 {
    max-width: 900px;
    margin: 12px 0 26px;
    font-size: clamp(58px, 7vw, 106px);
    line-height: 0.92;
}

.about-hero-content h1 span {
    color: var(--echo-gold);
}

.about-hero-content > p:last-child {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.about-intro,
.about-vision,
.about-network {
    padding: 120px 0;
}

.about-intro-grid,
.about-network-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(70px, 9vw, 140px);
}

.about-intro h2,
.about-network h2,
.about-section-heading h2,
.about-location-intro h2 {
    font-size: clamp(48px, 5.5vw, 78px);
}

.about-intro-copy p,
.about-network-grid > div:last-child p {
    max-width: 640px;
    color: rgba(26, 26, 26, 0.72);
}

.about-lead {
    color: var(--echo-charcoal) !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
}

.about-areas,
.about-method,
.about-locations {
    padding: 120px 0;
    background: var(--echo-black);
}

.about-section-heading {
    max-width: 820px;
    margin-bottom: 70px;
}

.about-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--echo-border);
    border-bottom: 1px solid var(--echo-border);
}

.about-area-card {
    min-height: 360px;
    padding: 38px 28px;
    border-right: 1px solid var(--echo-border);
}

.about-area-card:last-child {
    border-right: 0;
}

.about-area-card > span,
.about-method-grid li > span,
.about-location-label {
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-area-card h3,
.about-method-grid h3,
.about-locations h3 {
    margin: 38px 0 18px;
    font-size: 31px;
}

.about-area-card p {
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
}

.about-area-card a {
    display: inline-block;
    margin-top: 24px;
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-vision-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.about-vision-media {
    min-height: 620px;
    margin: 0;
    overflow: hidden;
}

.about-vision-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.about-vision-copy h2 {
    margin-bottom: 30px;
    font-size: clamp(45px, 5vw, 72px);
}

.about-vision-copy p {
    color: rgba(26, 26, 26, 0.72);
}

.about-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.about-method-grid li {
    min-height: 280px;
    padding: 34px 28px;
    border-top: 1px solid var(--echo-border);
    border-right: 1px solid var(--echo-border);
}

.about-method-grid li:last-child {
    border-right: 0;
}

.about-method-grid p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.about-locations-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 70px;
}

.about-locations article {
    padding-top: 8px;
    border-top: 1px solid var(--echo-border);
}

.about-locations article h3 {
    margin-top: 30px;
}

.about-locations article p:not(.about-location-label) {
    color: rgba(255, 255, 255, 0.62);
}

.about-cta {
    padding: 100px 0;
    background: var(--echo-ivory);
    color: var(--echo-charcoal);
}

.about-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.about-cta h2 {
    max-width: 840px;
    font-size: clamp(48px, 5.6vw, 82px);
}

.about-cta .button {
    flex: 0 0 auto;
    margin-bottom: 12px;
}

/* PAGINA FOTOGRAFIA */

.photography-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    background: var(--echo-black);
}

.photography-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 44%, rgba(5, 5, 5, 0.14) 78%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, transparent 46%);
}

.photography-hero-media {
    position: absolute;
    inset: 0 0 0 47%;
    z-index: -2;
    overflow: hidden;
}

.photography-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 33%;
    filter: saturate(0.74) contrast(1.05) brightness(0.86);
}

.photography-hero-content {
    padding: 150px 0 92px;
}

.photography-hero h1 {
    max-width: 1020px;
    margin: 12px 0 26px;
    font-size: clamp(58px, 7vw, 104px);
    line-height: 0.92;
}

.photography-hero h1 span {
    color: var(--echo-gold);
}

.photography-hero-content > p:not(.section-eyebrow) {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.photography-intro,
.photography-production,
.photography-quality {
    padding: 120px 0;
}

.photography-intro-grid,
.photography-quality-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(70px, 9vw, 140px);
}

.photography-intro h2,
.photography-quality h2,
.photography-section-heading h2 {
    font-size: clamp(48px, 5.4vw, 78px);
}

.photography-intro-copy p,
.photography-quality-grid > div:last-child p {
    max-width: 650px;
    color: rgba(26, 26, 26, 0.72);
}

.photography-lead {
    color: var(--echo-charcoal) !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.18;
}

.photography-services,
.photography-method {
    padding: 120px 0;
    background: var(--echo-black);
}

.photography-section-heading {
    max-width: 860px;
    margin-bottom: 70px;
}

.photography-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--echo-border);
    border-left: 1px solid var(--echo-border);
}

.photography-services-grid article {
    min-height: 310px;
    padding: 36px 30px;
    border-right: 1px solid var(--echo-border);
    border-bottom: 1px solid var(--echo-border);
}

.photography-services-grid span,
.photography-method-grid li > span {
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.photography-services-grid h3,
.photography-method-grid h3 {
    margin: 38px 0 18px;
    font-size: 30px;
}

.photography-services-grid p,
.photography-method-grid p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.photography-production-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.photography-production-media {
    min-height: 650px;
    margin: 0;
    overflow: hidden;
}

.photography-production-media img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.photography-production-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(46px, 5vw, 72px);
}

.photography-production-copy > p:not(.section-eyebrow) {
    color: rgba(26, 26, 26, 0.72);
}

.photography-production-list {
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(26, 26, 26, 0.18);
}

.photography-production-list li {
    position: relative;
    padding: 15px 0 15px 26px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.14);
    color: rgba(26, 26, 26, 0.78);
    font-size: 14px;
}

.photography-production-list li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--echo-gold);
}

.photography-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--echo-border);
}

.photography-method-grid li {
    min-height: 280px;
    padding: 34px 28px;
    border-right: 1px solid var(--echo-border);
}

.photography-method-grid li:last-child {
    border-right: 0;
}

.photography-portfolio {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #24101f;
}

.photography-portfolio-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/portfolio-bg.jpg");
    background-position: center;
    background-size: cover;
}

.photography-portfolio::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(20, 6, 17, 0.98) 0%, rgba(20, 6, 17, 0.88) 45%, rgba(20, 6, 17, 0.18) 76%);
}

.photography-portfolio-content {
    padding: 95px 0;
}

.photography-portfolio h2 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(50px, 5.5vw, 80px);
}

.photography-portfolio-content > p:not(.section-eyebrow) {
    max-width: 570px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
}

.photography-cta {
    padding: 100px 0;
    background: var(--echo-ivory);
    color: var(--echo-charcoal);
}

.photography-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 70px;
}

.photography-cta h2 {
    margin-bottom: 20px;
    font-size: clamp(48px, 5.5vw, 80px);
}

.photography-cta-inner > div > p:last-child {
    max-width: 680px;
    color: rgba(26, 26, 26, 0.72);
}

.photography-cta .button {
    flex: 0 0 auto;
    margin-bottom: 12px;
}

/* PAGINA PRODUZIONI VIDEO */

.video-hero-media img {
    object-position: center 53%;
    filter: saturate(0.68) contrast(1.05) brightness(0.82);
}

.video-production-media img {
    object-position: center 48%;
}

.video-format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.video-format-tags span {
    min-width: 72px;
    padding: 10px 14px;
    border: 1px solid rgba(26, 26, 26, 0.22);
    color: var(--echo-charcoal);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
}

.video-studio {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--echo-black);
}

.video-studio::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.85) 47%, rgba(5, 5, 5, 0.16) 80%);
}

.video-studio-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.video-studio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    filter: saturate(0.7) brightness(0.82);
}

.video-studio-content {
    padding: 100px 0;
}

.video-studio h2 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(50px, 5.5vw, 80px);
}

.video-studio-content > p:not(.section-eyebrow) {
    max-width: 600px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
}

/* PAGINA ACADEMY */

.academy-hero-media img {
    object-position: center 45%;
    filter: saturate(0.7) contrast(1.04) brightness(0.78);
}

.academy-courses {
    padding: 120px 0;
    background: var(--echo-black);
}

.academy-section-heading > p:last-child {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.64);
}

.academy-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--echo-border);
    border-left: 1px solid var(--echo-border);
}

.academy-course-card {
    min-height: 590px;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border-right: 1px solid var(--echo-border);
    border-bottom: 1px solid var(--echo-border);
}

.academy-course-featured {
    background: rgba(201, 169, 89, 0.08);
}

.academy-course-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
}

.academy-course-status,
.academy-course-number,
.academy-course-category {
    color: var(--echo-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.academy-course-number {
    color: rgba(255, 255, 255, 0.42);
}

.academy-course-card h3 {
    min-height: 76px;
    margin: 16px 0 20px;
    font-size: 34px;
}

.academy-course-card > p:not(.academy-course-category) {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.academy-course-facts {
    margin: auto 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.academy-course-facts > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.academy-course-facts dt {
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    text-transform: uppercase;
}

.academy-course-facts dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    text-align: right;
}

.academy-course-facts dd strong {
    color: var(--echo-gold);
}

.academy-course-link {
    align-self: flex-start;
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.academy-course-link::after {
    content: " ↓";
}

.academy-course-detail {
    padding: 120px 0;
    scroll-margin-top: 30px;
}

.academy-detail-dark {
    background: var(--echo-black);
    color: var(--echo-white);
}

.academy-detail-grid {
    display: grid;
    grid-template-columns: 90px minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(45px, 6vw, 90px);
}

.academy-detail-index {
    color: var(--echo-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.academy-detail-heading h2 {
    font-size: clamp(44px, 4.7vw, 68px);
}

.academy-detail-copy > ul {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(26, 26, 26, 0.18);
}

.academy-detail-copy > ul li {
    position: relative;
    padding: 14px 0 14px 25px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.13);
    color: rgba(26, 26, 26, 0.75);
    font-size: 14px;
}

.academy-detail-copy > ul li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--echo-gold);
}

.academy-detail-dark .academy-detail-copy > ul {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.academy-detail-dark .academy-detail-copy > ul li {
    border-bottom-color: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.65);
}

.academy-lead-dark {
    color: var(--echo-white) !important;
}

.academy-detail-cta {
    margin-top: 36px;
}

.academy-detail-cta p {
    margin-bottom: 6px;
    color: rgba(26, 26, 26, 0.7);
    font-size: 14px;
}

.academy-detail-cta .button {
    margin-top: 20px;
}

.academy-detail-dark .academy-detail-cta p {
    color: rgba(255, 255, 255, 0.67);
}

.academy-method {
    padding: 120px 0;
    background: var(--echo-black);
}

.academy-method-media img {
    object-position: center 48%;
}

.academy-method-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(46px, 5vw, 72px);
}

.academy-method-copy > p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.66);
}

.academy-final-cta {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* PAGINA SALA POSA */

.studio-hero-media img {
    object-position: center 49%;
    filter: saturate(0.64) contrast(1.04) brightness(0.78);
}

.studio-uses,
.studio-included,
.studio-location {
    padding: 120px 0;
    background: var(--echo-black);
}

.studio-gallery {
    padding: 120px 0;
}

.studio-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
}

.studio-gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.studio-gallery-main,
.studio-gallery-main img {
    min-height: 780px;
}

.studio-gallery-main img,
.studio-gallery-side figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-gallery-main img {
    object-position: center 48%;
}

.studio-gallery-side {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 28px;
}

.studio-gallery-side figure,
.studio-gallery-side figure img {
    min-height: 460px;
}

.studio-gallery-side figure img {
    object-position: center 58%;
}

.studio-gallery-copy {
    padding: 38px;
    background: var(--echo-charcoal);
    color: var(--echo-white);
}

.studio-gallery-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(35px, 3.4vw, 50px);
}

.studio-gallery-copy > p:last-child {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.studio-included-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(70px, 9vw, 140px);
}

.studio-included .photography-section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.63);
}

.studio-included-list {
    border-top: 1px solid var(--echo-border);
}

.studio-included-list article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201, 169, 89, 0.22);
}

.studio-included-list article > span,
.studio-booking-grid li > span {
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.studio-included-list h3 {
    margin-bottom: 8px;
    font-size: 27px;
}

.studio-included-list p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.studio-booking {
    padding: 120px 0;
}

.studio-booking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.2);
    list-style: none;
}

.studio-booking-grid li {
    min-height: 280px;
    padding: 34px 28px;
    border-right: 1px solid rgba(26, 26, 26, 0.18);
}

.studio-booking-grid li:last-child {
    border-right: 0;
}

.studio-booking-grid h3 {
    margin: 38px 0 17px;
    color: var(--echo-charcoal);
    font-size: 29px;
}

.studio-booking-grid p {
    color: rgba(26, 26, 26, 0.68);
    font-size: 14px;
}

.studio-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(70px, 9vw, 140px);
}

.studio-location h2 {
    font-size: clamp(50px, 5.5vw, 80px);
}

.studio-lead-dark {
    color: var(--echo-white) !important;
}

.studio-address > p:not(.photography-lead) {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.64);
}

.studio-final-cta {
    scroll-margin-top: 30px;
}

/* PAGINA PORTFOLIO */

.portfolio-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    background: #24101f;
}

.portfolio-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(20, 6, 17, 0.98) 0%, rgba(20, 6, 17, 0.84) 44%, rgba(20, 6, 17, 0.16) 78%);
}

.portfolio-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/portfolio-bg.jpg");
    background-position: center;
    background-size: cover;
}

.portfolio-hero-content {
    padding: 150px 0 92px;
}

.portfolio-hero h1 {
    max-width: 980px;
    margin: 12px 0 26px;
    font-size: clamp(60px, 7vw, 108px);
    line-height: 0.92;
}

.portfolio-hero h1 span {
    color: var(--echo-gold);
}

.portfolio-hero-content > p:last-child {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 18px;
}

.portfolio-intro {
    padding: 120px 0;
}

.portfolio-intro h2 {
    font-size: clamp(48px, 5.4vw, 78px);
}

.portfolio-projects {
    padding: 100px 0 120px;
    background: var(--echo-black);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.portfolio-filters a {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.portfolio-filters a:hover,
.portfolio-filters a.is-active {
    border-color: var(--echo-gold);
    background: var(--echo-gold);
    color: var(--echo-black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 28px;
}

.portfolio-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: var(--echo-charcoal);
}

.portfolio-card:nth-child(4n + 2) .portfolio-card-media,
.portfolio-card:nth-child(4n + 3) .portfolio-card-media {
    aspect-ratio: 4 / 5;
}

.portfolio-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.portfolio-card-link:hover .portfolio-card-media img {
    transform: scale(1.025);
    filter: brightness(0.86);
}

.portfolio-card-placeholder {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(201, 169, 89, 0.13), transparent 55%),
        var(--echo-charcoal);
}

.portfolio-card-content {
    padding-top: 24px;
}

.portfolio-card-category {
    margin-bottom: 12px;
    color: var(--echo-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-card-content h2 {
    margin-bottom: 14px;
    font-size: clamp(31px, 3vw, 46px);
}

.portfolio-card-content > p:not(.portfolio-card-category) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.portfolio-card-content > span {
    display: inline-block;
    margin-top: 14px;
    color: var(--echo-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.portfolio-empty {
    max-width: 820px;
    padding: 70px 0 80px;
}

.portfolio-empty h2 {
    margin-bottom: 24px;
    font-size: clamp(45px, 5vw, 70px);
}

.portfolio-empty > p:not(.section-eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.62);
}

.portfolio-admin-note {
    margin-top: 30px;
    padding: 15px 18px;
    border-left: 2px solid var(--echo-gold);
    background: rgba(201, 169, 89, 0.08);
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13px;
}

.portfolio-fallback-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--echo-border);
    border: 1px solid var(--echo-border);
}

.portfolio-fallback-grid a {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--echo-black);
}

.portfolio-fallback-grid a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, transparent 58%);
}

.portfolio-fallback-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) brightness(0.82);
    transition: transform 0.5s ease;
}

.portfolio-fallback-grid a:hover img {
    transform: scale(1.035);
}

.portfolio-fallback-grid span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 29px;
}

.portfolio-cta {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* SINGOLO PROGETTO */

.project-hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    background: var(--echo-black);
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.15) 70%);
}

.project-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.project-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.8);
}

.project-hero-content {
    padding: 150px 0 80px;
}

.project-hero h1 {
    max-width: 1000px;
    margin-bottom: 24px;
    font-size: clamp(58px, 7vw, 104px);
}

.project-hero-content > p:last-child {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.project-content {
    padding: 110px 0;
}

.project-prose {
    max-width: 1080px;
}

.project-prose > p,
.project-prose > h2,
.project-prose > h3,
.project-prose > ul,
.project-prose > ol {
    max-width: 760px;
}

.project-prose h2 {
    margin-top: 65px;
    font-size: clamp(40px, 4vw, 58px);
}

.project-prose .wp-block-image,
.project-prose .wp-block-gallery {
    margin: 60px 0;
}

.project-back {
    padding: 34px 0;
    border-top: 1px solid var(--echo-border);
    background: var(--echo-black);
}

.project-back a {
    color: var(--echo-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* PAGINA CONTATTI */

.contact-hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    overflow: hidden;
    background: var(--echo-black);
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 45%, rgba(5, 5, 5, 0.18) 78%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, transparent 48%);
}

.contact-hero-media {
    position: absolute;
    inset: 0 0 0 48%;
    z-index: -2;
    overflow: hidden;
}

.contact-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    filter: saturate(0.66) contrast(1.04) brightness(0.78);
}

.contact-hero-content {
    padding: 150px 0 90px;
}

.contact-hero h1 {
    max-width: 1020px;
    margin: 12px 0 26px;
    font-size: clamp(60px, 7vw, 106px);
    line-height: 0.92;
}

.contact-hero h1 span {
    color: var(--echo-gold);
}

.contact-hero-content > p:last-child {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 18px;
}

.contact-main {
    padding: 120px 0;
    scroll-margin-top: 20px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
    gap: clamp(70px, 9vw, 130px);
}

.contact-form-column h2 {
    margin-bottom: 20px;
    font-size: clamp(48px, 5vw, 72px);
}

.contact-form-intro {
    max-width: 680px;
    margin-bottom: 42px;
    color: rgba(26, 26, 26, 0.68);
}

.contact-notice {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-left: 3px solid;
    font-size: 14px;
}

.contact-notice-success {
    border-color: #4d7d5b;
    background: rgba(77, 125, 91, 0.1);
    color: #2e5739;
}

.contact-notice-error {
    border-color: #9b4b45;
    background: rgba(155, 75, 69, 0.09);
    color: #71332e;
}

.contact-notice a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form {
    position: relative;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-field {
    margin-bottom: 28px;
}

.contact-field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(26, 26, 26, 0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.28);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--echo-charcoal);
    transition: border-color 0.25s ease;
}

.contact-field input,
.contact-field select {
    min-height: 50px;
    padding: 8px 0;
}

.contact-field textarea {
    min-height: 180px;
    padding: 14px 0;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--echo-gold);
}

.contact-field textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.contact-privacy {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 720px;
    margin: 0 0 30px;
    color: rgba(26, 26, 26, 0.65);
    font-size: 12px;
    cursor: pointer;
}

.contact-privacy input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--echo-gold);
}

.contact-privacy a {
    color: #82651f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-details {
    padding-left: 44px;
    border-left: 1px solid rgba(26, 26, 26, 0.16);
}

.contact-details-block {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.14);
}

.contact-details-block:last-child {
    margin-bottom: 0;
}

.contact-details-label {
    margin-bottom: 14px;
    color: #8b6c22;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-details-block > a {
    color: var(--echo-charcoal);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
}

.contact-details address {
    margin-bottom: 12px;
    color: var(--echo-charcoal);
    font-style: normal;
}

.contact-details-block > p:not(.contact-details-label) {
    color: rgba(26, 26, 26, 0.62);
    font-size: 13px;
}

.contact-details-note ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(26, 26, 26, 0.67);
    font-size: 13px;
}

.contact-details-note li + li {
    margin-top: 6px;
}

.contact-areas {
    padding: 110px 0 120px;
    background: var(--echo-black);
}

.contact-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--echo-border);
    border-left: 1px solid var(--echo-border);
}

.contact-areas-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 125px;
    padding: 25px 30px;
    border-right: 1px solid var(--echo-border);
    border-bottom: 1px solid var(--echo-border);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    transition: background 0.25s ease, color 0.25s ease;
}

.contact-areas-grid a span {
    color: var(--echo-gold);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
}

.contact-areas-grid a:hover {
    background: var(--echo-gold);
    color: var(--echo-black);
}

.contact-areas-grid a:hover span {
    color: var(--echo-black);
}

/* FOOTER */

.site-footer {
    padding-top: 80px;
    background: var(--echo-black);
    color: var(--echo-white);
    border-top: 1px solid var(--echo-border);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 70px;
    padding-bottom: 64px;
}

.site-footer-logo {
    display: inline-flex;
    margin-bottom: 22px;
}

.site-footer-brand p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer h2 {
    margin-bottom: 22px;
    color: var(--echo-gold);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.footer-menu li + li {
    margin-top: 10px;
}

.footer-menu a,
.site-footer-contacts a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease;
}

.footer-menu a:hover,
.site-footer-contacts a:hover {
    color: var(--echo-gold);
}

.site-footer address {
    font-style: normal;
}

.site-footer address p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.site-footer-legal {
    display: flex;
    gap: 22px;
}

.site-footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.site-footer-legal a:hover {
    color: var(--echo-gold);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 50px 0 0;
        border-top: 1px solid rgba(26, 26, 26, 0.16);
        border-left: 0;
    }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 40px;
    }

    .portfolio-fallback-grid {
        grid-template-columns: 1fr 1fr;
    }

    .studio-gallery-grid,
    .studio-included-grid,
    .studio-location-grid {
        grid-template-columns: 1fr;
    }

    .studio-gallery-main,
    .studio-gallery-main img {
        min-height: 620px;
    }

    .studio-booking-grid {
        grid-template-columns: 1fr 1fr;
    }

    .studio-booking-grid li:nth-child(2) {
        border-right: 0;
    }

    .studio-booking-grid li:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(26, 26, 26, 0.18);
    }

    .academy-courses-grid {
        grid-template-columns: 1fr;
    }

    .academy-course-card {
        min-height: auto;
    }

    .academy-course-card h3 {
        min-height: auto;
    }

    .academy-course-facts {
        margin-top: 40px;
    }

    .academy-detail-grid {
        grid-template-columns: 60px 1fr;
    }

    .academy-detail-copy {
        grid-column: 2;
    }

    .photography-hero-media {
        left: 35%;
    }

    .photography-intro-grid,
    .photography-quality-grid,
    .photography-production-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

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

    .photography-method-grid {
        grid-template-columns: 1fr 1fr;
    }

    .photography-method-grid li:nth-child(2) {
        border-right: 0;
    }

    .photography-method-grid li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--echo-border);
    }

    .photography-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-hero-media {
        left: 34%;
    }

    .about-intro-grid,
    .about-network-grid,
    .about-vision-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .about-areas-grid,
    .about-method-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-area-card:nth-child(2),
    .about-method-grid li:nth-child(2) {
        border-right: 0;
    }

    .about-area-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--echo-border);
    }

    .about-locations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-location-intro {
        grid-column: 1 / -1;
    }

    .about-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-cta-media {
        min-height: 430px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        min-height: 620px;
    }

    .contact-hero-media {
        inset: 0;
        opacity: 0.48;
    }

    .contact-hero::after {
        background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.42) 100%);
    }

    .contact-hero-content {
        padding: 120px 0 68px;
    }

    .contact-main,
    .contact-areas {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-form-row,
    .contact-details,
    .contact-areas-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        gap: 0;
    }

    .contact-areas-grid a {
        min-height: 105px;
    }

    .portfolio-hero,
    .project-hero {
        min-height: 620px;
    }

    .portfolio-hero::after {
        background: rgba(20, 6, 17, 0.68);
    }

    .portfolio-hero-media {
        background-position: 68% center;
    }

    .portfolio-intro,
    .portfolio-projects,
    .project-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .portfolio-grid,
    .portfolio-fallback-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card:nth-child(n) .portfolio-card-media {
        aspect-ratio: 4 / 5;
    }

    .portfolio-fallback-grid a {
        min-height: 470px;
    }

    .studio-uses,
    .studio-gallery,
    .studio-included,
    .studio-booking,
    .studio-location {
        padding: 80px 0;
    }

    .studio-gallery-main,
    .studio-gallery-main img {
        min-height: 500px;
    }

    .studio-gallery-side figure,
    .studio-gallery-side figure img {
        min-height: 430px;
    }

    .studio-gallery-copy {
        padding: 30px 24px;
    }

    .studio-booking-grid {
        grid-template-columns: 1fr;
    }

    .studio-booking-grid li {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(26, 26, 26, 0.18);
    }

    .studio-booking-grid li:last-child {
        border-bottom: 0;
    }

    .academy-courses,
    .academy-course-detail,
    .academy-method {
        padding: 80px 0;
    }

    .academy-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .academy-detail-copy {
        grid-column: auto;
    }

    .academy-detail-index {
        padding-bottom: 12px;
        border-bottom: 1px solid var(--echo-border);
    }

    .video-studio {
        min-height: 580px;
    }

    .video-studio::after {
        background: rgba(5, 5, 5, 0.72);
    }

    .video-studio-media img {
        object-position: 62% center;
    }

    .photography-hero {
        min-height: 650px;
    }

    .photography-hero-media {
        inset: 0;
        opacity: 0.5;
    }

    .photography-hero::after {
        background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.42) 100%);
    }

    .photography-hero-content {
        padding: 120px 0 68px;
    }

    .photography-intro,
    .photography-production,
    .photography-quality,
    .photography-services,
    .photography-method {
        padding: 80px 0;
    }

    .photography-services-grid,
    .photography-method-grid {
        grid-template-columns: 1fr;
    }

    .photography-services-grid article,
    .photography-method-grid li {
        min-height: auto;
        border-right: 0;
    }

    .photography-method-grid li {
        border-bottom: 1px solid var(--echo-border);
    }

    .photography-method-grid li:last-child {
        border-bottom: 0;
    }

    .photography-production-media,
    .photography-production-media img {
        min-height: 460px;
    }

    .photography-portfolio {
        min-height: 570px;
    }

    .photography-portfolio-bg {
        background-position: 69% center;
    }

    .photography-portfolio::after {
        background: rgba(20, 6, 17, 0.76);
    }

    .photography-cta {
        padding: 76px 0;
    }

    .standard-page-header {
        padding: 80px 0 64px;
    }

    .standard-page-content {
        padding: 72px 0;
    }

    .about-hero {
        min-height: 610px;
    }

    .about-hero-media {
        inset: 0;
        opacity: 0.48;
    }

    .about-hero::after {
        background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.45) 100%);
    }

    .about-hero-content {
        padding-top: 120px;
        padding-bottom: 68px;
    }

    .about-intro,
    .about-vision,
    .about-network,
    .about-areas,
    .about-method,
    .about-locations {
        padding: 80px 0;
    }

    .about-areas-grid,
    .about-method-grid,
    .about-locations-grid {
        grid-template-columns: 1fr;
    }

    .about-area-card,
    .about-method-grid li {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--echo-border);
    }

    .about-area-card:last-child,
    .about-method-grid li:last-child {
        border-bottom: 0;
    }

    .about-location-intro {
        grid-column: auto;
    }

    .about-vision-media,
    .about-vision-media img {
        min-height: 460px;
    }

    .about-cta {
        padding: 76px 0;
    }

    .home-portfolio {
        min-height: 540px;
        background-position: 68% center;
    }

    .home-portfolio-intro {
        padding: 76px 0;
    }

    .home-cta {
        padding: 76px 0;
    }

    .home-cta-grid {
        gap: 36px;
    }

    .home-cta-media {
        min-height: 340px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer-brand {
        grid-column: auto;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-legal {
        flex-wrap: wrap;
    }
}

/* CORNICE RESPONSIVE */

@media (max-width: 1440px) {
    .site-header,
    .site-main,
    .site-footer {
        width: 100%;
        box-shadow: none;
    }
}


/* HEADER CENTRATO E DISTANZA DALLA HERO */

@media (min-width: 981px) {
    .site-header {
        padding-top: 20px;
    }

    .site-header-inner {
        min-height: 0;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .site-branding {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .site-logo-link {
        justify-content: center;
    }

    .custom-logo {
        max-height: 66px;
    }

    .primary-navigation {
        width: 100%;
        margin-left: 0;
        border-top: 1px solid rgba(201, 169, 89, 0.18);
    }

    .primary-menu {
        justify-content: center;
    }

    .primary-menu a {
        padding: 17px 0 20px;
    }

    .primary-menu a::after {
        bottom: 10px;
    }
}

.home-hero {
    margin-top: 28px;
}

@media (max-width: 980px) {
    .home-hero {
        margin-top: 16px;
    }
}

@media (max-width: 980px) {
    .primary-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 18px 24px 28px;
        background: #050505;
        border-top: 1px solid rgba(201, 169, 89, 0.25);
        border-bottom: 1px solid rgba(201, 169, 89, 0.35);
        z-index: 1000;
    }

    .primary-navigation.is-open {
        display: block !important;
    }

    .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
}

/* ==========================================================
   FIX DEFINITIVO MENU MOBILE
   ========================================================== */

@media (max-width: 980px) {
    body.menu-is-open {
        overflow: hidden;
    }

    .site-header {
        position: relative;
        z-index: 9999;
    }

    .site-header-inner {
        position: relative;
        min-height: 78px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
    }

    .site-branding {
        width: auto;
        max-width: calc(100% - 92px);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .site-branding .custom-logo-link,
    .site-logo-link {
        display: inline-flex;
        align-items: center;
    }

    .site-branding .custom-logo {
        width: auto;
        max-width: min(240px, 100%);
        max-height: 46px;
    }

    .menu-toggle {
        position: relative;
        z-index: 10002;
        flex: 0 0 auto;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-width: 92px;
        min-height: 44px;
        margin: 0;
        padding: 10px 13px;
        border: 1px solid var(--echo-border);
        border-radius: 0;
        background: #050505;
        color: var(--echo-white);
        cursor: pointer;
        -webkit-appearance: none;
        appearance: none;
    }

    .menu-toggle-icon {
        width: 18px;
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
    }

    .menu-toggle-icon span {
        display: block;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform-origin: center;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .menu-toggle-label {
        line-height: 1;
    }

    .menu-toggle[aria-expanded="true"] {
        color: var(--echo-gold);
        border-color: var(--echo-gold);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    .primary-navigation {
        position: absolute !important;
        top: calc(100% + 1px) !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 10001 !important;
        width: 100% !important;
        max-height: 0;
        display: block !important;
        padding: 0 24px !important;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        background: rgba(5, 5, 5, 0.99) !important;
        border-top: 1px solid rgba(201, 169, 89, 0.22);
        border-bottom: 1px solid rgba(201, 169, 89, 0.35);
        box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
        transform: translateY(-8px);
        transition:
            max-height 0.38s ease,
            padding 0.38s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s linear 0.38s;
    }

    .primary-navigation.is-open {
        max-height: calc(100vh - 90px);
        padding: 16px 24px 28px !important;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        transition:
            max-height 0.38s ease,
            padding 0.38s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0s linear 0s;
    }

    .primary-menu,
    .primary-navigation .menu {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .primary-menu > li,
    .primary-navigation .menu > li {
        width: 100%;
        margin: 0;
    }

    .primary-menu a,
    .primary-navigation .menu a {
        width: 100%;
        display: block;
        padding: 15px 0 !important;
        color: var(--echo-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .primary-menu li:last-child > a,
    .primary-navigation .menu li:last-child > a {
        border-bottom: 0;
    }

    .primary-menu a::after,
    .primary-navigation .menu a::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .site-header-inner {
        min-height: 72px;
    }

    .site-branding .custom-logo {
        max-width: 185px;
        max-height: 40px;
    }

    .menu-toggle {
        min-width: 78px;
        padding-inline: 10px;
    }

    .menu-toggle-label {
        font-size: 10px;
    }
}
