:root {
    --white: #fff;
    --off-white: #f7f6f2;
    --cream: #efede7;
    --black: #151515;
    --gray: #77736d;
    --line: #dedbd4;

    --serif: "Cormorant Garamond", serif;
    --sans: "DM Sans", sans-serif;

    --container: 1240px;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--black);
    font-family: var(--sans);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--black);
    color: white;
}


/* LOADER */

.loader {
    position: fixed;
    inset: 0;

    background: var(--black);
    color: white;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;

    font-family: var(--serif);
    font-size: 28px;

    letter-spacing: 5px;
    line-height: 1.05;
}


/* CURSOR */

.cursor,
.cursor-follower {
    position: fixed;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 100000;
}

.cursor {
    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;

    mix-blend-mode: difference;
}

.cursor-follower {
    width: 34px;
    height: 34px;

    border: 1px solid white;
    border-radius: 50%;

    mix-blend-mode: difference;

    transition:
        width .3s ease,
        height .3s ease;
}

.cursor-active .cursor-follower {
    width: 60px;
    height: 60px;
}


/* NAVBAR */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 22px 4vw;

    z-index: 500;

    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transition:
        background .4s ease,
        color .4s ease,
        padding .4s ease;
}

.navbar.scrolled {
    background: rgba(247,246,242,.94);

    color: var(--black);

    backdrop-filter: blur(15px);

    padding-top: 13px;
    padding-bottom: 13px;

    border-bottom: 1px solid var(--line);
}

.brand {
    width: 80px;
}

.brand img {
    max-height: 55px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;

    font-size: 11px;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width .3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-call {
    border: 1px solid currentColor;

    padding: 11px 18px;

    font-size: 10px;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    color: currentColor;

    width: 35px;
    height: 30px;

    flex-direction: column;
    justify-content: center;

    gap: 7px;
}

.menu-btn span {
    width: 100%;
    height: 1px;

    background: currentColor;
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 400;

    background: var(--black);
    color: white;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 22px;

    transform: translateY(-100%);

    transition:
        transform .7s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--serif);
    font-size: 48px;
}


/* COMMON */

.section {
    position: relative;

    padding:
        150px
        max(5vw, calc((100vw - var(--container)) / 2));

    overflow: hidden;
}

.section-number {
    position: absolute;

    top: 70px;
    left: max(3vw, calc((100vw - var(--container)) / 2));

    font-size: 10px;

    letter-spacing: 2px;

    color: var(--gray);
}

