:root {
    --desert-rock: #A48D78;
    --soft-sandstone: #CBB9A4;
    --creamed-oat: #E6DAC8;
    --porcelain-mist: #F4F1EA;
    --feather-white: #FAF9F6;

    --dark-brown: #4D4035;
    --deep-brown: #352B24;
    --soft-brown: #766554;

    --border-light: rgba(77, 64, 53, 0.15);
    --shadow-soft: 0 20px 60px rgba(53, 43, 36, 0.10);
    --shadow-luxury: 0 25px 70px rgba(53, 43, 36, 0.16);

    --radius-small: 8px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;

    color: var(--dark-brown);
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;

    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    max-width: 100%;
    font: inherit;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5 {
    color: var(--deep-brown);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
}

p {
    color: var(--soft-brown);
    font-size: 1rem;
}

ul {
    list-style: none;
}


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

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 150px;

    padding: 15px 6%;

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

    background: rgba(250, 249, 246, 0.94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(164, 141, 120, 0.16);

    box-shadow: 0 8px 30px rgba(53, 43, 36, 0.04);
}

.menu-toggle {
    display: none;
}

header > img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

header nav a {
    position: relative;

    color: var(--dark-brown);
    font-size: 0.95rem;
    font-weight: 500;

    transition: color var(--transition);
}

header nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--desert-rock);

    transform: translateX(-50%);
    transition: width var(--transition);
}

header nav a:hover {
    color: var(--desert-rock);
}

header nav a:hover::after {
    width: 100%;
}


/* =========================================================
   BUTTONS
   ========================================================= */

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

    min-height: 52px;
    padding: 0 28px;

    border: 1px solid transparent;
    border-radius: 50px;

    background: var(--dark-brown);
    color: var(--feather-white);

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;

    cursor: pointer;

    box-shadow: 0 10px 25px rgba(53, 43, 36, 0.16);

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    background: var(--soft-sandstone);
    transform: translateY(-3px);

    box-shadow: 0 16px 35px rgba(53, 43, 36, 0.20);
}

.button:active {
    transform: translateY(-1px);
}


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

.hero {
    position: relative;

    width: 100%;
    height: 800px;

    margin-top: 150px;

    overflow: hidden;

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


/* Background image */

.hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;

    animation: heroZoomOut 20s ease-in-out infinite alternate;
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(20, 15, 13, 0.60) 0%,
            rgba(20, 15, 13, 0.45) 45%,
            rgba(20, 15, 13, 0.50) 100%
        );
}


/* Hero content */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(800px, 85%);
    max-width: 100%;

    padding: 55px 60px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;

    background: rgba(25, 18, 17, 0.55);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 24px;

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

.hero-content h3 {
    margin: 0 0 25px;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1.5px;

    color: var(--porcelain-mist);
}

.hero-content p {
    max-width: 700px;

    margin: 0 auto 22px;

    font-size: 1.05rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.90);
}

.hero-content h5 {
    margin: 0 0 30px;

    font-size: 1rem;
    font-weight: 500;

    color: #ffffff;
}


/* Hero buttons */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    width: 100%;
}

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

    min-width: 190px;

    padding: 15px 28px;

    border-radius: 50px;

    font-size: 0.95rem;
    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}

.primary-btn {
    background: var(--desert-rock);
    color: #ffffff;

    box-shadow:
        0 8px 25px rgba(164, 141, 120, 0.30);
}

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

    background: var(--creamed-oat);

    box-shadow:
        0 12px 30px rgba(164, 141, 120, 0.45);
}

.secondary-btn {
    background: transparent;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.65);
}

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

    background: rgba(255, 255, 255, 0.12);

    border-color: #ffffff;
}


/* =========================================================
   ABOUT
   ========================================================= */

.About {
    width: 100%;
    min-height: 600px;

    padding: 100px 8%;

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

    gap: 80px;

    background: #ffffff;
}

.about-left-content {
    flex: 1;
    width: 100%;
    max-width: 600px;
}

.about-left-content h1 {
    margin-bottom: 25px;

    font-size: 2.8rem;
    line-height: 1.15;

    color: var(--dark-brown);
}

.about-left-content p {
    margin-bottom: 20px;

    font-size: 1rem;
    line-height: 1.8;

    color: var(--dark-brown);
}

