/*
Theme Name: United Farmers Co-op
Theme URI: https://unitedfarmersco-op.com/
Author: ScottTech
Author URI: https://scotttech.ca/
Description: A clean, lightweight, responsive WordPress theme for United Farmers Co-op.
Version: 1.0.1
Text Domain: united-farmers-coop
*/


/* --------------------------------------------------
   RESET / BASE
-------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #566057;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.site-main {
    overflow: hidden;
}


/* --------------------------------------------------
   CONTAINER
-------------------------------------------------- */

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


/* --------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: #263a28;
    font-weight: 800;
    line-height: 1.15;
}

h1 {
    font-size: clamp(42px, 6vw, 78px);
}

h2 {
    font-size: clamp(34px, 4vw, 58px);
}

h3 {
    font-size: 24px;
}

p {
    margin-top: 0;
}

.ufc-section-label {
    margin-bottom: 12px;
    color: #6d8b3d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ufc-section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.ufc-section-heading h2 {
    margin-bottom: 15px;
}

.ufc-section-heading p:last-child {
    margin-bottom: 0;
    font-size: 18px;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */

.ufc-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ufc-button:hover {
    transform: translateY(-2px);
}

.ufc-button-primary {
    background: #315c2b;
    color: #ffffff;
}

.ufc-button-primary:hover {
    background: #244820;
    color: #ffffff;
}

.ufc-button-secondary {
    border-color: rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #ffffff;
}

.ufc-button-secondary:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #263a28;
}

.ufc-text-link {
    display: inline-block;
    color: #315c2b;
    font-weight: 800;
}

.ufc-text-link:hover {
    color: #6d8b3d;
}


/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.ufc-hero {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: center;
    overflow: hidden;
}

.ufc-hero-image {
    position: absolute;
    inset: 0;
}

.ufc-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ufc-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(20, 35, 22, 0.88) 0%,
            rgba(20, 35, 22, 0.72) 38%,
            rgba(20, 35, 22, 0.25) 70%,
            rgba(20, 35, 22, 0.05) 100%
        );
}

.ufc-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ufc-hero-text {
    max-width: 650px;
    color: #ffffff;
}

.ufc-hero-text .ufc-section-label {
    color: #c8db9d;
}

.ufc-hero-text h1 {
    margin: 12px 0 22px;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 76px);
    letter-spacing: -1.5px;
    line-height: 1.05;
}

.ufc-hero-text p:not(.ufc-section-label) {
    max-width: 580px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.6;
}

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


/* --------------------------------------------------
   INTRODUCTION
-------------------------------------------------- */

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

.ufc-intro-content {
    max-width: 800px;
}

.ufc-intro-content h2 {
    margin-bottom: 25px;
}

.ufc-intro-content p:not(.ufc-section-label) {
    max-width: 720px;
    color: #657067;
    font-size: 19px;
    line-height: 1.75;
}


/* --------------------------------------------------
   STORE SECTION
-------------------------------------------------- */

.ufc-store-section {
    padding: 100px 0;
    background: #f4f6f0;
}

