* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-bg: #23321d;
    --header-dark: #182415;
    --header-border: rgba(255, 255, 255, 0.08);

    --white: #ffffff;
    --black: #111111;

    --gold: #f4cf28;
    --gold-hover: #ffe15a;

    --text-dark: #20251e;
    --text-muted: #687064;

    --page-bg: #f3f3f3;
    --card-bg: #ffffff;

    --breadcrumb-bg: #ffffff;
    --breadcrumb-text: #26381f;

    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    font-family: Arial, Helvetica, sans-serif;

    color: var(--text-dark);
    background: var(--page-bg);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: none;
}

img {
    max-width: 100%;
}

/* HEADER */

.site-header {
    width: 100%;

    position: relative;
    z-index: 1000;

    background: var(--header-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
    width: min(var(--container-width), calc(100% - 40px));
    min-height: 91px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

/* LOGO */

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    width: 355px;
    height: auto;

    display: block;
    object-fit: contain;
}

/* NAVIGATION */

.header-navigation {
    min-height: 91px;

    margin-left: auto;

    display: flex;
    align-items: stretch;
}

.nav-list {
    display: flex;
    align-items: stretch;

    list-style: none;
}

.nav-item {
    position: relative;

    display: flex;
    align-items: center;
}

.nav-link {
    min-height: 91px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--white);

    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.nav-link i {
    font-size: 10px;

    transition: transform 0.2s ease;
}

.nav-item:hover > .nav-link,
.nav-item.active > .nav-link,
.nav-item.highlighted > .nav-link {
    color: var(--gold);
}

.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

/* DROPDOWN */

.dropdown-menu {
    width: 235px;

    position: absolute;
    top: 100%;
    left: 0;

    z-index: 20;

    list-style: none;

    background: var(--header-dark);
    border-top: 3px solid var(--gold);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;

    padding: 14px 18px;

    color: var(--white);

    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown-link:hover {
    padding-left: 23px;

    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

/* SEARCH */

.search-area {
    min-height: 91px;

    padding-left: 25px;
    margin-left: 10px;

    display: flex;
    align-items: center;

    border-left: 1px solid var(--header-border);
}

.search-button {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    color: var(--white);
    background: transparent;

    border-radius: 50%;

    cursor: pointer;

    font-size: 22px;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.search-button:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

/* SEARCH PANEL */

.search-panel {
    width: 100%;

    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    z-index: 15;

    padding: 22px 20px;

    background: var(--header-dark);
    border-top: 2px solid var(--gold);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.search-panel.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
    pointer-events: auto;
}

.search-form {
    width: min(850px, 100%);

    margin: 0 auto;

    display: flex;
}

.search-input {
    width: 100%;
    height: 48px;

    padding: 0 17px;

    color: #222222;
    background: #ffffff;

    border: none;
    outline: none;

    font-size: 15px;
}

.search-input::placeholder {
    color: #777777;
}

.search-submit {
    width: 60px;
    height: 48px;

    flex-shrink: 0;

    color: #1c2b18;
    background: var(--gold);

    cursor: pointer;

    font-size: 18px;

    transition: background-color 0.2s ease;
}

.search-submit:hover {
    background: var(--gold-hover);
}

/* MOBILE BUTTON */

.mobile-menu-button {
    width: 46px;
    height: 46px;

    display: none;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;

    cursor: pointer;

    font-size: 22px;
}

/* BREADCRUMB */

.breadcrumb-bar {
    width: 100%;
    min-height: 30px;

    background: var(--breadcrumb-bg);
}

.breadcrumb-inner {
    width: min(var(--container-width), calc(100% - 40px));
    min-height: 30px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--breadcrumb-text);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.breadcrumb-inner a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.breadcrumb-separator {
    opacity: 0.7;
}

/* MAIN */

.main-content {
    width: 100%;
}

/* HERO */

.hero-section {
    min-height: 580px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(13, 24, 10, 0.92) 0%,
            rgba(20, 34, 15, 0.78) 43%,
            rgba(22, 35, 17, 0.2) 100%
        );

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.16)
        );

    pointer-events: none;
}

.hero-content {
    width: min(var(--container-width), calc(100% - 40px));

    position: relative;
    z-index: 2;

    margin: 0 auto;

    color: var(--white);
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;

    margin-bottom: 20px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 80px);
    line-height: 0.98;
}

