:root {
    --bg: #f8f3ea;
    --surface: #fffefb;
    --text: #222228;
    --muted: #5f6571;
    --line: #e6d9cb;
    --primary: #d96837;
    --primary-dark: #ab4d24;
    --accent: #2a7f92;
    --radius: 18px;
    --shadow: 0 18px 36px rgba(39, 29, 20, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Mulish", "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Urbanist", "Segoe UI", sans-serif;
    margin-top: 0;
    line-height: 1.2;
}

a { color: var(--primary-dark); }

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: rgba(255, 251, 244, 0.84);
    border-bottom: 1px solid rgba(217, 104, 55, 0.12);
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 54px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    border-radius: 10px;
    padding: 0.45rem 0.68rem;
}

.menu a:hover,
.menu a.active {
    background: #f8e5da;
    color: var(--primary-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
    display: grid;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
}

.hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(20, 22, 30, 0.75) 12%, rgba(20, 22, 30, 0.45) 56%, rgba(20, 22, 30, 0.2) 100%),
        radial-gradient(circle at 80% 20%, rgba(217, 104, 55, 0.24), rgba(217, 104, 55, 0));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0 3rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.3rem;
    align-items: end;
}

.hero-copy {
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero h1 {
    font-size: clamp(2rem, 4.3vw, 3.8rem);
    margin-bottom: 1rem;
}

.hero-lead {
    max-width: 62ch;
    color: #eef2f6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.3rem 0 1.05rem;
}

.btn {
    border: 0;
    border-radius: 12px;
    text-decoration: none;
    font: inherit;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.84rem 1.08rem;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(145deg, var(--primary), #ea8556);
    box-shadow: 0 16px 28px rgba(217, 104, 55, 0.33);
}

.btn-light {
    color: #1f2b35;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.36rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.88rem;
}

.hero-photo {
    justify-self: end;
    width: min(470px, 100%);
}

.hero-photo img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: var(--shadow);
}

.section {
    padding: 3.8rem 0;
}

.section-head { margin-bottom: 1.3rem; }

.section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.service-grid,
.flow-grid,
.area-grid {
    display: grid;
    gap: 1rem;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile,
.step,
.area-grid article,
.contact-wrap {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.tile {
    padding: 1.05rem;
    box-shadow: 0 10px 22px rgba(35, 28, 21, 0.08);
}

.tile i {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 0.55rem;
    color: var(--primary-dark);
    background: #fce7dc;
}

.tile h3 { font-size: 1.05rem; }

.tile p {
    color: var(--muted);
    margin-bottom: 0;
}

.area {
    background:
        linear-gradient(116deg, rgba(217, 104, 55, 0.06), rgba(217, 104, 55, 0)),
        radial-gradient(circle at 90% 20%, rgba(42, 127, 146, 0.16), rgba(42, 127, 146, 0));
}

.area-box {
    border: 1px solid #d7e4e9;
    border-radius: 22px;
    padding: 1.15rem;
    background: linear-gradient(140deg, #fffdfb, #f6fbfc);
}

.area-box h2 i { color: var(--primary); }

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

.area-grid article { padding: 0.95rem; }

.area-grid p { margin-bottom: 0; color: var(--muted); }

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

.step { padding: 1rem; }

.step span {
    color: var(--primary);
    font-weight: 900;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.contact-lead { color: var(--muted); }

.contact-form {
    display: grid;
    gap: 0.62rem;
}

label {
    font-weight: 700;
    font-size: 0.92rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid #d9cbbb;
    border-radius: 12px;
    padding: 0.76rem;
    font: inherit;
    background: #fff;
}

input:focus,
textarea:focus {
    outline: 3px solid #f8d7c7;
    border-color: #eeb090;
}

.site-footer {
    border-top: 1px solid #e5d7c8;
    color: var(--muted);
    padding: 1.1rem 0 1.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: rise 0.7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }

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

@media (max-width: 980px) {
    .hero-content,
    .contact-wrap,
    .service-grid,
    .flow-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        justify-self: start;
        width: min(520px, 100%);
    }
}

@media (max-width: 760px) {
    .menu-toggle { display: block; }

    .menu {
        display: none;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 72px;
        background: #fff;
        border: 1px solid #ecdccc;
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 0.7rem;
        flex-direction: column;
    }

    .menu.show { display: flex; }

    .hero-content {
        padding-top: 4.2rem;
    }

    .section { padding: 3rem 0; }
}
