@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Deca Serif New";
    src: url("/assets/fonts/Deca Serif New Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand: #3f4a17;
    --brand-dark: #28300f;
    --brand-mid: #59662c;
    --brand-soft: #eef1e5;
    --silver: #c9cbc6;
    --silver-dark: #8d9188;
    --cream: #f8f6ed;
    --ink: #1f2515;
    --muted: #74796b;
    --line: #e4e6d9;
    --white: #ffffff;
    --font-ui: "Inter", Arial, sans-serif;
    --font-brand: "Deca Serif New", "Georgia", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-ui);
    color: var(--ink);
    background: var(--cream);
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 246, 237, 0.92);
    border-bottom: 1px solid rgba(228, 230, 217, 0.9);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brand);
    font-family: var(--font-brand);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.logo img {
    width: 54px;
    height: 54px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--brand);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    padding: 0 22px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--brand);
    box-shadow: 0 16px 30px rgba(63, 74, 23, 0.24);
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-light {
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
}

.hero {
    padding: 72px 0 76px;
    background:
        radial-gradient(circle at 85% 14%, rgba(201, 203, 198, 0.36) 0 12%, transparent 13%),
        linear-gradient(135deg, #f8f6ed 0%, #f0f2e7 48%, #e4e8d8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 62px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--silver-dark);
}

h1 {
    max-width: 760px;
    font-size: clamp(40px, 5.8vw, 68px);
    line-height: 1.08;
    font-weight: 800;
}

.hero-copy p {
    max-width: 620px;
    margin-top: 24px;
    color: #3d4434;
    font-size: 18px;
    line-height: 1.72;
    font-weight: 500;
}

.utp {
    max-width: 620px;
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--brand);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-weight: 600;
}

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

.brand-panel {
    position: relative;
    align-self: start;
    min-height: 500px;
    border-radius: 18px;
}

.image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

.brand-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.floating-note {
    margin-top: 22px;
    padding: 20px 22px;
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.floating-note strong {
    display: block;
    margin-bottom: 6px;
}

.floating-note p {
    color: var(--muted);
    line-height: 1.55;
}

.section {
    padding: 82px 0;
}

.section-white {
    background: var(--white);
}

.section-dark {
    color: var(--white);
    background: var(--brand-dark);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head h2 {
    max-width: 660px;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.14;
    font-weight: 800;
}

.section-head p {
    max-width: 470px;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
}

.section-dark .section-head p,
.section-dark .muted {
    color: rgba(255, 255, 255, 0.72);
}

.team-section {
    position: relative;
    overflow: hidden;
    padding: 68px 0 58px;
    background: var(--brand-soft);
}

.team-section::before {
    content: "";
    position: absolute;
    right: max(-70px, calc((100vw - 1180px) / 2 - 30px));
    top: 118px;
    width: min(380px, 45vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #efd0bd;
}

.team-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 136px;
    width: min(34vw, 430px);
    height: 40%;
    background: var(--brand-dark);
}

.team-showcase {
    position: relative;
    z-index: 1;
}

.team-showcase h2 {
    max-width: 730px;
    color: var(--brand-dark);
    font-family: var(--font-brand);
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: .98;
    text-transform: uppercase;
}

.team-photo-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 44px);
    width: 100%;
    margin-top: clamp(24px, 3vw, 36px);
}

.team-photo-stage img {
    width: 100%;
    height: clamp(420px, 58vw, 760px);
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(31, 37, 21, 0.12);
}

.team-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 48px;
    padding: 0 20px;
    background: var(--white);
}

.team-benefit {
    min-height: 116px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    padding: 18px;
    text-align: center;
    border-left: 1px solid var(--line);
}

.team-benefit:first-child {
    border-left: 0;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--brand-dark);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.team-benefit p {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.mission-card,
.service-card,
.article-card,
.value-card,
.step-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(31, 37, 21, 0.06);
}

.mission-card strong,
.service-card strong,
.article-card strong,
.value-card strong,
.step-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.25;
}

.mission-card p,
.service-card p,
.article-card p,
.value-card p,
.step-card p {
    color: var(--muted);
    line-height: 1.65;
}

.team-banner {
    position: relative;
    min-height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(63, 74, 23, 0.05), rgba(63, 74, 23, 0.18)),
        var(--brand-soft);
    border: 1px solid var(--line);
}

.team-banner::before,
.team-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 170px;
    height: 285px;
    border-radius: 86px 86px 0 0;
    background: linear-gradient(180deg, #f1d2bd 0 30%, #ffffff 31% 100%);
    box-shadow: 0 18px 42px rgba(63, 74, 23, 0.18);
}

.team-banner::before {
    left: 52px;
}

.team-banner::after {
    right: 56px;
    height: 320px;
    background: linear-gradient(180deg, #e5c2ad 0 28%, #3f4a17 29% 100%);
}

.team-banner span {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 28px;
    z-index: 2;
    color: var(--brand);
    font-family: var(--font-brand);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.18;
    text-transform: uppercase;
}

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

.value-card {
    display: flex;
    gap: 16px;
}

.checkmark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--brand);
    font-weight: 800;
}

.section-cta {
    margin-top: 30px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    min-height: 100%;
}

.service-card.featured {
    grid-column: 1 / -1;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.55;
}

.service-card li {
    position: relative;
    padding-left: 22px;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

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

.step-number {
    display: block;
    color: var(--silver-dark);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.work-cta {
    margin-top: 34px;
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    background: var(--brand);
}

.work-cta h3 {
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    margin-bottom: 12px;
}

.work-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 22px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: start;
}

.quick-contacts,
.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.icon-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.14);
}

