:root {
    --gold: #c4972b;
    --gold-dark: #a87f20;
    --green: #47632f;
    --green-head: #3c5227;
    --ink: #2c3520;
    --body: #565a4e;
    --muted: #6a6e60;
    --faint: #8a8e80;
    --panel: #f7f5ef;
    --icon-bg: #f3efe1;
    --line: #ece8dd;
    --white: #ffffff;
    --maxw: 1080px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        sans-serif;
    color: var(--body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 100;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
}

a {
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition:
        background 0.15s ease,
        transform 0.05s ease;
}
.btn-primary {
    background: var(--gold);
    color: #fff;
}
.btn-primary:hover {
    background: var(--gold-dark);
}
.btn-primary:active {
    transform: scale(0.98);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.brand-mark {
    display: block;
}
.brand-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--green-head);
    text-transform: uppercase;
}
.brand-name-accent {
    color: var(--gold);
}
.site-nav {
    display: flex;
    gap: 26px;
    font-size: 14px;
}
.site-nav a {
    color: var(--body);
    text-decoration: none;
}
.site-nav a:hover {
    color: var(--green);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 80px 32px 72px;
}
.hero-text {
    max-width: 620px;
}
.hero-logo {
    justify-self: center;
}
.hero-logo img {
    width: 240px;
    height: auto;
    display: block;
}
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.09em;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 18px;
}
.hero h1 {
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 22px;
    letter-spacing: -0.015em;
}
.hero-lead {
    font-size: 18px;
    color: var(--body);
    margin: 0 0 32px;
    max-width: 640px;
}
.hero-actions {
    margin: 0;
}

/* Sections */
.section {
    padding: 64px 32px;
    border-top: 1px solid var(--line);
}
.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9a8e6e;
    text-transform: uppercase;
    margin: 0 0 30px;
}
.section h2 {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.3;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 40px;
}
.service {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 16px;
    align-items: start;
    align-content: start;
}
.service-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: var(--icon-bg);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service h2 {
    grid-column: 2;
    margin: 2px 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--green-head);
    line-height: 1.3;
}
.service p {
    grid-column: 2;
    margin: 0;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}
.section-note {
    margin: 34px 0 0;
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-note img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.55;
}

/* About */
.about-lead {
    font-size: 17px;
    color: var(--body);
    max-width: 720px;
    margin: 0 0 38px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.stat {
    background: var(--panel);
    border-radius: 10px;
    padding: 22px 22px;
}
.stat-figure {
    font-size: 26px;
    font-weight: 600;
    color: var(--gold);
    margin: 0 0 8px;
}
.stat-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Contact */
.contact-card {
    background: var(--panel);
    border-radius: 12px;
    padding: 40px 44px;
}
.contact-card h2 {
    margin: 0 0 28px;
}
.contact-form {
    margin: 24px 0 0;
}
.form-field {
    margin-bottom: 16px;
}
.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 151, 43, 0.12);
}
.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
.contact-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 24px;
}
.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
}
.contact-email-link:hover {
    color: var(--ink);
    text-decoration: underline;
}
.link-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
}
.link-linkedin:hover {
    color: var(--green-head);
    text-decoration: underline;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 32px;
    font-size: 13px;
    color: var(--faint);
    gap: 12px;
}

/* Responsive */
@media (max-width: 760px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 44px 22px 40px;
    }
    .hero-logo {
        order: -1;
        justify-self: start;
    }
    .hero-logo img {
        width: 140px;
    }
    .hero-lead {
        font-size: 16.5px;
    }
    .section {
        padding: 48px 22px;
    }
    .services {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .contact-card {
        padding: 28px 22px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }
    .site-nav {
        gap: 18px;
    }
}

@media (max-width: 460px) {
    .brand-name {
        font-size: 13px;
    }
}
