:root {
    --radius: 14px;
    --bg: #fbf8ef;
    --fg: #332b20;
    --card: #fff;
    --muted: #756b60;
    --border: #e8decc;
    --primary: #6e4a2f;
    --primary-fg: #fffaf0;
    --cream: #f6eedf;
    --wood: #815834;
    --wa: #22a763;
    --shadow-soft: 0 4px 24px -8px rgba(129, 88, 52, .28);
    --shadow-card: 0 12px 40px -16px rgba(51, 43, 32, .22);
    --shadow-lift: 0 24px 60px -24px rgba(129, 88, 52, .4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.narrow {
    max-width: 920px;
}

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: .25s;
    background: transparent;
}

.site-header.scrolled,
.site-header.menu-active {
    background: rgba(251, 248, 239, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 18px;
}

.brand small {
    display: block;
    color: var(--wood);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav > a:not(.btn) {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: .2s;
}

.nav > a:not(.btn):hover {
    background: var(--cream);
    color: var(--fg);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn-whatsapp {
    background: var(--wa);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    border: 1px solid rgba(129, 88, 52, .35);
    color: var(--wood);
    background: transparent;
}

.btn-light {
    background: var(--card);
    color: var(--fg);
    box-shadow: var(--shadow-soft);
}

.btn-lg {
    padding: 15px 22px;
    border-radius: 16px;
    font-size: 16px;
}

.nav-cta {
    display: none;
}

/* Mobile menu */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--fg);
    margin: 5px auto;
    transition: .2s;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding-top: 64px;
}

.hero-blur {
    position: absolute;
    right: -130px;
    top: -110px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(129, 88, 52, .12);
    filter: blur(55px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 64px);
    padding-block: 56px;
}

.hero-copy {
    align-self: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(129, 88, 52, .2);
    background: var(--card);
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--wood);
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
}

.eyebrow i {
    width: 8px;
    height: 8px;
    background: var(--wa);
    border-radius: 50%;
}

.hero h1,
.section-head h2,
.final-cta h2 {
    font-family: Georgia, serif;
    letter-spacing: -.035em;
    line-height: 1.04;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 68px);
    margin: 24px 0 0;
}

.hero h1 em {
    color: var(--wood);
    font-style: normal;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 590px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    list-style: none;
    margin: 38px 0 0;
    padding: 0;
    font-weight: 800;
    font-size: 14px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.hero-image > img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    object-position: center center;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
}

.experience {
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    border-radius: 20px;
    padding: 16px 20px;
}

.experience strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--wood);
}

.experience span {
    font-size: 14px;
    color: var(--muted);
}

/* Sections */

.section {
    padding: 86px 0;
    background: var(--bg);
}

.cream {
    background: var(--cream);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-head span {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--wood);
}

.section-head h2 {
    font-size: clamp(31px, 3.4vw, 46px);
    margin: 14px 0 0;
}

.section-head p {
    color: var(--muted);
    line-height: 1.7;
}

/* Cards */

.cards {
    display: grid;
    gap: 24px;
}

.three {
    grid-template-columns: repeat(3, 1fr);
}

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

.card,
.mini-card,
.work-card,
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.service-card {
    padding: 28px;
    transition: .25s;
}

.service-card:hover,
.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(129, 88, 52, .45);
}

.icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--cream);
    font-size: 25px;
}

.service-card h3 {
    font-size: 21px;
    margin: 20px 0 8px;
}

.service-card p,
.mini-card p,
.work-body p,
.step p,
.testimonial small {
    color: var(--muted);
    line-height: 1.65;
}

.mini-card {
    display: flex;
    gap: 16px;
    padding: 24px;
}

.mini-icon {
    flex: 0 0 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(34, 167, 99, .12);
    font-size: 22px;
}

.mini-card h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.mini-card p {
    margin: 0;
    font-size: 14px;
}

/* Works */

.work-card {
    overflow: hidden;
    transition: .25s;
}

