/*
Theme Name: PureBeef
Theme URI: https://purebeef.ca
Author: PureBeef
Description: Lightweight custom theme for PureBeef.ca
Version: 1.0.0
Text Domain: purebeef
*/

:root {
    --cream: #F6F2E8;
    --cream-light: #FBF9F4;
    --green: #294936;
    --green-dark: #193326;
    --sage: #7D9278;
    --tan: #B89B72;
    --charcoal: #252A26;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream-light);
    color: var(--charcoal);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 24px 6%;
    color: var(--white);
}

.nav-wrap {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(18,40,29,.90), rgba(18,40,29,.42)),
        linear-gradient(180deg, #45614b, #243e2e);
    padding: 140px 6% 90px;
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0;
    max-width: 850px;
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .98;
    font-weight: 500;
}

.hero p {
    max-width: 650px;
    margin: 30px 0;
    font-size: 20px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.button-primary {
    background: var(--cream);
    color: var(--green-dark);
}

.button-secondary {
    border: 1px solid rgba(255,255,255,.65);
    color: var(--white);
}

.section {
    padding: 100px 6%;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.intro {
    text-align: center;
    background: var(--cream);
}

.intro h2,
.section-title {
    font-family: Georgia, serif;
    color: var(--green-dark);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    margin: 0 0 25px;
    font-weight: 500;
}

.intro p {
    max-width: 800px;
    margin: auto;
    font-size: 19px;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #d9d5ca;
}

.pillar {
    background: var(--cream-light);
    padding: 70px 8%;
}

.pillar-number {
    color: var(--tan);
    font-size: 13px;
    letter-spacing: .15em;
    font-weight: 700;
}

.pillar h3 {
    font-family: Georgia, serif;
    color: var(--green-dark);
    font-size: 30px;
    margin: 14px 0;
}

.respect {
    background: var(--green-dark);
    color: var(--cream);
}

.respect .section-title {
    color: var(--cream);
    max-width: 800px;
}

.respect p {
    max-width: 750px;
    font-size: 19px;
}

.quote {
    margin-top: 45px;
    padding-left: 25px;
    border-left: 2px solid var(--tan);
    font-family: Georgia, serif;
    font-size: 27px;
    max-width: 760px;
}

.cta {
    text-align: center;
    background: var(--cream);
}

.site-footer {
    background: #12251b;
    color: rgba(255,255,255,.75);
    padding: 55px 6%;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
}

.footer-brand {
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 25px;
}

@media (max-width: 800px) {
    .site-nav {
        display: none;
    }

    .hero {
        min-height: 820px;
    }

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

    .section {
        padding: 75px 7%;
    }
}

/* PureBeef hero photography */
.hero {
    background:
        linear-gradient(
            90deg,
            rgba(18, 48, 34, 0.38) 0%,
            rgba(18, 48, 34, 0.10) 48%,
            rgba(18, 48, 34, 0.02) 100%
        ),
        url('https://purebeef.ca/wp-content/uploads/2026/08/purebeef.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* PureBeef philosophy introduction */
.intro {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.intro .container {
    max-width: 1050px;
}

.intro .eyebrow {
    color: #8B704C;
    margin-bottom: 25px;
}

.intro h2 {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.intro p {
    max-width: 760px;
    line-height: 1.85;
    color: #485149;
}

.intro::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    background: #B89B72;
    margin: 50px auto 0;
}

@media (max-width: 800px) {
    .intro {
        padding-top: 85px;
        padding-bottom: 85px;
    }
}

/* PureBeef three principles */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #F8F5ED;
    border-top: 1px solid rgba(41,73,54,.12);
    border-bottom: 1px solid rgba(41,73,54,.12);
}

.pillar {
    position: relative;
    min-height: 390px;
    padding: 75px 9% 70px;
    background: #F8F5ED;
    transition: background .3s ease, transform .3s ease;
}

.pillar + .pillar {
    border-left: 1px solid rgba(41,73,54,.15);
}

.pillar-number {
    display: block;
    margin-bottom: 38px;
    color: #A1845D;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
}

.pillar h3 {
    margin: 0 0 22px;
    color: #193326;
    font-family: Georgia, serif;
    font-size: clamp(30px, 2.6vw, 43px);
    font-weight: 500;
    line-height: 1.08;
}

.pillar p {
    max-width: 390px;
    margin: 0;
    color: #525A53;
    font-size: 17px;
    line-height: 1.8;
}

.pillar::after {
    content: "Explore  →";
    position: absolute;
    left: 9%;
    bottom: 42px;
    color: #294936;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .3s ease, transform .3s ease;
}

.pillar:hover {
    background: #F1ECDF;
}

.pillar:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    .pillars {
        grid-template-columns: 1fr;
    }

    .pillar {
        min-height: auto;
        padding: 60px 7% 85px;
    }

    .pillar + .pillar {
        border-left: 0;
        border-top: 1px solid rgba(41,73,54,.15);
    }

    .pillar::after {
        left: 7%;
        opacity: 1;
        bottom: 35px;
        transform: none;
    }
}

/* Respect the whole animal */
.respect {
    position: relative;
    overflow: hidden;
    padding-top: 125px;
    padding-bottom: 130px;
    background:
        radial-gradient(circle at 85% 25%, rgba(125,146,120,.15), transparent 34%),
        #193326;
}

.respect .container {
    position: relative;
    max-width: 1200px;
}

.respect .eyebrow {
    margin-bottom: 30px;
    color: #C8AD82;
}

.respect .section-title {
    max-width: 950px;
    margin-bottom: 38px;
    color: #F6F2E8;
    font-size: clamp(45px, 5.5vw, 76px);
    line-height: 1.06;
}

.respect p {
    max-width: 720px;
    margin: 0;
    color: rgba(246,242,232,.82);
    font-size: 18px;
    line-height: 1.9;
}

.respect .quote {
    position: relative;
    max-width: 850px;
    margin-top: 70px;
    padding: 32px 0 32px 38px;
    border-left: 2px solid #B89B72;
    color: #F6F2E8;
    font-family: Georgia, serif;
    font-size: clamp(26px, 3vw, 38px);
    font-style: italic;
    line-height: 1.35;
}

.respect::after {
    content: "RESPECT";
    position: absolute;
    right: -25px;
    bottom: -70px;
    color: rgba(255,255,255,.025);
    font-family: Georgia, serif;
    font-size: clamp(120px, 18vw, 300px);
    line-height: 1;
    pointer-events: none;
}

@media (max-width: 800px) {
    .respect {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .respect .quote {
        margin-top: 50px;
        padding-left: 25px;
    }

    .respect::after {
        display: none;
    }
}

/* Find local beef CTA */
.cta {
    position: relative;
    padding-top: 125px;
    padding-bottom: 130px;
    background: #F6F2E8;
    text-align: center;
}

.cta .container {
    max-width: 950px;
}

.cta .eyebrow {
    color: #927650;
    margin-bottom: 25px;
}

.cta .section-title {
    margin-bottom: 25px;
    color: #193326;
    font-size: clamp(45px, 5.5vw, 72px);
}

.cta p {
    max-width: 680px;
    margin: 0 auto 42px;
    color: #525A53;
    font-size: 19px;
    line-height: 1.8;
}

/* Future directory search preview */
.cta::after {
    content: "Farms • Farmers • Local Beef • Independent Processors";
    display: block;
    max-width: 760px;
    margin: 55px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(41,73,54,.16);
    color: #7A807A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .cta {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .cta::after {
        margin-left: 7%;
        margin-right: 7%;
        line-height: 2;
    }
}

/* Find local beef CTA */
.cta {
    position: relative;
    padding-top: 125px;
    padding-bottom: 130px;
    background: #F6F2E8;
    text-align: center;
}

.cta .container {
    max-width: 950px;
}

.cta .eyebrow {
    color: #927650;
    margin-bottom: 25px;
}

.cta .section-title {
    margin-bottom: 25px;
    color: #193326;
    font-size: clamp(45px, 5.5vw, 72px);
}

.cta p {
    max-width: 680px;
    margin: 0 auto 42px;
    color: #525A53;
    font-size: 19px;
    line-height: 1.8;
}

/* Future directory search preview */
.cta::after {
    content: "Farms • Farmers • Local Beef • Independent Processors";
    display: block;
    max-width: 760px;
    margin: 55px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(41,73,54,.16);
    color: #7A807A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .cta {
        padding-top: 85px;
        padding-bottom: 90px;
    }

    .cta::after {
        margin-left: 7%;
        margin-right: 7%;
        line-height: 2;
    }
}

/* =========================================================
   PUREBEEF FARM PROFILES
   ========================================================= */

.farm-profile {
    background: #F8F5ED;
}

.farm-container {
    width: min(1120px, 88%);
    margin: 0 auto;
}

/* Farm hero */
.farm-hero {
    padding: 190px 6% 110px;
    background:
        radial-gradient(circle at 80% 20%, rgba(125,146,120,.20), transparent 35%),
        #193326;
    color: #F6F2E8;
}

.farm-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.farm-hero .eyebrow {
    color: #C8AD82;
    margin-bottom: 24px;
}

.farm-hero h1 {
    max-width: 950px;
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(50px, 7vw, 88px);
    font-weight: 500;
    line-height: 1.02;
}

.farm-location {
    margin-top: 25px;
    font-size: 20px;
    color: rgba(246,242,232,.85);
}

.farm-trust-line {
    margin-top: 55px;
    padding-top: 25px;
    border-top: 1px solid rgba(246,242,232,.20);
    color: rgba(246,242,232,.65);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

/* General profile sections */
.farm-section {
    padding: 100px 0;
}

.farm-section + .farm-section {
    border-top: 1px solid rgba(41,73,54,.12);
}

.farm-section-label {
    margin-bottom: 20px;
    color: #927650;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.farm-section h2 {
    max-width: 800px;
    margin: 0 0 40px;
    color: #193326;
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 500;
    line-height: 1.08;
}

.farm-copy {
    max-width: 800px;
    color: #4F5851;
    font-size: 19px;
    line-height: 1.9;
}

/* Raising practices */
.farm-practices {
    background: #F1ECDF;
}

.farm-practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 45px;
    background: rgba(41,73,54,.13);
}

.farm-detail {
    padding: 35px;
    background: #F8F5ED;
}

.farm-detail span {
    display: block;
    margin-bottom: 12px;
    color: #927650;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.farm-detail p {
    margin: 0;
    color: #354239;
    font-size: 17px;
    line-height: 1.7;
}

.farm-badge {
    display: inline-block;
    margin-top: 35px;
    padding: 12px 18px;
    border: 1px solid rgba(41,73,54,.25);
    color: #294936;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
}

/* Products */
.farm-products {
    background: #FBF9F4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-tags span {
    padding: 12px 18px;
    background: #E8E0D0;
    color: #294936;
    font-size: 14px;
    font-weight: 700;
}

.buying-notes {
    max-width: 750px;
    margin-top: 45px;
    padding: 30px;
    border-left: 2px solid #B89B72;
    background: #F6F2E8;
    color: #4F5851;
    line-height: 1.8;
}

/* Contact */
.farm-contact {
    background: #294936;
    color: #F6F2E8;
}

.farm-contact .farm-section-label {
    color: #C8AD82;
}

.farm-contact h2 {
    color: #F6F2E8;
}

.farm-contact p {
    font-size: 18px;
}

.processor-line {
    color: rgba(246,242,232,.70);
}

.farm-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.farm-contact-links a {
    display: inline-block;
    padding: 14px 22px;
    border: 1px solid rgba(246,242,232,.55);
    color: #F6F2E8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.farm-contact-links a:hover {
    background: #F6F2E8;
    color: #193326;
}

/* Mobile farm profiles */
@media (max-width: 800px) {

    .farm-hero {
        padding: 145px 7% 80px;
    }

    .farm-section {
        padding: 75px 0;
    }

    .farm-container {
        width: 86%;
    }

    .farm-practice-grid {
        grid-template-columns: 1fr;
    }

    .farm-detail {
        padding: 28px;
    }

    .farm-contact-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   PUREBEEF FARM DIRECTORY
   ========================================================= */

.farm-directory {
    background: #F8F5ED;
}

.directory-container {
    width: min(1280px, 88%);
    margin: 0 auto;
}

.directory-hero {
    padding: 190px 0 105px;
    background:
        radial-gradient(circle at 80% 20%, rgba(125,146,120,.18), transparent 35%),
        #193326;
    color: #F6F2E8;
}

.directory-hero .eyebrow {
    color: #C8AD82;
}

.directory-hero h1 {
    margin: 18px 0 25px;
    font-family: Georgia, serif;
    font-size: clamp(55px, 7vw, 92px);
    font-weight: 500;
    line-height: 1;
}

.directory-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(246,242,232,.80);
    font-size: 19px;
    line-height: 1.8;
}

.directory-intro {
    padding: 100px 0 120px;
}

.directory-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 55px;
}

.directory-label {
    margin-bottom: 12px;
    color: #927650;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.directory-heading h2 {
    margin: 0;
    color: #193326;
    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 500;
}

.directory-count {
    padding-bottom: 8px;
    color: #788078;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
}

.farm-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.farm-card {
    overflow: hidden;
    background: #FFF;
    border: 1px solid rgba(41,73,54,.12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.farm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(25,51,38,.09);
}

.farm-card-image {
    display: block;
    height: 260px;
    overflow: hidden;
    background: #294936;
}

.farm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.farm-card:hover .farm-card-image img {
    transform: scale(1.025);
}

.farm-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 70% 20%, rgba(125,146,120,.35), transparent 35%),
        #294936;
}

