.hero {
    position: relative;
    min-height: 100svh;
    background-image: url("../images/hero.webp");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: clamp(5rem, 12vh, 9rem) 0 3rem;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(245, 235, 220, 0.345),
            rgba(245, 235, 220, 0.9));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
    margin-inline: auto;
    text-align: center;
}

.hero__icon {
    width: 400px;
    margin: 0 auto 1.4rem;
    display: block;
    filter: drop-shadow(0 8px 18px var(--hero-beige));
}

.hero__content h1 {
    font-size: clamp(2.2rem, 7vw, 3rem);
    font-weight: 500;
    color: #000;
}

.hero__content p {
    color: #514f4f;
    font-size: clamp(1rem, 2.8vw, 1.2rem);
    line-height: 1.6;
}

.hero__actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    flex-wrap: nowrap;
}

.hero__cta {
    width: fit-content;
    padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1.4rem, 4vw, 1.8rem);
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero__cta--primary {
    position: relative;
    overflow: hidden;
    background-color: var(--hero-beige);
    color: var(--white);
}

.hero__cta--primary::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transition: transform 0.6s ease;
}

.hero__cta--primary:hover::after {
    transform: translateX(120%);
}

.hero__cta--outline {
    background: transparent;
    border: 2px solid var(--hero-beige);
    color: var(--hero-beige);
}

.hero__cta--outline:hover {
    background-color: var(--hero-beige);
    color: var(--white);
}

.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 2.2rem;
    color: var(--hero-beige);
    animation: hero-bounce 1.6s infinite ease-in-out;
}

.hero__scroll i {
    display: block;
}

@keyframes hero-bounce {
    0% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }

    100% {
        transform: translate(-50%, 0);
    }
}

.section {
    font-family: 'Playfair Display', serif;
    padding: clamp(4rem, 10vw, 9rem) 1.5rem;
    padding-bottom: 0;
    background-color: var(--bg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    font-style: italic;
}

.section__content {
    max-width: 800px;
    margin: auto;
}

.section p {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    line-height: 1.9;
    color: #222;
    opacity: 0.9;
}

.section h3 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}

.includes {
    padding: clamp(4rem, 10vw, 8rem) 2rem;
    padding-top: 0;
    background: linear-gradient(to bottom,
            var(--bg) 0%,
            var(--bg) 25%,
            var(--white) 25%,
            var(--white) 100%);
}


.includes__container {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 5rem);
}

.includes__image {
    display: flex;
    justify-content: center;
}

.includes__image img {
    width: min(420px, 90%);
    height: auto;
}

.includes__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

.includes__title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    letter-spacing: 0.15em;
    font-style: italic;
}

.includes__title span {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
}

.includes__title strong {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
}

.includes__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.includes__list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 500;
}

.includes__list i {
    font-size: 1.4rem;
    color: var(--hero-beige);
}

@media (min-width: 768px) {
    .includes__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-height: 700px) {
    .hero__scroll {
        display: none;
    }
}

@media(max-width:500px) {
    .includes {
        --cut: 28%;

        padding: clamp(4rem, 10vw, 8rem) 2rem 0;
        background:
            linear-gradient(to bottom,
                var(--bg) 0%,
                var(--bg) calc(var(--cut) - 2%),
                color-mix(in srgb, var(--bg) 50%, var(--white) 50%) var(--cut),
                var(--white) calc(var(--cut) + 2%),
                var(--white) 100%);
        margin-bottom: 2rem;
    }
}


.services {
    border-top: 2px solid var(--leve-beige);
    padding: clamp(4rem, 10vw, 8rem) 1.5rem;
}

.services__header {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services__header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    letter-spacing: 0.12em;
}

.services__header p {
    color: #6f6f6f;
    margin-top: 1rem;
}

.services__wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.services__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.services__track::-webkit-scrollbar {
    display: none;
}

.services__card {
    height: 360px;
    background: var(--bg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.services__card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services__card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    flex-grow: 1;
}

.services__cta {
    margin-top: 1.5rem;
    align-self: flex-start;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-decoration: none;
    color: var(--hero-beige);
}

.services__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 235, 220, 0.392);
    backdrop-filter: blur(6px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--hero-beige);
    cursor: pointer;
}

.services__nav--left {
    left: -0.8rem;
}

.services__nav--right {
    right: -0.8rem;
}

@media (max-width: 768px) {
    .services__nav {
        display: none;
    }

    .services__card {
        height: 340px;
    }
}



.about {
    background-color: #000;
    padding: clamp(4rem, 10vw, 8rem) 1.5rem;
    color: var(--white);
}

.about__container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.about__content {
    max-width: 560px;
}

.about__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--hero-beige);
    margin-bottom: 1rem;
}

.about__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.8rem;
}

.about__text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: #d5d5d5;
}

.about__text+.about__text {
    margin-top: 1.2rem;
}

.about__image {
    display: flex;
    justify-content: center;
}

.about__image img {
    width: min(420px, 90%);
    height: auto;
    object-fit: cover;
}


@media (min-width: 900px) {
    .about__container {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .about__image {
        justify-content: flex-end;
    }
}

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

    .about__image {
        order: -1;
        margin-bottom: 2.5rem;
    }

    .about__content {
        text-align: left;
    }
}


.team {
    background-color: var(--white);
    padding: clamp(4rem, 10vw, 8rem) 1.5rem;
}

.team__container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 6vw, 4rem);
}

.team__header {
    text-align: center;
}

.team__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--hero-beige);
    margin-bottom: 1rem;
}

.team__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    line-height: 1.3;
    font-weight: 600;
    color: #000;
}

.team__content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.team__text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .team__header {
        text-align: left;
    }
}


.final-cta {
    background-color: var(--bg);
    padding: clamp(4.5rem, 10vw, 9rem) 1.5rem;
    text-align: center;
}

.final-cta__container {
    max-width: 780px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.final-cta__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--hero-beige);
}

.final-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5.5vw, 3rem);
    line-height: 1.25;
    font-weight: 600;
    color: #000;
}

.final-cta__text {
    font-size: clamp(1rem, 2.6vw, 1.15rem);
    line-height: 1.8;
    color: #555;
    max-width: 640px;
}

.final-cta__button {
    margin-top: 1.2rem;
    padding: clamp(0.9rem, 2.5vw, 1.1rem) clamp(2rem, 6vw, 2.6rem);
    background-color: var(--hero-beige);
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    border-radius: 999px;
    transition: .3s ease;
}

.final-cta__button:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .final-cta {
        text-align: left;
    }

    .final-cta__container {
        align-items: flex-start;
    }
}