.work-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-img span {
    position: absolute;
    left: 12px;
    top: 12px;
    background: var(--wa);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.work-body {
    padding: 22px;
}

.work-body h3 {
    margin: 0;
    font-size: 20px;
}

/* Dark section */

.dark-section {
    background: var(--primary);
    color: var(--primary-fg);
}

.section-head.light span,
.section-head.light p {
    color: rgba(255, 250, 240, .72);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step {
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    border-radius: 22px;
    padding: 28px;
}

.step b {
    font-family: Georgia, serif;
    font-size: 50px;
    color: rgba(255, 255, 255, .2);
}

.step-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--wa);
    font-size: 24px;
    margin-top: 14px;
}

.step h3 {
    font-size: 19px;
}

.step p {
    color: rgba(255, 250, 240, .75);
    font-size: 14px;
}

/* Booking form */

.booking-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow-card);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
    color: var(--fg);
    font-size: 14px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 13px 14px;
    background: #fff;
    color: var(--fg);
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--wood);
    box-shadow: 0 0 0 3px rgba(129, 88, 52, .13);
}

.form-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
}

.form-actions p,
.direct-contact {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.direct-contact a {
    font-weight: 900;
    color: var(--wa);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Testimonials */

.testimonial {
    position: relative;
    padding: 28px;
}

.quote {
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: 1;
    color: rgba(129, 88, 52, .25);
}

.stars {
    color: var(--wa);
    letter-spacing: 2px;
    margin-top: 4px;
}

.testimonial blockquote {
    margin: 12px 0 22px;
    font-size: 19px;
    line-height: 1.55;
}

.testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial figcaption > span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--wood);
    font-weight: 900;
}

.testimonial p {
    margin: 0;
}

.testimonial strong,
.testimonial small {
    display: block;
}

/* Final CTA */

.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--wood);
    color: var(--primary-fg);
    border-radius: 30px;
    text-align: center;
    padding: 60px 26px;
    box-shadow: var(--shadow-lift);
}

.final-cta h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    margin: 0;
}

.final-cta p {
    color: rgba(255, 250, 240, .86);
}

.final-cta div {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Footer */

.footer {
    background: var(--primary);
    color: var(--primary-fg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 38px;
    padding: 62px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, serif;
    font-size: 20px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
}

.footer p {
    color: rgba(255, 250, 240, .72);
    line-height: 1.7;
}

.footer h3 {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 250, 240, .6);
}

.footer a:not(.btn) {
    display: block;
    color: rgba(255, 250, 240, .82);
    margin: 10px 0;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

/* WhatsApp floating button */

.whatsapp-float {
    position: fixed;
    z-index: 60;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--wa);
    color: #fff;
    border-radius: 999px;
    padding: 13px 17px;
    box-shadow: var(--shadow-lift);
    font-weight: 900;
}

.whatsapp-float span {
    position: relative;
    font-size: 22px;
}

/* Toast */

.toast {
    position: fixed;
    top: 82px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: #1f2937;
    color: #fff;
    border-radius: 14px;
    padding: 13px 18px;
    box-shadow: var(--shadow-card);
    z-index: 80;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Reveal animation */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */

@media (max-width: 1024px) {
    .nav {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 64px;
        background: rgba(251, 248, 239, .98);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-card);
        padding: 14px 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .nav.open {
        display: flex;
    }

    .nav > a:not(.btn) {
        font-size: 16px;
        padding: 14px;
    }

    .nav-cta {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 48px;
        gap: 34px;
    }

    .hero-copy {
        text-align: left;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image > img {
        max-height: 620px;
    }

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

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

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

/* Mobile */

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand small {
        display: none;
    }

    .hero-grid {
        padding-block: 42px;
        gap: 30px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-actions,
    .final-cta div {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .experience {
        display: none;
    }

    .hero-image > img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .section {
        padding: 64px 0;
    }

    .three,
    .two,
    .steps,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 22px;
        border-radius: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        padding: 13px;
    }

    .whatsapp-float strong {
        display: none;
    }

    .mini-card {
        padding: 20px;
    }

    .testimonial blockquote {
        font-size: 17px;
    }
}