.about-right-content {
    flex: 1;

    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.about-right-content img {
    width: 100%;
    max-width: 550px;
    height: 500px;

    object-fit: cover;

    border-radius: 35px;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

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

    gap: 1px;

    background: var(--desert-rock);
}

.card {
    position: relative;

    min-height: 310px;

    padding: 50px 35px;

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

    background: var(--feather-white);

    overflow: hidden;

    transition:
        transform var(--transition),
        background var(--transition);
}

.card::before {
    content: "01";

    position: absolute;
    top: 28px;
    left: 35px;

    color: var(--soft-sandstone);

    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.card:nth-child(2)::before {
    content: "02";
}

.card:nth-child(3)::before {
    content: "03";
}

.card:nth-child(4)::before {
    content: "04";
}

.card:hover {
    background: var(--porcelain-mist);

    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 18px;

    font-size: 1.35rem;
}

.card p {
    font-size: 0.92rem;
}


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

.services {
    width: 90%;
    max-width: 1200px;

    margin: 80px auto;
    padding: 50px 90px;

    color: #333;

    font-family: Arial, Helvetica, sans-serif;
}

.services-header {
    text-align: center;

    margin-bottom: 45px;
}

.services-header h1 {
    margin-bottom: 10px;

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

    color: #2f2f2f;
}

.services-header h5 {
    margin: 0;

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

    color: #777;
}


/* Service tabs */

.service-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;

    border-bottom: 1px solid #d8d2c8;
}

.service-tab {
    position: relative;

    border: none;
    background: transparent;

    padding: 15px 20px;

    font-size: 16px;
    color: #666;

    cursor: pointer;

    transition: all 0.3s ease;
}

.service-tab:hover,
.service-tab.active {
    color: var(--desert-rock);
}

.service-tab.active::after {
    content: "";

    position: absolute;

    left: 10%;
    right: 10%;
    bottom: -1px;

    height: 3px;

    background: var(--desert-rock);

    border-radius: 10px;
}


/* Service content */

.service-content {
    display: none;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

    animation: fadeIn 0.5s ease;
}

.service-content.active {
    display: grid;
}


/* Service image */

.service-image {
    width: 100%;
    height: 330px;

    overflow: hidden;
}

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

    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.03);
}


/* Service text */

.service-info {
    width: 100%;
    max-width: 100%;
}

.service-info h2 {
    margin-bottom: 15px;

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

    color: #333;
}

.service-info p {
    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.8;

    color: #666;
}


/* Service list */

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

    gap: 10px 25px;

    padding: 0;
    margin: 0 0 25px;
}

.service-list li {
    position: relative;

    padding-left: 20px;

    font-size: 14px;
    color: #555;

    overflow-wrap: break-word;
}

.service-list li::before {
    content: "•";

    position: absolute;
    left: 0;
    top: -2px;

    color: var(--desert-rock);

    font-size: 18px;
}


/* Read more */

.read-more {
    display: inline-block;

    padding: 12px 25px;

    background: var(--soft-sandstone);
    color: white;

    font-size: 13px;
    letter-spacing: 0.5px;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.read-more:hover {
    background: var(--creamed-oat);

    transform: translateY(-2px);
}


/* =========================================================
   SHORT MESSAGE
   ========================================================= */

.short-message {
    position: relative;

    width: 100%;

    padding: 50px 8%;

    text-align: center;

    background: var(--desert-rock);

    overflow: hidden;
}

.short-message::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -300px;
    left: -150px;

    border: 1px solid rgba(250, 249, 246, 0.22);

    border-radius: 50%;
}

.short-message::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    bottom: -220px;

    border: 1px solid rgba(250, 249, 246, 0.18);

    border-radius: 50%;
}

.short-message h1,
.short-message p,
.short-message .button {
    position: relative;
    z-index: 1;
}

.short-message h1 {
    margin-bottom: 20px;

    color: var(--feather-white);
}

.short-message p {
    max-width: 650px;

    margin: 0 auto 35px;

    color: rgba(250, 249, 246, 0.84);
}

.short-message .button {
    background: var(--feather-white);
    color: var(--dark-brown);
}

.short-message .button:hover {
    background: var(--creamed-oat);
}


/* =========================================================
   BOOKING FORM
   ========================================================= */

.client-form {
    position: relative;

    width: 100%;

    padding: 120px 8%;

    background:
        linear-gradient(
            135deg,
            var(--creamed-oat),
            var(--porcelain-mist)
        );
}

