/* =====================================================
   VARIABLES
====================================================== */

:root {

    --ink: #17221e;
    --ink-soft: #52605a;

    --green: #94B4C8;
    --green-light: #e9f0f4;

    --cream: #94B4C920;
    --cream-dark: #6190af;

    --white: #ffffff;

    --line: #e6e7e2;

    --gold: #6190af;

    --radius-xl: 42px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 15px;

    --shadow: 0 25px 70px rgba(25, 40, 33, .08);

    --container: 1300px;

}


/* =====================================================
   RESET
====================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(
            calc(100% - 20px),
            var(--container)
    );
    margin: auto;
}


/* =====================================================
   HEADER
====================================================== */

.site-header {
    position: fixed;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: min(
            calc(100% - 20px),
            1300px
    );

    z-index: 1000;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .8);

    border-radius: 999px;

    box-shadow: 0 15px 45px rgba(25, 40, 33, .08);

    transition: .3s ease;
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 22px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-img{
    height: auto;
    width: 23%
;
}


/* NAV */

.nav {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.nav > a,
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 10px 14px;

    border-radius: 999px;

    color: #59645e;

    font-size: 14px;
    font-weight: 500;

    transition: .2s;
}

.nav > a:hover,
.nav-dropdown:hover > a {
    background: var(--cream);
    color: var(--ink);
}


/* DROPDOWN */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a i {
    font-size: 9px;
}

.dropdown {
    position: absolute;

    top: 48px;
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    width: 220px;

    padding: 8px;

    background: white;

    border: 1px solid var(--line);

    border-radius: 20px;

    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;

    transition: .2s;
}

.nav-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: block;

    padding: 12px 14px;

    border-radius: 13px;

    color: var(--ink-soft);

    font-size: 14px;
}

.dropdown a:hover {
    background: var(--cream);
    color: var(--ink);
}


/* HEADER CTA */

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 8px 8px 16px;

    background: var(--green);

    color: white;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;
}


.header-cta i {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    background: white;
    color: var(--green);

    border-radius: 50%;

    font-size: 11px;
}

.header-cta:hover {
    background: var(--cream-dark);
}

/* =====================================================
   HERO
====================================================== */

.hero {
    padding: 150px 0 30px;
}

.hero-grid {
    display: grid;

    grid-template-columns:
                1.05fr
                .95fr;

    gap: 35px;

    align-items: stretch;
}


/* HERO COPY */

.hero-copy {
    min-height: 650px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;

    background: white;

    border-radius: var(--radius-xl);

    box-shadow: 0 20px 60px rgba(25, 40, 33, .04);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--green);

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-size: 10px;
    font-weight: 700;
}

.eyebrow.sfondo-scuro {
    color: #fff;
}

.eyebrow:before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);
}

.eyebrow.sfondo-scuro:before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ffffff;
}


.hero h1 {
    margin-top: 20px;

    max-width: 700px;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(48px, 6vw, 84px);

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 500;
}

.hero h1 strong {
    color: var(--green);
    font-weight: 600;
}

.hero-description {
    max-width: 500px;

    margin-top: 25px;

    color: var(--ink-soft);

    font-size: 14px;

    line-height: 1.8;
}


/* HERO ACTION */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    transition: .25s;
}

.btn-dark {
    background: var(--green);
    color: white;
}

.btn-dark:hover {
    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(39, 76, 60, .18);
}

.btn-light {
    background: var(--cream);
    color: var(--ink);
}

.btn-light:hover {
    background: var(--cream-dark);
    color: #fff;
}

.btn-light:hover i {
    color: #fff;
}

.btn i {
    font-size: 10px;
}


/* HERO IMAGE */

.hero-image {
    min-height: 650px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-xl);

    background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=90") center/cover;
}

.hero-image:after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
            to top,
            rgba(20, 30, 25, .45),
            transparent 45%
    );
}

.hero-image-card {
    position: absolute;

    z-index: 2;

    left: 25px;
    bottom: 25px;

    right: 25px;

    padding: 20px 22px;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(15px);

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.hero-image-card small {
    display: block;

    color: #78827c;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.hero-image-card strong {
    display: block;

    margin-top: 4px;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;
}

.hero-image-price {
    font-weight: 700;

    color: var(--green);

    white-space: nowrap;
}


/* =====================================================
   SEARCH BUBBLE
====================================================== */

.search-wrapper {
    position: relative;

    margin-top: 55px;

    z-index: 5;
}

.search-box {
    padding: 14px;

    background: white;

    border-radius: 32px;

    box-shadow: 0 25px 70px rgba(25, 40, 33, .12);

    border: 1px solid rgba(0, 0, 0, .035);
}

.search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 18px 13px;
}