.hero-content p {
    max-width: 650px;

    margin-bottom: 32px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 18px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-button {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    border: 2px solid transparent;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button-primary {
    color: #1c2b18;
    background: var(--gold);
}

.hero-button-primary:hover {
    background: var(--gold-hover);
}

.hero-button-secondary {
    color: var(--white);
    background: transparent;

    border-color: rgba(255, 255, 255, 0.7);
}

.hero-button-secondary:hover {
    color: var(--header-bg);
    background: var(--white);
    border-color: var(--white);
}

/* SERVICES */

.services-section {
    padding: 90px 0;

    background: #f5f5f2;
}

.section-container {
    width: min(var(--container-width), calc(100% - 40px));

    margin: 0 auto;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #65725c;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 16px;

    color: var(--text-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading p {
    color: var(--text-muted);

    font-size: 16px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    min-height: 330px;

    padding: 34px 28px;

    display: flex;
    flex-direction: column;

    background: var(--card-bg);
    border-top: 4px solid var(--header-bg);

    box-shadow: 0 12px 35px rgba(26, 39, 22, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--gold);

    box-shadow: 0 18px 40px rgba(26, 39, 22, 0.13);
}

.service-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 25px;

    display: grid;
    place-items: center;

    color: var(--gold);
    background: var(--header-bg);

    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 14px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.service-card p {
    margin-bottom: 24px;

    color: var(--text-muted);

    font-size: 15px;
    line-height: 1.7;
}

.service-card a {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--header-bg);

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card a i {
    transition: transform 0.2s ease;
}

.service-card a:hover {
    color: #997f00;
}

.service-card a:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .header-inner {
        width: min(100% - 30px, 1100px);
        gap: 15px;
    }

    .header-logo img {
        width: 300px;
    }

    .nav-link {
        padding: 0 11px;

        font-size: 12px;
    }

    .search-area {
        padding-left: 12px;
        margin-left: 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    .header-inner {
        min-height: 78px;

        position: relative;
    }

    .header-logo img {
        width: 280px;
    }

    .mobile-menu-button {
        margin-left: auto;

        display: flex;
    }

    .header-navigation {
        width: 100%;
        max-height: calc(100vh - 78px);
        min-height: auto;

        position: fixed;
        top: 78px;
        right: 0;
        left: 0;

        display: none;
        flex-direction: column;

        overflow-y: auto;

        background: var(--header-dark);
        border-top: 2px solid var(--gold);
    }

    .header-navigation.open {
        display: flex;
    }

    .nav-list {
        width: 100%;

        flex-direction: column;
    }

    .nav-item {
        width: 100%;

        display: block;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        width: 100%;
        min-height: 53px;

        padding: 0 20px;

        justify-content: space-between;
    }

    .dropdown-menu {
        width: 100%;

        position: static;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;
        pointer-events: auto;

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow: none;
    }

    .nav-item.dropdown-open .dropdown-menu {
        display: block;
    }

    .nav-item:hover .dropdown-menu {
        transform: none;
    }

    .nav-item.dropdown-open > .nav-link i {
        transform: rotate(180deg);
    }

    .search-area {
        min-height: 58px;

        padding: 0 14px;
        margin: 0;

        border-left: none;
    }

    .search-button {
        width: 100%;

        border-radius: 3px;

        background: rgba(255, 255, 255, 0.05);
    }

    .search-panel {
        position: fixed;
        top: 78px;
    }

    .hero-section {
        min-height: 520px;
    }
}

@media (max-width: 700px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .services-section {
        padding: 65px 0;
    }
}

@media (max-width: 560px) {
    .header-inner {
        width: calc(100% - 24px);
    }

    .header-logo img {
        width: 220px;
    }

    .breadcrumb-inner,
    .hero-content,
    .section-container {
        width: calc(100% - 24px);
    }

    .breadcrumb-inner {
        font-size: 9px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-button {
        width: 100%;
    }
}

.disabled-link {
    cursor: default;
    opacity: 0.58;
}

.disabled-link:hover {
    color: var(--white);
    background: transparent;
}

.home-main {
    background: #ffffff;
}

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

.home-hero {
    min-height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 40%, rgba(244, 207, 40, 0.14), transparent 28%),
        linear-gradient(115deg, #172713 0%, #233a1d 58%, #182b15 100%);
}

.home-hero::before {
    content: "";
    width: 520px;
    height: 760px;
    position: absolute;
    top: -180px;
    right: 7%;
    opacity: 0.24;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(26deg);
}

.home-hero::after {
    content: "";
    width: 46%;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--gold);
}

.home-hero-stars {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    opacity: 0.9;
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 80px;
    padding: 82px 0 112px;
}

.home-hero-copy {
    max-width: 720px;
}

.home-eyebrow,
.home-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.1px;
    line-height: 1.5;
    text-transform: uppercase;
}

.home-eyebrow::before,
.home-section-label::before {
    content: "";
    width: 34px;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
}

.home-hero h1 {
    margin: 22px 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -2px;
}

.home-hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.home-hero-copy > p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.75;
}

.home-hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-button {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-button-gold {
    color: #1b2b17;
    background: var(--gold);
}

.home-button-gold:hover {
    background: var(--gold-hover);
}

.home-button-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
}

.home-button-outline:hover {
    color: #1b2b17;
    border-color: #ffffff;
    background: #ffffff;
}

.home-hero-emblem {
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-emblem .emblem-ring {
    width: 390px;
    aspect-ratio: 1;
    position: absolute;
    border: 1px solid rgba(244, 207, 40, 0.36);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 39px rgba(255, 255, 255, 0.07);
}

.home-hero-emblem img {
    width: min(330px, 88%);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 24px 25px rgba(0, 0, 0, 0.34));
}

.emblem-caption {
    min-width: 230px;
    padding: 14px 18px;
    position: absolute;
    right: -18px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.emblem-caption strong {
    color: #243d1d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.emblem-caption span {
    color: #677061;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.home-quick-links {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}

.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border: 1px solid #dfe4dc;
    box-shadow: 0 16px 45px rgba(25, 45, 20, 0.12);
}

.home-quick-card {
    min-height: 112px;
    padding: 22px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #e4e8e1;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.home-quick-card:last-child {
    border-right: 0;
}

.home-quick-card:hover {
    color: #ffffff;
    background: #294621;
}

.quick-icon {
    width: 46px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #28451f;
    background: #f4cf28;
    border-radius: 50%;
    font-size: 17px;
}

.home-quick-card > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.home-quick-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.home-quick-card small {
    color: #747d70;
    font-size: 12px;
}

.home-quick-card:hover small {
    color: rgba(255, 255, 255, 0.72);
}

.home-quick-card > .fa-chevron-right {
    color: #9ba394;
    font-size: 11px;
}

.home-quick-card:hover > .fa-chevron-right {
    color: var(--gold);
}

.home-intro {
    padding: 110px 0 100px;
    background: #ffffff;
}

.home-intro-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: center;
    gap: 70px;
}

.home-intro-mark {
    min-height: 240px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background: #294621;
    border-bottom: 8px solid var(--gold);
}

.home-intro-mark::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: -54px;
    bottom: -54px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.home-intro-mark span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-intro-mark strong {
    margin-top: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1;
}

.home-intro-mark i {
    margin-top: 22px;
    color: var(--gold);
    font-size: 19px;
}

.home-intro-copy {
    max-width: 780px;
}

.home-intro-copy .home-section-label,
.home-section-heading .home-section-label {
    color: #5b6f54;
}

.home-intro-copy h2,
.home-section-heading h2 {
    color: #1d2d19;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.08;
}

.home-intro-copy h2 {
    margin: 18px 0 22px;
}

.home-intro-copy p {
    color: #667063;
    font-size: 16px;
    line-height: 1.8;
}

.home-text-link {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #294621;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-text-link:hover {
    color: #927a00;
}

.home-services {
    padding: 96px 0 110px;
    background: #f1f4ef;
    border-top: 1px solid #dde3da;
}

.home-section-heading {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 60px;
}

.home-section-heading h2 {
    margin-top: 14px;
}

.home-section-heading > p {
    padding-left: 24px;
    color: #667063;
    border-left: 3px solid var(--gold);
    font-size: 15px;
    line-height: 1.75;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #d9dfd6;
}

.home-service-card {
    min-height: 360px;
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 1px solid #d9dfd6;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-service-card:last-child {
    border-right: 0;
}

.home-service-card.featured,
.home-service-card:hover {
    color: #ffffff;
    background: #294621;
}

.service-number {
    position: absolute;
    top: 30px;
    right: 32px;
    color: #a3aca0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
}

.home-service-card.featured .service-number,
.home-service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.5);
}

