<style>

    /* =========================================================
       GLOBALMENTE CORPO
       Palette:
       Primario   #5d6684
       Secondario #826689
       Terziario  #77618a
       ========================================================= */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: Georgia, "Times New Roman", serif;
        background: #f7f5f7;
        color: #3f3d45;
        line-height: 1.75;
    }

    img {
        max-width: 100%;
        display: block;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .container {
        width: min(92%, 1180px);
        margin: auto;
    }


    /* =========================================================
       HEADER
       ========================================================= */

    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(247, 245, 247, 0.96);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(93, 102, 132, 0.12);
    }

    .topbar {
        background: #5d6684;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 13px;
    }

    .topbar-inner {
        min-height: 38px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .topbar a {
        transition: opacity .2s ease;
    }

    .topbar a:hover {
        opacity: .75;
    }

    .navbar {
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: bold;
        color: #454d67;
        font-size: 23px;
        white-space: nowrap;
    }

    .logo img {
        height: 75px;
    }

    .logo-mark {
        width: 43px;
        height: 43px;
        border-radius: 50%;
        background: #5d6684;
        position: relative;
    }

    .logo-mark::before {
        content: "";
        position: absolute;
        width: 16px;
        height: 26px;
        background: #dfe2eb;
        border-radius: 100% 0 100% 0;
        transform: rotate(35deg);
        top: 7px;
        left: 14px;
    }

    nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 25px;
        font-family: Arial, sans-serif;
        font-size: 14px;
    }

    nav a {
        color: #59496a;
        transition: color .2s ease;
    }

    nav a:hover {
        color: #826689;
    }

    .nav-button {
        background: #826689;
        color: #ffffff !important;
        padding: 10px 17px;
        border-radius: 30px;
    }

    .nav-button:hover {
        background: #77618a;
    }


    /* =========================================================
       HERO
       ========================================================= */

    .hero {
        min-height: 670px;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;

        background:
            linear-gradient(
                90deg,
                rgba(69, 77, 103, .93),
                rgba(93, 102, 132, .70),
                rgba(93, 102, 132, .15)
            ),
            linear-gradient(
                135deg,
                #826689,
                #77618a
            );
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(255, 255, 255, .20);
        border-radius: 50%;
        right: -120px;
        top: -100px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 690px;
        color: #ffffff;
    }

    .eyebrow {
        font-family: Arial, sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 13px;
        margin-bottom: 18px;
        opacity: .85;
    }

    .hero h1 {
        font-size: clamp(45px, 7vw, 78px);
        line-height: 1.05;
        font-weight: normal;
        margin-bottom: 25px;
    }

    .hero p {
        font-size: 20px;
        max-width: 620px;
        margin-bottom: 35px;
        opacity: .95;
    }

    .button {
        display: inline-block;
        background: #ffffff;
        color: #454d67;
        padding: 13px 25px;
        border-radius: 30px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: bold;
        margin-right: 10px;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(69, 77, 103, .20);
    }

    .button.secondary {
        background: transparent;
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, .70);
    }


    /* =========================================================
       SECTIONS
       ========================================================= */

    section {
        padding: 100px 0;
    }

    .section-header {
        max-width: 720px;
        margin-bottom: 55px;
    }

    .section-label {
        color: #826689;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .section-label-white {
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: Arial, sans-serif;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    h2 {
        font-size: clamp(35px, 5vw, 52px);
        line-height: 1.15;
        color: #454d67;
        font-weight: normal;
        margin-bottom: 18px;
    }

    h3 {
        color: #454d67;
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    h4 {
        color: #59496a;
        margin-bottom: 8px;
        font-size: 19px;
    }

    p {
        margin-bottom: 18px;
    }


    /* =========================================================
       STORIA
       ========================================================= */

    .story {
        background: #ffffff;
    }

    .story-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 70px;
        align-items: start;
    }

    .story-intro {
        position: sticky;
        top: 130px;
    }

    .portrait-placeholder {
        aspect-ratio: 4 / 5;

        background:
            radial-gradient(
                circle at 60% 25%,
                #e8dfe9,
                transparent 35%
            ),
            linear-gradient(
                145deg,
                #eeeaf0,
                #dfe2eb
            );

        border-radius: 18px;
        display: table-cell;
        align-items: center;
        overflow: hidden;

        box-shadow:
            0 12px 35px rgba(93, 102, 132, 0.14);
    }

    .portrait-placeholder span {
        color: #454d67;
        font-size: 22px;
        padding-bottom: 30px;
    }

    .timeline {
        border-left: 2px solid #dfe2eb;
        padding-left: 30px;
    }

    .timeline-item {
        position: relative;
        margin-bottom: 38px;
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -39px;
        top: 9px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #826689;
        border: 4px solid #ffffff;
        box-shadow: 0 0 0 2px #dfe2eb;
    }


    /* =========================================================
       ATTIVITÀ
       ========================================================= */

    .activities {
        background: #f7f5f7;
    }

    .activity-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .activity-card {
        background: #ffffff;
        padding: 38px;
        border-radius: 18px;

        box-shadow:
            0 12px 35px rgba(93, 102, 132, 0.14);

        transition: transform .25s ease;
    }

    .activity-card:hover {
        transform: translateY(-5px);
    }

    .activity-number {
        font-family: Arial, sans-serif;
        color: #826689;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }

    .activity-card ul {
        padding-left: 20px;
        margin: 20px 0;
    }

    .activity-card li {
        margin-bottom: 8px;
    }

    .full-card {
        grid-column: 1 / -1;
    }

    .tag {
        display: inline-block;
        background: #e8dfe9;
        color: #624d68;
        border-radius: 30px;
        padding: 6px 12px;
        margin: 4px 4px 4px 0;
        font-family: Arial, sans-serif;
        font-size: 12px;
    }


    /* =========================================================
       MASSAGGI
       ========================================================= */

    .massage-types {
        background: #5d6684;
        color: #ffffff;
    }

    .massage-types h2,
    .massage-types h3 {
        color: #ffffff;
    }

    .massage-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .massage-item {
        padding: 27px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 14px;
        background: rgba(255, 255, 255, .05);
    }

    .massage-item h4 {
        color: #e4deea;
    }


    /* =========================================================
       BENEFICI
       ========================================================= */

    .benefits {
        background: #eeeaf0;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
    }

    .benefit-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        list-style: none;
    }

    .benefit-list li {
        background: rgba(255, 255, 255, .65);
        padding: 16px 20px;
        border-radius: 10px;
    }

    .benefit-list li::before {
        content: "✓";
        color: #826689;
        font-weight: bold;
        margin-right: 10px;
    }


    /* =========================================================
       CONTATTI
       ========================================================= */

    .contact {
        background: #ffffff;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-card {
        background: #f7f5f7;
        padding: 40px;
        border-radius: 18px;
    }

    .contact-row {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        background: #826689;
        color: #ffffff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        font-family: Arial, sans-serif;
    }

    .contact-row strong {
        display: block;
        color: #454d67;
        font-family: Arial, sans-serif;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .contact-actions {
        margin-top: 30px;
    }

    .contact-button {
        display: inline-block;
        padding: 13px 22px;
        border-radius: 30px;
        background: #826689;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-weight: bold;
        margin: 5px;
        transition: background .2s ease, transform .2s ease;
    }

    .contact-button:hover {
        background: #77618a;
        transform: translateY(-2px);
    }


    /* =========================================================
       FOOTER
       ========================================================= */

    footer {
        background: #454d67;
        color: rgba(255, 255, 255, .75);
        padding: 40px 0;
        font-family: Arial, sans-serif;
        font-size: 13px;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }


    /* =========================================================
       RESPONSIVE
       ========================================================= */

    @media (max-width: 900px) {

        .navbar {
            min-height: 68px;
        }

        nav ul {
            gap: 12px;
        }

        .story-grid,
        .benefits-grid,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .story-intro {
            position: static;
        }

        .portrait-placeholder {
            max-width: 450px;
        }

        .activity-grid {
            grid-template-columns: 1fr;
        }

        .full-card {
            grid-column: auto;
        }

        .massage-grid {
            grid-template-columns: 1fr 1fr;
        }
    }


    @media (max-width: 650px) {

        .topbar-inner {
            justify-content: center;
            text-align: center;
            flex-wrap: wrap;
            padding: 7px 0;
        }

        .navbar {
            flex-direction: column;
            padding: 14px 0;
            gap: 14px;
        }

        nav ul {
            flex-wrap: wrap;
            justify-content: center;
        }

        nav li:nth-child(n+5) {
            display: none;
        }

        .hero {
            min-height: 590px;
        }

        .hero h1 {
            font-size: 48px;
        }

        .hero p {
            font-size: 17px;
        }

        section {
            padding: 70px 0;
        }

        .activity-card {
            padding: 27px;
        }

        .massage-grid {
            grid-template-columns: 1fr;
        }

        .benefit-list {
            grid-template-columns: 1fr;
        }

        .footer-inner {
            flex-direction: column;
        }

    }

</style>