/* Struttura fedele a therapi.net.au */

:root {
    --max-width: 1400px;
    --gutter: clamp(1.25rem, 3vw, 3rem);
    --font: "Nunito", system-ui, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --color-navy: #1a2b3c;
    --color-body: #333333;
    --color-white: #ffffff;
    --color-header-bg: #ffffff;
    --color-header-border-top: #c2a58f;
    --color-header-border-bottom: #6b685c;
    --page-frame-border: 1px solid var(--color-header-border-bottom);
    --color-header-logo: #4a5d70;
    --color-header-btn: #6b685c;
    --color-hero-left: #ddd8cf;
    --color-hero-panel: #3d3d3d;
    --color-service-a: #ffffff;
    --color-service-b: #dec8e5;
    --color-purple: #dec8e5;
    --color-purple-deep: #8f72c8;
    --color-meet-bg: #ffffff;
    --color-meet-photo: #a8a098;
    --color-meet-accent: #716859;
    --color-approach: #9d958a;
    --color-offer-center: #c9b8a8;
    --color-offer-accent: #5a6b7a;
    --header-height: 5rem;
    --hero-photo-ratio: 807 / 1194;
    --meet-photo-ratio: 768 / 1365;
    --approach-photo-ratio: 736 / 1089;
    --offer-accent-ratio: 1 / 1;
    --offer-center-ratio: 736 / 454;
    --hero-col-width: clamp(240px, 32vw, 420px);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-navy);
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2rem, 4.8vw, 3.25rem);
}

h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 2rem;
}

p {
    margin: 0 0 1.25rem;
    font-family: var(--font);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.8;
    color: #4a4a4a;
}

em { font-style: italic; }

