:root {
    --brand-primary: #FF7F0E;
    --brand-deep: #b95500;
    --brand-soft: #ffb266;
    --green-900: #692d00;
    --green-800: #8d3d00;
    --green-700: #b95500;
    --green-600: #d86a00;
    --teal-500: #ff9b3d;
    --gold-400: #ff9b3d;
    --gold-300: #ffd3a8;
    --stone-50: #fffaf5;
    --stone-100: #fff1e6;
    --stone-200: #f8e1cf;
    --stone-300: #e8c8aa;
    --stone-600: #5c4c3f;
    --stone-900: #1d2522;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(154, 77, 0, 0.14);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: var(--white);
    color: var(--stone-900);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: linear-gradient(180deg, #fff5eb 0%, #fffaf7 100%);
}

.eyebrow {
    display: inline-block;
    padding: 0.38rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 127, 14, 0.1);
    color: var(--green-800);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.15;
    color: var(--green-900);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0 0 1.1rem;
    color: var(--stone-600);
}

.lead {
    font-size: 1.08rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 45, 35, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 800;
    color: var(--green-900);
    flex-shrink: 0;
    min-width: 0;
}

.brand-logo-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(180px, 28vw, 360px);
    height: auto;
    max-height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-700), var(--teal-500));
    color: var(--white);
    font-size: 1.05rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-text {
    min-width: 0;
}

.brand-text small {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-600);
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
}

.nav a {
    position: relative;
    color: var(--stone-600);
    font-weight: 600;
    padding: 0.55rem 0.2rem;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.22rem;
    width: 100%;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--green-900);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--green-700), var(--green-800));
    color: var(--white) !important;
    border: 1px solid rgba(11, 59, 45, 0.12);
    border-radius: 999px;
    padding: 0.8rem 1.25rem;
    font-size: 0.96rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    min-width: 120px;
    box-shadow: 0 10px 22px rgba(13, 59, 45, 0.16);
    text-decoration: none;
}

.nav-button:hover,
.nav-button:focus,
.nav-button:active {
    color: var(--white) !important;
}

.nav-button::after {
    display: none;
}

.nav-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 12px 20px rgba(29, 107, 79, 0.2);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(16, 53, 40, 0.12);
    border-radius: 12px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-900);
    border-radius: 2px;
    position: relative;
    transition: all 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle span::before {
    top: -7px;
}

.nav-toggle span::after {
    top: 7px;
}

.hero {
    padding: 72px 0 64px;
    background: linear-gradient(135deg, rgba(122, 45, 0, 0.96), rgba(255, 127, 14, 0.87)), url('images/staff-pictures.jpeg') center/cover no-repeat;
    color: var(--white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

.hero-copy p,
.hero-copy h1,
.hero-copy .eyebrow,
.hero-meta span,
.hero-badges span {
    color: var(--white);
}

.hero-copy .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-copy p {
    max-width: 620px;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.button,
button.button,
input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
    background: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 18px 32px rgba(255, 127, 14, 0.28);
}

.button.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.button:hover {
    transform: translateY(-1px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.hero-card .mini-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.hero-meta div,
.hero-badges span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.hero-meta strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.image-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--green-900);
    padding: 0.8rem 1rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--white);
    border: 1px solid rgba(13, 48, 39, 0.08);
    border-radius: 16px;
    padding: 1rem 1.1rem;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(18, 81, 58, 0.08);
    color: var(--green-800);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
    border: 1px solid rgba(13, 48, 39, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: 0 12px 28px rgba(11, 59, 45, 0.07);
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 127, 14, 0.12), rgba(255, 191, 118, 0.2));
    color: var(--green-800);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 127, 14, 0.08);
}

.card p {
    margin-bottom: 0;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.metric {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 245, 240, 0.82));
    border: 1px solid rgba(13, 59, 45, 0.12);
    border-radius: 22px;
    padding: 1.4rem 1.2rem;
    box-shadow: 0 14px 30px rgba(11, 59, 45, 0.05);
}

.metric strong {
    display: block;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--green-900);
    margin-bottom: 0.35rem;
}

.metric span {
    color: rgba(29, 37, 34, 0.72);
}

.leadership-highlight {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.bio-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: var(--stone-50);
    border: 1px solid rgba(13, 48, 39, 0.08);
}

.bio-summary .avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.quote-box {
    margin-top: 1.5rem;
    padding: 1.2rem 1.4rem;
    border-left: 4px solid var(--gold-400);
    background: rgba(216, 176, 93, 0.08);
    border-radius: 0 14px 14px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(13, 48, 39, 0.08);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    min-height: 180px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-800);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.team-card {
    background: var(--white);
    border: 1px solid rgba(13, 48, 39, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(11, 59, 45, 0.04);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card .team-body {
    padding: 1.2rem 1.1rem 1.4rem;
}

.team-card .role {
    color: var(--green-700);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
}

.contact-panel,
.form-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
    border: 1px solid rgba(13, 48, 39, 0.12);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(11, 59, 45, 0.06);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7faf8 0%, #eef6f2 100%);
    border: 1px solid rgba(13, 48, 39, 0.08);
}

.contact-item strong {
    display: inline-block;
    margin-bottom: 0.15rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(18, 81, 58, 0.12);
    color: var(--green-800);
    font-weight: 700;
}

.map-frame {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(13, 48, 39, 0.12);
    box-shadow: 0 10px 24px rgba(11, 59, 45, 0.06);
}

.map-frame iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

label {
    display: block;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 0.45rem;
}

.field,
textarea {
    width: 100%;
    background: var(--stone-50);
    border: 1px solid rgba(13, 48, 39, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    resize: vertical;
}

textarea {
    min-height: 140px;
}

.form-note {
    font-size: 0.9rem;
    color: var(--stone-600);
}

.status-message {
    display: none;
    margin-top: 1rem;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-weight: 600;
}

.status-message.show {
    display: block;
}

.status-message.success {
    background: rgba(47, 135, 104, 0.08);
    color: var(--green-800);
    border: 1px solid rgba(47, 135, 104, 0.2);
}

.faq {
    margin-top: 2rem;
}

.accordion-item {
    background: var(--white);
    border: 1px solid rgba(13, 48, 39, 0.08);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.accordion-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 1.1rem 1.2rem;
    text-align: left;
    font-weight: 700;
    color: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.accordion-content p {
    padding: 0 1.2rem 1.1rem;
    margin: 0;
}

.site-footer {
    padding: 36px 0 28px;
    background: #1a120b;
    color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {

    .hero-inner,
    .wrap,
    .leadership-highlight,
    .contact-grid,
    .grid-3,
    .steps,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-inner,
    .wrap,
    .contact-grid,
    .leadership-highlight {
        grid-template-columns: 1fr;
    }

    .metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .header-inner {
        position: relative;
        min-height: 68px;
    }

    .brand {
        gap: 0.65rem;
        max-width: calc(100% - 80px);
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-text small {
        font-size: 0.56rem;
        letter-spacing: 0.06em;
    }

    .brand-text strong {
        font-size: 0.9rem;
        white-space: normal;
    }

    .nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav {
        position: absolute;
        top: 76px;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(16, 53, 40, 0.08);
        border-radius: 16px;
        padding: 1rem;
        box-shadow: var(--shadow);
        margin-left: 0;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 0.8rem 0.6rem;
    }

    .nav-button {
        width: 100%;
    }

    .grid-3,
    .metrics,
    .steps,
    .team-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        position: relative;
    }

    .hero {
        padding-top: 48px;
    }

    .section {
        padding: 72px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }
}