/* =========================================
   RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: #f6f2ed;
    color: #4b2e1e;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

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

/* =========================================
   ROOT
========================================= */
:root {
    --bg-main: #f6f2ed;
    --bg-soft: #fbf8f4;
    --bg-white: #ffffff;

    --brown-dark: #3d271b;
    --brown-main: #9b6239;
    --brown-soft: #b78663;
    --brown-hover: #7f4f2f;

    --green-dark: #0f5c4c;
    --green-main: #1d7763;
    --green-soft: #e8f0ec;

    --gold-main: #c4ad83;
    --gold-hover: #b39b70;

    --text-main: #4b2e1e;
    --text-soft: #a37e63;
    --text-muted: #7c736c;

    --border-light: rgba(75, 46, 30, 0.08);
    --shadow-soft: 0 10px 30px rgba(75, 46, 30, 0.08);

    --container: 1240px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
}

/* =========================================
   GLOBAL
========================================= */
.container {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

main {
    min-height: 60vh;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-main);
}

/* =========================================
   BUTTONS
========================================= */
.site-btn {
    min-width: 210px;
    height: 62px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    border: none;
    border-radius: 0;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: center;
}

.site-btn--dark {
    background: #232323;
}

.site-btn--dark:hover {
    background: #111111;
}

.site-btn--gold {
    background: var(--gold-main);
}

.site-btn--gold:hover {
    background: var(--gold-hover);
}

/* =========================================
   HEADER
========================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(246, 242, 237, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.header-inner {
    display: grid;
    grid-template-columns: 145px 1fr 210px;
    align-items: center;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 110px;
    max-width: 100%;
    height: auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.header-nav a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    font-size: 15px;
    font-weight: 400;
    color: var(--brown-soft);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--green-dark);
    transition: width 0.25s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--brown-main);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.branch-btn {
    min-width: 185px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--brown-main);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.branch-btn:hover {
    background: var(--green-dark);
}

.branch-btn i {
    font-size: 14px;
}

/* =========================================
   MOBILE TOGGLE
========================================= */
.mobile-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.mobile-menu-toggle span {
    position: absolute;
    right: 0;
    height: 4px;
    border-radius: 999px;
    background: var(--brown-main);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    width: 34px;
    top: 13px;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 24px;
    top: 23px;
}

.mobile-menu-toggle span:nth-child(3) {
    width: 34px;
    top: 33px;
}

/* =========================================
   MOBILE DRAWER
========================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 1000;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    background: #f8f4ef;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.mobile-drawer::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 22px;
    background: #c69d78;
    opacity: 0.95;
}

.mobile-drawer__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 22px 18px 28px;
    border-bottom: 1px solid rgba(155, 98, 57, 0.10);
}

.mobile-drawer__logo img {
    width: 120px;
    height: auto;
}

.mobile-drawer-close {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #c91c2b;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-nav {
    position: relative;
    z-index: 2;
    padding: 8px 0 24px;
    overflow-y: auto;
}

.mobile-drawer-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-drawer-nav li {
    border-bottom: 1px solid rgba(155, 98, 57, 0.10);
}

.mobile-drawer-nav a {
    display: block;
    padding: 22px 20px;
    font-size: 21px;
    font-weight: 300;
    color: var(--brown-soft);
    transition: all 0.25s ease;
    text-align: center;
}

.mobile-drawer-nav a:hover,
.mobile-drawer-nav a.active {
    color: var(--brown-main);
    background: rgba(155, 98, 57, 0.03);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open .mobile-drawer {
    transform: translateX(0);
}

/* =========================================
   HOME PAGE
========================================= */
.home-page {
    overflow: hidden;
}

/* =========================================
   ABOUT SHOWCASE
========================================= */
.about-showcase {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: calc(100vh - 92px);
    background: var(--bg-main);
}

.about-showcase__left {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 500px;
}

.about-showcase__pattern {
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.035) 0 2px, transparent 2px 100%),
        linear-gradient(180deg, #92603c 0%, #7d4f31 100%);
    background-size: 32px 32px, auto;
}