.content-width {
    width: min(var(--max-width), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

/* Immagini responsive — mantiene proporzioni su ogni risoluzione */
.media-img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.media-frame {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.media-frame--cover {
    aspect-ratio: var(--media-ratio, 1 / 1);
}

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

.media-frame--contain {
    aspect-ratio: var(--media-ratio, 1 / 1);
}

.media-frame--contain .media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.text-large {
    font-family: var(--font);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: 0.15rem;
    color: #4a4a4a;
}

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

.skip-link {
    position: absolute; top: -100%; left: 1rem; z-index: 300;
    padding: .75rem 1rem;
    background: var(--color-navy); color: var(--color-white);
}
.skip-link:focus { top: 1rem; }

/* Color blocks (al posto delle foto) */
.color-block {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 1px;
    border: var(--page-frame-border);
}

.color-block--hero-left { background: var(--color-hero-left); }
.color-block--meet-main { background: var(--color-meet-photo); }
.color-block--approach { background: var(--color-approach); }
.color-block--offer-center { background: var(--color-offer-center); }
.color-block--offer-accent { background: var(--color-offer-accent); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid var(--color-navy);
    background: transparent;
    color: var(--color-navy);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.btn:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-primary--inverse {
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-primary--inverse:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn-ghost-light {
    border-color: var(--color-white);
    color: var(--color-white);
    background: transparent;
}
.btn-ghost-light:hover {
    background: var(--color-white);
    color: var(--color-hero-panel);
}

/* Header */
.site-header {
    position: relative;
    z-index: 200;
    height: var(--header-height);
    background: var(--color-header-bg);
    border-top: 1px solid var(--color-header-border-top);
    border-bottom: var(--page-frame-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
    position: relative;
}

.header-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 2rem;
    height: 2rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: clamp(1.25rem, 4vw, 3rem);
}

.burger-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-header-btn);
    transition: transform .25s;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.header-social {
    position: absolute;
    right: clamp(1.25rem, 4vw, 3rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.header-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.header-social__link:hover {
    opacity: 1;
}

.header-social__link img {
    display: block;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

.header-overlay__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.header-overlay__social .header-social__link img {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
}

.header-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.2vw, 1rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn-header {
    font-size: clamp(0.52rem, 0.85vw, 0.62rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 0.85rem 1.1rem;
    white-space: nowrap;
    border: 1px solid var(--color-header-btn);
    color: var(--color-header-btn);
    background: transparent;
    line-height: 1.2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-header:hover {
    background: var(--color-header-btn);
    color: var(--color-header-bg);
}

.btn-header--consult {
    border-color: var(--color-purple-deep);
    color: var(--color-navy);
    background: var(--color-purple);
}

.btn-header--consult:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.site-header.menu-open .burger-line:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.menu-open .burger-line:last-child { transform: translateY(-4px) rotate(-45deg); }

.header-overlay {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-overlay[hidden] { display: none !important; }
.header-overlay__content { text-align: center; }

.header-overlay__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: min(100%, 320px);
}

.header-overlay__nav .btn-header {
    width: 100%;
    text-align: center;
}

/* Sections base */
.section { padding-block: clamp(3rem, 6vw, 5rem); }

/* 1. Hero split — foto verticale + pannello testo */
.section-hero {
    padding: 0;
    margin: 0;
    width: 100%;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, var(--hero-col-width)) minmax(0, 1fr);
    gap: 0;
    width: 100%;
    min-height: clamp(440px, 65vh, 680px);
    align-items: stretch;
}

.hero-split__visual {
    position: relative;
    overflow: hidden;
    background: var(--color-hero-left);
    min-height: 0;
    height: 100%;
    --media-ratio: var(--hero-photo-ratio);
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.hero-split__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-split__panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2rem);
    margin: 0;
    min-height: 0;
    height: 100%;
    background-color: #f5ebe6;
    background-image: url("/img/hero-quote-bg.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.hero-split__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 440px);
    padding: 0;
    text-align: center;
    color: #3d3d3d;
}

.hero-split__content .hero-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.85rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.015em;
    color: #3a3530;
    margin: 0 0 0.5rem;
}

.hero-quote__author {
    font-family: var(--font);
    font-size: clamp(0.7rem, 1vw, 0.82rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #5a534d;
    margin: 0 0 1.15rem;
}

.meet-credentials {
    font-size: clamp(0.88rem, 1.2vw, 0.95rem);
    line-height: 1.55;
    color: #666;
    margin: 0 0 1.25rem;
}

.approach-quote {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-style: italic;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 1.25rem 0 0;
    padding: 0;
    border: none;
}

.hero-split__content .btn {
    padding: 0.75rem 1.15rem;
    font-size: 0.68rem;
}

.hero-split__content .lead {
    font-family: var(--font);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-split__seal {
    display: none;
}

.hero-split__seal-letter {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: rgba(61, 61, 61, 0.65);
    text-transform: lowercase;
}

/* 2. Servizi — 01 / 02 */
.section-services {
    padding: 0;
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

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

.service-col {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "num title"
        "num text";
    column-gap: clamp(1rem, 2.5vw, 1.75rem);
    row-gap: clamp(0.75rem, 2vw, 1.25rem);
    align-content: start;
    padding: clamp(3.5rem, 9vw, 7rem) clamp(2rem, 6vw, 5.5rem);
    min-height: clamp(360px, 45vw, 520px);
}

.service-col--01 {
    background: var(--color-service-a);
    border-right: var(--page-frame-border);
}

.service-col--02 {
    background: var(--color-service-b);
}

.service-col--01 .service-col__num {
    color: rgba(222, 200, 229, 0.55);
}

.service-col--02 .service-col__num {
    color: rgba(255, 255, 255, 0.92);
}

.service-col__num {
    grid-area: num;
    font-family: var(--font-serif);
    font-size: clamp(4.5rem, 9vw, 7rem);
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -0.02em;
    user-select: none;
}

.service-col h2 {
    grid-area: title;
    align-self: end;
    margin: 0;
    max-width: 18rem;
}

.service-col p {
    grid-area: text;
    margin: 0;
    max-width: 22rem;
}

/* 3. Conosci Marika */
.section-meet {
    background-color: #ffffff;
    background-image: url("/img/meet-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
    min-height: 0;
    display: flex;
    align-items: center;
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.meet-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: start;
    column-gap: clamp(1.25rem, 3vw, 2.5rem);
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

.meet-text {
    max-width: none;
    padding-left: clamp(0.5rem, 3vw, 3rem);
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
    min-width: 0;
    text-align: center;
}

.meet-visual {
    justify-self: stretch;
    align-self: start;
    width: 100%;
    max-width: 360px;
    padding-right: 0;
}

.meet-photo {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
    border: var(--page-frame-border);
}

.meet-text h2,
.approach-heading h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.15rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1.75rem;
    color: var(--color-navy);
}

.meet-text h2 {
    text-align: center;
}

.meet-text p,
.approach-text p {
    font-family: var(--font);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.meet-text p:not(.meet-credentials) {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.05rem, 1.55vw, 1.18rem);
    line-height: 1.85;
    color: var(--color-navy);
}

/* 4. Challenges */
.section-challenges {
    background: var(--color-service-b);
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.challenges-heading {
    text-align: center;
    margin-bottom: 1.75rem;
}

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

.challenges-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.challenges-list__item {
    position: relative;
    padding-left: 1.1rem;
    margin: 0 0 1.25rem;
    font-family: var(--font);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.8;
    color: #4a4a4a;
}

.challenges-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000000;
}

/* 5. Approach */
.section-approach {
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.approach-layout {
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
}

.approach-photo {
    width: 100%;
    max-width: 220px;
    justify-self: start;
    align-self: stretch;
    display: flex;
    min-height: 0;
}

.approach-photo__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
    border: var(--page-frame-border);
}

.approach-content {
    min-width: 0;
}

.approach-heading {
    margin-bottom: 0;
}

.approach-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    align-items: start;
}

.approach-text .btn { margin-top: 1rem; }

/* 6. Offer */
.section-offer {
    background: var(--color-white);
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
    padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.fluid-grid--offer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(1.25rem, 4vw, 3rem);
    row-gap: clamp(1rem, 2.5vw, 1.5rem);
    min-height: 0;
    width: 100%;
    padding-inline: clamp(1rem, 4vw, 3.5rem);
}

.offer-visual {
    width: min(100%, 320px);
}

.offer-visual--left {
    justify-self: end;
    width: min(100%, 390px);
}

.offer-visual--right {
    justify-self: start;
}

.offer-visual__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.offer-text {
    justify-self: center;
    width: 100%;
    max-width: 28rem;
    min-width: 0;
    padding: 0;
    text-align: center;
}

.offer-text h2 {
    margin-bottom: 0.85rem;
    text-align: center;
}

.offer-text .text-large {
    margin-bottom: 0.15rem;
    text-align: center;
}

/* 7. Collabora con me — modal */
.collaborate-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    pointer-events: none;
}

.collaborate-modal:not([hidden]) {
    pointer-events: auto;
}

.collaborate-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(35, 34, 32, 0.62);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collaborate-modal.is-visible .collaborate-modal__backdrop {
    opacity: 1;
}

.collaborate-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(94vh, 880px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: var(--page-frame-border);
    box-shadow: 0 -12px 48px rgba(35, 34, 32, 0.22);
    transform: translateY(105%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.collaborate-modal.is-visible .collaborate-modal__dialog {
    transform: translateY(0);
}

.collaborate-modal__head {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) 1rem;
    background: var(--color-purple);
    border-bottom: var(--page-frame-border);
}

.collaborate-modal__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-purple-deep);
    margin: 0 0 0.4rem;
}

.collaborate-modal__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0;
}

.collaborate-modal__close {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--page-frame-border);
    background: #ffffff;
    color: var(--color-navy);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.collaborate-modal__close:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.collaborate-modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
}

.collaborate-modal__content {
    max-width: 52rem;
    margin-inline: auto;
}

.collaborate-modal__lead {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.65;
    color: var(--color-navy);
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: var(--page-frame-border);
}

.collaborate-modal__content p {
    font-size: clamp(0.92rem, 1.2vw, 1rem);
    line-height: 1.82;
    color: #454545;
    margin-bottom: 1.15rem;
    text-align: left;
}

.collaborate-modal__content p:last-child {
    margin-bottom: 0;
}

.collaborate-modal__footer {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-purple);
    border: var(--page-frame-border);
}

.collaborate-modal__footer-title {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.collaborate-modal__quote {
    font-family: var(--font-serif);
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--color-navy);
    margin: 0 0 0.9rem;
    padding: 0 0 0 1rem;
    border-left: 3px solid var(--color-purple-deep);
}

.collaborate-modal__footer-text {
    font-size: clamp(0.9rem, 1.15vw, 0.98rem);
    line-height: 1.75;
    color: #4a4a4a;
    margin: 0;
}

.collaborate-modal__actions {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
    border-top: var(--page-frame-border);
}

.collaborate-modal__download {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto 1.75rem;
    padding: 1rem 1.15rem;
    background: var(--color-purple);
    border: var(--page-frame-border);
    color: var(--color-navy);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.collaborate-modal__download:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
}

.collaborate-modal__download-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: #ffffff;
    border: var(--page-frame-border);
}

.collaborate-modal__download:hover .collaborate-modal__download-icon {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-navy);
}

.collaborate-modal__download-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.collaborate-modal__download-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
}

.collaborate-modal__download-hint {
    font-size: 0.75rem;
    opacity: 0.82;
}

.collaborate-modal__download-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.75rem;
}

.collaborate-modal__social {
    margin-bottom: 0;
}

/* 8. Prenota — social */
.section-booking {
    background: var(--color-service-b);
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.booking-layout {
    text-align: center;
    max-width: 820px;
}

.booking-title {
    margin-bottom: 1rem;
}

.booking-intro {
    margin-bottom: 2.5rem;
}

.booking-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.booking-social__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    min-width: 7.5rem;
}

.booking-social__link {
    width: clamp(4rem, 12vw, 5rem);
    height: clamp(4rem, 12vw, 5rem);
    background-color: #ffffff;
    text-align: center;
    line-height: clamp(4rem, 12vw, 5rem);
    font-size: clamp(1.65rem, 4.5vw, 2.15rem);
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: box-shadow 0.3s;
}

.booking-social__link:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.booking-social__link .icon {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}

.booking-social__link:hover .icon {
    color: #ffffff;
    transform: rotateY(360deg);
}

.booking-social__link::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.booking-social__link:hover::before {
    top: 0;
}

.booking-social__item:nth-child(1) .booking-social__link::before {
    background: #25d366;
}

.booking-social__item:nth-child(2) .booking-social__link::before {
    background: #e4405f;
}

.booking-social__item:nth-child(3) .booking-social__link::before {
    background: #0077b5;
}

.booking-social__label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-navy);
}