.farm-image-placeholder span {
    color: rgba(246,242,232,.75);
    font-family: Georgia, serif;
    font-size: 22px;
    letter-spacing: .08em;
}

.farm-card-content {
    padding: 30px;
}

.farm-card-location {
    margin-bottom: 10px;
    color: #927650;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.farm-card h3 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
}

.farm-card h3 a {
    color: #193326;
    text-decoration: none;
}

.farm-card-badge {
    display: inline-block;
    margin-bottom: 18px;
    color: #294936;
    font-size: 12px;
    font-weight: 700;
}

.farm-card-products {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 4px 0 25px;
}

.farm-card-products span {
    padding: 6px 9px;
    background: #F1ECDF;
    color: #596159;
    font-size: 11px;
    font-weight: 700;
}

.farm-card-link {
    color: #294936;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.directory-pagination {
    margin-top: 65px;
}

.directory-empty {
    padding: 65px;
    background: #F1ECDF;
    text-align: center;
}

.directory-empty h3 {
    margin-top: 0;
    color: #193326;
    font-family: Georgia, serif;
    font-size: 32px;
}

@media (max-width: 1000px) {
    .farm-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .directory-hero {
        padding: 145px 0 80px;
    }

    .directory-intro {
        padding: 75px 0 90px;
    }

    .directory-heading {
        display: block;
    }

    .directory-count {
        margin-top: 20px;
    }

    .farm-directory-grid {
        grid-template-columns: 1fr;
    }

    .farm-card-image {
        height: 230px;
    }
}