.about-showcase__image-wrap {
    position: relative;
    overflow: hidden;
}

.about-showcase__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(75, 46, 30, 0.04) 0%,
        rgba(75, 46, 30, 0.14) 100%
    );
}

.about-showcase__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-showcase__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 72px;
    background:
        radial-gradient(circle at top right, rgba(29, 119, 99, 0.04), transparent 24%),
        var(--bg-soft);
    overflow: hidden;
}

.about-showcase__content {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-showcase__content--wide {
    max-width: 760px;
}

.about-showcase__content h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--brown-main);
    margin-bottom: 24px;
    letter-spacing: -0.4px;
}

.about-showcase__content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 22px;
    max-width: 720px;
}

.about-showcase__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-bean {
    position: absolute;
    color: rgba(180, 136, 104, 0.38);
    z-index: 1;
    pointer-events: none;
}

.about-bean--top {
    top: 34px;
    left: 26px;
    font-size: 72px;
    transform: rotate(-14deg);
}

.about-bean--middle {
    right: 42px;
    top: 50%;
    font-size: 110px;
    transform: translateY(-50%) rotate(12deg);
    opacity: 0.18;
}

.about-bean--bottom {
    right: 48px;
    bottom: 34px;
    font-size: 140px;
    transform: rotate(14deg);
    opacity: 0.16;
}

/* =========================================
   FEATURES
========================================= */
.features {
    padding: 72px 0;
    background: var(--bg-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 10px 12px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1e2733;
}

.feature-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--brown-main);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.65;
    color: #c09c82;
    max-width: 240px;
    margin: 0 auto;
}

/* =========================================
   COFFEE HIGHLIGHT
========================================= */
.coffee-highlight {
    padding: 82px 0;
    background: #ffffff;
}

.coffee-highlight__top {
    text-align: center;
    margin-bottom: 40px;
}

.coffee-highlight__top h2 {
    font-size: 31px;
    color: var(--brown-main);
    margin-top: 8px;
    font-weight: 700;
}

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

.coffee-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.coffee-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.coffee-item i {
    width: 50px;
    height: 50px;
    background: transparent !important;
    border: none !important;
    color: var(--brown-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.coffee-item:hover i {
    color: var(--green-dark);
    transform: scale(1.08);
}

.coffee-item h4 {
    font-size: 18px;
    line-height: 1.2;
    color: var(--brown-main);
    margin-bottom: 5px;
    font-weight: 700;
}

.coffee-item p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
}

.coffee-center {
    text-align: center;
}

.coffee-center img {
    max-width: 100%;
    width: 250px;
    margin: 0 auto;
}

/* =========================================
   COFFEE INFO BAND
========================================= */
.coffee-info-band {
    position: relative;
    background: linear-gradient(180deg, #ebe5d5 0%, #e4dcc9 100%);
    padding: 46px 0;
    overflow: hidden;
    border-top: 1px solid rgba(61, 39, 27, 0.06);
    border-bottom: 1px solid rgba(61, 39, 27, 0.06);
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.03);
}

.coffee-info-band__inner {
    position: relative;
}

.coffee-info-band__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
    padding-right: 180px;
}

.coffee-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    min-height: 200px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(6px);
    transition: all 0.28s ease;
}