.booking-social__hint {
    font-size: 0.85rem;
    color: #666;
}

.booking-note {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* 8. Recensioni */
.section-reviews {
    background: var(--color-white);
    border-left: var(--page-frame-border);
    border-right: var(--page-frame-border);
    border-bottom: var(--page-frame-border);
}

.reviews-title {
    text-align: center;
}

.review-form__title {
    text-align: center;
}

.reviews-intro,
.review-form__intro {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 1.75rem;
}

.reviews-carousel {
    --review-gap: 0.65rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    width: min(100%, 36rem);
    margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
}

.reviews-carousel__main {
    min-width: 0;
}

.reviews-carousel__viewport {
    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reviews-carousel__page {
    flex: 0 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: var(--review-gap);
}

.review-card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0.7rem 0.95rem;
    background: #ffffff;
    border: var(--page-frame-border);
    box-shadow: none;
}

.review-card__stars {
    display: flex;
    gap: 0.12rem;
    margin-bottom: 0.45rem;
}

.review-card__star {
    font-size: 0.82rem;
    line-height: 1;
    color: rgba(222, 200, 229, 0.45);
}

.review-card__star--filled {
    color: var(--color-purple-deep);
}

.review-card__comment {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    color: #3d3d3d;
    margin: 0 0 0.4rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.review-card__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}

.review-card__author {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-navy);
}

