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

:root {
    --orange-lightest: #FFF4EC;
    --orange-light: #FFE0C8;
    --orange-mid: #F5C4A0;
    --orange-warm: #E8A070;
    --orange-deep: #C96A2A;
    --orange-dark: #7A3A10;
    --gray-dark: #1E1C1A;
    --gray-mid: #3A3632;
    --text-dark: #2C2219;
    --text-muted: #7A6A5A;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--orange-lightest);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
}

.hero__image {
    position: relative;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    filter: brightness(0.95);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem 4rem 4.5rem;
    background: var(--white);
}

.hero__subtitle {
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--orange-deep);
    margin-bottom: 1.4rem;
}

.hero__title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero__title span {
    color: var(--orange-deep);
}

.hero__paragraph {
    font-size: 1rem;
    color: black;
    max-width: 36ch;
    line-height: 1.75;
}

.hero__divider {
    width: 40px;
    height: 2px;
    background: var(--orange-warm);
    margin-bottom: 1.6rem;
}

/* ── BOOKING BUTTON ─────────────────────────────────────── */
.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.4rem 0.75rem 1.6rem;
    background: linear-gradient(135deg, #E8853A 0%, #C96A2A 60%, #A85520 100%);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    align-self: flex-start;
}

.btn-booking:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    color: var(--white);
    text-decoration: none;
}

.btn-booking:active {
    transform: translateY(0);
    filter: brightness(0.97);
}

.btn-booking .material-icons-round {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.btn-booking:hover .material-icons-round {
    transform: translateX(3px);
}

/* ── SERVICES ───────────────────────────────────────────── */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service {
    padding: 9rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service--1 { background: #FFE9D5; }
.service--2 { background: #F5C8A2; }
.service--3 { background: #E8A870;}

.service__price {
    font-size: 2.6rem;
    font-family: DM Sans;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1;
}

.service__price span {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--text-muted);
}

.service__divider {
    width: 30px;
    height: 1.5px;
    background: var(--orange-dark);
    opacity: 0.35;
}

.service__subtitle {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    font-family: DM Sans;
}

.service__paragraph {
    font-size: 1rem;
    color: black;
    line-height: 1.75;
}

.service--3 .service__price,
.service--3 .service__subtitle { color: #2C2219; }

.service--3 .service__paragraph { color: black; }
.service--3 .service__divider { opacity: 0.4; background: #5A3C22; }

/* ── QUOTE ──────────────────────────────────────────────── */
.quote {
    padding: 10rem 2rem;
    text-align: center;
    background: var(--orange-lightest);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.quote__icon {
    font-size: 3rem;
    color: var(--orange-warm);
    opacity: 0.6;
    line-height: 1;
}

.quote__text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-family: DM Sans;
    font-weight: 300;
    max-width: 55ch;
    line-height: 1.65;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.quote__author {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-deep);
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    background: var(--gray-dark);
    color: #C0B4A8;
    text-align: center;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer .footer__name {
    font-size: 1.2rem;
    font-weight: 400;
    color: #F0E8E0;
    font-family: DM Sans;
    margin-bottom: 0.2rem;
}

footer .footer__address,
footer .footer__contact {
    font-size: 1rem;
    font-weight: 300;
    color: #8A7E74;
}

footer .footer__copy {
    font-size: 1rem;
    font-weight: 300;
    color: #5A5048;
    margin-top: 1.2rem;
}

footer .footer__designed {
    font-size: 1rem;
    font-weight: 300;
    color: #5A5048;
}

footer .footer__designed span {
    color: var(--orange-warm);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    }

    .hero__image img {
    height: auto;
    aspect-ratio: 3/4;
    }

    .hero__content {
    padding: 2.5rem 1.8rem 3rem;
    }

    .hero__subtitle {
    font-size: 1.2rem;
    }

    .hero__paragraph {
    max-width: 100%;
    font-size: 0.95rem;
    }

    .btn-booking {
    align-self: flex-start;
    font-size: 0.92rem;
    }

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

    .service {
    padding: 3rem 1.8rem;
    }

    .service__paragraph {
    max-width: 52ch;
    }

    .service__price {
    font-size: 2.2rem;
    }

    .service__subtitle {
    font-size: 1.3rem;
    }

    .quote {
    padding: 5rem 1.8rem;
    }

    .quote__text {
    font-size: 1.4rem;
    }

    footer {
    padding: 3.5rem 1.5rem;
    }

    footer .footer__address,
    footer .footer__contact,
    footer .footer__copy,
    footer .footer__designed {
    font-size: 0.88rem;
    }
}

@media (max-width: 520px) {
    .hero__title {
    font-size: 1.85rem;
    line-height: 1.25;
    }

    .hero__subtitle {
    font-size: 1.05rem;
    }

    .hero__content {
    padding: 2rem 1.4rem 2.5rem;
    }

    .service {
    padding: 2.5rem 1.4rem;
    }

    .quote {
    padding: 4rem 1.4rem;
    }

    .quote__text {
    font-size: 1.25rem;
    }

    footer {
    padding: 3rem 1.2rem;
    gap: 0.4rem;
    }

    .btn-booking {
    width: 100%;
    justify-content: center;

    }

    .language {
        display: none;
    }

}

a {
    color: var(--orange-deep);
    text-decoration: underline;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero__image {
    animation: fadeIn 0.9s ease both;
}

.hero__avatar {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.05s;
}

.hero__subtitle {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.15s;
}

.hero__divider {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.25s;
}

.hero__title {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.35s;
}

.hero__paragraph {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.5s;
}

.btn-booking {
    animation: fadeUp 0.7s ease both;
    animation-delay: 0.6s;
}

.service--1 { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.service--2 { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.service--3 { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }

.quote__icon   { animation: fadeUp 0.7s ease both; }
.quote__text   { animation: fadeUp 0.7s ease both; animation-delay: 0.15s; }
.quote__author { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }

footer { animation: fadeIn 0.8s ease both; }

.language {
    position: absolute;
    top: 50px;
    right: 60px;
    z-index: 9999;
    margin: 0;
}