.coffee-info-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.coffee-info-card__icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f1f1f;
    font-size: 20px;
    background: linear-gradient(135deg, #ffffff, #e9dfcf);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.coffee-info-card__content h3 {
    font-size: 18px;
    line-height: 1.24;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.coffee-info-card__content p {
    font-size: 15px;
    line-height: 1.75;
    color: #5c5c5c;
    max-width: 220px;
}

.coffee-info-band__art {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.coffee-info-band__art img {
    width: 160px;
    max-width: none;
    opacity: 0.42;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

/* =========================================
   HOME SEO CONTENT
========================================= */
.home-seo-content {
    padding: 70px 0 40px;
    background: #f7f3ee;
}

.home-seo-content__box {
    background: #ffffff;
    border: 1px solid rgba(75, 46, 30, 0.08);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(75, 46, 30, 0.05);
    padding: 34px;
}

.home-seo-content__box h2 {
    font-size: 34px;
    line-height: 1.2;
    color: #9b6239;
    margin-bottom: 18px;
}

.home-seo-content__scroll {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 14px;
}

.home-seo-content__scroll h3 {
    font-size: 28px;
    line-height: 1.25;
    color: #1f2d52;
    margin: 28px 0 14px;
    font-weight: 700;
}

.home-seo-content__scroll h3:first-child {
    margin-top: 0;
}

.home-seo-content__scroll p {
    font-size: 17px;
    line-height: 1.95;
    color: #34405f;
    margin-bottom: 18px;
}

.home-seo-content__scroll::-webkit-scrollbar {
    width: 8px;
}

.home-seo-content__scroll::-webkit-scrollbar-track {
    background: #edf0f6;
    border-radius: 999px;
}

.home-seo-content__scroll::-webkit-scrollbar-thumb {
    background: #c4cbd9;
    border-radius: 999px;
}

/* =========================================
   CTA / WHY SECTION
========================================= */
.franchise-cta {
    padding: 84px 0;
    background: #f7f4ef;
}

.franchise-cta__grid {
    display: grid;
    grid-template-columns: 0.95fr 0.8fr 1fr;
    align-items: center;
    gap: 28px;
}

.franchise-cta__mini {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.franchise-cta__left h2 {
    font-size: 38px;
    line-height: 1.04;
    font-weight: 800;
    color: #202020;
    letter-spacing: -0.3px;
}

.franchise-cta__center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-cta__center img {
    width: 100%;
    max-width: 290px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.08));
}

.franchise-cta__right h3 {
    font-size: 30px;
    line-height: 1.08;
    font-weight: 800;
    color: #202020;
    margin-bottom: 16px;
}

.franchise-cta__right p {
    font-size: 15px;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 14px;
}

.franchise-cta__buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* =========================================
   CAREER PAGE
========================================= */
.career-page {
    background: var(--bg-soft);
}

.form-alert {
    margin: 22px 0 0;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    border: 1px solid transparent;
}

.form-alert--success {
    background: #e7f4ee;
    color: var(--green-dark);
    border-color: rgba(15, 92, 76, 0.14);
}

.form-alert--error {
    background: #fbe9e9;
    color: #9f2f2f;
    border-color: rgba(159, 47, 47, 0.14);
}

.career-hero {
    padding: 84px 0 44px;
    text-align: center;
}

.career-hero__content {
    max-width: 760px;
    margin: 0 auto;
}

.career-hero h1 {
    font-size: 46px;
    line-height: 1.1;
    color: var(--brown-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.career-hero p {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.85;
}

.career-benefits {
    padding: 18px 0 64px;
}

.career-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.career-card {
    background: #ffffff;
    border: 1px solid rgba(75, 46, 30, 0.06);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(75, 46, 30, 0.04);
}

.career-card i {
    font-size: 26px;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.career-card h3 {
    font-size: 19px;
    color: var(--brown-main);
    margin-bottom: 10px;
}

.career-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.career-positions {
    padding: 0 0 64px;
}

.section-heading {
    text-align: center;
    margin-bottom: 24px;
}

.section-heading h2 {
    font-size: 32px;
    color: var(--brown-main);
    line-height: 1.2;
}

.career-positions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.position-box {
    background: #fff;
    border: 1px solid rgba(15, 92, 76, 0.08);
    color: var(--brown-main);
    padding: 17px 18px;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.career-form-section {
    padding: 0 0 84px;
}

.career-form-wrap {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 12px 30px rgba(75, 46, 30, 0.06);
    border: 1px solid rgba(75, 46, 30, 0.06);
}

.career-form-head {
    max-width: 760px;
    margin-bottom: 26px;
}

.career-form-head h2 {
    font-size: 34px;
    color: var(--brown-main);
    margin-bottom: 10px;
    line-height: 1.2;
}

.career-form-head p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--brown-main);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(75, 46, 30, 0.12);
    border-radius: 12px;
    padding: 14px 15px;
    font-size: 15px;
    background: #fff;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(15, 92, 76, 0.08);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

.checkbox-group input {
    margin-top: 4px;
    flex-shrink: 0;
}

.career-form__actions {
    margin-top: 22px;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background: var(--green-dark);
    color: #f4efe8;
    overflow: hidden;
    margin-top: 0;
}

.footer-wave {
    width: 100%;
    line-height: 0;
    background: var(--bg-main);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

.footer-wave path {
    fill: var(--green-dark);
}

.footer-main {
    padding: 72px 0 44px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 25%),
        linear-gradient(180deg, var(--green-dark) 0%, #0d5043 100%);
}

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

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 170px;
    max-width: 100%;
    height: auto;
}

.footer-brand-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(244, 239, 232, 0.78);
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--gold-main);
    color: var(--green-dark);
    border-color: var(--gold-main);
    transform: translateY(-2px);
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-divider {
    display: block;
    width: 138px;
    height: 3px;
    margin-bottom: 22px;
    background: linear-gradient(
        to right,
        var(--gold-main) 0%,
        var(--gold-main) 48%,
        rgba(255,255,255,0.12) 48%,
        rgba(255,255,255,0.12) 100%
    );
    border-radius: 999px;
}

.footer-contact-list,
.footer-links,
.footer-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list li i {
    width: 18px;
    margin-top: 4px;
    color: #ffffff;
    font-size: 15px;
    flex-shrink: 0;
}

.footer-contact-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.footer-contact-list a,
.footer-contact-list span,
.footer-links a,
.footer-info-list li {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(244, 239, 232, 0.8);
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--gold-main);
}

.footer-info-list li {
    position: relative;
    padding-left: 16px;
}

.footer-info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-main);
}

.footer-hours {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
}

.footer-hours strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-hours span {
    font-size: 14px;
    color: rgba(244, 239, 232, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #0b473c;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(244, 239, 232, 0.78);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(244, 239, 232, 0.78);
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-main);
}

/* =========================================
   CONTACT PAGE
========================================= */
.contact-page {
    background: var(--bg-soft);
}

.contact-hero {
    padding: 84px 0 42px;
    text-align: center;
}

.contact-hero__content {
    max-width: 860px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    color: var(--brown-main);
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-soft);
}