.review-card__date {
    font-size: 0.68rem;
    color: #888;
}

.reviews-carousel__dots {
    display: none;
}

.reviews-carousel__nav {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(143, 114, 200, 0.35);
    background: #ffffff;
    color: var(--color-purple-deep);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.reviews-carousel__nav:hover {
    background: var(--color-purple);
    border-color: var(--color-purple-deep);
    color: #ffffff;
}

.reviews-carousel__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(222, 200, 229, 0.55);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.reviews-carousel__dot.is-active {
    background: var(--color-purple-deep);
    transform: scale(1.25);
}

.review-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: #ffffff;
    border: 1px solid rgba(143, 114, 200, 0.2);
    box-shadow: 0 8px 24px rgba(143, 114, 200, 0.06);
}

.review-form__title {
    margin-bottom: 0.5rem;
}

.review-form__message {
    text-align: center;
    margin: 0 0 1rem;
    font-size: 0.92rem;
}

.review-form__message--success {
    color: #2f6b3f;
}

.review-form__message--error {
    color: #9b2c2c;
}

.review-form {
    text-align: center;
}

.review-form .form-field {
    margin-bottom: 1rem;
}

.review-form label {
    display: block;
    text-align: center;
}

.review-form textarea {
    display: block;
    margin-inline: auto;
}

