:root {
    --green: #103b22;
    --gold: #c8922e;
    --text: #1f1f1f;
    --muted: #6b6b6b;
    --bg: #fdfaf5;
    --white: #ffffff;
    --border: #e9dfd2;
    --max-width: 1200px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

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

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

.section-padding {
    padding: 72px 0;
}

/* Header */
.site-header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #eee5d8;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
}

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

.site-logo,
.footer-logo {
    max-height: 58px;
    width: auto;
}

.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a {
    color: var(--green);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.btn {
    display: inline-block;
    padding: 15px 26px;
    border-radius: 4px;
    font-size: 15px;
    letter-spacing: 0.03em;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: #0c2e1a;
    transform: translateY(-1px);
}

/* Hero */
.hero-section {
    padding: 36px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    min-height: 560px;
}

.hero-copy {
    padding: 32px 52px 32px 52px;
}

.hero-copy h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin: 0 0 16px;
    color: #173323;
}

.hero-copy h1 span,
.about-copy h1 span {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero-divider {
    width: 290px;
    max-width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 24px 0;
}

.hero-copy p {
    max-width: 490px;
    font-size: 20px;
    margin-bottom: 28px;
}

.hero-image-wrap {
    position: relative;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 140px;
    background: linear-gradient(to right, var(--bg), rgba(253, 250, 245, 0));
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Generic headings */
.section-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 15px;
    margin: 0 0 10px;
    text-align: center;
}

.section-title {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    text-align: center;
    margin: 0 0 38px;
    color: #173323;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 30px;
}

.process-card,
.feature-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 26px;
    font-weight: bold;
}

.process-card h3,
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #173323;
}

.process-card p,
.feature-card p {
    margin: 0 auto;
    max-width: 300px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-copy h1 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 20px;
    color: #173323;
}

.about-copy > p {
    margin-bottom: 18px;
    font-size: 18px;
}

.about-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.profile-copy h2 {
    margin: 0 0 8px;
    font-size: 42px;
    color: #173323;
}

.role {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    margin-bottom: 16px;
}

.banner-image-section {
    margin-top: 8px;
}

.full-banner-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.feature-card {
    border-right: 1px solid var(--border);
}

.feature-card:last-child {
    border-right: none;
}

/* Testimonials */
.testimonial-box {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 38px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.full-width-testimonial {
    grid-template-columns: 1fr;
}

.quote-mark {
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-quote p {
    margin: 0 0 16px;
    font-size: 18px;
}

.testimonial-author {
    border-left: 1px solid var(--border);
    padding-left: 32px;
    text-align: center;
    align-self: center;
}

.author-badge {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
}

/* Default content */
.page-content,
.default-content {
    padding-top: 56px;
    padding-bottom: 56px;
}

.page-title {
    margin-top: 0;
    font-size: 42px;
    color: #173323;
}

/* Footer */
.site-footer {
    margin-top: 30px;
}

.footer-top {
    background: #fffdf9;
    border-top: 1px solid var(--border);
    padding: 34px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.footer-tagline {
    color: var(--gold);
    font-style: italic;
    font-size: 24px;
    margin-top: 10px;
}

.footer-contact p,
.footer-person p,
.footer-person h4 {
    margin: 0 0 10px;
}

.footer-bottom {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .testimonial-box,
    .footer-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-author {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 24px;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 28px;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .hero-image-wrap::before {
        display: none;
    }
}

@media (max-width: 820px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 0;
    }

    .main-navigation {
        margin-left: 0;
        width: 100%;
    }

    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .hero-copy {
        padding: 24px 20px;
    }

    .hero-copy p,
    .about-copy > p,
    .testimonial-quote p {
        font-size: 17px;
    }

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

    .profile-image {
        margin: 0 auto;
    }
}