.contact-info-section {
    padding: 0 0 56px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(75, 46, 30, 0.06);
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(75, 46, 30, 0.04);
}

.contact-info-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--brown-main);
    margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-soft);
}

.contact-content-section {
    padding: 0 0 84px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
}

.contact-form-wrap,
.contact-box {
    background: #ffffff;
    border: 1px solid rgba(75, 46, 30, 0.06);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(75, 46, 30, 0.05);
}

.contact-section-head {
    margin-bottom: 24px;
}

.contact-section-head h2,
.contact-box h2 {
    font-size: 34px;
    line-height: 1.2;
    color: var(--brown-main);
    margin-bottom: 10px;
}

.contact-section-head p,
.contact-box p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 14px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form__actions {
    margin-top: 20px;
}

.contact-side-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(75, 46, 30, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-main);
    font-size: 17px;
    transition: all 0.25s ease;
}

.contact-socials a:hover {
    background: var(--green-dark);
    color: #ffffff;
    border-color: var(--green-dark);
    transform: translateY(-2px);
}

/* =========================================
   BRANCH PAGE
========================================= */
.branch-page {
    background: var(--bg-soft);
}

.branch-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.branch-hero h1 {
    font-size: 46px;
    color: var(--brown-main);
    margin-bottom: 16px;
}

.branch-hero p {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 700px;
    margin: 0 auto;
}

.branch-section {
    padding: 0 0 80px;
}

.branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.branch-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.branch-content h2 {
    font-size: 34px;
    color: var(--brown-main);
    margin-bottom: 16px;
}

.branch-content p {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.8;
}