.eyebrow {
    margin-bottom: 22px;

    color: var(--gray);

    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.craft-title h2,
.location-header h2 {
    font-family: var(--serif);

    font-weight: 500;

    font-size: clamp(50px,6vw,90px);

    line-height: .88;

    letter-spacing: -2px;
}

em {
    font-style: italic;
    font-weight: 400;
}


/* BUTTON */

.btn {
    display: inline-flex;

    align-items: center;

    gap: 35px;

    padding: 17px 22px;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    border: 1px solid transparent;

    transition:
        background .3s ease,
        color .3s ease;
}

.btn span {
    font-size: 16px;
}

.btn-light {
    background: white;
    color: var(--black);
}

.btn-outline {
    color: white;
    border-color: rgba(255,255,255,.6);
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-dark {
    background: var(--black);
    color: white;
}


/* HERO */

.hero {
    position: relative;

    height: 100svh;

    min-height: 680px;

    overflow: hidden;

    color: white;

    background: var(--black);
}

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.76),
            rgba(0,0,0,.15)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    padding: 0 7vw;

    max-width: 1050px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.hero-logo {
    width: 105px;

    margin-bottom: 25px;
}

.hero-logo img {
    max-height: 95px;
    object-fit: contain;
}

.hero-title {
    font-family: var(--serif);

    font-size: clamp(60px,8vw,125px);

    font-weight: 400;

    line-height: .8;

    letter-spacing: -4px;

    margin-bottom: 32px;
}

.hero-title span {
    display: block;
}

.hero-description {
    max-width: 440px;

    font-size: 14px;

    line-height: 1.7;

    color: rgba(255,255,255,.78);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.hero-bottom {
    position: absolute;

    left: 7vw;
    bottom: 35px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 18px;

    font-size: 9px;

    letter-spacing: 2px;
}

.scroll-line {
    width: 70px;
    height: 1px;

    background: rgba(255,255,255,.35);

    overflow: hidden;
}

.scroll-line span {
    display: block;

    width: 30px;
    height: 1px;

    background: white;

    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    from {
        transform: translateX(-40px);
    }

    to {
        transform: translateX(80px);
    }
}


/* ABOUT */

.about {
    background: var(--off-white);
}

.about-layout {
    margin-top: 80px;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 9vw;

    align-items: center;
}

.about-content {
    max-width: 530px;
}

.about-content h2 {
    margin-bottom: 35px;
}

.about-lead {
    font-family: var(--serif);

    font-size: 34px;

    line-height: 1.05;

    margin-bottom: 25px;
}

.about-content > p:not(.eyebrow):not(.about-lead) {
    color: var(--gray);

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;

    gap: 20px;

    margin-top: 18px;

    padding-bottom: 8px;

    border-bottom: 1px solid var(--black);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-image {
    position: relative;

    overflow: hidden;
}

.about-image img {
    aspect-ratio: 1.1;

    object-fit: contain;

    transition:
        transform 1.2s cubic-bezier(.16,1,.3,1);
}

.about-image:hover img {
    transform: scale(1.04);
}

.image-caption {
    position: absolute;

    left: 20px;
    bottom: 20px;

    padding: 10px 13px;

    background: white;

    font-size: 8px;

    letter-spacing: 2px;
}


/* CREATIONS */

.creations {
    background: var(--cream);
}

.creation-top {
    display: flex;

    justify-content: space-between;
    align-items: end;

    margin-bottom: 70px;
}

.slider-controls {
    display: flex;

    align-items: center;

    gap: 18px;
}

.slider-btn {
    width: 52px;
    height: 52px;

    border: 1px solid var(--black);

    background: transparent;

    border-radius: 50%;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease;
}

.slider-btn:hover {
    background: var(--black);
    color: white;
}

.slide-counter {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 11px;

    letter-spacing: 2px;
}

.slide-counter small {
    color: var(--gray);
}

.creation-slider {
    overflow: hidden;
}

.creation-slides {
    position: relative;
}

.creation-slide {
    display: none;

    grid-template-columns: 1.4fr .6fr;

    gap: 7vw;

    align-items: center;
}

.creation-slide.active {
    display: grid;

    animation:
        creationEnter .7s cubic-bezier(.16,1,.3,1) both;
}

@keyframes creationEnter {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.creation-image {
    overflow: hidden;
}

.creation-image img {
    width: 100%;

    aspect-ratio: 1.35;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1);
}

.creation-slide:hover .creation-image img {
    transform: scale(1.04);
}

.creation-info > span {
    color: var(--gray);

    font-size: 10px;

    letter-spacing: 2px;
}

.creation-info h3 {
    font-family: var(--serif);

    font-weight: 500;

    font-size: clamp(50px,5vw,76px);

    line-height: .88;

    margin: 25px 0;
}

.creation-info p {
    max-width: 330px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.8;
}

.slider-progress {
    width: 100%;

    height: 1px;

    margin-top: 60px;

    background: #d5d1c8;
}

.slider-progress span {
    display: block;

    width: 6.66%;

    height: 100%;

    background: var(--black);

    transition: width .5s ease;
}


/* CRAFT */

.craft {
    background: var(--black);

    color: white;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 10vw;
}

.craft-title {
    position: sticky;

    top: 140px;

    height: fit-content;
}

.craft-title .eyebrow {
    color: #777;
}

.process-list {
    border-top: 1px solid #444;
}

.process-item {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid #444;

    transition:
        padding .4s ease;
}

.process-item:hover {
    padding-left: 20px;
}

.process-item > span {
    color: #777;

    font-size: 10px;
}

.process-item h3 {
    font-family: var(--serif);

    font-size: 40px;

    font-weight: 500;

    margin-bottom: 10px;
}

.process-item p {
    max-width: 460px;

    color: #aaa;

    line-height: 1.7;

    font-size: 14px;
}


/* GALLERY */

.gallery {
    background: var(--off-white);
}

.gallery-heading {
    margin-bottom: 80px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(12,1fr);

    grid-auto-rows: 130px;

    gap: 14px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 5;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: span 3;
}

.gallery-item:nth-child(3) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 7;
    grid-row: span 4;
}

.gallery-item:nth-child(5) {
    grid-column: span 5;
    grid-row: span 3;
}

.gallery-item:nth-child(6) {
    grid-column: span 7;
    grid-row: span 3;
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-view {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,.35);

    color: white;

    opacity: 0;

    transition: opacity .4s ease;
}

.gallery-item:hover .gallery-view {
    opacity: 1;
}

.gallery-view::before {
    content: "";

    width: 70px;
    height: 70px;

    position: absolute;

    background: white;

    border-radius: 50%;
}

.gallery-view {
    font-size: 8px;

    letter-spacing: 2px;
}

.gallery-view {
    z-index: 2;
}

.gallery-view::after {
    content: "VIEW";

    color: black;

    position: relative;

    z-index: 2;
}


/* CUSTOM */

.custom {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--cream);
}

.custom-image {
    min-height: 650px;

    overflow: hidden;
}

.custom-image img {
    height: 100%;

    object-fit: cover;
}

.custom-content {
    padding: 100px 8vw;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.custom-content h2 {
    font-family: var(--serif);

    font-size: clamp(55px,6vw,90px);

    font-weight: 500;

    line-height: .88;

    margin-bottom: 30px;
}

.custom-content > p:not(.eyebrow) {
    max-width: 430px;

    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 35px;
}

.custom-content .btn {
    width: fit-content;
}


/* REVIEWS */

.reviews {
    background: var(--off-white);
}

.review-grid {
    margin-top: 80px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 15px;
}

.review-card {
    min-height: 330px;

    padding: 40px;

    background: white;

    border: 1px solid #e7e4de;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    transition:
        box-shadow .3s ease;
}

.review-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,.08);
}