.ufc-store-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.ufc-store-image-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.ufc-store-image {
    width: 100%;
    min-height: 480px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ufc-store-content h2 {
    margin-bottom: 24px;
}

.ufc-store-content > p:not(.ufc-section-label) {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.75;
}


/* --------------------------------------------------
   DEPARTMENTS
-------------------------------------------------- */

.ufc-departments {
    padding: 100px 0;
    background: #ffffff;
}

.ufc-department-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ufc-department-card {
    min-height: 280px;
    padding: 32px 28px;
    border: 1px solid #e1e5dc;
    border-radius: 6px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.ufc-department-card:hover {
    border-color: #b9c8af;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.ufc-department-icon {
    margin-bottom: 28px;
    font-size: 42px;
    line-height: 1;
}

.ufc-department-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
}

.ufc-department-card p {
    margin-bottom: 0;
    color: #657067;
}


/* --------------------------------------------------
   SEASONAL
-------------------------------------------------- */

.ufc-seasonal {
    padding: 100px 0;
    background: #263a28;
}

.ufc-seasonal-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.ufc-seasonal-content {
    color: #e9eee5;
}

.ufc-seasonal-content .ufc-section-label {
    color: #c8db9d;
}

.ufc-seasonal-content h2 {
    margin-bottom: 24px;
    color: #ffffff;
}

.ufc-seasonal-content > p:not(.ufc-section-label) {
    max-width: 520px;
    margin-bottom: 30px;
    color: #d7dfd2;
    font-size: 18px;
    line-height: 1.75;
}

.ufc-seasonal-image-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.ufc-seasonal-image {
    width: 100%;
    min-height: 460px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* --------------------------------------------------
   WHY CHOOSE US
-------------------------------------------------- */

.ufc-why {
    padding: 100px 0;
    background: #ffffff;
}

.ufc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.ufc-why-item {
    padding-right: 25px;
}

.ufc-why-number {
    margin-bottom: 22px;
    color: #a8c66c;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.ufc-why-item h3 {
    margin-bottom: 12px;
}

.ufc-why-item p {
    margin-bottom: 0;
    color: #657067;
    font-size: 17px;
}


/* --------------------------------------------------
   CONTACT
-------------------------------------------------- */

.ufc-contact-section {
    padding: 100px 0;
    background: #f4f6f0;
}

.ufc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ufc-contact-content h2 {
    margin-bottom: 22px;
}

.ufc-contact-content > p:not(.ufc-section-label) {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.75;
}

.ufc-contact-details {
    display: grid;
    gap: 30px;
}

.ufc-contact-item {
    padding-bottom: 25px;
    border-bottom: 1px solid #dfe4dc;
}

.ufc-contact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ufc-contact-label {
    display: block;
    margin-bottom: 8px;
    color: #6d8b3d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ufc-contact-item p {
    margin-bottom: 0;
    color: #263a28;
    font-size: 18px;
    font-weight: 700;
}

.ufc-contact-item a {
    color: #315c2b;
}

.ufc-contact-item a:hover {
    color: #6d8b3d;
}


/* --------------------------------------------------
   BLOG / INDEX
-------------------------------------------------- */

.ufc-blog {
    padding: 80px 0 100px;
    background: #ffffff;
}

.ufc-blog-header {
    margin-bottom: 50px;
}

.ufc-blog-title {
    margin: 0;
    color: #263a28;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
}

.ufc-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ufc-post-card {
    overflow: hidden;
    border: 1px solid #e1e5dc;
    border-radius: 6px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.ufc-post-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-5px);
}

.ufc-post-image {
    display: block;
    overflow: hidden;
}

.ufc-post-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ufc-post-card:hover .ufc-post-image img {
    transform: scale(1.04);
}

.ufc-post-content {
    padding: 28px;
}

.ufc-post-meta {
    margin-bottom: 10px;
    color: #6d8b3d;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ufc-post-title {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.2;
}

.ufc-post-title a:hover {
    color: #315c2b;
}

.ufc-post-excerpt {
    margin-bottom: 22px;
    color: #657067;
}

.ufc-post-read-more {
    color: #315c2b;
    font-size: 14px;
    font-weight: 800;
}

.ufc-post-read-more:hover {
    color: #6d8b3d;
}

.ufc-pagination {
    margin-top: 55px;
}

.ufc-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ufc-pagination a,
.ufc-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #dfe4dc;
    border-radius: 4px;
}

.ufc-pagination .current {
    border-color: #315c2b;
    background: #315c2b;
    color: #ffffff;
}

.ufc-no-posts {
    padding: 80px 20px;
    text-align: center;
}


/* --------------------------------------------------
   SINGLE POSTS
-------------------------------------------------- */

.ufc-single-post {
    padding: 80px 0 100px;
    background: #ffffff;
}

.ufc-single-featured-image {
    width: 100%;
    max-height: 600px;
    margin-bottom: 70px;
    overflow: hidden;
}

.ufc-single-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.ufc-single-content {
    max-width: 850px;
    margin: 0 auto;
}

.ufc-single-header {
    margin-bottom: 40px;
}

.ufc-single-meta {
    margin-bottom: 14px;
}

.ufc-single-date {
    color: #6d8b3d;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ufc-single-title {
    margin: 0;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.ufc-single-body {
    color: #566057;
    font-size: 18px;
    line-height: 1.75;
}

.ufc-single-body > *:first-child {
    margin-top: 0;
}

.ufc-single-body h2,
.ufc-single-body h3,
.ufc-single-body h4 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #263a28;
    line-height: 1.2;
}

.ufc-single-body h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.ufc-single-body h3 {
    font-size: 30px;
}

.ufc-single-body p {
    margin-bottom: 25px;
}

.ufc-single-body ul,
.ufc-single-body ol {
    margin: 0 0 28px 28px;
}

.ufc-single-body li {
    margin-bottom: 9px;
}

.ufc-single-body a {
    color: #315c2b;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ufc-single-body a:hover {
    color: #6d8b3d;
}

.ufc-single-body blockquote {
    margin: 40px 0;
    padding: 28px 32px;
    border-left: 5px solid #a8c66c;
    background: #f4f6f0;
    color: #263a28;
    font-size: 21px;
    font-style: italic;
}

