/* =========================================================
   KONA RESIDENCE
   STYLE.CSS
========================================================= */


/* =========================================================
   1. IMPOSTAZIONI GENERALI
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7f5f2;
    color: #2c2723;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}


/* =========================================================
   2. NAVBAR
========================================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 70px;

    z-index: 100;
}

.logo a {
    text-decoration: none;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.kona-logo {
    display: block;

    width: 225px;
    height: auto;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.logo-link:hover .kona-logo {
    transform: translateY(-1px);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: white;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 1px;

    transition: color 0.25s ease;
}

nav a:hover {
    color: #c8a968;
}


/* NAVBAR CON SFONDO */

.navbar-dark,
.unit-navbar {
    position: relative;

    background-color: #302822;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   3. PULSANTI GENERALI
========================================================= */

.button {
    display: inline-block;

    padding: 17px 28px;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: 11px;

    transition: 0.3s ease;
}

.button-gold {
    background-color: #b99a59;

    color: white;

    border: 1px solid #b99a59;
}

.button-gold:hover {
    background-color: #a7894c;
}

.button-outline {
    color: white;

    border:
        1px solid rgba(255, 255, 255, 0.70);
}

.button-outline:hover {
    background-color: white;

    color: #3c332c;
}


/* =========================================================
   4. HOME - HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 140px 10%;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(45, 37, 31, 0.55),
            rgba(45, 37, 31, 0.75)
        ),
        #514336;
}

.hero-content {
    max-width: 850px;
}

.sottotitolo {
    margin-bottom: 25px;

    color: #c8a968;

    font-size: 12px;

    letter-spacing: 4px;
}

.hero h2 {
    max-width: 850px;

    margin-bottom: 30px;

    color: white;

    font-size: 68px;
    font-weight: 400;

    line-height: 1.05;
}

.hero-description {
    max-width: 600px;

    margin-bottom: 40px;

    color: #ded8d2;

    font-size: 18px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    gap: 15px;
}

.scroll-down {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    color: white;

    font-size: 24px;
}


/* =========================================================
   5. HOME - RESIDENCE
========================================================= */

.residence {
    padding: 130px 10%;

    background-color: #f7f5f2;
}

.section-small-title {
    margin-bottom: 22px;

    color: #a48649;

    font-size: 11px;

    letter-spacing: 4px;
}

.residence > h2 {
    max-width: 700px;

    margin-bottom: 25px;

    font-size: 46px;
    font-weight: 400;

    line-height: 1.15;
}

.residence > p {
    max-width: 700px;

    color: #706963;

    font-size: 17px;

    line-height: 1.8;
}


/* CARATTERISTICHE HOME */

.features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;

    margin-top: 90px;
}

.feature {
    padding-top: 25px;

    border-top: 1px solid #cfc8c0;
}

.feature span {
    color: #a48649;

    font-size: 12px;
}

.feature h3 {
    margin-top: 35px;
    margin-bottom: 15px;

    font-size: 21px;
    font-weight: 500;
}