.search-title {
    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 600;
}

.search-title span {
    color: #909992;
    font-weight: 400;
}

.search-link {
    color: var(--green);

    font-size: 14px;
    font-weight: 600;
}


/* SEARCH FIELDS */

.search-fields {
    display: grid;

    grid-template-columns:
                repeat(5, minmax(0, 1fr))
                auto;

    gap: 8px;
}

.field {
    height: 62px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 17px;

    background: var(--cream);

    border-radius: 19px;

    border: 1px solid transparent;

    transition: .2s;
}

.field:focus-within {
    border-color: #d4ddd7;
    background: white;
}

.field i {
    color: var(--green);

    font-size: 12px;
}

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

.field-label {
    display: block;

    color: #909a94;

    font-size: 14px;

    margin-bottom: 2px;
}

.field select,
.field input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--ink);

    font-size: 14px;

    padding: 0;

    appearance: none;
}

.search-submit {
    width: 62px;
    height: 62px;

    border: 0;

    display: grid;
    place-items: center;

    background: var(--green);

    color: white;

    border-radius: 19px;

    cursor: pointer;

    transition: .2s;
}

.search-submit:hover {
    transform: scale(1.03);

    background: var(--cream-dark);
}


/* =====================================================
   SECTION HEADER
====================================================== */

.section {
    padding: 20px 0;
}

.section-header {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}

.section-heading {
    max-width: 600px;
}

.section-heading h2 {
    margin-top: 14px;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 500;
}

.section-heading p {
    margin-top: 15px;

    color: var(--ink-soft);

    font-size: 14px;
}


/* =====================================================
   PROPERTY CARDS
====================================================== */

.properties {
    display: grid;

    grid-template-columns:
                repeat(3, 1fr);

    gap: 18px;
}

.property {
    background: white;

    border-radius: 30px;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, .035);

    transition: transform .25s,
    box-shadow .25s;
}

.property:hover {
    transform: translateY(-6px);

    box-shadow: 0 25px 55px rgba(25, 40, 33, .09);
}

