:root {
    --bg: #16130f;
    --panel: #17140f;
    --cream: #f0eadc;
    --cream-muted: #d7cfbf;
    --green: #87953e;
    --green-dark: #5f6b2b;
    --gold: #c08a3b;
    --gold-soft: #b8965b;
    --line: rgba(194, 137, 57, .58);
    --line-green: rgba(126, 145, 56, .7);
    --shadow: rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--cream);
    background:
        radial-gradient(circle at 18% 12%, rgba(85, 70, 42, .14), transparent 30%),
        linear-gradient(rgba(16, 13, 9, .97), rgba(16, 13, 9, .99)),
        repeating-linear-gradient(5deg, rgba(255,255,255,.015) 0 1px, transparent 1px 6px),
        #0f0d0a;
    font-family: Georgia, "Times New Roman", serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .3;
    background:
        repeating-linear-gradient(0deg, transparent 0 14px, rgba(255,255,255,.012) 15px, transparent 16px),
        repeating-linear-gradient(93deg, rgba(255,255,255,.008) 0 1px, transparent 1px 5px);
    mix-blend-mode: screen;
}

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

.page-shell {
    width: min(100%, 1080px);
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(90deg, #17140f 0 47%, #14110d 47% 100%);
    box-shadow: 0 0 50px rgba(0,0,0,.72);
    border-left: 1px solid rgba(255,255,255,.05);
    border-right: 1px solid rgba(255,255,255,.05);
}

.hero {
    min-height: 740px;
    display: grid;
    grid-template-columns: 52% 48%;
    position: relative;
    border-bottom: 1px solid rgba(180, 128, 47, .22);
}

.hero-copy {
    padding: 34px 52px 54px 58px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background:
        linear-gradient(90deg, rgba(14,12,9,.96), rgba(24,20,14,.98)),
        repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,.012) 19px);
    z-index: 2;
}

.brand-mark {
    width: 190px;
    height: 110px;
    position: relative;
    margin: 0 auto 14px;
    align-self: center;
}

.brand-ring {
    position: absolute;
    width: 154px;
    height: 84px;
    border: 4px solid #c39450;
    border-bottom: 0;
    border-radius: 100px 100px 0 0;
    left: 18px;
    top: 8px;
}

.tree {
    position: absolute;
    bottom: 22px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 50px solid var(--green);
    filter: drop-shadow(0 2px 1px rgba(0,0,0,.35));
}

.tree::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 18px;
    background: #596729;
    top: 49px;
    left: -3px;
}

.tree-a { left: 46px; transform: scale(.8); }
.tree-b { left: 78px; transform: scale(1.16); border-bottom-color: #b4bb8b; }
.tree-c { left: 116px; transform: scale(.72); }

.brand-ground {
    position: absolute;
    left: 12px;
    right: 10px;
    bottom: 18px;
    height: 4px;
    background: linear-gradient(90deg, #bd934b, #87953e);
}

h1 {
    margin: 0;
    line-height: .92;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px #000;
}

h1 span,
h1 strong {
    display: block;
}

h1 span {
    font-size: clamp(3.55rem, 5.5vw, 5.4rem);
    font-weight: 700;
}

h1 strong {
    font-size: clamp(3.9rem, 5.9vw, 5.8rem);
    color: var(--green);
    font-weight: 700;
    margin-top: 4px;
}

.ornament {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 52px 1fr;
    align-items: center;
    gap: 14px;
    margin: 26px 0 24px;
}

.ornament span {
    height: 3px;
    background: linear-gradient(90deg, transparent 0, var(--gold) 18%, var(--gold) 82%, transparent 100%);
}

.ornament svg {
    width: 48px;
    height: 48px;
    fill: var(--gold);
    stroke: #24180d;
    stroke-width: 1.6;
    transform: rotate(-5deg);
}

.service-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
}

.service-title-row h2 {
    margin: 0;
    font-size: clamp(1.95rem, 2.8vw, 2.85rem);
    line-height: 1.08;
    font-weight: 400;
    max-width: 340px;
}

.leaf-icon {
    width: 74px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--green);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.title-underline {
    width: 52%;
    max-width: 240px;
    height: 4px;
    margin-top: 18px;
    background: linear-gradient(90deg, var(--green) 0, rgba(135,149,62,.75) 100%);
}

.intro {
    font-size: clamp(1.25rem, 2vw, 1.86rem);
    line-height: 1.42;
    margin: 42px 0 14px;
    max-width: 470px;
}

.keywords {
    margin: 0;
    color: var(--green);
    font-size: clamp(1.15rem, 1.85vw, 1.7rem);
    font-weight: 700;
}

.hero-photo {
    min-height: 740px;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.08)),
        url("assets/hero.jpg");
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