.review-form .btn-primary {
    display: inline-block;
}

.form-field--stars {
    margin-bottom: 1.35rem;
}

.star-picker {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.35rem;
}

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

.star-picker__star {
    display: block;
    cursor: pointer;
    line-height: 0;
}

.star-picker__star svg {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    fill: #ffffff;
    stroke: #111111;
    stroke-width: 0.7;
    stroke-linejoin: round;
    transition: fill 0.15s, transform 0.15s;
}

.star-picker__star:hover svg {
    transform: scale(1.08);
}

.star-picker__input:checked ~ .star-picker__star svg,
.star-picker__star:hover svg,
.star-picker__star:hover ~ .star-picker__star svg {
    fill: var(--color-purple-deep);
}

.star-picker__input:focus-visible + .star-picker__star svg {
    outline: 2px solid var(--color-purple-deep);
    outline-offset: 3px;
}

.review-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 0.4rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 1px solid #ccc;
    background: #fff;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--color-purple-deep);
    box-shadow: 0 0 0 3px rgba(222, 200, 229, 0.35);
}

.review-form .btn-primary:hover {
    background: var(--color-purple-deep);
    border-color: var(--color-purple-deep);
    color: #ffffff;
}

/* Footer */
.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: var(--page-frame-border);
    text-align: center;
}

.site-footer__inner {
    width: min(var(--max-width), calc(100% - var(--gutter) * 2));
    margin-inline: auto;
}