.feature p {
    color: #706963;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   6. HOME - POSIZIONE
========================================================= */

.location {
    padding: 130px 10%;

    background-color: #493d33;

    color: white;
}

.location h2 {
    margin-bottom: 25px;

    font-size: 48px;
    font-weight: 400;
}

.location > p:last-child {
    max-width: 600px;

    color: #ddd6cf;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   7. HOME - CONTATTI
========================================================= */

.contacts {
    padding: 130px 10%;

    background-color: white;

    text-align: center;
}

.contacts h2 {
    margin-bottom: 25px;

    font-size: 48px;
    font-weight: 400;
}

.contacts > p:not(.section-small-title) {
    max-width: 600px;

    margin:
        0 auto
        40px auto;

    color: #706963;

    line-height: 1.7;
}


/* =========================================================
   8. PAGINA ELENCO APPARTAMENTI
========================================================= */

.apartments-hero {
    padding:
        110px 10%
        90px 10%;

    background-color: #4b3e34;

    color: white;
}

.apartments-hero h2 {
    margin-bottom: 25px;

    font-size: 60px;
    font-weight: 400;
}

.apartments-hero > p:last-child {
    max-width: 650px;

    color: #ddd6cf;

    font-size: 17px;

    line-height: 1.8;
}


/* PIANI */

.floor-section {
    padding: 100px 10%;

    background-color: #f7f5f2;
}

.floor-section.alternate {
    background-color: white;
}

.floor-title {
    display: flex;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 50px;
}

.floor-title > span {
    margin-top: 8px;

    color: #b29555;

    font-size: 13px;
}

.floor-title p {
    margin-bottom: 8px;

    color: #9b928b;

    font-size: 10px;

    letter-spacing: 3px;
}

.floor-title h2 {
    font-size: 42px;

    font-weight: 400;
}


/* GRIGLIA APPARTAMENTI */

.apartment-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.apartment-card {
    position: relative;

    display: block;

    min-height: 320px;

    padding: 30px;

    background-color: white;

    border: 1px solid #e4dfd8;

    color: #2d2824;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.alternate .apartment-card {
    background-color: #f8f6f3;
}

.apartment-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px
        rgba(49, 40, 33, 0.12);
}

.apartment-number {
    margin-bottom: 45px;

    color: #b29555;

    font-size: 12px;

    letter-spacing: 2px;
}

.apartment-card h3 {
    margin-bottom: 25px;

    font-size: 23px;
    font-weight: 400;
}

.apartment-info {
    margin-bottom: 25px;

    color: #706963;

    font-size: 14px;

    line-height: 1.8;
}

.availability {
    display: inline-block;

    padding: 7px 11px;

    background-color: #efede8;

    color: #60594f;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.3px;
}

.discover {
    position: absolute;

    bottom: 28px;
    left: 30px;

    color: #9a7d43;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   9. PAGINA SINGOLO APPARTAMENTO
========================================================= */

.unit-page {
    background-color: #f5f2ed;
}


/* =========================================================
   10. HERO SINGOLO APPARTAMENTO
========================================================= */

.unit-hero {
    position: relative;

    min-height: 500px;

    padding:
        62px 10%
        62px 10%;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 75px;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(200, 169, 104, 0.09),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #4b3f35 0%,
            #43372f 58%,
            #352d28 100%
        );

    color: white;
}


/* SINISTRA HERO */

.unit-hero-left {
    position: relative;

    z-index: 2;

    max-width: 700px;

    animation:
        unitHeroFadeUp 0.8s ease both;
}

.unit-eyebrow {
    margin-bottom: 21px;

    color: #d0ad66;

    font-size: 10px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* TITOLO */

.hero-title-wrap {
    position: relative;
}

.hero-title-wrap h1 {
    margin: 0;

    color: white;

    font-size: clamp(52px, 5vw, 76px);

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -2px;
}

.hero-number {
    margin-top: 5px;

    color: #c8a968;

    font-size: clamp(76px, 7vw, 108px);

    font-weight: 300;

    line-height: 0.9;

    letter-spacing: -4px;
}


/* LINEA ORO */

.hero-gold-line {
    width: 78px;
    height: 1px;

    margin:
        26px 0
        23px 0;

    background-color: #c8a968;

    transform-origin: left;

    animation:
        unitLineGrow 1s ease 0.25s both;
}


/* DESCRIZIONE */

.unit-subtitle {
    max-width: 560px;

    margin-bottom: 24px;

    color: #e1dad3;

    font-size: 16px;

    line-height: 1.7;
}


/* DISPONIBILE */

.hero-meta {
    display: flex;

    align-items: center;
}

.unit-status {
    display: inline-flex;

    align-items: center;

    padding:
        9px 14px;

    border:
        1px solid
        rgba(200, 169, 104, 0.70);

    color: #ead9b7;

    background-color:
        rgba(255, 255, 255, 0.025);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* DESTRA HERO */

.unit-hero-right {
    position: relative;

    min-height: 290px;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 1;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.12);

    animation:
        unitHeroFadeUp 0.9s ease 0.1s both;
}


/* NUMERO 01 GIGANTE IN TRASPARENZA */

.hero-big-background-number {
    position: absolute;

    top: 50%;
    right: -15px;

    transform:
        translateY(-50%);

    color:
        rgba(255, 255, 255, 0.035);

    font-size: 280px;

    font-weight: 300;

    line-height: 1;

    letter-spacing: -15px;

    pointer-events: none;
}


/* PREZZO */

.unit-price-box {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 430px;

    padding-left: 48px;
}

.unit-price-box::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 2px;

    width: 1px;
    height: 70px;

    background-color: #c8a968;
}

.unit-price-box > p {
    margin-bottom: 17px;

    color: #d0ad66;

    font-size: 9px;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.price-range {
    white-space: nowrap;
}

.unit-price-box h2 {
    margin-bottom: 18px;

    color: white;

    font-size: clamp(25px, 2.25vw, 35px);

    font-weight: 300;

    line-height: 1.2;

    letter-spacing: -0.7px;
}

.unit-price-box h2 span {
    margin: 0 4px;

    color: #c8a968;
}

.unit-price-box small {
    display: block;

    max-width: 315px;

    color: #c5bcb4;

    font-size: 11px;

    line-height: 1.65;
}


/* ANIMAZIONI HERO */

@keyframes unitHeroFadeUp {

    from {
        opacity: 0;

        transform:
            translateY(18px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes unitLineGrow {

    from {
        transform:
            scaleX(0);
    }

    to {
        transform:
            scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .unit-hero-left,
    .unit-hero-right,
    .hero-gold-line {
        animation: none;
    }
}


/* =========================================================
   11. DATI PRINCIPALI APPARTAMENTO
========================================================= */

.unit-facts {
    padding: 40px 10%;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background-color: white;

    border-bottom:
        1px solid #e6e0d8;
}

.unit-fact {
    padding:
        3px 35px;

    border-right:
        1px solid #ded8d0;
}

.unit-fact:first-child {
    padding-left: 0;
}

.unit-fact:last-child {
    border-right: none;
}

.unit-fact strong {
    display: block;

    margin-bottom: 7px;

    color: #493c32;

    font-size: 30px;

    font-weight: 300;
}

.unit-fact span {
    color: #8a817a;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================================
   12. SCHEDA GRAFICA APPARTAMENTO
========================================================= */

.apartment-showcase {
    display: grid;

    grid-template-columns:
        34% 66%;

    min-height: 780px;

    background-color: white;

    border-top:
        1px solid #e6e0d9;

    border-bottom:
        1px solid #e6e0d9;
}


/* COLONNA MARRONE */

.apartment-showcase-left {
    padding:
        65px 55px;

    display: flex;

    flex-direction: column;

    background-color: #4b4036;

    color: white;
}

.showcase-heading {
    margin-bottom: 35px;
}

.showcase-heading span {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}

.showcase-heading strong {
    font-size: 20px;

    font-weight: 500;

    letter-spacing: 1px;
}


/* MINI PLANIMETRIA */

.showcase-mini-plan {
    flex: 1;

    min-height: 300px;

    margin-bottom: 45px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.showcase-mini-plan img {
    display: block;

    width: 100%;
    max-width: 370px;

    height: auto;

    object-fit: contain;
}


/* NOME APPARTAMENTO */

.showcase-apartment-title {
    display: flex;

    align-items: baseline;

    gap: 10px;

    margin-bottom: 30px;
}

.showcase-apartment-title span {
    font-size: 22px;

    font-weight: 600;
}

.showcase-apartment-title strong {
    color: #c8a968;

    font-size: 26px;

    font-weight: 400;
}


/* DATI NEL PANNELLO */

.showcase-data {
    display: grid;

    gap: 12px;
}

.showcase-data div {
    display: flex;

    justify-content: space-between;

    gap: 25px;
}

.showcase-data span {
    color: #d7d0c9;

    font-size: 11px;

    letter-spacing: 0.5px;
}

.showcase-data strong {
    color: white;

    font-size: 13px;

    font-weight: 400;

    white-space: nowrap;
}


/* COLONNA BIANCA */

.apartment-showcase-right {
    padding: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background-color: white;
}


/* PLANIMETRIA GRANDE */

.showcase-main-plan {
    width: 100%;

    min-height: 600px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.showcase-main-plan img {
    display: block;

    width: 100%;

    max-width: 1100px;

    height: auto;

    object-fit: contain;

    transition:
        transform 0.5s ease;
}

.showcase-main-plan:hover img {
    transform: scale(1.015);
}


/* =========================================================
   13. PLANIMETRIA GENERALE DEL PIANO
========================================================= */

.floor-overview {
    padding:
        110px 10%;

    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 90px;

    align-items: center;

    background-color: #f5f2ed;
}

.floor-overview-text h2 {
    margin-bottom: 25px;

    color: #3d352f;

    font-size: 45px;

    font-weight: 300;

    line-height: 1.15;
}

.floor-overview-text > p:last-child {
    color: #706963;

    font-size: 15px;

    line-height: 1.8;
}

.floor-overview-image {
    padding: 30px;

    background-color: white;

    border:
        1px solid #e4ddd4;
}

.floor-overview-image img {
    display: block;

    width: 100%;

    height: auto;
}


/* =========================================================
   14. TITOLI SEZIONI APPARTAMENTO
========================================================= */

.unit-section-heading {
    margin-bottom: 55px;
}

.unit-section-heading > p {
    margin-bottom: 18px;

    color: #aa8a4c;

    font-size: 10px;

    letter-spacing: 4px;
}

.unit-section-heading h2 {
    font-size: 46px;

    font-weight: 300;
}


/* =========================================================
   15. CARATTERISTICHE RESIDENCE
========================================================= */

.unit-features-section {
    padding:
        100px 10%;

    background-color: #41362e;

    color: white;
}

.light-heading h2 {
    color: white;
}

.unit-features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 35px;

    margin-top: 65px;
}

.unit-features-grid > div {
    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.20);
}

.unit-features-grid span {
    color: #c3a364;

    font-size: 11px;
}

.unit-features-grid h3 {
    margin:
        35px 0
        17px 0;

    font-size: 19px;

    font-weight: 400;
}

.unit-features-grid p {
    color: #cec7c1;

    font-size: 13px;

    line-height: 1.8;
}


/* PULSANTE SCOPRI LE FINITURE NELLA SEZIONE MARRONE */

.features-action {
    margin-top: 55px;

    display: flex;

    justify-content: flex-start;
}

.unit-features-button {
    display: inline-block;

    padding:
        16px 27px;

    color: #ead9b7;

    background-color: transparent;

    border:
        1px solid
        rgba(200, 169, 104, 0.80);

    text-decoration: none;
    text-transform: uppercase;

    font-size: 10px;

    letter-spacing: 1.8px;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.unit-features-button:hover {
    background-color: #b99a59;

    color: white;

    transform: translateY(-2px);
}


/* =========================================================
   16. CONTATTI SINGOLO APPARTAMENTO
========================================================= */

.unit-contact {
    padding:
        110px 10%;

    background-color: #f5f2ed;

    text-align: center;
}

.unit-contact h2 {
    margin-bottom: 25px;

    color: #3b332d;

    font-size: 52px;

    font-weight: 300;
}

.unit-contact > p:not(.unit-eyebrow) {
    max-width: 600px;

    margin:
        0 auto
        40px auto;

    color: #756d66;

    font-size: 16px;

    line-height: 1.8;
}


/* DUE PULSANTI FINALI */

.unit-contact-actions {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.unit-contact-button {
    display: inline-block;

    min-width: 205px;

    padding:
        17px 28px;

    background-color: #a7894f;

    color: white;

    border:
        1px solid #a7894f;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 1.6px;

    font-size: 11px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.unit-contact-button:hover {
    background-color: #8d723f;

    border-color: #8d723f;

    transform: translateY(-2px);
}


/* SECONDO PULSANTE - FINITURE */

.unit-finishes-button {
    background-color: transparent;

    color: #96783f;

    border:
        1px solid #a7894f;
}

.unit-finishes-button:hover {
    background-color: #a7894f;

    color: white;

    border-color: #a7894f;
}


/* =========================================================
   17. NAVIGAZIONE TRA APPARTAMENTI
========================================================= */

.unit-bottom-navigation {
    padding:
        35px 10%;

    display: flex;

    justify-content: space-between;

    background-color: white;

    border-top:
        1px solid #e3ddd5;
}

.unit-bottom-navigation a {
    color: #80683e;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 10px;

    letter-spacing: 1.5px;

    transition: color 0.25s ease;
}

.unit-bottom-navigation a:hover {
    color: #b99a59;
}


/* =========================================================
   18. FOOTER
========================================================= */

footer {
    padding:
        60px 10%;

    display: flex;

    justify-content: space-between;

    background-color: #29231f;

    color: #d9d2ca;

    font-size: 13px;

    line-height: 1.7;
}

footer strong {
    color: white;

    letter-spacing: 2px;
}

footer p {
    margin-top: 4px;

    color: #b99a59;

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   19. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .apartment-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .unit-hero {
        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            60px 8%;
    }


    .unit-hero-right {
        min-height: 220px;

        justify-content: flex-start;

        padding-top: 35px;

        border-left: none;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.14);
    }


    .unit-price-box {
        max-width: 100%;

        padding-left: 0;

        margin-left: 0;
    }


    .unit-price-box::before {
        top: -36px;
        left: 0;

        width: 70px;
        height: 1px;
    }


    .hero-big-background-number {
        right: 0;

        font-size: 210px;
    }


    .unit-facts {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px;
    }


    .unit-fact {
        padding-left: 0;

        border-right: none;
    }


    .apartment-showcase {
        grid-template-columns: 1fr;
    }


    .floor-overview {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .unit-features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   20. RESPONSIVE - SMARTPHONE
========================================================= */

@media (max-width: 650px) {

    .navbar {
        padding:
            15px 22px;
    }


    .kona-logo {
        width: 185px;
    }


    nav {
        display: none;
    }


    /* HOME */

    .hero {
        padding:
            120px 25px
            80px 25px;
    }


    .hero h2 {
        font-size: 45px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .residence,
    .location,
    .contacts {
        padding:
            80px 25px;
    }


    .features {
        grid-template-columns: 1fr;

        gap: 40px;

        margin-top: 60px;
    }


    /* ELENCO APPARTAMENTI */

    .apartments-hero {
        padding:
            80px 25px;
    }


    .apartments-hero h2 {
        font-size: 42px;
    }


    .floor-section {
        padding:
            70px 25px;
    }


    .apartment-grid {
        grid-template-columns: 1fr;
    }


    /* SINGOLO APPARTAMENTO */

    .unit-hero {
        min-height: auto;

        padding:
            50px 25px
            55px 25px;

        gap: 40px;
    }


    .hero-title-wrap h1 {
        font-size: 48px;
    }


    .hero-number {
        font-size: 76px;
    }


    .hero-gold-line {
        margin:
            23px 0
            21px 0;
    }


    .unit-subtitle {
        font-size: 15px;
    }


    .unit-hero-right {
        min-height: 190px;
    }


    .hero-big-background-number {
        right: -25px;

        font-size: 165px;
    }


    .price-range {
        white-space: normal;
    }


    .unit-price-box h2 {
        font-size: 29px;
    }


    /* DATI */

    .unit-facts {
        padding:
            35px 25px;
    }


    /* SHOWCASE */

    .apartment-showcase-left {
        padding:
            50px 25px;
    }


    .apartment-showcase-right {
        padding:
            30px 20px;
    }


    .showcase-main-plan {
        min-height: auto;
    }


    .showcase-data div {
        flex-direction: column;

        gap: 3px;
    }


    /* PLANIMETRIA PIANO */

    .floor-overview {
        padding:
            80px 25px;
    }


    .floor-overview-image {
        padding: 15px;
    }


    /* FINITURE */

    .unit-features-section {
        padding:
            75px 25px;
    }


    .unit-features-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }


    .features-action {
        margin-top: 45px;
    }


    /* CONTATTI */

    .unit-contact {
        padding:
            80px 25px;
    }


    .unit-contact h2 {
        font-size: 40px;
    }


    .unit-contact-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .unit-contact-button {
        width: 100%;

        min-width: 0;

        text-align: center;
    }


    /* NAVIGAZIONE */

    .unit-bottom-navigation {
        padding:
            30px 25px;

        gap: 20px;
    }


    /* FOOTER */

    footer {
        padding:
            50px 25px;

        gap: 30px;
    }

}
/* =========================================================
   RIMUOVE LA LINEA SOTTO LA NAVBAR
========================================================= */

.navbar {
    border-bottom: none !important;
}
/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    margin: 6px auto;
    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   MENU MOBILE - TELEFONO
========================================================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navbar nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: 82%;
        max-width: 340px;
        height: 100vh;

        padding: 110px 38px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        background: #2c241e;

        z-index: 1000;

        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);

        transition: right 0.4s ease;
    }


    /* MENU APERTO */

    .navbar nav.active {
        right: 0;
    }


    /* VOCI DEL MENU */

    .navbar nav a {
        width: 100%;

        padding: 18px 0;

        color: #ffffff;

        font-size: 16px;
        font-weight: 400;

        letter-spacing: 0.04em;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }


    /* TRASFORMA ☰ IN X */

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

}
/* =========================================================
   FOOTER GENERALE KONA RESIDENCE
========================================================= */

.site-footer {
    width: 100%;

    background:
        linear-gradient(
            120deg,
            #2d2722,
            #211d1a
        );

    color: #ffffff;
}

.site-footer-content {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 16px 6%;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 90px;
}

.site-footer-item {
    height: 105px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


/* STUDIO DI PROGETTAZIONE */

.site-footer-architects {
    align-items: center;

    text-align: center;
}

.site-footer-label {
    display: block;

    margin-bottom: 12px;

    color: #c8a968;

    font-size: 8px;

    letter-spacing: 2.4px;

    text-transform: uppercase;
}

.site-footer-studio-logo {
    display: block;

    width: 125px;
    height: auto;

    filter:
        brightness(0)
        invert(1);

    opacity: 0.95;
}


/* KONA */

.site-footer-kona {
    align-items: center;

    text-align: center;
}

.site-footer-logo {
    display: block;

    width: 205px;
    height: auto;
}


/* IMPRESA */

.site-footer-company {
    align-items: flex-end;

    text-align: right;
}

.site-footer-company strong {
    display: block;

    margin: 0 0 9px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.4;

    letter-spacing: 1.2px;
}

.site-footer-company p {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 9px;

    line-height: 1.6;

    letter-spacing: 0.6px;
}


/* =========================================================
   FOOTER TABLET
========================================================= */

@media (max-width: 1050px) {

    .site-footer-content {
        max-width: 920px;

        padding: 18px 34px;

        gap: 42px;
    }

    .site-footer-item {
        height: 100px;
    }

    .site-footer-logo {
        width: 180px;
    }

    .site-footer-studio-logo {
        width: 110px;
    }

}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 650px) {

    .site-footer-content {
        grid-template-columns: 1fr;

        gap: 0;

        padding: 24px 22px;
    }

    .site-footer-item {
        width: 100%;

        height: auto;

        padding: 19px 0;

        align-items: center;

        text-align: center;
    }

    .site-footer-kona {
        order: 1;

        padding-top: 2px;
        padding-bottom: 22px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.08);
    }

    .site-footer-architects {
        order: 2;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.08);
    }

    .site-footer-company {
        order: 3;

        align-items: center;

        text-align: center;
    }

    .site-footer-logo {
        width: 165px;
    }

    .site-footer-studio-logo {
        width: 96px;
    }

    .site-footer-company strong {
        font-size: 12px;
    }

    .site-footer-company p {
        font-size: 8px;
    }

}


@media (max-width: 420px) {

    .site-footer-content {
        padding: 22px 16px;
    }

    .site-footer-logo {
        width: 150px;
    }

    .site-footer-studio-logo {
        width: 88px;
    }

}

/* =========================================================
   PULSANTE CONTATTI FISSO
========================================================= */

.fixed-contact {
    position: fixed;

    top: 50%;
    right: 0;
    left: auto;

    z-index: 9999;

    padding: 18px 10px;

    background-color: #b99a59;
    color: #ffffff;

    text-decoration: none;

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 2px;
    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform: translateY(-50%) rotate(180deg);

    transition:
        background-color 0.3s ease,
        padding 0.3s ease;
}


/* HOVER */

.fixed-contact:hover {
    background-color: #3d352f;

    padding-left: 13px;
    padding-right: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .fixed-contact {
        top: auto;

        right: auto;
        left: 50%;
        bottom: 18px;

        transform: translateX(-50%);

        writing-mode: horizontal-tb;

        padding: 14px 22px;

        white-space: nowrap;

        font-size: 9px;

        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
    }


    .fixed-contact:hover {
        padding: 14px 22px;
    }

}