.hero-photo::before {
    content: "";
    position: absolute;
    left: -36px;
    top: -20px;
    bottom: -8px;
    width: 82px;
    border-left: 4px solid var(--green);
    border-right: 1px solid rgba(192,138,59,.55);
    border-radius: 55px;
    box-shadow: inset 1px 0 0 rgba(192,138,59,.45);
    z-index: 3;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 35px 0 50px rgba(0,0,0,.3), inset 0 -50px 70px rgba(0,0,0,.28);
}

.eco-badge {
    position: absolute;
    right: 34px;
    bottom: 102px;
    width: 222px;
    height: 222px;
    border-radius: 50%;
    background: rgba(24,18,13,.72);
    border: 3px solid rgba(245,236,220,.7);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.12), 0 14px 30px rgba(0,0,0,.35);
    z-index: 4;
}

.eco-badge::before,
.eco-badge::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.28);
}

.eco-badge-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.eco-top,
.eco-bottom {
    color: rgba(245,236,220,.92);
    font-size: 1.08rem;
    letter-spacing: .14em;
}

.eco-axes {
    width: 84px;
    height: 84px;
}

.eco-axes svg {
    width: 100%;
    height: 100%;
    fill: rgba(245,236,220,.95);
}

.photo-leaves {
    position: absolute;
    right: 6px;
    bottom: 0;
    width: 210px;
    height: 110px;
    z-index: 4;
}

.photo-leaves i {
    position: absolute;
    display: block;
    width: 110px;
    height: 62px;
    background: linear-gradient(135deg, #9ea46b 0, #69702f 58%, #4e5220 100%);
    border-radius: 70% 30% 70% 30% / 65% 25% 75% 35%;
    box-shadow: inset 0 0 0 2px rgba(18,20,7,.38), 0 10px 20px rgba(0,0,0,.28);
}

.photo-leaves i::before {
    content: "";
    position: absolute;
    left: 52%;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(243,240,220,.55);
    transform: rotate(18deg);
}

.photo-leaves i::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 14px;
    bottom: 14px;
    border-radius: inherit;
    background:
        repeating-linear-gradient(150deg, transparent 0 13px, rgba(243,240,220,.18) 13px 15px, transparent 15px 24px);
    opacity: .45;
}

.leaf-left {
    right: 72px;
    bottom: 18px;
    transform: rotate(-12deg);
}

.leaf-right {
    right: 4px;
    bottom: 4px;
    transform: rotate(14deg);
}

.services {
    background: linear-gradient(rgba(19,16,11,.988), rgba(17,14,10,.992));
    padding-bottom: 12px;
}

.section-ribbon {
    width: calc(100% - 56px);
    margin: 0 auto 28px;
    transform: translateY(-10px);
    text-align: center;
    padding: 13px 28px 12px;
    background:
        linear-gradient(90deg, transparent 0, rgba(97,111,43,.92) 7%, rgba(112,128,50,.96) 50%, rgba(97,111,43,.92) 93%, transparent 100%);
    color: var(--cream);
    font-weight: 700;
    letter-spacing: .12em;
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    text-shadow: 0 2px 4px #000;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 28px 26px;
}

.service-card {
    min-height: 236px;
    padding: 16px 18px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.service-card + .service-card {
    border-left: 1px solid var(--line);
}

.service-icon {
    height: 74px;
    width: 84px;
    margin-bottom: 14px;
    fill: none;
    stroke: var(--green);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(4) .service-icon {
    stroke: var(--gold);
}

.rings {
    width: 82px;
    height: 82px;
    position: relative;
    border-radius: 50%;
    border: 7px solid var(--gold);
    box-shadow: inset 0 0 0 2px rgba(0,0,0,.4);
}

.rings span {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--gold);
    inset: 8px;
}

.rings span:nth-child(2) { inset: 17px; }
.rings span:nth-child(3) { inset: 26px; }
.rings span:nth-child(4) { inset: 34px; }

.service-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.18;
    font-weight: 400;
}

.service-card p {
    margin: 0;
    color: var(--green);
    font-size: 0.98rem;
    line-height: 1.34;
}

.contact {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    border-top: 1px solid rgba(255,255,255,.07);
    background:
        linear-gradient(rgba(19,16,11,.98), rgba(13,11,8,.99));
}

.contact-list {
    padding: 34px 38px 34px 50px;
    border-right: 1px solid var(--line);
}

.contact-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 15px;
    min-height: 50px;
    font-size: 1.12rem;
    line-height: 1.34;
    transition: color .2s ease;
}

.contact-row + .contact-row {
    margin-top: 4px;
}

.contact-row:hover {
    color: #fff;
}

.contact-row strong {
    color: var(--green);
    font-size: 1.42rem;
}

.contact-row address {
    font-style: normal;
}