.property-image {
    height: 300px;

    position: relative;

    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.property:hover .property-image img {
    transform: scale(1.04);
}

.property-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    padding: 8px 12px;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(8px);

    border-radius: 999px;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.property-favorite {
    position: absolute;

    right: 16px;
    top: 16px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 0;

    background: rgba(255, 255, 255, .9);

    cursor: pointer;
}

.property-content {
    padding: 23px;
}

.property-location {
    color: #89928c;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}

.property h3 {
    margin-top: 7px;

    font-family: 'Montserrat', sans-serif;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: -.5px;
}

.property-meta {
    display: flex;

    gap: 18px;

    margin-top: 12px;

    color: #6e7973;

    font-size: 10px;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-meta i {
    color: var(--green);
}

.property-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 22px;

    padding-top: 17px;

    border-top: 1px solid var(--line);
}

.property-price {
    font-family: 'Montserrat', sans-serif;

    color: var(--green);

    font-size: 19px;

    font-weight: 700;
}

.property-link {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--cream);

    transition: .2s;
}

.property-link:hover {
    background: var(--green);
    color: white;
}


/* =====================================================
   SPLIT SECTION
====================================================== */

.story {
    padding: 0 0 50px;
}

.story-grid {
    display: grid;

    grid-template-columns:
                .9fr
                1.1fr;

    gap: 18px;
}

.story-image {
    min-height: 560px;

    border-radius: var(--radius-xl);

    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.story-copy {
    padding: 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: var(--green);

    color: white;

    border-radius: var(--radius-xl);
}

.story-copy .eyebrow {
    color: #fff;
}

.story-copy h2 {
    margin-top: 18px;

    max-width: 600px;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(38px, 4vw, 57px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 500;
}

.story-copy h2 strong {
    color: #ffffff;
}

.story-copy p {
    max-width: 540px;
    margin-top: 22px;
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
}

.story-copy .btn {
    width: max-content;
    margin-top: 30px;
    background: white;
    color: var(--green);
}
.story-copy .btn:hover {
    width: max-content;
    margin-top: 30px;
    color: white;
    background-color: var(--green);
}


/* =====================================================
   SERVICES BUBBLES
====================================================== */

.services {
    padding: 0 0 50px;
}

.services-grid {
    display: grid;

    grid-template-columns:
                repeat(4, 1fr);

    gap: 12px;
}

.service {
    min-height: 220px;

    padding: 27px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: white;

    border-radius: 28px;

    border: 1px solid var(--line);
}

.service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    background: var(--green-light);

    color: var(--green);

    border-radius: 17px;
}

.service h3 {
    margin-top: 30px;

    font-size: 16px;

    font-weight: 600;
}

.service p {
    margin-top: 8px;

    color: var(--ink-soft);

    font-size: 11px;

    line-height: 1.65;
}


/* =====================================================
   CTA
====================================================== */

.cta {
    padding: 0 0 50px;
}

.cta-box {
    padding: 70px;

    position: relative;

    overflow: hidden;

    background: var(--cream-dark);

    border-radius: var(--radius-xl);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-box:after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -100px;
    top: -140px;

    border-radius: 50%;

    background: var(--green-light);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    margin-top: 15px;

    max-width: 650px;

    font-family: 'Montserrat', sans-serif;

    font-size: clamp(38px, 4vw, 50px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 500;
    color: #fff;
}

.cta p {
    margin-top: 14px;

    color: #fff;

    font-size: 13px;
}

.cta .btn {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =====================================================
   FOOTER
====================================================== */

footer {
    padding: 70px 0 25px;

    background: white;

    border-radius: 45px 45px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns:
                1.4fr
                .7fr
                .7fr
                .9fr;

    gap: 40px;

    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: 'Montserrat', sans-serif;

    font-weight: 700;
    font-size: 16px;
}

.footer-logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--green);

    color: white;

    border-radius: 50%;
}

.footer-description {
    max-width: 280px;

    margin-top: 17px;

    color: #7a847e;

    font-size: 11px;

    line-height: 1.8;
}

.footer-column h4 {
    margin-bottom: 16px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.footer-column a {
    display: block;

    margin-bottom: 9px;

    color: #747e78;

    font-size: 11px;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid var(--line);

    color: #9aa19c;

    font-size: 9px;
}


/* =====================================================
   MOBILE MENU
====================================================== */

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: var(--cream);

    cursor: pointer;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1050px) {

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu {
        display: grid;
        place-items: center;
    }

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

    .hero-copy,
    .hero-image {
        min-height: 550px;
    }

    .search-fields {
        grid-template-columns:
                    repeat(2, 1fr);
    }

    .search-submit {
        width: 100%;
    }

    .properties {
        grid-template-columns:
                    repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
                    repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns:
                    repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .container {
        width: min(
                calc(100% - 30px),
                var(--container)
        );
    }

    .site-header {
        top: 10px;

        width: calc(100% - 20px);
    }

    .header-inner {
        height: 64px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-copy {
        min-height: auto;

        padding: 35px 25px;

        border-radius: 30px;
    }

    .hero h1 {
        letter-spacing: -2.5px;
    }

    .hero-image {
        min-height: 450px;

        border-radius: 30px;
    }

    .hero-image-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .search-wrapper {
        margin-top: 20px;
    }

    .search-box {
        border-radius: 25px;
    }

    .search-fields {
        grid-template-columns:1fr;
    }

    .search-top {
        display: block;
    }

    .search-link {
        display: block;
        margin-top: 6px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        display: block;
    }

    .section-header .btn {
        margin-top: 20px;
    }

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

    .property-image {
        height: 280px;
    }

    .story {
        padding-bottom: 80px;
    }

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

    .story-image {
        min-height: 400px;
    }

    .story-copy {
        padding: 40px 28px;

        border-radius: 30px;
    }

    .services {
        padding-bottom: 80px;
    }

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

    .service {
        min-height: 200px;
    }

    .cta {
        padding-bottom: 80px;
    }

    .cta-box {
        padding: 40px 28px;

        display: block;

        border-radius: 30px;
    }

    .cta .btn {
        display: inline-flex;

        margin-top: 28px;
    }

    footer {
        border-radius: 30px 30px 0 0;
    }

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

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-bottom: 8px;
    }

}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--green-light);
    color: white;
}

.footer-main {
    padding: 0;
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 50%;

}

.footer-description {
    color: #9aa69f;
    font-size: 14px;
    max-width: 300px;
    margin-top: 15px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aab3ae;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #aab3ae;
    font-size: 14px;
    margin: 9px 0;
}

.footer-column a:hover {
    color: #94B4C9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding: 22px 0 0 0;
    display: flex;
    justify-content: space-between;
    color: #75817b;
    font-size: 10px;
}


       /* =====================================================
          AGENZIA.HTML
          SOLO STILE CONTENUTO INTERNO
       ===================================================== */


       /* -----------------------------------------------------
          PAGE
       ----------------------------------------------------- */

   .page {
       padding: 150px 0 100px;
       background: #f5f5f2;
   }

.page .container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* -----------------------------------------------------
   BREADCRUMB
----------------------------------------------------- */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 55px;

    color: #888883;
    font-size: 13px;
}