/* =========================================================
   PUREBEEF DIRECTORY FILTERS
   ========================================================= */

.beef-filter-section {
    padding: 70px 0 0;
    background: #F8F5ED;
}

.beef-filter-form {
    padding: 42px;
    background: #F1ECDF;
    border: 1px solid rgba(41,73,54,.12);
}

.filter-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.filter-heading h2 {
    margin: 5px 0 0;
    color: #193326;
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 500;
}

.clear-filters {
    color: #294936;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    text-transform: uppercase;
}

.filter-location {
    margin-bottom: 30px;
}

.filter-location > label,
.filter-group-title {
    display: block;
    margin-bottom: 10px;
    color: #596159;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.filter-location-row {
    display: flex;
    max-width: 760px;
}

.filter-location-row input {
    flex: 1;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid rgba(41,73,54,.22);
    border-right: 0;
    background: #FFF;
    color: #193326;
    font: inherit;
}

.filter-location-row input:focus {
    outline: 1px solid #294936;
}

.filter-location-row button,
.filter-submit-mobile button {
    padding: 15px 25px;
    border: 1px solid #294936;
    background: #294936;
    color: #FFF;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.filter-groups {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
    padding-top: 28px;
    border-top: 1px solid rgba(41,73,54,.12);
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.filter-group-title {
    flex-basis: 100%;
}

.filter-option {
    position: relative;
    cursor: pointer;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-option span {
    display: block;
    padding: 9px 13px;
    border: 1px solid rgba(41,73,54,.18);
    background: #F8F5ED;
    color: #4F5851;
    font-size: 12px;
    font-weight: 600;
    transition: .2s ease;
}

.filter-option:hover span {
    border-color: #294936;
}

.filter-option input:checked + span {
    border-color: #294936;
    background: #294936;
    color: #FFF;
}

.filter-submit-mobile {
    display: none;
}

@media (max-width: 800px) {

    .beef-filter-section {
        padding-top: 45px;
    }

    .beef-filter-form {
        padding: 28px 22px;
    }

    .filter-heading {
        display: block;
    }

    .clear-filters {
        display: inline-block;
        margin-top: 15px;
    }

    .filter-location-row {
        display: block;
    }

    .filter-location-row input {
        width: 100%;
        border-right: 1px solid rgba(41,73,54,.22);
        box-sizing: border-box;
    }

    .filter-location-row button {
        width: 100%;
        margin-top: 8px;
    }

    .filter-groups {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .filter-submit-mobile {
        display: block;
        margin-top: 30px;
    }

    .filter-submit-mobile button {
        width: 100%;
    }
}


/* =========================================================
   PUREBEEF PROCESSOR PROFILE
   ========================================================= */

.processor-profile {
    background: #F8F5ED;
    color: #193326;
}

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

.processor-hero {
    background: #193326;
    color: #F8F5ED;
    padding: 115px 0 95px;
}

.processor-eyebrow,
.processor-label {
    color: #C8AD82;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.processor-hero h1 {
    color: #F8F5ED;
    font-family: Georgia, serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    margin: 22px 0 18px;
    max-width: 900px;
}

.processor-location {
    color: #C8AD82;
    font-size: 17px;
    margin: 0 0 25px;
}

.processor-trust {
    color: #F8F5ED;
    font-size: 18px;
    line-height: 1.7;
    max-width: 680px;
    margin: 0;
}

.processor-content {
    padding: 90px 0 110px;
}

.processor-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 90px;
    align-items: start;
}

.processor-section {
    padding-bottom: 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid rgba(25, 51, 38, 0.15);
}

.processor-section:last-child {
    border-bottom: 0;
}

.processor-section h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    margin: 14px 0 25px;
    color: #193326;
}

.processor-copy,
.processor-section p {
    font-size: 17px;
    line-height: 1.8;
}

.processor-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.processor-service {
    background: #fff;
    border: 1px solid rgba(25, 51, 38, 0.18);
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
}

.processor-contact-card {
    background: #EFE8D8;
    padding: 38px;
}

.processor-contact-card h3 {
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 400;
    margin: 12px 0 30px;
}

.processor-contact-card p {
    line-height: 1.6;
    margin: 0 0 22px;
}

.processor-contact-card a {
    color: #193326;
}

.processor-website {
    display: inline-block;
    background: #294936;
    color: #fff !important;
    text-decoration: none;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 13px;
}

.processor-note {
    margin-top: 24px;
    border: 1px solid rgba(25, 51, 38, 0.15);
    padding: 28px;
    font-size: 14px;
    line-height: 1.6;
}

.processor-note p {
    margin: 8px 0 0;
}

@media (max-width: 800px) {

    .processor-container {
        width: min(100% - 32px, 1180px);
    }

    .processor-hero {
        padding: 80px 0 65px;
    }

    .processor-content {
        padding: 60px 0 80px;
    }

    .processor-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .processor-contact-card {
        padding: 28px;
    }
}