.contact-icon {
    width: 38px;
    height: 38px;
    fill: var(--green);
    stroke: none;
}

.person {
    display: grid;
    place-items: center;
    border: 5px solid var(--green);
    border-radius: 50%;
    color: var(--cream);
    font-size: 0;
    position: relative;
}

.person::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cream);
    position: absolute;
    top: 6px;
}

.person::after {
    content: "";
    width: 18px;
    height: 11px;
    border-radius: 11px 11px 3px 3px;
    background: var(--cream);
    position: absolute;
    bottom: 5px;
}

.closing {
    padding: 30px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.closing p {
    margin: 0 auto;
    color: var(--green);
    font-family: "Segoe Print", "Bradley Hand", cursive;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    line-height: 1.28;
    transform: rotate(-5deg);
    text-shadow: 0 2px 4px #000;
    max-width: 460px;
}

.closing-stroke {
    width: 82%;
    height: 4px;
    align-self: center;
    margin-top: -10px;
    background: linear-gradient(90deg, transparent 0, rgba(192,138,59,.95) 8%, rgba(192,138,59,.95) 92%, transparent 100%);
    transform: rotate(-5deg);
    opacity: .92;
}

.forest {
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    border-bottom: 5px solid var(--green-dark);
    transform: translateY(8px) rotate(1deg);
}

.forest i {
    display: block;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 55px solid var(--green-dark);
    position: relative;
    filter: drop-shadow(0 2px 2px #000);
}

.forest i:nth-child(2n) { transform: scale(.74); }
.forest i:nth-child(3n) { transform: scale(1.16); }
.forest i:nth-child(5n) { transform: scale(.9); }

.forest i::after {
    content: "";
    position: absolute;
    top: 52px;
    left: -2px;
    width: 4px;
    height: 22px;
    background: #5a602a;
}

@media (max-width: 980px) {
    .hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        min-height: 640px;
        padding: 42px 36px 34px;
        background:
            linear-gradient(180deg, rgba(16,13,9,.94), rgba(16,13,9,.9)),
            url("assets/hero.jpg") center 22% / cover;
    }

    .service-title-row h2 {
        max-width: none;
    }

    .hero-photo {
        min-height: 520px;
        background-position: center 15%;
    }

    .hero-photo::before {
        display: none;
    }

    .eco-badge {
        width: 185px;
        height: 185px;
        right: 28px;
        bottom: 84px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px 28px;
    }

    .service-card:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .service-card:nth-child(4) {
        border-top: 1px solid var(--line);
    }

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

    .contact-list {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .closing {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: 100%;
    }

    .hero-copy {
        min-height: 620px;
        padding: 30px 22px 34px;
        align-items: center;
        text-align: center;
    }

    .brand-mark {
        transform: scale(.8);
        margin-top: -8px;
        margin-bottom: -2px;
    }

    h1 span {
        font-size: clamp(3rem, 15vw, 4.4rem);
    }

    h1 strong {
        font-size: clamp(3.2rem, 16vw, 4.7rem);
    }

    .ornament {
        margin: 24px 0 18px;
    }

    .service-title-row {
        justify-content: center;
        gap: 12px;
    }

    .service-title-row h2 {
        font-size: 1.78rem;
    }

    .leaf-icon {
        width: 52px;
    }

    .title-underline {
        width: 68%;
        margin-inline: auto;
    }

    .intro {
        font-size: 1.18rem;
        margin-top: 26px;
    }

    .keywords {
        font-size: 1.12rem;
    }

    .hero-photo {
        min-height: 440px;
    }

    .eco-badge {
        width: 150px;
        height: 150px;
        right: 16px;
        bottom: 78px;
    }

    .eco-top,
    .eco-bottom {
        font-size: .8rem;
    }

    .eco-axes {
        width: 62px;
        height: 62px;
    }

    .photo-leaves {
        width: 152px;
        height: 82px;
        right: 2px;
    }

    .photo-leaves i {
        width: 82px;
        height: 46px;
    }

    .section-ribbon {
        width: calc(100% - 18px);
        padding-inline: 12px;
        letter-spacing: .05em;
        font-size: .92rem;
        margin-bottom: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 24px;
    }

    .service-card {
        min-height: 205px;
        padding: 22px 8px;
    }

    .service-card + .service-card,
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .contact-list {
        padding: 30px 24px;
    }

    .contact-row {
        grid-template-columns: 36px 1fr;
        font-size: 1.03rem;
        word-break: break-word;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
    }

    .contact-row strong {
        font-size: 1.17rem;
    }

    .closing {
        padding-inline: 24px;
        min-height: 245px;
    }

    .closing p {
        font-size: 1.7rem;
    }

    .closing-stroke {
        width: 92%;
    }
}