.ufc-single-footer {
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid #e1e5dc;
}

.ufc-single-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
}

.ufc-share-label {
    margin-right: 5px;
    color: #263a28;
    font-weight: 800;
}

.ufc-share-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid #dfe4dc;
    border-radius: 4px;
    color: #315c2b;
    font-size: 14px;
    font-weight: 700;
}

.ufc-share-link:hover {
    border-color: #315c2b;
    background: #315c2b;
    color: #ffffff;
}

.ufc-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.ufc-post-nav-previous,
.ufc-post-nav-next {
    flex: 1;
}

.ufc-post-nav-next {
    text-align: right;
}

.ufc-post-navigation a {
    color: #315c2b;
    font-weight: 800;
}

.ufc-post-navigation a:hover {
    color: #6d8b3d;
}


/* --------------------------------------------------
   404 PAGE
-------------------------------------------------- */

.ufc-404 {
    display: flex;
    min-height: 70vh;
    align-items: center;
    padding: 100px 0;
    background: #f4f6f0;
}

.ufc-404-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.ufc-404-number {
    margin-bottom: 10px;
    color: #dce5d4;
    font-size: clamp(100px, 20vw, 220px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -8px;
}

.ufc-404 h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.ufc-404-text {
    max-width: 580px;
    margin: 0 auto 32px;
    color: #657067;
    font-size: 18px;
}

.ufc-404-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 1024px) {

    .ufc-store-grid,
    .ufc-seasonal-grid {
        gap: 45px;
    }

    .ufc-department-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ufc-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ufc-contact-grid {
        gap: 50px;
    }

}


@media (max-width: 768px) {

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

    .ufc-hero {
        min-height: 650px;
        align-items: flex-end;
    }

    .ufc-hero-image img {
        object-position: 58% center;
    }

    .ufc-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 35, 22, 0.08) 0%,
                rgba(20, 35, 22, 0.35) 40%,
                rgba(20, 35, 22, 0.94) 100%
            );
    }

    .ufc-hero-content {
        padding-bottom: 55px;
    }

    .ufc-hero-text h1 {
        font-size: 48px;
    }

    .ufc-hero-text p:not(.ufc-section-label) {
        font-size: 17px;
    }

    .ufc-hero-buttons {
        flex-direction: column;
    }

    .ufc-hero-buttons .ufc-button {
        width: 100%;
    }

    .ufc-intro,
    .ufc-store-section,
    .ufc-departments,
    .ufc-seasonal,
    .ufc-why,
    .ufc-contact-section {
        padding: 70px 0;
    }

    .ufc-store-grid,
    .ufc-seasonal-grid,
    .ufc-contact-grid {
        grid-template-columns: 1fr;
    }

    .ufc-store-image {
        min-height: 350px;
    }

    .ufc-seasonal-image {
        min-height: 350px;
    }

    .ufc-seasonal-content {
        order: 1;
    }

    .ufc-seasonal-image-wrap {
        order: 2;
    }

    .ufc-why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ufc-why-item {
        padding-right: 0;
    }

    .ufc-blog {
        padding: 60px 0 75px;
    }

    .ufc-single-post {
        padding: 60px 0 75px;
    }

    .ufc-single-featured-image {
        margin-bottom: 45px;
    }

    .ufc-single-image {
        height: 320px;
    }

    .ufc-single-title {
        font-size: 42px;
    }

    .ufc-single-body {
        font-size: 17px;
    }

    .ufc-single-body blockquote {
        padding: 22px;
        font-size: 19px;
    }

    .ufc-post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .ufc-post-nav-next {
        text-align: left;
    }

}


@media (max-width: 600px) {

    .ufc-section-heading {
        margin-bottom: 35px;
    }

    .ufc-department-grid,
    .ufc-post-grid {
        grid-template-columns: 1fr;
    }

    .ufc-department-card {
        min-height: auto;
    }

    .ufc-404 {
        min-height: 65vh;
        padding: 70px 0;
    }

    .ufc-404-number {
        font-size: 120px;
        letter-spacing: -5px;
    }

    .ufc-404-actions {
        flex-direction: column;
    }

    .ufc-404-actions .ufc-button {
        width: 100%;
    }

}
/* ==================================================
   HEADER FIX
================================================== */

.site-header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e7ebe4;
}

.ufc-header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 35px;
}

/* LOGO */

.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
}

.custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 68px;
    height: auto;
}