.home-service-card > i {
    width: 58px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #294621;
    background: var(--gold);
    font-size: 21px;
}

.home-service-card h3 {
    margin: 30px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.home-service-card p {
    color: #697266;
    font-size: 14px;
    line-height: 1.75;
}

.home-service-card.featured p,
.home-service-card:hover p {
    color: rgba(255, 255, 255, 0.72);
}

.home-service-card a {
    margin-top: auto;
    padding-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #294621;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.home-service-card.featured a,
.home-service-card:hover a {
    color: var(--gold);
}

@media (max-width: 1050px) {
    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 40px;
    }

    .home-hero-emblem .emblem-ring {
        width: 310px;
    }

    .emblem-caption {
        right: 0;
    }

    .home-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-quick-card:nth-child(2) {
        border-right: 0;
    }

    .home-quick-card:nth-child(-n + 2) {
        border-bottom: 1px solid #e4e8e1;
    }
}

@media (max-width: 780px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        padding: 74px 0 108px;
    }

    .home-hero-emblem {
        display: none;
    }

    .home-intro-grid,
    .home-section-heading,
    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-intro-grid {
        gap: 38px;
    }

    .home-intro-mark {
        width: min(240px, 100%);
    }

    .home-section-heading {
        gap: 24px;
    }

    .home-service-card,
    .home-service-card:last-child {
        min-height: 320px;
        border-right: 0;
        border-bottom: 1px solid #d9dfd6;
    }

    .home-service-card:last-child {
        border-bottom: 0;
    }
}


@media (max-width: 560px) {
    .home-container,
    .home-hero-inner {
        width: calc(100% - 24px);
    }

    .home-hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .home-hero-copy > p {
        font-size: 16px;
    }

    .home-hero-actions,
    .home-button {
        width: 100%;
    }

    .home-quick-links {
        margin-top: -36px;
    }

    .home-quick-grid {
        grid-template-columns: 1fr;
    }

    .home-quick-card,
    .home-quick-card:nth-child(2),
    .home-quick-card:last-child {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid #e4e8e1;
    }

    .home-quick-card:last-child {
        border-bottom: 0;
    }

    .home-intro,
    .home-services {
        padding: 72px 0;
    }

    .home-service-card {
        padding: 30px 26px;
    }
}