.icon-link svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: currentColor;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.next-steps {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    counter-reset: next;
}

.next-steps li {
    counter-increment: next;
    position: relative;
    padding-left: 42px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.next-steps li::before {
    content: counter(next);
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--brand-dark);
    background: var(--silver);
    font-weight: 800;
}

.form-card {
    padding: 30px;
    scroll-margin-top: 110px;
    border-radius: 8px;
    background: #34401b;
}

.form-card label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    border: 0;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 15px 16px;
    color: var(--ink);
    background: var(--white);
}

.form-card textarea {
    min-height: 116px;
    resize: vertical;
}

.form-card .btn {
    width: 100%;
}

.form-card .btn:disabled {
    cursor: not-allowed;
    opacity: .72;
    transform: none;
    box-shadow: none;
}

.form-status {
    position: relative;
    display: grid;
    gap: 6px;
    margin-top: 16px;
    padding: 16px 18px 16px 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--white);
    line-height: 1.45;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.form-status[hidden] {
    display: none;
}

.form-status::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 17px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #34401b;
    background: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.form-status-success {
    border-color: rgba(197, 222, 148, 0.42);
    background: rgba(197, 222, 148, 0.16);
}

.form-status-success::before {
    content: "✓";
    background: #dcebb7;
}

.form-status-warning {
    border-color: rgba(245, 213, 142, 0.48);
    background: rgba(245, 213, 142, 0.16);
}

.form-status-warning::before {
    content: "!";
    background: #f5d58e;
}

.form-status-error {
    border-color: rgba(255, 182, 169, 0.5);
    background: rgba(255, 182, 169, 0.16);
}

.form-status-error::before {
    content: "!";
    background: #ffb6a9;
}

.form-status strong,
.form-status span {
    display: block;
}

.form-status strong {
    font-weight: 800;
}

.form-status span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.footer {
    padding: 28px 0;
    color: rgba(255, 255, 255, 0.62);
    background: var(--brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

@media (max-width: 980px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links {
        width: 100%;
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

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

    .brand-panel,
    .team-banner {
        min-height: 430px;
    }

    .service-grid,
    .steps-grid,
    .blog-grid,
    .check-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 14px;
    }

    .team-section {
        padding-top: 54px;
    }

    .team-section::before {
        right: -120px;
        top: 120px;
        width: 360px;
    }

    .team-section::after {
        bottom: 210px;
        width: 38vw;
        height: 34%;
    }

    .team-photo-stage {
        width: 100%;
    }

    .team-photo-stage img {
        height: clamp(380px, 72vw, 620px);
    }

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

    .team-benefit:nth-child(odd) {
        border-left: 0;
    }

    .team-benefit:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }
}

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

    .hero {
        padding: 46px 0 62px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .nav > .btn {
        align-self: center;
        width: min(100%, 280px);
    }

    .hero-copy,
    .section-head,
    .mission-card,
    .value-card,
    .service-card,
    .step-card,
    .article-card,
    .work-cta,
    .contact-layout > div {
        text-align: center;
    }

    .eyebrow,
    .hero-actions,
    .section-cta,
    .quick-contacts,
    .socials {
        justify-content: center;
    }

    .eyebrow::before {
        display: none;
    }

    .utp,
    .hero-copy p,
    .section-head p,
    .work-cta p {
        margin-left: auto;
        margin-right: auto;
    }

    .value-card {
        align-items: center;
        flex-direction: column;
    }

    .service-card li {
        text-align: left;
    }

    .quick-contacts,
    .socials {
        flex-wrap: nowrap;
    }

    .next-steps {
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .brand-panel,
    .team-banner {
        min-height: 390px;
    }

    .floating-note {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .team-banner::before {
        left: 22px;
    }

    .team-banner::after {
        right: 20px;
    }

    .team-showcase h2 {
        font-size: clamp(34px, 12vw, 48px);
    }

    .team-photo-stage {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-photo-stage img {
        height: clamp(430px, 130vw, 560px);
        border-radius: 14px;
    }

    .team-benefits {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .team-benefit {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .team-benefit:first-child {
        border-top: 0;
    }
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-card .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 8px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.form-card .consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex: 0 0 auto;
    accent-color: #7a9a5b;
    cursor: pointer;
}

.form-card .consent a {
    color: inherit;
    text-decoration: underline;
}

.form-card .cf-turnstile {
    margin: 4px 0 8px;
}

.form-legal {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
}

.form-legal a {
    color: inherit;
    text-decoration: underline;
}

.legal {
    width: min(720px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 88px;
}

.legal h1 {
    max-width: none;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 0 0 6px;
}

.legal .updated {
    margin: 0 0 40px;
    font-size: 14px;
    color: var(--muted);
}

.legal h2 {
    font-size: 20px;
    line-height: 1.35;
    margin: 40px 0 12px;
}

.legal p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.75;
}

.legal a:not(.btn) {
    color: var(--brand);
}

.legal .back {
    margin-top: 48px;
}

.notice {
    min-height: 78vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 48px 20px;
}

.notice-inner {
    width: min(520px, 100%);
}

.notice h1 {
    max-width: none;
    margin: 0 0 14px;
    font-size: clamp(26px, 3.4vw, 34px);
    line-height: 1.25;
    font-weight: 700;
}

.notice p {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

.notice .contacts {
    margin: 32px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.notice .contacts a {
    color: var(--brand);
    white-space: nowrap;
}