.site-footer p {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #777;
    margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-split {
        min-height: clamp(380px, 58vh, 620px);
    }

    .approach-photo {
        max-width: 200px;
    }

    .approach-layout {
        grid-template-columns: minmax(130px, 200px) minmax(0, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .header-inner {
        justify-content: flex-end;
        gap: 0.75rem;
    }

    .header-social {
        display: flex;
        position: static;
        top: auto;
        right: auto;
        transform: none;
    }

    .header-burger {
        display: flex;
        position: static;
        right: auto;
        flex-shrink: 0;
    }

    .header-overlay {
        position: absolute;
        inset: auto;
        top: calc(var(--header-height) - 0.35rem);
        right: clamp(0.75rem, 4vw, 1.5rem);
        left: auto;
        z-index: 210;
        width: min(17.5rem, calc(100vw - 1.5rem));
        padding: 0.85rem 0.75rem 1rem;
        background: #ffffff;
        border: var(--page-frame-border);
        border-radius: 14px;
        box-shadow: 0 12px 32px rgba(35, 34, 32, 0.16);
        display: block;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header-overlay::before {
        content: "";
        position: absolute;
        top: -7px;
        right: 1.05rem;
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-left: var(--page-frame-border);
        border-top: var(--page-frame-border);
        transform: rotate(45deg);
    }

    .header-overlay__content {
        text-align: center;
    }

    .header-overlay__nav {
        width: 100%;
        gap: 0.55rem;
    }

    .header-overlay__nav .btn-header {
        font-size: 0.68rem;
        padding: 0.7rem 0.75rem;
        white-space: normal;
    }

    .header-overlay__social {
        display: none;
    }

    .hero-split {
        grid-template-columns: minmax(0, clamp(200px, 28vw, 320px)) minmax(0, 1fr);
        min-height: clamp(360px, 52vh, 560px);
    }

    .meet-layout {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 300px);
        column-gap: clamp(1rem, 2.5vw, 1.75rem);
    }

    .meet-visual {
        max-width: 300px;
    }

    .approach-layout {
        grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
        gap: clamp(1rem, 2.5vw, 1.75rem);
    }

    .approach-photo {
        max-width: 180px;
    }

    .fluid-grid--offer {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        padding-inline: clamp(1rem, 3vw, 2rem);
    }

    .offer-visual {
        width: min(100%, 260px);
    }

    .offer-visual--left {
        width: min(100%, 310px);
    }
}

@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: 0;
        align-items: start;
    }

    .hero-split__visual {
        display: none;
    }

    .hero-split__panel {
        width: 100%;
        height: auto;
        min-height: clamp(280px, 55vw, 420px);
        border-left: var(--page-frame-border);
        border-right: var(--page-frame-border);
        background-position: center 40%;
    }

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

    .service-col--01 {
        border-right: none;
        border-bottom: var(--page-frame-border);
    }

    .service-col {
        min-height: auto;
        padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 5vw, 2.5rem);
    }

    .service-col h2,
    .service-col p {
        max-width: 100%;
    }

    .section-meet {
        padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
        background-size: cover;
        background-position: center top;
    }

    .meet-layout {
        grid-template-columns: 1fr;
    }

    .meet-text {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .meet-visual {
        justify-self: center;
        width: min(100%, 280px);
        max-width: 280px;
        order: -1;
    }

    .challenges-list {
        grid-template-columns: 1fr 1fr;
        gap: 0 2rem;
    }

    .approach-text-grid {
        grid-template-columns: 1fr;
    }

    .approach-layout {
        align-items: start;
    }

    .approach-photo {
        align-self: start;
        height: auto;
    }

    .approach-photo__img {
        height: auto;
        max-height: clamp(240px, 45vw, 340px);
        aspect-ratio: var(--approach-photo-ratio);
    }

    .fluid-grid--offer {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        padding-inline: clamp(1rem, 4vw, 2rem);
        row-gap: clamp(1.25rem, 4vw, 2rem);
        column-gap: clamp(1.25rem, 4vw, 3rem);
    }

    .offer-visual {
        width: min(100%, 220px);
    }

    .offer-visual--left {
        width: min(100%, 260px);
    }

    .offer-visual--left,
    .offer-visual--right {
        justify-self: center;
    }

    .offer-text {
        grid-column: 1 / -1;
        order: 1;
        justify-self: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .booking-social {
        gap: 1.75rem;
    }

    .review-form .form-field {
        margin-bottom: 1rem;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
        width: min(100%, 36rem);
    }

    .reviews-carousel__nav {
        display: none;
    }

    .reviews-carousel__main {
        width: 100%;
    }
}

@media (min-width: 901px) {
    .collaborate-modal {
        align-items: center;
        padding: clamp(1.25rem, 3vw, 2rem);
    }

    .collaborate-modal__dialog {
        max-height: min(88vh, 820px);
        transform: translateY(48px);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
        box-shadow: 0 24px 64px rgba(35, 34, 32, 0.28);
    }

    .collaborate-modal.is-visible .collaborate-modal__dialog {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: clamp(1rem, 4vw, 1.5rem);
        --header-height: 4.5rem;
    }

    .header-inner {
        padding-inline: 1.25rem;
        justify-content: flex-end;
    }

    .challenges-list {
        grid-template-columns: 1fr;
    }

    .hero-split__panel {
        min-height: clamp(240px, 62vw, 360px);
        padding: clamp(1.5rem, 5vw, 2rem) 1rem;
    }

    .hero-split__content .hero-quote {
        font-size: clamp(1.05rem, 5vw, 1.35rem);
    }

    .meet-visual {
        width: min(100%, 200px);
        max-width: 200px;
    }

    .meet-photo {
        width: 100%;
        height: auto;
    }

    .approach-layout {
        grid-template-columns: minmax(96px, 28%) minmax(0, 1fr);
        gap: 0.85rem;
    }

    .approach-photo {
        max-width: none;
    }

    .offer-visual {
        width: min(100%, 160px);
    }

    .offer-visual--left {
        width: min(100%, 190px);
    }

    .booking-social__item {
        min-width: 6.5rem;
    }
}