.breadcrumb a {
    color: #555550;
    transition: color .25s ease;
}

.breadcrumb a:hover {
    color: #111;
}

.breadcrumb i {
    font-size: 9px;
    color: #aaa;
}


/* -----------------------------------------------------
   EYEBROW
----------------------------------------------------- */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #777770;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #c5a46d;
}


/* -----------------------------------------------------
   MAIN TITLE
----------------------------------------------------- */

.page-title {
    max-width: 900px;

    margin: 18px 0 0;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.055em;
}

.page-title strong {
    font-weight: 700;
}


/* -----------------------------------------------------
   ABOUT GRID
----------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);

    align-items: center;

    gap: 70px;

    margin-top: 85px;
}


/* -----------------------------------------------------
   ABOUT IMAGE
----------------------------------------------------- */

.about-image {
    height: 590px;

    overflow: hidden;

    border-radius: 44px;

    background: #deded9;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.about-image:hover img {
    transform: scale(1.035);
}


/* -----------------------------------------------------
   ABOUT CONTENT
----------------------------------------------------- */

.about-content {
    max-width: 520px;
}

.about-content h2 {
    margin: 18px 0 25px;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;

    line-height: 1.07;
    letter-spacing: -.045em;
}

.about-content h2 strong {
    font-weight: 700;
}

.about-content p {
    max-width: 490px;

    margin-bottom: 16px;

    color: #6f6f69;

    font-size: 16px;
    line-height: 1.8;
}


/* -----------------------------------------------------
   STATISTICHE
----------------------------------------------------- */

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 38px;
}

.about-stat {
    min-height: 125px;

    padding: 22px 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #fff;

    border: 1px solid rgba(0,0,0,.035);
    border-radius: 25px;

    transition:
            transform .3s ease,
            box-shadow .3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);

    box-shadow:
            0 18px 45px rgba(0,0,0,.07);
}

.about-stat strong {
    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: 31px;
    font-weight: 700;

    line-height: 1;
    letter-spacing: -.04em;
}

.about-stat span {
    max-width: 90px;

    color: #888883;

    font-size: 12px;
    line-height: 1.4;
}


/* -----------------------------------------------------
   SECTION
----------------------------------------------------- */

.section {
    margin-top: 70px;
    margin-bottom: 100px;
}


/* -----------------------------------------------------
   SECTION TITLE
----------------------------------------------------- */

.section-title {
    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 4vw, 55px);
    font-weight: 500;

    line-height: 1.07;
    letter-spacing: -.045em;
}

.section-title strong {
    font-weight: 700;
}


/* -----------------------------------------------------
   DESCRIZIONE
----------------------------------------------------- */

.detail-description {
    max-width: 720px;

    margin-top: 28px;

    color: #6f6f69;

    font-size: 16px;
    line-height: 1.85;
}


/* -----------------------------------------------------
   SERVICE GRID
----------------------------------------------------- */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    margin-top: 55px;
}


/* -----------------------------------------------------
   SERVICE CARD
----------------------------------------------------- */

.service-card {
    min-height: 285px;

    padding: 28px;

    display: flex;
    align-items: flex-end;

    background: #fff;

    border: 1px solid rgba(0,0,0,.035);
    border-radius: 34px;

    transition:
            transform .3s ease,
            box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
            0 22px 55px rgba(0,0,0,.075);
}


/* -----------------------------------------------------
   SERVICE ICON
----------------------------------------------------- */

.service-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #f1f1ec;

    color: #20201e;

    font-size: 18px;
}


/* -----------------------------------------------------
   SERVICE TITLE
----------------------------------------------------- */

.service-card h3 {
    margin-bottom: 9px;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 700;

    letter-spacing: -.025em;
}

