:root {
    --color-bg: #FBF8F2;
    --color-navbar: #DCCFA9;
    --color-ink: #2B2620;
    --color-cream: #F3EEE1;
    --color-whatsapp: #25D366;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', Arial, sans-serif;

    --navbar-height: 84px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--color-ink);
    background: var(--color-bg);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: var(--color-navbar);
    z-index: 1000;
    transition: box-shadow .25s ease, background-color .25s ease;
}

.navbar.is-scrolled {
    box-shadow: 0 2px 14px rgba(0, 0, 0, .12);
}

.navbar-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
}

.navbar-social {
    display: flex;
    gap: 14px;
    justify-self: start;
}

.navbar-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity .2s ease;
}

.navbar-social a:hover {
    opacity: .75;
}

.navbar-social img {
    display: block;
    width: 22px;
    height: 22px;
    max-width: none;
}

.navbar-logo {
    justify-self: center;
}

.navbar-logo img {
    height: 53px;
    display: block;
}

.navbar-cta {
    justify-self: end;
    font-size: 20px;
    color: #945631;
    padding: 10px 20px;
    border: 1px solid #945631;
    white-space: nowrap;
    width: 221px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-cta:hover {
    background: rgba(181, 96, 46, .08);
}

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.navbar-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-ink);
    transition: transform .25s ease, opacity .25s ease;
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1050;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 80%;
    background: var(--color-navbar);
    z-index: 1090;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: calc(var(--navbar-height) + 24px) 24px 24px;
    overflow-y: auto;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-list a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--color-ink);
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(43, 38, 32, .15);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--navbar-height);
    background-image: url('/images/banner-hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(20, 15, 10, .55) 0%,
            rgba(20, 15, 10, .15) 45%,
            rgba(20, 15, 10, 0) 70%);
}

.hero-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    z-index: 1;
}

.hero-content {
    max-width: 635px;
    color: #fff;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 32px;
    max-width: 635px;
    font-weight: 400;
}

.btn-outline {
    display: inline-block;
    padding: 22px 28px;
    border: 1px solid currentColor;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    transition: background-color .2s ease, color .2s ease;
}

.hero-content .btn-outline:hover {
    background: #fff;
    color: var(--color-ink);
}

.services-card .btn-outline:hover {
    background: var(--color-ink);
    color: var(--color-cream);
}

.about {
    background: var(--color-navbar);
    padding: 170px 0;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1F1F1F;
}

.about-text {
    font-size: 20px;
    line-height: 1.7;
    color: #1F1F1F;
    max-width: 610px;
    margin: 0;
    font-weight: 400;
}

.whatsapp-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #22C55F;
    color: #fff;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 400;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
    transition: transform .2s ease;
    font-family: 'Poppins', sans-serif;
}

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

.services {
    position: relative;
    background-image: url('/images/banner-service.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1102px;
}

.services .container {
    display: flex;
    justify-content: center;
}

.services-card {
    background: #EFE7DC;
    width: 1216px;
    padding: 56px 60px;
    text-align: center;
    height: 586px;
}

.services-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 80px;
    color: #1F1F1F;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
    margin-bottom: 60px;
    margin-left: 63px;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #1F1F1F;
}

.service-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1F1F1F;
    margin: 0;
    font-weight: 400;
}

.gallery {
    background: var(--color-navbar);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    aspect-ratio: 623 / 927;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25);
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.consulting {
    background: var(--color-navbar);
    padding: 110px 0;
}

.consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consulting-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    line-height: 1.2;
    margin: 0 0 35px;
    color: #1F1F1F;
}

.consulting-text {
    font-size: 20px;
    line-height: 1.6;
    color: #1F1F1F;
    max-width: 540px;
    margin: 0 0 45px;
    font-weight: 400;
}

.consulting-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: -5px;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 6px;
    color: #1F1F1F;
}

.feature-text {
    font-size: 16px;
    line-height: 1.5;
    color: #1F1F1F;
    margin: 0;
    font-weight: 400;
}

.complementary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.complementary-image {
    height: 100%;
}

.complementary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.complementary-content {
    background: #945631;
    color: #fff;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.complementary-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    margin: 0 0 20px;
    color: #fff;
}