.ufc-site-title {
    display: block;
    color: #263a28;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

/* DESKTOP MENU */

.main-navigation {
    flex: 1;
}

.ufc-primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ufc-primary-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ufc-primary-menu a {
    color: #263a28;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ufc-primary-menu a:hover,
.ufc-primary-menu .current-menu-item > a {
    color: #6d8b3d;
}

/* PHONE */

.ufc-header-contact {
    flex-shrink: 0;
}

.ufc-header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #263a28;
    text-decoration: none;
}

.ufc-header-contact-label {
    color: #6d8b3d;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.ufc-header-phone-number {
    font-size: 16px;
    font-weight: 800;
}

/* MOBILE BUTTON */

.ufc-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ufc-menu-icon {
    display: flex;
    width: 26px;
    flex-direction: column;
    gap: 5px;
}

.ufc-menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #263a28;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HIDE MOBILE MENU ON DESKTOP */

.ufc-mobile-navigation {
    display: none;
}

/* ACCESSIBILITY */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================================================
   MOBILE HEADER
================================================== */

@media (max-width: 900px) {

    .ufc-header-inner {
        min-height: 76px;
        justify-content: space-between;
        gap: 15px;
    }

    .main-navigation,
    .ufc-header-contact {
        display: none;
    }

    .ufc-menu-toggle {
        display: inline-flex;
    }

    .ufc-mobile-navigation {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        border-top: 1px solid transparent;
        transition: max-height 0.35s ease;
    }

    .site-header.ufc-menu-open .ufc-mobile-navigation {
        max-height: 600px;
        border-top-color: #e7ebe4;
    }

    .ufc-mobile-menu {
        margin: 0;
        padding: 20px 0 10px;
        list-style: none;
    }

    .ufc-mobile-menu li {
        margin: 0;
        border-bottom: 1px solid #edf0eb;
        list-style: none;
    }

    .ufc-mobile-menu a {
        display: block;
        padding: 14px 0;
        color: #263a28;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
    }

    .ufc-mobile-contact {
        padding: 20px 0 25px;
    }

    .ufc-mobile-contact a {
        display: flex;
        flex-direction: column;
        gap: 2px;
        color: #315c2b;
        text-decoration: none;
    }

    .ufc-mobile-contact span {
        color: #6d8b3d;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .ufc-mobile-contact strong {
        font-size: 20px;
    }

    .site-header.ufc-menu-open .ufc-menu-icon span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.ufc-menu-open .ufc-menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .site-header.ufc-menu-open .ufc-menu-icon span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}

@media (max-width: 600px) {

    .custom-logo {
        max-width: 175px;
        max-height: 58px;
    }

}
/* SINGLE-NAVIGATION FIX */
@media (max-width: 900px) {
    .main-navigation { display: none; width: 100%; position: absolute; left: 0; top: 100%; background: #ffffff; border-top: 1px solid #e7ebe4; padding: 10px 20px 20px; }
    .main-navigation.is-open { display: block; }
    .ufc-primary-menu { display: block; margin: 0; padding: 0; list-style: none; }
    .ufc-primary-menu li { border-bottom: 1px solid #edf0eb; }
    .ufc-primary-menu a { display: block; padding: 14px 0; }
}

/* DESKTOP HEADER: KEEP BRAND, NAVIGATION AND PHONE ON ONE LINE */
@media (min-width: 901px) {
  .ufc-header-inner {
    flex-wrap: nowrap;
    gap: 20px;
  }
  .site-branding {
    white-space: nowrap;
  }
  .main-navigation {
    min-width: 0;
  }
  .ufc-primary-menu {
    flex-wrap: nowrap;
    gap: clamp(12px, 2vw, 30px);
    white-space: nowrap;
  }
  .ufc-primary-menu a {
    white-space: nowrap;
  }
  .ufc-header-contact {
    white-space: nowrap;
  }
  .ufc-header-phone {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
}

/* SINGLE-ROW DESKTOP HEADER OVERRIDE */
@media (min-width: 901px) {
.ufc-container.ufc-header-inner{width:min(1400px,calc(100% - 32px));min-height:78px;display:flex;flex-wrap:nowrap;align-items:center;gap:18px}.site-branding{flex:0 0 auto}.main-navigation{flex:1 1 auto;min-width:0}.ufc-primary-menu{justify-content:center;flex-wrap:nowrap;gap:clamp(12px,1.8vw,26px);white-space:nowrap}.ufc-primary-menu a{font-size:clamp(13px,1.15vw,15px)}.ufc-header-contact{flex:0 0 auto}.ufc-header-phone{display:inline-flex;flex-direction:row;align-items:center;gap:7px;white-space:nowrap}.ufc-header-contact-label{font-size:10px;letter-spacing:1px}.ufc-header-phone-number{font-size:15px}
}