.branch-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.branch-info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.branch-info-item i {
    width: 44px;
    height: 44px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.branch-info-item strong {
    display: block;
    font-size: 14px;
    color: var(--brown-main);
}

.branch-info-item span {
    font-size: 14px;
    color: var(--text-soft);
}

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

/* =========================================
   CAMPAIGNS PAGE
========================================= */
.campaigns-page,
.campaign-detail-page {
    background: var(--bg-soft);
}

.campaigns-hero {
    padding: 80px 0 34px;
}

.campaigns-hero__content h1 {
    font-size: 46px;
    color: var(--brown-main);
    margin-bottom: 14px;
}

.campaigns-hero__content p {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 760px;
    line-height: 1.8;
}

.campaigns-list-section {
    padding: 0 0 80px;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.campaign-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(75, 46, 30, 0.06);
    box-shadow: 0 10px 26px rgba(75, 46, 30, 0.05);
}

.campaign-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.campaign-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-card__content {
    padding: 24px;
}

.campaign-card__content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: var(--brown-dark);
}

.campaign-card__content p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

.campaign-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #2b2b2b;
    border-radius: 999px;
    color: #2b2b2b;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.campaign-card__button:hover {
    background: #2b2b2b;
    color: #fff;
}

.campaign-empty {
    grid-column: 1 / -1;
    padding: 30px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    color: var(--text-soft);
}

.campaign-detail-section {
    padding: 60px 0 80px;
}

.campaign-detail-container {
    max-width: 860px;
}

.campaign-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.campaign-breadcrumb a {
    color: var(--text-muted);
}

.campaign-detail-section h1 {
    font-size: 46px;
    line-height: 1.15;
    color: var(--brown-dark);
    margin-bottom: 24px;
}

.campaign-detail-image {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 28px;
}

.campaign-detail-image img {
    width: 100%;
    display: block;
}