.service-card p {
    color: #85857f;

    font-size: 14px;
    line-height: 1.65;
}


/* -----------------------------------------------------
   CTA FINALE
----------------------------------------------------- */

.page > .container > div:last-child {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .035);
    border-radius: 42px !important;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .035);
}

.page > .container > div:last-child::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -150px;
    right: -80px;

    border-radius: 50%;

    background: #f1eee6;

    pointer-events: none;
}

.page > .container > div:last-child::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -120px;
    left: -60px;

    border-radius: 50%;

    background: #f5f2eb;

    pointer-events: none;
}

.page > .container > div:last-child > * {
    position: relative;
    z-index: 2;
}


/* -----------------------------------------------------
   BUTTON
----------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    transition:
            transform .25s ease,
            box-shadow .25s ease;
}

.btn i {
    font-size: 12px;

    transition: transform .25s ease;
}

.btn:hover {
    transform: translateY(-3px);

    box-shadow:
            0 12px 30px rgba(0,0,0,.13);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-dark {
    background: #181817;
    color: #fff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

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

        gap: 45px;
    }

    .about-image {
        height: 520px;
    }

    .about-content {
        max-width: 700px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .page {
        padding: 125px 0 65px;
    }

    .page .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .breadcrumb {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 41px;
        letter-spacing: -.06em;
    }

    .about-grid {
        margin-top: 55px;
    }

    .about-image {
        height: 390px;

        border-radius: 32px;
    }

    .about-content h2 {
        font-size: 37px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr;

        gap: 9px;

        margin-top: 30px;
    }

    .about-stat {
        min-height: 100px;
    }

    .section {
        margin-top: 95px;
        margin-bottom: 70px;
    }

    .section-title {
        font-size: 37px;
    }

    .detail-description {
        font-size: 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 35px;
    }

    .service-card {
        min-height: 225px;

        padding: 25px;

        border-radius: 29px;
    }

    .page > .container > div:last-child {
        padding: 0;
        border-radius: 32px !important;
    }

}


/* =====================================================
   MOBILE PICCOLO
===================================================== */

@media (max-width: 420px) {

    .page-title {
        font-size: 38px;
    }

    .about-image {
        height: 340px;
    }

    .about-content h2,
    .section-title {
        font-size: 33px;
    }

}
       /* =====================================================
          IMMOBILI.HTML
          SOLO STILE CONTENUTO INTERNO
          BUBBLE / MINIMAL / MODERNO
       ===================================================== */


       /* -----------------------------------------------------
          PAGE
       ----------------------------------------------------- */

   .page {
       padding: 150px 0 110px;
       background: #f5f5f2;
   }

.page .container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* -----------------------------------------------------
   BREADCRUMB
----------------------------------------------------- */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 55px;

    color: #888883;
    font-size: 13px;
}

.breadcrumb a {
    color: #555550;

    transition: color .25s ease;
}

.breadcrumb a:hover {
    color: #111;
}

.breadcrumb i {
    color: #aaa;
    font-size: 9px;
}


/* -----------------------------------------------------
   EYEBROW
----------------------------------------------------- */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #777770;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #c5a46d;
}


/* -----------------------------------------------------
   PAGE TITLE
----------------------------------------------------- */

.page-title {
    max-width: 850px;

    margin: 18px 0 0;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 6vw, 76px);
    font-weight: 500;

    line-height: 1.02;
    letter-spacing: -.055em;
}

.page-title strong {
    font-weight: 700;
}


/* -----------------------------------------------------
   INTRO
----------------------------------------------------- */

.page-intro {
    max-width: 620px;

    margin-top: 28px;

    color: #70706b;

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   FILTER BUBBLE
===================================================== */

.filter-bubble {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr))
        62px;

    align-items: stretch;

    gap: 8px;

    margin-top: 55px;
    padding: 9px;

    background: #fff;

    border: 1px solid rgba(0,0,0,.035);
    border-radius: 30px;

    box-shadow:
            0 15px 45px rgba(0,0,0,.045);
}


/* -----------------------------------------------------
   FILTER FIELD
----------------------------------------------------- */

.filter-field {
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 18px;

    border-radius: 23px;

    transition: background .25s ease;
}

.filter-field:hover {
    background: #f6f6f2;
}

.filter-field > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #f1f1ec;

    color: #222;

    font-size: 14px;
}

.filter-field > div {
    min-width: 0;

    display: flex;
    flex-direction: column;

    width: 100%;
}