.client-form > h1 {
    max-width: 800px;

    margin: 0 auto 15px;

    text-align: center;
}

.client-form > p {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.client-form form {
    width: min(900px, 100%);

    margin: 0 auto;
    padding: 55px;

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

    gap: 25px;

    background: rgba(250, 249, 246, 0.8);

    border: 1px solid rgba(164, 141, 120, 0.18);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-soft);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

    width: 100%;
    min-width: 0;
}

.form-group:nth-last-child(2),
.form-group:last-child {
    grid-column: 1 / -1;
}

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

    color: var(--dark-brown);

    font-size: 0.85rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-width: 0;

    padding: 15px 17px;

    color: var(--dark-brown);

    background: var(--feather-white);

    border: 1px solid rgba(164, 141, 120, 0.28);
    border-radius: 10px;

    outline: none;

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--desert-rock);

    background: white;

    box-shadow: 0 0 0 4px rgba(164, 141, 120, 0.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-group button {
    width: 100%;

    border: none;
}


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

.contact-layout {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--soft-sandstone);
}

.contact {
    width: 100%;

    padding: 90px 10%;

    color: var(--feather-white);
}

.contact h1 {
    margin-bottom: 20px;

    color: var(--desert-rock);
}

.contact > h5 {
    margin-bottom: 50px;

    color: var(--porcelain-mist);
    font-weight: 400;
}

.contact h3 {
    margin: 35px 0 15px;

    color: var(--porcelain-mist);

    font-size: 1.1rem;
}

.contact p {
    margin-bottom: 8px;

    color: var(--feather-white);
}

.contact em,
.map em {
    color: white;

    font-style: normal;
    font-weight: 600;
}

.map {
    width: 100%;
    min-height: 100%;

    padding: 30px;

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

    gap: 20px;

    background: var(--creamed-oat);
}

.map p {
    color: var(--feather-white);
}

.map iframe {
    width: 100%;
    min-height: 430px;

    border: 0 !important;
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-soft);

    filter: grayscale(20%) sepia(10%);
}


/* =========================================================
   BOTTOM INFORMATION
   ========================================================= */

.bottom-info {
    position: relative;

    width: 100%;
    min-height: 330px;

    padding: 65px 8%;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr;

    align-items: center;

    gap: 60px;

    background: var(--feather-white);
}

.bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;
    max-width: 520px;
}

.bottom-left img {
    width: 105px;
    height: auto;

    margin-bottom: 18px;
}

.bottom-left h1 {
    margin: 0 0 12px;

    font-size: 2rem;
    line-height: 1.2;

    color: var(--dark-brown);

    font-weight: 600;
}

.bottom-left p {
    max-width: 480px;

    margin: 0 0 25px;

    font-size: 0.95rem;
    line-height: 1.7;

    color: #78695d;
}

.bottom-left .button {
    min-height: 48px;

    padding: 0 25px;

    font-size: 0.85rem;
}


/* Quick links */

.bottom-middle {
    height: 100%;

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

    padding-left: 45px;

    border-left: 1px solid rgba(93, 76, 63, 0.15);
}

.bottom-middle h3 {
    margin: 0 0 22px;

    font-size: 1.05rem;

    color: var(--dark-brown);

    font-weight: 600;
}