.campaign-detail-content {
    font-size: 18px;
    line-height: 1.95;
    color: #313131;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .container {
        width: min(var(--container), calc(100% - 50px));
    }

    .header-inner {
        grid-template-columns: 130px 1fr 190px;
        gap: 18px;
    }

    .header-logo img {
        width: 100px;
    }

    .header-nav ul {
        gap: 24px;
    }

    .header-nav a {
        font-size: 14px;
    }

    .branch-btn {
        min-width: 170px;
        font-size: 14px;
        padding: 13px 16px;
    }

    .about-showcase__content h1 {
        font-size: 46px;
    }

    .coffee-highlight__grid {
        grid-template-columns: 1fr 220px 1fr;
    }

    .franchise-cta__left h2 {
        font-size: 32px;
    }

    .franchise-cta__right h3 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .coffee-info-band__items {
        grid-template-columns: repeat(2, 1fr);
        padding-right: 0;
    }

    .coffee-info-card {
        min-height: auto;
    }

    .coffee-info-band__art {
        display: none;
    }

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

    .contact-content-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1024px) {
    .site-header {
        padding: 16px 0;
    }

    .header-inner {
        grid-template-columns: 110px 1fr;
        gap: 12px;
    }

    .header-logo img {
        width: 120px;
    }

    .header-nav,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        justify-self: end;
    }

    .about-showcase {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-showcase__left {
        grid-template-columns: 34px 1fr;
        min-height: 320px;
    }

    .about-showcase__right {
        padding: 42px 30px 46px;
    }

    .about-showcase__content--wide {
        max-width: 100%;
    }

    .about-showcase__content h1 {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .about-showcase__content p {
        font-size: 15.5px;
        line-height: 1.82;
        margin-bottom: 16px;
    }

    .about-bean--top {
        top: 18px;
        left: 16px;
        font-size: 54px;
    }

    .about-bean--middle {
        right: 18px;
        font-size: 82px;
    }

    .about-bean--bottom {
        right: 16px;
        bottom: 20px;
        font-size: 96px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .coffee-highlight__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .coffee-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .coffee-item {
        width: calc(50% - 8px);
        text-align: left;
    }

    .coffee-center {
        order: -1;
    }

    .coffee-center img {
        width: 220px;
    }

    .franchise-cta__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .franchise-cta__left,
    .franchise-cta__right {
        text-align: center;
    }

    .franchise-cta__buttons {
        justify-content: center;
    }

    .career-hero {
        padding: 70px 0 38px;
    }

    .career-hero h1 {
        font-size: 38px;
    }

    .career-hero p {
        font-size: 16px;
    }

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

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

    .career-form-wrap {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        grid-template-columns: 96px 1fr;
    }

    .header-logo img {
        width: 110px;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
    }

    .mobile-menu-toggle span:nth-child(1) {
        width: 30px;
        top: 12px;
    }

    .mobile-menu-toggle span:nth-child(2) {
        width: 20px;
        top: 21px;
    }

    .mobile-menu-toggle span:nth-child(3) {
        width: 30px;
        top: 30px;
    }

    .mobile-drawer {
        width: min(86vw, 340px);
    }

    .mobile-drawer__top {
        padding: 20px 18px 16px 30px;
    }

    .mobile-drawer__logo img {
        width: 105px;
    }

    .mobile-drawer-nav a {
        padding: 18px 16px;
        font-size: 18px;
        text-align: center;
    }

    .site-btn {
        width: 100%;
        min-width: 100%;
        height: 56px;
        font-size: 17px;
        padding: 0 14px;
    }

    .about-showcase__left {
        grid-template-columns: 22px 1fr;
        min-height: 250px;
    }

    .about-showcase__right {
        padding: 28px 18px 34px;
    }

    .section-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .about-showcase__content h1 {
        font-size: 32px;
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .about-showcase__content p {
        font-size: 14px;
        line-height: 1.78;
        margin-bottom: 14px;
    }

    .about-showcase__actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
    }

    .about-bean--top {
        font-size: 40px;
        left: 10px;
        top: 14px;
    }

    .about-bean--middle {
        display: none;
    }

    .about-bean--bottom {
        font-size: 60px;
        right: 10px;
        bottom: 16px;
        opacity: 0.14;
    }

    .features {
        padding: 56px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 26px;
        margin-bottom: 12px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13.5px;
    }

    .coffee-highlight {
        padding: 60px 0;
    }

    .coffee-highlight__top {
        margin-bottom: 28px;
    }

    .coffee-highlight__top h2 {
        font-size: 26px;
    }

    .coffee-col {
        flex-direction: column;
        gap: 14px;
    }

    .coffee-item {
        width: 100%;
    }

    .coffee-item i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .coffee-item h4 {
        font-size: 16px;
    }

    .coffee-item p {
        font-size: 13.5px;
    }

    .coffee-center img {
        width: 190px;
    }

    .coffee-info-band {
        padding: 28px 0;
    }

    .coffee-info-band__items {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .coffee-info-card {
        padding: 18px 14px;
        min-height: auto;
        border-radius: 16px;
    }

    .coffee-info-card__icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }

    .coffee-info-card__content h3 {
        font-size: 17px;
    }

    .coffee-info-card__content p {
        font-size: 14px;
        max-width: 100%;
    }

    .home-seo-content {
        padding: 46px 0 24px;
    }

    .home-seo-content__box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .home-seo-content__box h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .home-seo-content__scroll {
        max-height: 420px;
        padding-right: 8px;
    }

    .home-seo-content__scroll h3 {
        font-size: 20px;
        margin: 22px 0 10px;
    }

    .home-seo-content__scroll p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .franchise-cta {
        padding: 60px 0;
    }

    .franchise-cta__left h2 {
        font-size: 28px;
    }

    .franchise-cta__right h3 {
        font-size: 24px;
    }

    .franchise-cta__right p {
        font-size: 14px;
        line-height: 1.75;
    }

    .franchise-cta__center img {
        max-width: 220px;
    }

    .franchise-cta__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .career-hero {
        padding: 54px 0 30px;
    }

    .career-hero h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .career-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .career-benefits {
        padding: 10px 0 44px;
    }

    .career-benefits__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .career-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .career-card i {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .career-card h3 {
        font-size: 18px;
    }

    .career-card p {
        font-size: 14px;
    }

    .career-positions {
        padding: 0 0 44px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .career-positions__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .position-box {
        padding: 15px 14px;
        font-size: 15px;
    }

    .career-form-section {
        padding: 0 0 58px;
    }

    .career-form-wrap {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .career-form-head {
        margin-bottom: 18px;
    }

    .career-form-head h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .career-form-head p {
        font-size: 14px;
        line-height: 1.7;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-group--full {
        grid-column: auto;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .checkbox-group {
        font-size: 13px;
        gap: 8px;
        margin-top: 16px;
    }

    .career-form__actions {
        margin-top: 18px;
    }

    .form-alert {
        margin-top: 18px;
        padding: 14px 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .contact-hero {
        padding: 56px 0 28px;
    }

    .contact-hero h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .contact-hero p {
        font-size: 15px;
        line-height: 1.78;
    }

    .contact-info-section {
        padding-bottom: 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-info-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .contact-info-card__icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 14px;
    }

    .contact-info-card h3 {
        font-size: 18px;
    }

    .contact-content-section {
        padding-bottom: 56px;
    }

    .contact-form-wrap,
    .contact-box {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .contact-section-head {
        margin-bottom: 18px;
    }

    .contact-section-head h2,
    .contact-box h2 {
        font-size: 26px;
    }

    .contact-section-head p,
    .contact-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form__actions .site-btn {
        width: 100%;
        min-width: 100%;
    }

    .contact-socials a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

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

    .branch-hero h1 {
        font-size: 32px;
    }

    .branch-content h2 {
        font-size: 26px;
    }

    .branch-buttons {
        flex-direction: column;
    }

    .campaigns-hero {
        padding: 56px 0 24px;
    }

    .campaigns-hero__content h1,
    .campaign-detail-section h1 {
        font-size: 32px;
    }

    .campaigns-hero__content p,
    .campaign-card__content p,
    .campaign-detail-content {
        font-size: 15px;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .campaign-card {
        border-radius: 16px;
    }

    .campaign-card__content {
        padding: 18px;
    }

    .campaign-card__content h2 {
        font-size: 20px;
    }

    .campaign-detail-section {
        padding: 40px 0 56px;
    }

    .campaign-detail-image {
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .campaign-card__button {
        min-width: 160px;
        height: 44px;
        font-size: 14px;
    }

    .footer-wave svg {
        height: 70px;
    }

    .footer-main {
        padding: 54px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-brand,
    .footer-column {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.06);
        border-radius: 18px;
        padding: 22px 18px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        width: 138px;
        margin: 0 auto;
    }

    .footer-brand-text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-column h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-divider {
        width: 120px;
        margin-bottom: 18px;
    }

    .footer-contact-list,
    .footer-links,
    .footer-info-list {
        gap: 12px;
    }

    .footer-contact-list a,
    .footer-contact-list span,
    .footer-links a,
    .footer-info-list li,
    .footer-hours span {
        font-size: 14px;
    }

    .footer-hours {
        margin-top: 18px;
        padding: 16px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        grid-template-columns: 88px 1fr;
        gap: 10px;
    }

    .header-logo img {
        width: 100px;
    }

    .mobile-drawer {
        width: 84vw;
    }

    .mobile-drawer__top {
        padding: 18px 14px 14px 24px;
    }

    .mobile-drawer__logo img {
        width: 95px;
    }

    .mobile-drawer-close {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .mobile-drawer-nav a {
        padding: 16px 12px;
        font-size: 17px;
        text-align: center;
    }

    .site-btn {
        height: 52px;
        font-size: 16px;
    }

    .franchise-cta__left h2 {
        font-size: 24px;
    }

    .franchise-cta__right h3 {
        font-size: 21px;
    }

    .career-hero h1 {
        font-size: 26px;
    }

    .career-hero p {
        font-size: 14px;
    }

    .section-heading h2,
    .career-form-head h2 {
        font-size: 23px;
    }

    .career-card h3 {
        font-size: 17px;
    }

    .position-box {
        font-size: 14px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-section-head h2,
    .contact-box h2 {
        font-size: 23px;
    }

    .footer-wave svg {
        height: 54px;
    }

    .footer-main {
        padding: 42px 0 24px;
    }

    .footer-brand,
    .footer-column {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-divider {
        width: 105px;
        height: 2px;
    }

    .footer-brand-text,
    .footer-contact-list a,
    .footer-contact-list span,
    .footer-links a,
    .footer-info-list li,
    .footer-hours span,
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 13px;
    }

    .footer-contact-list strong,
    .footer-hours strong {
        font-size: 13px;
    }
}

/* =========================================
   MOBILE LOGO FIX
========================================= */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: 140px 1fr !important;
    }

    .header-logo img {
        width: 120px !important;
        max-width: none !important;
        height: auto !important;
    }

    .mobile-drawer__logo img {
        width: 120px !important;
        max-width: none !important;
        height: auto !important;
    }

    .mobile-drawer-nav a {
        text-align: center !important;
        padding: 18px 16px !important;
    }
}

@media (max-width: 768px) {
    .header-inner {
        grid-template-columns: 125px 1fr !important;
    }

    .header-logo img {
        width: 110px !important;
    }

    .mobile-drawer__logo img {
        width: 110px !important;
    }

    .mobile-drawer-nav a {
        text-align: center !important;
        padding: 18px 16px !important;
    }
}

@media (max-width: 480px) {
    .header-inner {
        grid-template-columns: 115px 1fr !important;
    }

    .header-logo img {
        width: 100px !important;
    }

    .mobile-drawer__logo img {
        width: 100px !important;
    }

    .mobile-drawer-nav a {
        text-align: center !important;
        padding: 16px 12px !important;
    }
}

/* ===== MOBILE HEADER LOGO FORCE FIX ===== */
@media screen and (max-width: 1024px) {
    .site-header .header-inner {
        grid-template-columns: 150px 1fr !important;
        gap: 10px !important;
    }

    .site-header .header-logo {
        width: 150px !important;
        min-width: 150px !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-header .header-logo img {
        width: 125px !important;
        min-width: 125px !important;
        max-width: 125px !important;
        height: auto !important;
        display: block !important;
    }

    .mobile-drawer .mobile-drawer__logo {
        width: 140px !important;
        min-width: 140px !important;
        display: flex !important;
        align-items: center !important;
    }

    .mobile-drawer .mobile-drawer__logo img {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        height: auto !important;
        display: block !important;
    }

    .mobile-drawer .mobile-drawer-nav a {
        text-align: center !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media screen and (max-width: 768px) {
    .site-header .header-inner {
        grid-template-columns: 140px 1fr !important;
    }

    .site-header .header-logo {
        width: 140px !important;
        min-width: 140px !important;
    }

    .site-header .header-logo img {
        width: 115px !important;
        min-width: 115px !important;
        max-width: 115px !important;
    }

    .mobile-drawer .mobile-drawer__logo {
        width: 130px !important;
        min-width: 130px !important;
    }

    .mobile-drawer .mobile-drawer__logo img {
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
    }

    .mobile-drawer .mobile-drawer-nav a {
        font-size: 18px !important;
        text-align: center !important;
    }
}

@media screen and (max-width: 480px) {
    .site-header .header-inner {
        grid-template-columns: 130px 1fr !important;
    }

    .site-header .header-logo {
        width: 130px !important;
        min-width: 130px !important;
    }

    .site-header .header-logo img {
        width: 105px !important;
        min-width: 105px !important;
        max-width: 105px !important;
    }

    .mobile-drawer .mobile-drawer__logo {
        width: 120px !important;
        min-width: 120px !important;
    }

    .mobile-drawer .mobile-drawer__logo img {
        width: 100px !important;
        min-width: 100px !important;
        max-width: 100px !important;
    }

    .mobile-drawer .mobile-drawer-nav a {
        font-size: 17px !important;
        text-align: center !important;
    }
}