.stars {
    letter-spacing: 4px;

    font-size: 12px;
}

.review-card > p {
    font-family: var(--serif);

    font-size: 27px;

    line-height: 1.1;
}

.review-author {
    padding-top: 20px;

    border-top: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.review-author span {
    color: var(--gray);
}


/* FAQ */

.faq {
    background: var(--cream);
}

.faq-layout {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 10vw;

    margin-top: 30px;
}

.faq-intro {
    margin-top: 35px;

    max-width: 330px;

    color: var(--gray);

    line-height: 1.7;

    font-size: 14px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;

    border: 0;

    background: transparent;

    padding: 28px 0;

    display: flex;

    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    text-align: left;

    font-family: var(--serif);

    font-size: 27px;
}

.faq-question i {
    font-family: var(--sans);

    font-size: 25px;

    font-style: normal;

    transition:
        transform .4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height .5s ease,
        opacity .4s ease;
}

.faq-answer p {
    padding: 0 40px 28px 0;

    max-width: 650px;

    color: var(--gray);

    line-height: 1.8;

    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 300px;

    opacity: 1;
}


/* LOCATION */

.location {
    background: var(--off-white);
}

.location-header {
    margin-bottom: 70px;
}

.map-wrapper {
    position: relative;

    width: 100%;

    height: 550px;

    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter: grayscale(1);
}

.map-button {
    position: absolute;

    right: 25px;
    bottom: 25px;

    padding: 17px 22px;

    background: white;

    display: flex;

    gap: 30px;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    box-shadow:
        0 10px 30px rgba(0,0,0,.1);
}

.contact-grid {
    margin-top: 60px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 30px;
}

.contact-info {
    padding-top: 20px;

    border-top: 1px solid var(--line);
}

.contact-info > span {
    display: block;

    margin-bottom: 15px;

    color: var(--gray);

    font-size: 9px;

    letter-spacing: 2px;
}

.contact-info p,
.contact-info a {
    font-family: var(--serif);

    font-size: 25px;

    line-height: 1.15;
}

.contact-info a:hover {
    opacity: .5;
}


/* FINAL CTA */

.final-cta {
    min-height: 650px;

    padding: 100px 5vw;

    background: var(--black);

    color: white;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.final-content {
    max-width: 1000px;
}

.final-content .eyebrow {
    color: #888;
}

.final-content h2 {
    font-family: var(--serif);

    font-size: clamp(60px,9vw,130px);

    font-weight: 400;

    line-height: .8;

    letter-spacing: -4px;

    margin-bottom: 55px;
}


/* FOOTER */

footer {
    background: #101010;

    color: white;

    padding:
        90px
        max(5vw, calc((100vw - var(--container)) / 2))
        30px;
}

.footer-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 80px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand > img {
    width: 105px;

    max-height: 90px;

    object-fit: contain;

    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;

    line-height: 1.6;
}

.social-icons {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;

    border: 1px solid #444;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    transition:
        background .3s ease,
        color .3s ease;
}

.social-icon:hover {
    background: white;

    color: black;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;

    gap: 100px;
}

.footer-links div {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-links span {
    color: #777;

    margin-bottom: 10px;

    font-size: 9px;

    letter-spacing: 2px;
}

.footer-links a {
    font-family: var(--serif);

    font-size: 20px;

    transition: opacity .3s ease;
}

.footer-links a:hover {
    opacity: .5;
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid #333;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 9px;

    letter-spacing: 1px;
}

.designer strong {
    color: #aaa;
}


/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 800;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #151515;

    color: white;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.2);

    transition:
        width .4s ease,
        border-radius .4s ease;
}

.floating-whatsapp svg {
    width: 22px;
    height: 22px;

    flex-shrink: 0;
}

.floating-whatsapp span {
    max-width: 0;

    overflow: hidden;

    white-space: nowrap;

    font-size: 9px;

    letter-spacing: 1px;

    transition: max-width .4s ease;
}

.floating-whatsapp:hover {
    width: 185px;

    border-radius: 40px;
}

.floating-whatsapp:hover span {
    max-width: 120px;
}


/* BACK TOP */

.back-top {
    position: fixed;

    right: 25px;
    bottom: 95px;

    z-index: 800;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 1px solid var(--black);

    background: var(--off-white);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

.back-top.visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* LIGHTBOX */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    background: rgba(0,0,0,.94);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 50px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.lightbox.open {
    opacity: 1;

    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;

    width: auto;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    color: white;

    background: transparent;

    border: 0;

    font-size: 40px;

    cursor: pointer;
}


/* REVEAL */

.reveal {
    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 1s cubic-bezier(.16,1,.3,1),
        transform 1s cubic-bezier(.16,1,.3,1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.image-reveal {
    overflow: hidden;

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.16,1,.3,1);
}

.image-reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.image-reveal img {
    transform: scale(1.12);

    transition:
        transform 1.4s cubic-bezier(.16,1,.3,1);
}

.image-reveal.visible img {
    transform: scale(1);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .nav-links,
    .nav-call {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .section {
        padding: 110px 6vw;
    }

    .section-number {
        top: 45px;
        left: 6vw;
    }

    .about-layout,
    .creation-slide,
    .craft,
    .custom,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .creation-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 35px;
    }

    .creation-slide {
        gap: 40px;
    }

    .craft-title {
        position: static;
    }

    .process-list {
        margin-top: 60px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;

        gap: 60px;
    }

    .footer-links {
        gap: 70px;
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 18px 5vw;
    }

    .brand {
        width: 65px;
    }

    .hero-content {
        padding: 0 6vw;
    }

    .hero-title {
        font-size: 61px;

        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-bottom {
        left: 6vw;
    }

    .section-heading h2,
    .about-content h2,
    .craft-title h2,
    .location-header h2 {
        font-size: 55px;
    }

    .about-lead {
        font-size: 29px;
    }

    .creation-info h3 {
        font-size: 53px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 170px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;

        grid-row: span 1;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .map-wrapper {
        height: 400px;
    }

    .faq-question {
        font-size: 22px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

    .floating-whatsapp {
        right: 18px;

        bottom: 18px;
    }

    .back-top {
        right: 18px;

        bottom: 85px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

        scroll-behavior: auto !important;
    }

}