.bottom-middle a {
    width: fit-content;

    margin-bottom: 13px;

    color: #78695d;

    font-size: 0.9rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.bottom-middle a:hover {
    color: var(--dark-brown);

    transform: translateX(4px);
}


/* Social media */

.social-media {
    display: flex;

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

    gap: 14px;

    flex-wrap: wrap;
}

.social-media a {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

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

    border-radius: 50%;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(53, 43, 36, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.social-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.social-media a:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(53, 43, 36, 0.15);
}


/* Accent */

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

    position: absolute;

    top: 0;
    left: 8%;

    width: 84%;
    height: 1px;

    background: rgba(164, 141, 120, 0.25);
}


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

footer {
    width: 100%;

    padding: 25px 6%;

    background: var(--deep-brown);

    text-align: center;
}

footer p {
    color: rgba(250, 249, 246, 0.6);

    font-size: 0.8rem;
}


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

.whatsapp-button {
    position: fixed;

    right: 20px;
    bottom: 20px;

    max-width: calc(100vw - 40px);

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    background-color: #25D366;
    color: white;

    border-radius: 50px;

    font-family: Arial, sans-serif;
    font-size: 14px;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

    z-index: 999;
}

.whatsapp-button img {
    width: 24px;
    height: 24px;

    flex-shrink: 0;
}


/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */

.hero,
.About,
.cards-layout,
.services,
.short-message,
.process-layout,
.client-form,
.contact-layout,
.bottom-info {
    animation-duration: 0.9s;
    animation-fill-mode: both;
}


/* Cards */

.card:nth-child(1) {
    animation: slideFromLeft 0.8s both;
}

.card:nth-child(2) {
    animation: slideFromBottom 0.8s 0.1s both;
}

.card:nth-child(3) {
    animation: slideFromTop 0.8s 0.2s both;
}

.card:nth-child(4) {
    animation: slideFromRight 0.8s 0.3s both;
}


/* =========================================================
   KEYFRAMES
   ========================================================= */

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceFromLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes serviceFromRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes serviceZoom {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


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

@media (max-width: 1000px) {

    header {
        padding: 15px 4%;
    }

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

    .bottom-info {
        grid-template-columns: 1fr 1fr;
    }

    .social-media {
        grid-column: 1 / -1;

        justify-content: flex-start;
    }
}


/* =========================================================
   TABLET / MOBILE HEADER
   ========================================================= */

@media (max-width: 900px) {

    html {
        scroll-padding-top: 80px;
    }

    header {
        height: 80px;
        min-height: 80px;

        padding: 10px 20px;
    }

    header > img {
        width: 115px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;

        border: 0;
        border-radius: 50%;

        background: var(--dark-brown);
        color: var(--feather-white);

        cursor: pointer;

        position: relative;
        z-index: 1101;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
        width: 20px;
        height: 2px;

        background: currentColor;

        transition:
            transform 0.35s ease,
            opacity 0.25s ease;
    }

    .menu-toggle span {
        position: relative;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";

        position: absolute;
        left: 0;
    }

    .menu-toggle span::before {
        top: -7px;
    }

    .menu-toggle span::after {
        top: 7px;
    }

    header.menu-open .menu-toggle span {
        background: transparent;
    }

    header.menu-open .menu-toggle span::before {
        transform: translateY(7px) rotate(45deg);
    }

    header.menu-open .menu-toggle span::after {
        transform: translateY(-7px) rotate(-45deg);
    }

    header nav {
        position: absolute;

        top: 80px;
        right: 20px;

        width: min(300px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);

        padding: 25px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        background: rgba(250, 249, 246, 0.98);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid var(--border-light);
        border-radius: 0 0 20px 20px;

        box-shadow: var(--shadow-luxury);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-15px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }

    header.menu-open nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    header nav a {
        width: 100%;

        padding: 14px 16px;

        border-radius: 12px;

        text-align: left;

        opacity: 0;
        transform: translateY(-12px);
    }

    header.menu-open nav a {
        animation: menuItemIn 0.45s ease forwards;
    }

    header.menu-open nav a:nth-child(1) {
        animation-delay: 0.05s;
    }

    header.menu-open nav a:nth-child(2) {
        animation-delay: 0.10s;
    }

    header.menu-open nav a:nth-child(3) {
        animation-delay: 0.15s;
    }

    header.menu-open nav a:nth-child(4) {
        animation-delay: 0.20s;
    }

    header.menu-open nav .button {
        animation-delay: 0.25s;
    }

    header nav a:hover {
        background: var(--porcelain-mist);
    }

    header nav a::after {
        display: none;
    }

    header nav .button {
        width: 100%;

        min-height: 48px;

        margin-top: 8px;

        justify-content: center;
        text-align: center;

        opacity: 0;
        transform: translateY(-12px);
    }

    @keyframes menuItemIn {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    /* HERO */

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

        margin-top: 80px;

        min-height: 650px;
        height: auto;

        padding: 70px 15px;
    }

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

        padding: 40px 25px;
    }

    .hero-content h3 {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}


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

@media (max-width: 700px) {

    html {
        scroll-padding-top: 80px;
    }

    body {
        width: 100%;
        max-width: 100%;

        font-size: 15px;
    }


    /* HERO */

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

        min-height: 650px;

        padding: 50px 15px 70px;
    }

    .hero-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

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

        padding: 35px 20px;

        border-radius: 20px;
    }

    .hero-content h3 {
        font-size: clamp(2rem, 9vw, 3rem);

        letter-spacing: -0.8px;

        overflow-wrap: break-word;
    }

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

        font-size: 0.92rem;
        line-height: 1.7;

        overflow-wrap: break-word;
    }

    .hero-content h5 {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;

        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;

        min-width: 0;
    }


    /* ABOUT */

    .About {
        width: 100%;
        max-width: 100%;

        padding: 70px 20px;

        flex-direction: column;

        gap: 40px;
    }

    .about-left-content,
    .about-right-content {
        width: 100%;
        max-width: 100%;
    }

    .about-left-content h1 {
        font-size: 2.1rem;
    }

    .about-left-content p {
        font-size: 0.95rem;
    }

    .about-right-content {
        justify-content: center;
    }

    .about-right-content img {
        width: 100%;
        max-width: 100%;

        height: 350px;
    }


    /* CARDS */

    .cards-layout {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;
    }

    .card {
        width: 100%;
        max-width: 100%;

        min-height: 270px;

        padding: 45px 25px;
    }


    /* SERVICES */

    .services {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 70px 20px;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-header h1 {
        font-size: 27px;
    }

    .services-header h5 {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-tabs {
        width: 100%;
        max-width: 100%;

        justify-content: flex-start;

        overflow-x: auto;
        white-space: nowrap;

        scrollbar-width: none;
    }

    .service-tabs::-webkit-scrollbar {
        display: none;
    }

    .service-tab {
        flex-shrink: 0;

        padding: 13px 15px;

        font-size: 13px;
    }

    .service-content,
    .service-content.active {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .service-image {
        width: 100%;
        max-width: 100%;

        height: 240px;
    }

    .service-info {
        width: 100%;
        max-width: 100%;
    }

    .service-info h2 {
        font-size: 23px;
    }

    .service-info p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-list {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 9px;
    }

    .service-list li {
        width: 100%;
        max-width: 100%;

        overflow-wrap: break-word;
    }

    .read-more {
        padding: 11px 22px;
    }


    /* SHORT MESSAGE */

    .short-message {
        width: 100%;
        max-width: 100%;

        padding: 80px 20px;
    }

    .short-message h1,
    .short-message p {
        width: 100%;
        max-width: 100%;
    }


    /* BOOKING FORM */

    .client-form {
        width: 100%;
        max-width: 100%;

        padding: 80px 15px;
    }

    .client-form > h1,
    .client-form > p {
        width: 100%;
        max-width: 100%;
    }

    .client-form form {
        width: 100%;
        max-width: 100%;

        padding: 25px 18px;

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group:nth-last-child(2),
    .form-group:last-child {
        grid-column: auto;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* CONTACT */

    .contact-layout {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;
    }

    .contact {
        order: 1;

        width: 100%;
        max-width: 100%;

        padding: 65px 20px;
    }

    .map {
        order: 2;

        width: 100%;
        max-width: 100%;

        padding: 20px;
    }

    .map iframe {
        width: 100%;
        max-width: 100%;

        min-height: 320px;
    }


    /* BOTTOM */

    .bottom-info {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 60px 20px;
    }

    .bottom-left,
    .bottom-middle,
    .social-media {
        width: 100%;
        max-width: 100%;
    }

    .bottom-left h1 {
        font-size: 1.7rem;
    }

    .bottom-middle {
        height: auto;

        padding-left: 0;
        padding-top: 25px;

        border-left: none;
        border-top: 1px solid rgba(93, 76, 63, 0.15);
    }

    .social-media {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .bottom-info::before {
        left: 7%;

        width: 86%;
    }


    /* FOOTER */

    footer {
        width: 100%;

        padding: 25px 20px;
    }

    footer p {
        line-height: 1.7;
    }


    /* WHATSAPP */

    .whatsapp-button {
        right: 12px;
        bottom: 12px;

        max-width: calc(100vw - 24px);

        padding: 10px 13px;

        font-size: 13px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    header {
        gap: 8px;
    }

    header > img {
        width: 110px;
    }

    .hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-content h3 {
        font-size: 1.9rem;
    }

    .About {
        padding-left: 15px;
        padding-right: 15px;
    }

    .services {
        padding-left: 15px;
        padding-right: 15px;
    }

    .client-form {
        padding-left: 10px;
        padding-right: 10px;
    }

    .client-form form {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact {
        padding-left: 15px;
        padding-right: 15px;
    }

    .map {
        padding: 15px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(164, 141, 120, 0.45);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}