/* -----------------------------------------------------
   LABEL
----------------------------------------------------- */

.filter-field label {
    margin-bottom: 3px;

    color: #92928d;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* -----------------------------------------------------
   INPUT / SELECT
----------------------------------------------------- */

.filter-field select,
.filter-field input {
    width: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #20201e;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.filter-field select {
    cursor: pointer;
}

.filter-field input::placeholder {
    color: #999994;
    opacity: 1;
}


/* -----------------------------------------------------
   FILTER BUTTON
----------------------------------------------------- */

.filter-button {
    width: 62px;
    height: 62px;

    align-self: center;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 21px;

    background: #181817;
    color: #fff;

    cursor: pointer;

    transition:
            transform .25s ease,
            box-shadow .25s ease;
}

.filter-button i {
    font-size: 15px;

    transition: transform .25s ease;
}

.filter-button:hover {
    transform: translateY(-3px);

    box-shadow:
            0 12px 25px rgba(0,0,0,.16);
}

.filter-button:hover i {
    transform: translateX(4px);
}


/* =====================================================
   PROPERTY GRID
===================================================== */

.property-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 55px;
}


/* =====================================================
   PROPERTY CARD
===================================================== */

.property {
    overflow: hidden;

    background: #fff;

    border: 1px solid rgba(0,0,0,.035);
    border-radius: 34px;

    box-shadow:
            0 10px 35px rgba(0,0,0,.025);

    transition:
            transform .35s cubic-bezier(.2,.7,.2,1),
            box-shadow .35s ease;
}

.property:hover {
    transform: translateY(-7px);

    box-shadow:
            0 25px 60px rgba(0,0,0,.08);
}


/* =====================================================
   PROPERTY IMAGE
===================================================== */

.property-image {
    position: relative;

    height: 285px;

    overflow: hidden;

    background: #deded9;
}

.property-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
            transform .7s cubic-bezier(.2,.7,.2,1);
}

.property:hover .property-image img {
    transform: scale(1.045);
}


/* -----------------------------------------------------
   PROPERTY BADGE
----------------------------------------------------- */

.property-badge {
    position: absolute;

    top: 17px;
    left: 17px;

    padding: 9px 13px;

    border-radius: 999px;

    background: rgba(255,255,255,.92);

    color: #20201e;

    font-size: 11px;
    font-weight: 700;

    box-shadow:
            0 5px 18px rgba(0,0,0,.08);

    backdrop-filter: blur(10px);
}


/* =====================================================
   PROPERTY CONTENT
===================================================== */

.property-content {
    padding: 25px 25px 23px;
}


/* -----------------------------------------------------
   LOCATION
----------------------------------------------------- */

.property-location {
    margin-bottom: 8px;

    color: #8a8a84;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* -----------------------------------------------------
   TITLE
----------------------------------------------------- */

.property h3 {
    margin: 0;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -.035em;
}


/* =====================================================
   PROPERTY META
===================================================== */

.property-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 20px;
    padding-top: 17px;

    border-top: 1px solid #eeeeea;

    color: #777771;

    font-size: 12px;
}

.property-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.property-meta i {
    color: #9b9b95;
    font-size: 11px;
}


/* =====================================================
   PROPERTY BOTTOM
===================================================== */

.property-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 23px;
}


/* -----------------------------------------------------
   PRICE
----------------------------------------------------- */

.property-price {
    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 700;

    letter-spacing: -.035em;
}


/* -----------------------------------------------------
   PROPERTY LINK
----------------------------------------------------- */

.property-link {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f1ec;

    color: #181817;

    transition:
            background .25s ease,
            color .25s ease,
            transform .25s ease;
}

.property-link i {
    font-size: 12px;

    transition: transform .25s ease;
}

.property-link:hover {
    background: #181817;
    color: #fff;

    transform: translateY(-2px);
}