.complementary-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 88px;
    color: #fff;
    font-weight: 400;
}

.complementary-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 65px;
}

.complementary-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 4px;
    color: #fff;
}

.complementary-item-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-weight: 400;
}

.complementary-content .btn-outline:hover {
    background: #fff;
    color: var(--color-ink);
}

.testimonials {
    background: var(--color-navbar);
    padding: 70px 0;
}

.testimonials-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin: 0 0 40px;
    color: #323232;
}

.testimonials-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonials-scroll 50s linear infinite;
}

.testimonials-carousel:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 312px;
    background: #EFE7DC;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 260px;
    width: 378px;
    border-radius: 10px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #323232;
    margin: 0 0 20px;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #323232;
    margin-bottom: 8px;
}

.testimonial-author span {
    font-size: 15px;
    font-weight: 400;
    color: #323232;
}

.testimonials-footer {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1F1F1F;
    margin: 48px 0 0;
}

@keyframes testimonials-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.showcase {
    background: var(--color-navbar);
    padding: 60px 0 0;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin: 0 0 32px;
    color: #323232;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 30px;
}

.showcase-item {
    aspect-ratio: 11 / 8;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25);
    z-index: 1;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.visit-image {
    height: 100%;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-content {
    background: #363E2F;
    color: #fff;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 35px;
    margin: 0 0 16px;
    color: #fff;
}

.visit-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 65px;
    color: #FFFFFF;
    max-width: 670px;
    font-weight: 400;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.visit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
    width: 30px;
}

.visit-link,
.visit-hours {
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

.footer {
    background: var(--color-cream);
    padding: 56px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 50px;
    display: block;
}

.footer-social-label {
    font-size: 15px;
    color: #1F1F1F;
    margin: 0 0 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-social img {
    width: 25px;
    height: 25px;
    display: block;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 0 0 16px;
    color: #363E2F;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 15px;
    color: #1F1F1F;
    transition: opacity .2s ease;
}

.footer-list a:hover {
    opacity: .7;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--color-ink);
}

@media (max-width: 970px) {
    .whatsapp-btn span {
        display: none;
    }

    .whatsapp-btn {
        padding: 14px;
        right: 18px;
        bottom: 18px;
    }

    :root {
        --navbar-height: 64px;
    }

    .container {
        padding: 0 20px;
    }

     .navbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .navbar-social,
    .navbar-cta {
        display: none;
    }

    .navbar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-logo img {
        height: 40px;
    }

    .navbar-burger {
        display: flex;
        order: -1;
    }

    .hero-inner {
        bottom: 56px;
    }

    .hero-content {
        max-width: 100%;
    }

    .about {
        padding: 56px 0;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 15px;
    }

    .services {
        height: auto;
        padding: 56px 0;
    }

    .services-card {
        width: 100%;
        height: auto;
        padding: 36px 24px;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
        margin-left: 0;
    }

    .service-title {
        font-size: 20px;
    }

    .service-text br {
        display: none;
    }

    .gallery {
        padding: 24px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-item {
        aspect-ratio: 623 / 927;
    }

    .consulting {
        padding: 48px 0;
    }

    .consulting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .consulting-title {
        font-size: 24px;
    }

    .consulting-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .complementary {
        min-height: auto;
        padding: 48px 0;
    }

    .complementary-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .complementary-image {
        aspect-ratio: 4 / 3;
    }

    .complementary-content {
        padding: 40px 24px;
    }

    .complementary-title {
        font-size: 24px;
    }

    .testimonials {
        padding: 48px 0;
    }

    .testimonials-title {
        font-size: 22px;
        margin-bottom: 28px;
    }

    .testimonials-carousel {
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 240px;
        padding: 22px 18px;
        min-height: 170px;
    }

    .testimonials-footer {
        font-size: 16px;
        margin-top: 32px;
    }

    .showcase {
        padding: 40px 0 0;
    }

    .showcase-title {
        font-size: 17px;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px 40px;
    }

    .showcase-item {
        aspect-ratio: 16 / 9;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visit-image {
        aspect-ratio: 4 / 3;
    }

    .visit-content {
        padding: 40px 24px;
    }

    .visit-title {
        font-size: 22px;
    }

    .footer {
        padding: 40px 0;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}