.property-link:hover i {
    transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .filter-bubble {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-button {
        width: 100%;
        border-radius: 20px;
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .page {
        padding: 125px 0 70px;
    }

    .page .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .breadcrumb {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 42px;
        letter-spacing: -.06em;
    }

    .page-intro {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.75;
    }


    /* FILTER */

    .filter-bubble {
        grid-template-columns: 1fr;

        gap: 5px;

        margin-top: 40px;
        padding: 8px;

        border-radius: 28px;
    }

    .filter-field {
        min-height: 70px;

        padding: 0 15px;

        border-radius: 20px;
    }

    .filter-button {
        width: 100%;
        height: 55px;

        margin-top: 3px;

        border-radius: 18px;
    }


    /* PROPERTY GRID */

    .property-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 40px;
    }

    .property {
        border-radius: 30px;
    }

    .property-image {
        height: 260px;
    }

    .property-content {
        padding: 23px 22px 21px;
    }

    .property h3 {
        font-size: 22px;
    }

    .property-meta {
        gap: 9px;
    }

}


/* =====================================================
   MOBILE PICCOLO
===================================================== */

@media (max-width: 420px) {

    .page-title {
        font-size: 38px;
    }

    .property-image {
        height: 235px;
    }

    .property-price {
        font-size: 19px;
    }

}
       /* =====================================================
          CONTATTI.HTML
          SOLO STILE CONTENUTO INTERNO
          BUBBLE / MINIMAL / MODERNO
       ===================================================== */


       /* -----------------------------------------------------
          PAGE
       ----------------------------------------------------- */

   .page {
       padding: 150px 0 110px;
       background: #f5f5f2;
   }

.page .container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}


/* -----------------------------------------------------
   BREADCRUMB
----------------------------------------------------- */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 55px;

    color: #888883;
    font-size: 13px;
}

.breadcrumb a {
    color: #555550;
    transition: color .25s ease;
}

.breadcrumb a:hover {
    color: #111;
}

.breadcrumb i {
    color: #aaa;
    font-size: 9px;
}


/* -----------------------------------------------------
   EYEBROW
----------------------------------------------------- */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #777770;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: #c5a46d;
}


/* -----------------------------------------------------
   PAGE TITLE
----------------------------------------------------- */

.page-title {
    max-width: 850px;

    margin: 18px 0 0;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: clamp(45px, 6vw, 76px);
    font-weight: 500;

    line-height: 1.02;
    letter-spacing: -.055em;
}

.page-title strong {
    font-weight: 700;
}


/* -----------------------------------------------------
   INTRO
----------------------------------------------------- */

.page-intro {
    max-width: 650px;

    margin-top: 28px;

    color: #70706b;

    font-size: 16px;
    line-height: 1.8;
}


/* =====================================================
   CONTACT GRID
===================================================== */

.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 18px;

    margin-top: 65px;
}


/* =====================================================
   CONTACT INFO
===================================================== */

.contact-info {
    position: relative;

    overflow: hidden;

    min-height: 620px;

    padding: 48px;

    display: flex;
    flex-direction: column;

    background: #20201e;

    border-radius: 42px;

    color: #fff;

    box-shadow:
            0 20px 55px rgba(0,0,0,.08);
}


/* -----------------------------------------------------
   DECORAZIONI BUBBLE
----------------------------------------------------- */

.contact-info::before {
    content: "";

    position: absolute;

    width: 290px;
    height: 290px;

    top: -145px;
    right: -100px;

    border-radius: 50%;

    background: rgba(255,255,255,.045);

    pointer-events: none;
}

.contact-info::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    bottom: -90px;
    left: -70px;

    border-radius: 50%;

    background: rgba(255,255,255,.035);

    pointer-events: none;
}

.contact-info > * {
    position: relative;
    z-index: 2;
}


/* -----------------------------------------------------
   CONTACT INFO EYEBROW
----------------------------------------------------- */

.contact-info .eyebrow {
    color: #aaa9a2 !important;
}

.contact-info .eyebrow::before {
    background: #c5a46d;
}


/* -----------------------------------------------------
   CONTACT TITLE
----------------------------------------------------- */

.contact-info h2 {
    max-width: 430px;

    margin: 18px 0 20px;

    color: #fff;

    font-family: "Manrope", sans-serif;
    font-size: clamp(35px, 4vw, 50px);
    font-weight: 500;

    line-height: 1.07;
    letter-spacing: -.045em;
}


/* -----------------------------------------------------
   CONTACT DESCRIPTION
----------------------------------------------------- */

.contact-info > p {
    max-width: 390px;

    margin-bottom: 42px;

    color: #aaa9a3;

    font-size: 15px;
    line-height: 1.75;
}


/* =====================================================
   CONTACT LIST
===================================================== */

.contact-list {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: auto;
}


/* -----------------------------------------------------
   CONTACT ITEM
----------------------------------------------------- */

.contact-item {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 15px 16px;

    border: 1px solid rgba(255,255,255,.075);
    border-radius: 21px;

    background: rgba(255,255,255,.035);

    transition:
            background .25s ease,
            transform .25s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,.065);

    transform: translateX(4px);
}


/* -----------------------------------------------------
   CONTACT ICON
----------------------------------------------------- */

.contact-item > i {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255,255,255,.09);

    color: #fff;

    font-size: 14px;
}


/* -----------------------------------------------------
   CONTACT TEXT
----------------------------------------------------- */

.contact-item > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.contact-item small {
    color: #8e8d87;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-item strong {
    color: #f5f5f2;

    font-size: 14px;
    font-weight: 500;
}


/* =====================================================
   FORM CARD
===================================================== */

.form-card {
    padding: 48px;

    background: #fff;

    border: 1px solid rgba(0,0,0,.035);
    border-radius: 42px;

    box-shadow:
            0 15px 50px rgba(0,0,0,.035);
}


/* -----------------------------------------------------
   FORM TITLE
----------------------------------------------------- */

.form-card h2 {
    margin: 0;

    color: #181817;

    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 700;

    line-height: 1.1;
    letter-spacing: -.04em;
}

.form-card > p {
    margin-top: 10px;

    color: #85857f;

    font-size: 14px;
}


/* =====================================================
   FORM GRID
===================================================== */

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px 14px;

    margin-top: 38px;
}


/* -----------------------------------------------------
   FORM GROUP
----------------------------------------------------- */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}


/* -----------------------------------------------------
   LABEL
----------------------------------------------------- */

.form-group > label {
    margin-bottom: 8px;

    color: #666660;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .06em;
}


/* -----------------------------------------------------
   INPUT / SELECT / TEXTAREA
----------------------------------------------------- */

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #e5e5e0;
    border-radius: 17px;

    outline: none;

    background: #f8f8f5;

    color: #20201e;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    transition:
            border-color .25s ease,
            background .25s ease,
            box-shadow .25s ease;
}

.form-group input:not([type="checkbox"]),
.form-group select {
    height: 53px;

    padding: 0 16px;
}

.form-group textarea {
    min-height: 145px;

    padding: 15px 16px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa9a3;
}

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c7c7c0;

    background: #fff;

    box-shadow:
            0 0 0 4px rgba(197,164,109,.08);
}


/* -----------------------------------------------------
   PRIVACY CHECKBOX
----------------------------------------------------- */

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 9px;

    margin: 0;

    color: #85857f;

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 0;
    text-transform: none;

    cursor: pointer;
}

.form-group input[type="checkbox"] {
    width: 16px !important;
    height: 16px;

    accent-color: #20201e;

    cursor: pointer;
}


/* =====================================================
   SUBMIT
===================================================== */

.form-submit {
    width: 100%;

    min-height: 56px;

    margin-top: 2px;

    border: 0;
    border-radius: 18px;

    cursor: pointer;
}

.form-submit i {
    transition: transform .25s ease;
}

.form-submit:hover i {
    transform: translateX(4px);
}


/* =====================================================
   BUTTON
===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 600;

    transition:
            transform .25s ease,
            box-shadow .25s ease;
}

.btn:hover {
    transform: translateY(-3px);

    box-shadow:
            0 12px 30px rgba(0,0,0,.13);
}

.btn-dark {
    background: #181817;
    color: #fff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .contact-info {
        min-height: auto;

        padding: 42px;
    }

    .contact-list {
        margin-top: 35px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .page {
        padding: 125px 0 70px;
    }

    .page .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .breadcrumb {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 42px;

        letter-spacing: -.06em;
    }

    .page-intro {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.75;
    }

    .contact-grid {
        margin-top: 40px;
    }

    .contact-info {
        padding: 32px 25px;

        border-radius: 32px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-info > p {
        margin-bottom: 30px;

        font-size: 14px;
    }

    .contact-item {
        padding: 13px;

        border-radius: 18px;
    }

    .contact-item > i {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        border-radius: 13px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .form-card {
        padding: 30px 22px;

        border-radius: 32px;
    }

    .form-card h2 {
        font-size: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .form-group input:not([type="checkbox"]),
    .form-group select {
        height: 52px;
    }

    .form-group textarea {
        min-height: 135px;
    }

}


/* =====================================================
   MOBILE PICCOLO
===================================================== */

@media (max-width: 420px) {

    .page-title {
        font-size: 38px;
    }

    .contact-info h2 {
        font-size: 33px;
    }

    .form-card {
        padding: 27px 19px;
    }

}