:root {
    --gold: #AE9055;
    --gold-hover: #8D7446;
    --charcoal: #1E1E1C;
    --cream: #F6F1E8;
    --espresso: #5A4432;
    --beige: #E6DAC6;
    --warm-gray: #B8B0A4;
    --muted: #7B746B;
    --white: #FFFFFF;
    --line: rgba(174, 144, 85, .28);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Google Sans", Arial, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 74px;
    padding: 5px clamp(18px, 5vw, 78px);
    background: rgba(246, 241, 232, .96);
    color: var(--charcoal);
    border-bottom: 1px solid rgba(174, 144, 85, .24);
    box-shadow: 0 8px 26px rgba(90, 68, 50, .08);
    backdrop-filter: blur(12px);
}

.brand img {
    height: 60px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.3vw, 34px);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

    .site-nav a {
        position: relative;
        padding: 5px 0;
        color: var(--charcoal);
    }

        .site-nav a:hover,
        .site-nav a.active {
            color: var(--gold);
        }

            .site-nav a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 2px;
                height: 2px;
                background: var(--gold);
            }

.admin-link {
    display: none;
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
}

.language-current {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--espresso);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
}

    .language-current img,
    .language-menu img {
        width: 22px;
        height: 22px;
        object-fit: cover;
        border-radius: 50%;
    }

    .language-current i {
        color: var(--gold);
        font-size: 11px;
    }

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    display: none;
    min-width: 156px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(90,68,50,.14);
}

.language-switcher.open .language-menu {
    display: grid;
    gap: 2px;
}

.language-menu button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 36px;
    padding: 0 8px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--espresso);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

    .language-menu button:hover,
    .language-menu button.active {
        background: rgba(174,144,85,.12);
    }

.google-translate-host,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget,
.skiptranslate iframe,
iframe.goog-te-banner-frame,
iframe.skiptranslate,
body > .skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    min-height: 0 !important;
}

html,
body,
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--white);
}

    .nav-toggle span {
        display: block;
        height: 2px;
        margin: 7px;
        background: var(--charcoal);
    }

.home-hero {
    --hero-shift: 0px;
    min-height: 462px;
    display: grid;
    align-items: center;
    padding: clamp(32px, 6vw, 70px) clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(246, 241, 232, .98) 0%, rgba(246, 241, 232, .88) 33%, rgba(246, 241, 232, .24) 55%, rgba(246, 241, 232, 0) 100%), url("../images/branches/CN 42.jpg") center right / cover no-repeat;
    border-bottom: 1px solid var(--line);
    background-position: center calc(50% + var(--hero-shift));
}

.home-hero-content {
    max-width: 560px;
    animation: heroIntro .9s ease both;
}

.hero-logo {
    width: min(330px, 72vw);
    margin-bottom: 28px;
    animation: softFloat 5.5s ease-in-out infinite;
}

.home-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.12;
    font-weight: 900;
    color: #2b221b;
}

.home-hero p {
    max-width: 520px;
    color: var(--espresso);
    font-size: 17px;
    line-height: 1.72;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn-main,
.btn-secondary,
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

    .btn-main:hover,
    .btn-secondary:hover,
    .btn-dark:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 22px rgba(90,68,50,.14);
    }

.btn-main {
    background: #d86f22;
    color: var(--white);
    border-color: #d86f22;
}

    .btn-main:hover {
        background: #bd5d18;
        color: var(--white);
    }

.btn-secondary {
    background: rgba(255,255,255,.78);
    color: var(--gold-hover);
    border-color: var(--gold);
}

    .btn-secondary:hover {
        background: var(--white);
        color: var(--espresso);
    }

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: stretch;
    min-height: 320px;
    border-bottom: 1px solid var(--line);
}

.about-photo {
    min-height: 320px;
}

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

.about-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
    background: linear-gradient(90deg, rgba(246,241,232,.92), rgba(246,241,232,.98)), url("../images/hero/leaf.png") right 28px center / 230px auto no-repeat;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.about-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    color: var(--espresso);
}

.about-copy p {
    max-width: 640px;
    color: var(--espresso);
    font-size: 17px;
    line-height: 1.72;
}

.home-section {
    padding: clamp(30px, 4vw, 52px) clamp(18px, 5vw, 78px);
}

    .home-section.compact {
        padding-top: 28px;
        padding-bottom: 28px;
    }

.orn-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
    text-align: center;
}

    .orn-title span {
        width: 48px;
        height: 1px;
        background: var(--gold);
    }

    .orn-title h2 {
        margin: 0;
        color: var(--espresso);
        font-size: clamp(23px, 3vw, 32px);
        font-weight: 900;
        text-transform: uppercase;
    }

.home-category-grid,
.home-product-grid,
.home-branch-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.home-branch-grid {
    width: min(100%, 908px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1380px;
    margin: 0 auto;
}

.home-featured-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-category-card,
.home-product-card,
.home-branch-card,
.gallery-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(90,68,50,.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-category-card {
    aspect-ratio: 1 / 1.32;
    display: block;
    background: var(--cream);
}

    .home-category-card:hover,
    .home-product-card:hover,
    .home-branch-card:hover,
    .gallery-card:hover {
        transform: translateY(-5px);
        border-color: rgba(174,144,85,.48);
        box-shadow: 0 18px 34px rgba(90,68,50,.14);
    }

.home-card-image {
    /* aspect-ratio: 1.28 / 1; */
    /* background: var(--beige); */
    overflow: hidden;
}

.home-category-card .home-card-image {
    position: absolute;
    inset: 0;
}

    .home-card-image img,
    .gallery-card img,
    .branch-thumb img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform .55s ease, filter .55s ease;
    }

    .home-category-card .home-card-image img {
        height: 100%;
    }

.home-category-card:hover .home-card-image img,
.home-product-card:hover .home-card-image img,
.home-branch-card:hover .branch-thumb img,
.gallery-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.06) contrast(1.03);
}

.home-category-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 14px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(34, 26, 20, 0) 0%, rgba(34, 26, 20, .68) 34%, rgba(34, 26, 20, .86) 100%);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    z-index: 2;
}

.home-product-body {
    padding: 14px 14px 16px;
    background: rgba(255, 250, 240, .92);
}

    .home-product-body h3 {
        min-height: 48px;
        margin: 0 0 10px;
        color: #2b221b;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 800;
    }

    .home-product-body strong {
        color: #d86f22;
        font-size: 17px;
        font-weight: 900;
    }

.gallery-card {
    aspect-ratio: 1.42 / 1;
    background: var(--cream);
}

    .gallery-card img {
        height: 100%;
        display: block;
    }

.home-branch-card {
    min-height: 274px;
    padding-bottom: 16px;
    background: rgba(255, 250, 240, .9);
}

.branch-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--gold-hover);
    border: 1px solid var(--line);
    font-weight: 900;
}

.branch-thumb {
    aspect-ratio: 1.8 / 1;
    background: var(--beige);
}

.branch-copy {
    padding: 13px 16px 0;
}

    .branch-copy h3 {
        min-height: 41px;
        margin: 0 0 6px;
        color: var(--espresso);
        font-size: 17px;
        line-height: 1.22;
        font-weight: 900;
    }

    .branch-copy p {
        margin: 0 0 10px;
        color: var(--espresso);
        min-height: 44px;
        line-height: 1.38;
    }

    .branch-copy a {
        display: inline-flex;
        align-items: center;
        gap: 2px;
        color: #d86f22;
        font-weight: 900;
        line-height: 1.3;
    }

    .branch-copy i {
        margin-right: 7px;
    }

.franchise-band {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.6fr);
    gap: 24px;
    margin: 20px clamp(18px, 5vw, 78px) 34px;
    padding: 26px;
    overflow: hidden;
    border: 1px dashed rgba(174,144,85,.5);
    border-radius: 10px;
    background: rgba(255,250,240,.72);
}

.franchise-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("../images/hero/coffee-leaf.png") left -18px bottom -26px / 205px auto no-repeat, url("../images/hero/leaf-coffee.png") right -14px bottom -22px / 188px auto no-repeat;
    filter: contrast(1.35) saturate(1.12);
    opacity: .9;
    z-index: 0;
}

.franchise-copy,
.franchise-points {
    position: relative;
    z-index: 1;
}

.franchise-copy p {
    margin: 0;
    color: var(--espresso);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.franchise-copy h2 {
    margin: 2px 0 8px;
    color: #d86f22;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
}

.franchise-copy span {
    display: block;
    max-width: 440px;
    margin-bottom: 18px;
    color: var(--espresso);
    line-height: 1.55;
}

.franchise-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.feature-item {
    min-height: 160px;
    padding: 14px;
    text-align: center;
    border-left: 1px solid rgba(174,144,85,.22);
    transition: transform .25s ease, background-color .25s ease;
}

    .feature-item:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,.46);
    }

    .feature-item img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        margin: 0 auto 10px;
    }

    .feature-item h3 {
        margin: 0 0 8px;
        color: var(--gold-hover);
        font-size: 15px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .feature-item p {
        margin: 0;
        color: var(--espresso);
        font-size: 13px;
        line-height: 1.45;
    }

.section {
    padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.section-title {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
}

    .section-title h2 {
        font-size: clamp(28px, 4vw, 44px);
        margin: 0 0 18px;
        font-weight: 900;
    }

.grid {
    display: grid;
    gap: 20px;
}

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

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

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(90,68,50,.08);
}

.card-body {
    padding: 18px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.card p {
    color: var(--muted);
    line-height: 1.55;
}

.product-image, .branch-image {
    aspect-ratio: 4 / 3;
    background: var(--beige);
}

    .product-image img, .branch-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.price {
    color: var(--gold);
    font-weight: 900;
    font-size: 18px;
}

.badge-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

    .filter-bar button {
        border: 1px solid rgba(174,144,85,.55);
        background: var(--white);
        color: var(--espresso);
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 800;
    }

        .filter-bar button.active {
            background: var(--gold);
            color: var(--white);
        }

.hidden-card {
    display: none !important;
}

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

.contact-form {
    display: grid;
    gap: 14px;
}

.form-control, .form-select, textarea {
    width: 100%;
    border: 1px solid rgba(90,68,50,.18);
    border-radius: 5px;
    padding: 12px 14px;
    font: inherit;
}

.validation-summary, .form-message {
    color: #9b2c2c;
    font-weight: 700;
}

    .form-message.success {
        color: #276749;
    }

.site-footer {
    display: grid;
    grid-template-columns: 1.5fr .85fr .85fr 1fr;
    gap: 30px;
    padding: 34px clamp(18px, 5vw, 78px);
    background: rgba(255,250,240,.82);
    color: var(--espresso);
    border-top: 1px solid var(--line);
}

    .site-footer a {
        display: block;
        color: var(--espresso);
        margin: 8px 0;
    }

    .site-footer .footer-link-icon-img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        display: inline-block;
        margin-right: 6px;
        vertical-align: -2px;
    }

    .site-footer h3 {
        color: var(--espresso);
        font-size: 16px;
        text-transform: uppercase;
    }

.footer-logo {
    height: 76px;
    width: auto;
    margin-bottom: 12px;
}

.hotline {
    font-size: 25px;
    font-weight: 900;
    color: #d86f22 !important;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 50%;
        /* background: var(--espresso); */
        color: var(--white);
    }

    .footer-social .social-icon-img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.mobile-sticky-cta {
    display: none;
}

.branches-hero {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 56px clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(246,241,232,.18), rgba(246,241,232,.92) 28%, rgba(246,241,232,.92) 72%, rgba(246,241,232,.18)), linear-gradient(180deg, rgba(90,68,50,.1), rgba(90,68,50,.04)), url("../images/branches/CN 42.jpg") left center / 50% 100% no-repeat, url("../images/branches/CN A30.jpg") right center / 50% 100% no-repeat;
    /* border-bottom: 1px solid var(--line); */
    text-align: center;
}

.branches-hero-inner {
    max-width: 680px;
}

    .branches-hero-inner p {
        margin: 0 0 10px;
        color: var(--gold-hover);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .branches-hero-inner h1 {
        margin: 0 0 14px;
        color: #2b221b;
        font-size: clamp(34px, 5vw, 54px);
        font-weight: 900;
        text-transform: uppercase;
    }

    .branches-hero-inner a {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        min-height: 40px;
        padding: 0 20px;
        border: 1px solid var(--gold);
        border-radius: 4px;
        background: rgba(255,250,240,.78);
        color: #d86f22;
        font-weight: 900;
        text-transform: uppercase;
    }

.branch-stats-band {
    width: 100%;
    /* padding: 18px clamp(18px, 5vw, 78px) 14px; */
    background: rgba(246,241,232,.72);
}

.branch-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 80px;
    overflow: hidden;
    /* border: 1px solid rgba(174,144,85,.24); */
    /* border-radius: 8px; */
    background: rgba(255,250,240,.78);
    /* box-shadow: 0 10px 26px rgba(90,68,50,.05); */
    margin-left: 0px;
    margin-right: 0px;
}

    .branch-stats::before,
    .branch-stats::after {
        content: "";
        position: absolute;
        top: 50%;
        z-index: 0;
        width: 126px;
        height: 126px;
        transform: translateY(-50%);
        background: center / contain no-repeat;
        opacity: .95;
        pointer-events: none;
    }

    .branch-stats::before {
        left: -7px;
        background-image: url("../images/hero/coffee-leaf.png");
        top: 70px;
    }

    .branch-stats::after {
        right: 0px;
        background-image: url("../images/hero/leaf-coffee.png");
    }

    .branch-stats article {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 18px;
        min-height: 96px;
        padding: 0 28px;
        border-right: 1px solid rgba(174,144,85,.22);
    }

        .branch-stats article:last-child {
            border-right: 0;
        }

.stat-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    color: #9f7047;
}

    .stat-icon svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.branch-stats article strong {
    display: block;
    color: var(--espresso);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.branch-stats article div span {
    display: block;
    color: var(--espresso);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.38;
    text-transform: uppercase;
}

.branch-finder {
    display: grid;
    grid-template-columns: minmax(360px, 1.03fr) minmax(360px, .97fr);
    gap: 30px;
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 60px clamp(18px, 5vw, 78px) 60px;
}

.branch-map-card,
.branch-list-panel,
.branch-showcase-card,
.featured-branch,
.branch-gallery-section,
.branch-cta-band {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,250,240,.74);
    box-shadow: 0 10px 24px rgba(90,68,50,.06);
}

.branch-map-card {
    overflow: hidden;
    min-height: 382px;
    background: #f3ebdc;
    border: none;
}

.branch-google-map {
    display: block;
    width: 100%;
    height: 382px;
    border: 0;
}

.branch-map-visual {
    position: relative;
    min-height: 382px;
    overflow: hidden;
    background: radial-gradient(circle at 25% 22%, rgba(196,153,89,.12) 0 2px, transparent 3px), radial-gradient(circle at 58% 48%, rgba(196,153,89,.12) 0 2px, transparent 3px), linear-gradient(28deg, transparent 0 30%, rgba(208,191,159,.45) 30% 31%, transparent 31% 100%), linear-gradient(-22deg, transparent 0 47%, rgba(208,191,159,.35) 47% 48%, transparent 48% 100%), linear-gradient(90deg, rgba(174,144,85,.08) 1px, transparent 1px), linear-gradient(180deg, rgba(174,144,85,.08) 1px, transparent 1px), #f3eadb;
    background-size: auto, auto, auto, auto, 82px 82px, 82px 82px, auto;
}

    .branch-map-visual::before,
    .branch-map-visual::after {
        content: "QUẬN 1";
        position: absolute;
        color: rgba(90,68,50,.38);
        font-size: 13px;
        font-weight: 900;
    }

    .branch-map-visual::before {
        left: 42%;
        top: 38%;
    }

    .branch-map-visual::after {
        content: "QUẬN 2";
        right: 16%;
        top: 45%;
    }

.river {
    position: absolute;
    width: 92px;
    height: 540px;
    border-radius: 999px;
    background: rgba(111,178,199,.34);
    transform: rotate(24deg);
}

.river-one {
    right: 24%;
    top: -86px;
}

.river-two {
    right: -4%;
    bottom: -154px;
    transform: rotate(-28deg);
}

.branch-pin {
    position: absolute;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #d86f22;
    filter: drop-shadow(0 10px 14px rgba(90,68,50,.18));
}

    .branch-pin i {
        font-size: 42px;
    }

    .branch-pin span {
        position: absolute;
        top: 10px;
        color: var(--white);
        font-size: 10px;
        font-weight: 900;
    }

.pin-1 {
    left: 15%;
    top: 18%;
}

.pin-2 {
    left: 31%;
    top: 42%;
}

.pin-3 {
    left: 18%;
    top: 62%;
}

.pin-4 {
    left: 54%;
    top: 58%;
}

.pin-5 {
    left: 68%;
    top: 27%;
}

.pin-6 {
    left: 76%;
    top: 70%;
}

.branch-list-panel {
    min-height: 382px;
    padding: 0 0 4px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

    .branch-list-panel .eyebrow {
        margin: 0 0 12px;
        color: #2b221b;
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
    }

.branch-filter-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    margin-bottom: 12px;
    overflow: hidden;
    padding-bottom: 0;
}

    .branch-filter-row button {
        min-height: 34px;
        min-width: 0;
        flex: 1 1 0;
        max-width: 150px;
        padding: 0 12px;
        border: 1px solid var(--line);
        border-radius: 4px;
        background: rgba(255,255,255,.72);
        color: var(--espresso);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .branch-filter-row button.active {
            background: #d86f22;
            border-color: #d86f22;
            color: var(--white);
        }

.branch-list {
    display: grid;
}

    .branch-list .hidden-branch {
        display: none;
    }

    .branch-list a {
        display: grid;
        grid-template-columns: 28px 1fr auto;
        gap: 8px;
        align-items: start;
        min-height: 52px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(174,144,85,.22);
    }

        .branch-list a:last-child {
            border-bottom: 0;
        }

        .branch-list a.active,
        .branch-list a:hover {
            background: rgba(216,111,34,.06);
        }

        .branch-list a > i {
            color: #b98958;
            margin-top: 2px;
            font-size: 18px;
        }

    .branch-list strong {
        display: block;
        color: var(--espresso);
        font-size: 14px;
        line-height: 1.25;
    }

    .branch-list small {
        display: block;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.35;
    }

    .branch-list em {
        color: var(--espresso);
        font-size: 12px;
        font-style: normal;
        font-weight: 800;
    }

.branch-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    padding: 8px clamp(18px, 5vw, 78px) 28px;
}

.home-branch-showcase {
    padding: 0;
}

    .home-branch-showcase .branch-showcase-card {
        background: rgba(255,250,240,.74);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(90,68,50,.08);
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

        .home-branch-showcase .branch-showcase-card:hover {
            transform: translateY(-5px);
            border-color: rgba(174,144,85,.48);
            box-shadow: 0 20px 40px rgba(90,68,50,.14);
        }

.branch-showcase-card {
    overflow: hidden;
    border: none;
}

.branch-card-photo {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

    .branch-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .55s ease;
    }

.branch-showcase-card:hover .branch-card-photo img {
    transform: scale(1.06);
}

.branch-card-photo span {
    position: absolute;
    top: 10px;
    left: 10px;
    min-width: 42px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(255,250,240,.92);
    color: #d86f22;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.branch-card-body {
    padding: 17px 16px 18px;
    text-align: center;
}

    .branch-card-body h3 {
        margin: 0 0 8px;
        color: #2b221b;
        font-size: 20px;
        font-weight: 900;
    }

    .branch-card-body p {
        min-height: 46px;
        margin: 0 0 8px;
        color: var(--espresso);
        line-height: 1.45;
    }

.branch-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d86f22;
    font-weight: 900;
}

.branch-amenities {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 14px 0;
    color: var(--gold-hover);
}

.branch-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

    .branch-actions .btn-main,
    .branch-actions .btn-secondary {
        min-height: 36px;
        padding: 0 10px;
        font-size: 12px;
    }

.featured-branch {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
    gap: 26px;
    margin: 0 clamp(18px, 5vw, 78px) 28px;
    padding: 22px;
    overflow: hidden;
}

.featured-branch-photo {
    min-height: 310px;
    overflow: hidden;
    border-radius: 8px;
}

    .featured-branch-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-branch-copy {
    align-self: center;
}

    .featured-branch-copy span {
        display: inline-flex;
        margin-bottom: 10px;
        padding: 5px 10px;
        border: 1px solid var(--line);
        border-radius: 4px;
        color: var(--espresso);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .featured-branch-copy h2 {
        margin: 0 0 4px;
        color: #2b221b;
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 900;
        text-transform: uppercase;
    }

    .featured-branch-copy h3 {
        margin: 0 0 14px;
        color: var(--espresso);
        font-size: 18px;
        font-weight: 900;
    }

    .featured-branch-copy p {
        color: var(--espresso);
        line-height: 1.7;
    }

.featured-icons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

    .featured-icons article {
        text-align: center;
        color: var(--espresso);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .featured-icons i {
        display: block;
        margin-bottom: 8px;
        color: #d86f22;
        font-size: 25px;
    }

.branch-gallery-section {
    margin: 0 clamp(18px, 5vw, 78px) 28px;
    padding: 20px;
}

.branch-gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

    .branch-gallery-strip figure {
        margin: 0;
    }

    .branch-gallery-strip img {
        width: 100%;
        aspect-ratio: 1.35 / 1;
        object-fit: cover;
        border-radius: 8px;
    }

    .branch-gallery-strip figcaption {
        margin-top: 8px;
        color: var(--espresso);
        font-size: 13px;
        font-weight: 800;
        text-align: center;
    }

.branch-cta-band {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 clamp(18px, 5vw, 78px) 34px;
    padding: 28px;
    overflow: hidden;
    background: rgba(255,250,240,.82);
}

    .branch-cta-band::before,
    .branch-cta-band::after {
        content: "";
        position: absolute;
        z-index: 0;
        width: 170px;
        height: 170px;
        background: center / contain no-repeat;
        opacity: .95;
        pointer-events: none;
    }

    .branch-cta-band::before {
        left: -24px;
        bottom: -38px;
        background-image: url("../images/hero/coffee-leaf.png");
    }

    .branch-cta-band::after {
        right: -22px;
        bottom: -40px;
        background-image: url("../images/hero/leaf-coffee.png");
    }

    .branch-cta-band > * {
        position: relative;
        z-index: 1;
    }

    .branch-cta-band h2 {
        margin: 0 0 6px;
        color: var(--espresso);
        font-size: 28px;
        font-weight: 900;
    }

    .branch-cta-band p {
        margin: 0;
        color: var(--muted);
    }

.contact-hero {
    min-height: 320px;
    display: grid;
    align-items: center;
    padding: 54px clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(246,241,232,.98) 0%, rgba(246,241,232,.88) 35%, rgba(246,241,232,.18) 68%), url("../images/branches/CN A30.jpg") center right / cover no-repeat;
    /* border-bottom: 1px solid var(--line); */
}

.contact-hero-copy {
    max-width: 620px;
}

.contact-hero h1 {
    margin: 0 0 14px;
    color: #2b221b;
    font-size: clamp(38px, 5.2vw, 66px);
    font-weight: 900;
    text-transform: uppercase;
}

.contact-hero p:not(.eyebrow) {
    color: var(--espresso);
    font-size: 18px;
    line-height: 1.65;
}

.contact-info-strip,
.contact-main-grid,
.contact-branches,
.contact-map-section,
.contact-franchise-band,
.contact-support-section {
    /* max-width: 1320px; */
    margin-left: auto;
    margin-right: auto;
}

.contact-info-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -38px;
    padding: 0 clamp(18px, 5vw, 78px);
    position: relative;
    z-index: 2;
}

    .contact-info-strip article {
        display: flex;
        gap: 16px;
        min-height: 110px;
        align-items: center;
        padding: 20px;
        background: rgba(255,250,240,.92);
        border: 1px solid var(--line);
        border-right: 0;
    }

        .contact-info-strip article:first-child {
            border-radius: 8px 0 0 8px;
        }

        .contact-info-strip article:last-child {
            border-right: 1px solid var(--line);
            border-radius: 0 8px 8px 0;
        }

    .contact-info-strip i {
        color: #9f7047;
        font-size: 38px;
    }

    .contact-info-strip span {
        color: var(--espresso);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .contact-info-strip strong {
        display: block;
        color: var(--espresso);
        font-size: 22px;
        font-weight: 900;
    }

    .contact-info-strip small {
        color: var(--muted);
        font-size: 12px;
    }

.contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 7px;
}

    .contact-socials a {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        /* background: var(--espresso); */
        color: var(--white);
    }

    .contact-socials img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, .95fr);
    /* gap: 26px; */
    padding: 34px clamp(18px, 5vw, 78px) 28px;
}

.contact-form-card,
.contact-listen-card,
.contact-branch-card,
.contact-map-section,
.contact-franchise-band,
.contact-support-grid article {
    /* border: 1px solid var(--line); */
    /* border-radius: 8px; */
    background: rgba(255,250,240,.78);
    box-shadow: 0 12px 28px rgba(90,68,50,.07);
}

.contact-form-card {
    padding: 26px;
}

.contact-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

    .contact-card-title i {
        color: var(--gold-hover);
        font-size: 24px;
    }

    .contact-card-title h2 {
        margin: 0;
        color: var(--espresso);
        font-size: 21px;
        font-weight: 900;
        text-transform: uppercase;
    }

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

    .contact-form-grid label {
        color: var(--espresso); /* font-weight: 800; */
    }

    .contact-form-grid .span-2 {
        grid-column: span 2;
    }

.contact-consent {
    font-size: 13px;
}

.field-error {
    display: block;
    margin-top: 4px;
    color: #9b2c2c;
    font-size: 12px;
    font-weight: 800;
}

    .field-error:empty {
        display: none;
    }

.contact-listen-card {
    overflow: hidden;
    text-align: center;
}

    .contact-listen-card > img {
        width: 100%;
        aspect-ratio: 1.85 / 1;
        object-fit: cover;
    }

    .contact-listen-card > div {
        position: relative;
        overflow: hidden;
        padding: 24px;
        background: rgba(255,250,240,.82);
    }

        .contact-listen-card > div::after {
            content: "";
            position: absolute;
            right: -28px;
            bottom: -42px;
            z-index: 0;
            width: 190px;
            height: 190px;
            background: url("../images/hero/leaf-coffee.png") center / contain no-repeat;
            opacity: .95;
            pointer-events: none;
        }

        .contact-listen-card > div > * {
            position: relative;
            z-index: 1;
        }

    .contact-listen-card h2 {
        margin: 0 0 8px;
        color: var(--espresso);
        font-size: 25px;
        font-weight: 900;
    }

    .contact-listen-card p {
        color: var(--muted);
    }

.contact-hotline-box {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    min-width: 0;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: left;
    background: rgba(255,255,255,.72);
}

.contact-action-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: stretch;
    gap: 12px;
    max-width: 560px;
    margin: 12px auto 16px;
}

.contact-book-btn {
    min-width: 190px;
    align-self: stretch;
}

.contact-hotline-box i {
    grid-row: span 3;
    color: #d86f22;
    font-size: 34px;
}

.contact-hotline-box span {
    color: var(--espresso);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-hotline-box strong {
    color: #d86f22;
    font-size: 24px;
    font-weight: 900;
}

.contact-hotline-box small {
    color: var(--muted);
}

.contact-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
    color: var(--espresso);
    font-size: 13px;
    font-weight: 900;
}

    .contact-trust-row i {
        display: block;
        margin-bottom: 8px;
        color: var(--gold-hover);
        font-size: 24px;
    }

.contact-branches {
    padding: 0 clamp(18px, 5vw, 78px) 30px;
}

.contact-branch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

    .contact-branch-grid.branch-card-grid {
        padding: 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

.contact-branch-card {
    overflow: hidden;
}

.contact-branch-photo {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

    .contact-branch-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contact-branch-photo span {
        position: absolute;
        top: 10px;
        left: 10px;
        padding: 8px 9px;
        border-radius: 999px;
        background: rgba(255,250,240,.94);
        color: #d86f22;
        font-weight: 900;
    }

.contact-branch-card > div:last-child {
    padding: 14px 16px 16px;
}

.contact-branch-card p {
    min-height: 44px;
    margin: 0 0 8px;
    color: var(--espresso);
    line-height: 1.45;
}

.contact-branch-card a {
    color: #d86f22;
    font-weight: 900;
}

.contact-map-section {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: 24px; /* margin-bottom: 28px; */
    padding: 24px clamp(18px, 5vw, 78px);
}

.contact-map-copy h2 {
    color: var(--espresso);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-map-copy p, .contact-map-copy li {
    color: var(--espresso);
    line-height: 1.55;
}

.contact-map-copy ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.contact-map-frame {
    width: 100%;
    min-height: 315px;
    border: 0;
    border-radius: 8px;
}

.contact-franchise-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
    padding: 28px clamp(18px, 5vw, 78px);
    color: var(--white);
    background: linear-gradient(90deg, rgba(30,30,28,.92), rgba(30,30,28,.62)), url("../images/branches/CN A30.jpg") center / cover no-repeat;
}

    .contact-franchise-band h2 {
        margin: 0 0 8px;
        font-size: 32px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .contact-franchise-band p {
        margin: 0;
        max-width: 620px;
    }

.contact-support-section {
    padding: 0 clamp(18px, 5vw, 78px) 34px;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

    .contact-support-grid article {
        min-height: 235px;
        display: grid;
        grid-template-rows: auto auto 1fr auto;
        align-content: start;
        padding: 26px;
    }

    .contact-support-grid i {
        width: 52px;
        height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        border-radius: 999px;
        background: rgba(216,111,34,.1);
        color: #d86f22;
        font-size: 28px;
    }

    .contact-support-grid h3 {
        min-height: 26px;
        margin: 0 0 10px;
        color: var(--espresso);
        font-size: 18px;
        line-height: 1.25;
        font-weight: 900;
        text-transform: uppercase;
    }

    .contact-support-grid p {
        margin: 0 0 22px;
        color: var(--muted);
        line-height: 1.55;
    }

    .contact-support-grid a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        align-self: end;
        color: #d86f22;
        font-weight: 900;
        text-transform: uppercase;
    }

        .contact-support-grid a i {
            width: auto;
            height: auto;
            margin: 0;
            background: transparent;
            font-size: 22px;
        }

.franchise-hero {
    min-height: 430px;
    display: grid;
    align-items: center;
    padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(30, 30, 28, .84), rgba(30, 30, 28, .52) 42%, rgba(30, 30, 28, .08)), url("../images/branches/CN A30.jpg") center / cover no-repeat;
    color: var(--white);
    border-bottom: 1px solid var(--line);
}

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

.franchise-hero .eyebrow,
.franchise-process-copy .eyebrow {
    color: #d8b06a;
    font-weight: 900;
    text-transform: uppercase;
}

.franchise-hero h1 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.franchise-hero p:not(.eyebrow) {
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
}

.franchise-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* max-width: 1320px; */
    margin: -40px auto 54px;
    padding: 0 clamp(18px, 5vw, 78px);
}

    .franchise-stats article {
        display: flex;
        gap: 18px;
        align-items: center;
        min-height: 118px;
        padding: 22px 24px;
        border: 1px solid var(--line);
        border-right: 0;
        background: rgba(255, 250, 240, .96);
        box-shadow: 0 14px 34px rgba(90, 68, 50, .08);
    }

        .franchise-stats article:first-child {
            border-radius: 8px 0 0 8px;
        }

        .franchise-stats article:last-child {
            border-right: 1px solid var(--line);
            border-radius: 0 8px 8px 0;
        }

    .franchise-stats i {
        flex: 0 0 auto;
        color: #d86f22;
        font-size: 38px;
        line-height: 1;
    }

    .franchise-stats strong {
        display: block;
        color: var(--espresso);
        font-size: 28px;
        font-weight: 900;
        line-height: 1.05;
    }

    .franchise-stats span {
        display: block;
        margin-top: 5px;
        color: var(--espresso);
        font-size: 12px;
        font-weight: 800;
        line-height: 1.35;
        text-transform: uppercase;
    }

.franchise-model {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(360px, 1.08fr);
    gap: 30px;
    align-items: stretch;
    /* max-width: 1320px; */
    margin: 0 auto 50px;
    padding: 0 clamp(18px, 5vw, 78px);
}

.franchise-model-photo {
    height: 520px;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(90, 68, 50, .1);
}

    .franchise-model-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.franchise-model-copy {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, .78);
}

    .franchise-model-copy span,
    .franchise-consult span {
        color: #d86f22;
        font-weight: 900;
        text-transform: uppercase;
    }

    .franchise-model-copy h2,
    .franchise-consult h2 {
        margin: 8px 0 14px;
        color: var(--espresso);
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 900;
        line-height: 1.15;
    }

    .franchise-model-copy p,
    .franchise-process-copy p,
    .franchise-consult p {
        color: var(--espresso);
        line-height: 1.65;
    }

.franchise-check-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

    .franchise-check-list p {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        margin: 0;
        font-weight: 800;
    }

    .franchise-check-list i {
        margin-top: 4px;
        color: #d86f22;
    }

.franchise-benefits,
.franchise-gallery {
    /* max-width: 1320px; */
    margin: 0 auto 50px;
    padding: 0 clamp(18px, 5vw, 78px);
}

.franchise-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

    .franchise-benefit-grid article {
        min-height: 236px;
        padding: 28px 24px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 250, 240, .78);
        text-align: center;
        box-shadow: 0 12px 28px rgba(90, 68, 50, .07);
    }

    .franchise-benefit-grid img {
        width: 70px;
        height: 70px;
        margin: 0 auto 18px;
        object-fit: contain;
        opacity: .9;
    }

    .franchise-benefit-grid h3 {
        color: var(--espresso);
        font-size: 17px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .franchise-benefit-grid p {
        color: var(--muted);
        line-height: 1.55;
    }

.franchise-process {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 28px;
    /* max-width: 1320px; */
    /* margin: 0 auto 50px; */
    padding: 34px clamp(18px, 5vw, 78px);
    /* border-top: 1px solid var(--line); */
    /* border-bottom: 1px solid var(--line); */
    background: rgba(255, 250, 240, .52);
}

.franchise-process-copy h2 {
    margin: 0 0 12px;
    color: var(--espresso);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.15;
}

.franchise-process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

    .franchise-process-steps article {
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 255, 255, .62);
    }

    .franchise-process-steps strong {
        color: #d86f22;
        font-size: 28px;
        font-weight: 900;
    }

    .franchise-process-steps h3 {
        color: var(--espresso);
        font-size: 18px;
        font-weight: 900;
    }

    .franchise-process-steps p {
        color: var(--muted);
    }

.franchise-consult {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    /* max-width: 1320px; */
    /* margin: 0 auto 38px; */
    padding: 30px clamp(18px, 5vw, 78px);
    /* border: 1px solid var(--line); */
    /* border-radius: 8px; */
    background: url("../images/hero/coffee-leaf.png") left -34px bottom -40px / 170px auto no-repeat, rgba(255, 250, 240, .82);
    box-shadow: 0 12px 30px rgba(90, 68, 50, .08);
}

    .franchise-consult p {
        max-width: 680px;
    }

.franchise-consult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.menu-hero {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(320px, 1.08fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(246, 241, 232, .98), rgba(246, 241, 232, .86) 48%, rgba(246, 241, 232, .38)), url("../images/branches/CN 36.jpg") center / cover no-repeat;
    /* border-bottom: 1px solid var(--line); */
}

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

.menu-hero .eyebrow,
.menu-list-heading .eyebrow {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
}

.menu-hero h1 {
    margin: 0 0 16px;
    color: var(--charcoal);
    font-size: clamp(40px, 5.6vw, 54px);
    font-weight: 900;
    line-height: 1.25;
}

.menu-hero p:not(.eyebrow) {
    max-width: 620px;
    color: var(--espresso);
    font-size: 18px;
    line-height: 1.65;
}

.menu-hero-plate {
    overflow: hidden;
    /* border: 1px solid var(--line); */
    border-radius: 20px;
    /* background: rgba(255, 250, 240, .72); */
    /* box-shadow: 0 18px 42px rgba(90, 68, 50, .14); */
}

    .menu-hero-plate img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.menu-highlight,
.menu-list-section {
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 42px clamp(18px, 5vw, 78px) 0;
}

.menu-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.menu-featured-card {
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 174px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, .82);
    box-shadow: 0 12px 28px rgba(90, 68, 50, .08);
}

.menu-featured-image {
    overflow: hidden;
    height: 136px;
    border-radius: 8px;
    background: #fff;
}

    .menu-featured-image img,
    .menu-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .35s ease;
    }

.menu-featured-card:hover img,
.menu-product-card:hover img {
    transform: scale(1.04);
}

.menu-featured-card span,
.menu-product-meta span,
.menu-cta-band span {
    color: #d86f22;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-featured-card h3 {
    margin: 6px 0 8px;
    color: var(--espresso);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.menu-featured-card p,
.menu-product-body p,
.menu-cta-band p {
    color: var(--muted);
    line-height: 1.55;
}

.menu-featured-card p {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-featured-card strong,
.menu-product-meta strong {
    color: #d86f22;
    font-size: 17px;
    font-weight: 900;
}

.menu-list-section {
    padding-bottom: 44px;
}

.menu-list-heading {
    display: grid;
    gap: 18px;
    align-items: start;
    margin-bottom: 22px;
}

    .menu-list-heading h2 {
        margin: 0;
        color: var(--espresso);
        font-size: clamp(30px, 3.4vw, 44px);
        font-weight: 900;
    }

.menu-filter-slider {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: center;
    width: 100%;
}

    .menu-filter-slider::before,
    .menu-filter-slider::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
        width: 28px;
        pointer-events: none;
    }

    .menu-filter-slider::before {
        left: 52px;
        background: linear-gradient(90deg, var(--cream), rgba(246, 241, 232, 0));
    }

    .menu-filter-slider::after {
        right: 52px;
        background: linear-gradient(270deg, var(--cream), rgba(246, 241, 232, 0));
    }

.menu-filter-nav {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 250, 240, .94);
    color: var(--espresso);
    font-size: 14px;
    top: -4px;
}

    .menu-filter-nav:hover {
        border-color: #d86f22;
        background: #d0702d;
        color: var(--white);
    }

    .menu-filter-nav:disabled,
    .menu-filter-nav.disabled {
        cursor: default;
        opacity: .38;
        background: rgba(255, 250, 240, .62);
        color: var(--muted);
    }

.menu-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.menu-filter-bar {
    scrollbar-width: none;
}

    .menu-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .menu-filter-bar button {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 18px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: rgba(255, 250, 240, .9);
        color: var(--espresso);
        font: inherit;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        scroll-snap-align: start;
    }

        .menu-filter-bar button:first-child {
            order: -1;
        }

        .menu-filter-bar button.active,
        .menu-filter-bar button:hover {
            border-color: #d86f22;
            background: #d0702d;
            color: var(--white);
        }

.menu-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.menu-product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, .82);
    /* box-shadow: 0 12px 28px rgba(90, 68, 50, .07); */
}

.menu-product-image {
    height: auto;
    overflow: hidden;
    /* background: #fff; */
}

.menu-product-body {
    padding: 18px;
}

.menu-product-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu-product-card h3 {
    margin: 0 0 8px;
    color: var(--espresso);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.menu-product-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hidden-card {
    display: none !important;
}

.menu-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    /* max-width: 1320px; */
    /* margin: 0 auto 42px; */
    padding: 30px clamp(18px, 5vw, 78px);
    /* border: 1px solid var(--line); */
    /* border-radius: 8px; */
    background: url("../images/hero/coffee-leaf.png") right -30px bottom -42px / 170px auto no-repeat, rgba(255, 250, 240, .84);
    box-shadow: 0 12px 30px rgba(90, 68, 50, .08);
}

    .menu-cta-band h2 {
        margin: 6px 0 8px;
        color: var(--espresso);
        font-size: clamp(28px, 3vw, 42px);
        font-weight: 900;
        line-height: 1.15;
    }

.menu-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.about-hero {
    min-height: 380px;
    display: grid;
    align-items: center;
    padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 78px);
    /*border-bottom: 1px solid var(--line);*/
}

.about-hero-copy {
    max-width: 560px;
}

.about-hero .eyebrow,
.about-story .eyebrow {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0 0 12px;
    color: var(--charcoal);
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.about-hero h2 {
    max-width: 520px;
    color: var(--espresso);
    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 1.25;
}

.about-hero p:not(.eyebrow),
.about-story p,
.about-experience p,
.about-partner-intro p,
.about-cta p {
    color: var(--espresso);
    line-height: 1.65;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
    gap: clamp(28px, 4vw, 54px);
    align-items: center;
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 44px clamp(18px, 5vw, 78px) 28px;
}

.about-story-photo {
    overflow: hidden;
    height: 360px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(90, 68, 50, .1);
}

    .about-story-photo img,
    .about-mosaic img,
    .about-signature-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-story-copy h2,
.about-experience h2,
.about-partner-intro h2,
.about-cta h2 {
    margin: 0 0 14px;
    color: var(--espresso);
    font-size: clamp(30px, 3.4vw, 30px);
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
}

.about-story blockquote {
    margin: 20px 0 0;
    color: #d86f22;
    font-size: 18px;
    font-weight: 800;
    font-style: italic;
    line-height: 1.55;
}

    .about-story blockquote i {
        margin-right: 10px;
    }

.about-values,
.about-signatures {
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 28px clamp(18px, 5vw, 78px);
}

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

    .about-value-grid article {
        min-height: 188px;
        padding: 22px 16px;
        border: 1px dashed rgba(174, 144, 85, .42);
        border-radius: 8px;
        background: rgba(255, 250, 240, .76);
        text-align: center;
    }

    .about-value-grid i {
        color: var(--gold);
        font-size: 34px;
        margin-bottom: 14px;
    }

.about-value-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
    object-fit: contain;
    display: block;
}

.about-value-grid h3,
.about-signature-grid h3 {
    margin: 0 0 8px;
    color: var(--espresso);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-value-grid p,
.about-signature-grid p,
.about-partner-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.about-experience {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.28fr);
    gap: 28px;
    align-items: center;
    /* max-width: 1320px; */
    margin: 0 auto;
    padding: 28px clamp(18px, 5vw, 78px);
}

    .about-experience ul {
        display: grid;
        gap: 10px;
        margin: 18px 0 22px;
        padding: 0;
        list-style: none;
        color: var(--espresso);
    }

    .about-experience li {
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .about-experience li i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 18px;
            width: 18px;
            height: 18px;
            color: #d86f22;
            font-size: 12px;
        }

.about-mosaic {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    grid-auto-rows: 164px;
    gap: 10px;
}

    .about-mosaic img {
        overflow: hidden;
        border-radius: 8px;
        filter: saturate(1.08) contrast(1.06);
        transform: translateZ(0);
        backface-visibility: hidden;
    }

    .about-mosaic .large {
        grid-row: span 2;
    }

.about-signature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

    .about-signature-grid article {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(255, 250, 240, .8);
        text-align: center;
    }

    .about-signature-grid img {
        height: auto;
        object-fit: contain;
        background: #fff;
    }

    .about-signature-grid h3,
    .about-signature-grid p {
        padding-left: 14px;
        padding-right: 14px;
    }

    .about-signature-grid h3 {
        padding-top: 14px;
    }

    .about-signature-grid p {
        padding-bottom: 16px;
    }

.about-partners {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.28fr);
    gap: 28px;
    /* max-width: 1320px; */
    /* margin: 0 auto 34px; */
    padding: 28px clamp(18px, 5vw, 78px);
    /* border: 1px dashed rgba(174, 144, 85, .42); */
    /* border-radius: 8px; */
    background: url("../images/hero/coffee-leaf.png") right -36px bottom -46px / 170px auto no-repeat, rgba(255, 250, 240, .76);
}

.about-partner-intro span,
.about-cta span {
    color: #d86f22;
    font-weight: 900;
    text-transform: uppercase;
}

.about-partner-list h3 {
    margin: 0 0 18px;
    color: var(--espresso);
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-partner-list {
    position: relative;
    padding: 0 52px;
}

.about-partner-slider {
    overflow: hidden;
}

    .about-partner-slider .swiper-slide {
        height: auto;
    }

.partner-logo-card {
    display: grid;
    place-items: center;
    /* min-height: 118px; */
    height: 100%;
    padding: 14px;
    border: 1px solid rgba(174, 144, 85, .22);
    border-radius: 8px;
    background: rgba(255,255,255,.54);
    color: var(--espresso);
    text-align: center;
    text-decoration: none;
}

    .partner-logo-card img {
        max-width: 130px;
        max-height: 54px;
        object-fit: contain;
    }

    .partner-logo-card span {
        font-size: 22px;
        font-weight: 900;
    }

    .partner-logo-card small {
        margin-top: 6px;
        color: var(--muted);
        font-weight: 700;
    }

.about-partner-nav {
    pointer-events: none;
}

    .about-partner-nav button {
        position: absolute;
        top: 50%;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        transform: translateY(-50%);
        border: 1px solid rgba(174, 144, 85, .32);
        border-radius: 8px;
        background: rgba(255,255,255,.72);
        color: var(--gold);
        pointer-events: auto;
        transition: .2s ease;
    }

    .about-partner-nav .about-partner-prev {
        left: 0;
    }

    .about-partner-nav .about-partner-next {
        right: 0;
    }

    .about-partner-nav button:hover:not(:disabled) {
        background: var(--gold);
        color: var(--white);
    }

    .about-partner-nav button:disabled {
        opacity: .42;
        cursor: default;
    }

.about-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    /* max-width: 1320px; */
    /* margin: 0 auto 40px; */
    padding: 28px clamp(18px, 5vw, 78px);
    /* border-radius: 8px; */
    background: linear-gradient(90deg, rgba(30,30,28,.88), rgba(30,30,28,.55)), url("../images/branches/CN A30.jpg") center / cover no-repeat;
    color: var(--white);
}

    .about-cta h2 {
        max-width: 760px;
        color: var(--white);
        font-size: clamp(24px, 2.6vw, 30px);
        text-transform: none;
    }

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .62s ease, transform .62s ease;
}

.admin-message-preview {
    display: block;
    max-width: 360px;
    white-space: normal;
    line-height: 1.45;
}

.reveal-ready.reveal-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroIntro {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1200px) {
    .home-category-grid,
    .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .branch-gallery-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .menu-featured-grid,
    .menu-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-value-grid,
    .about-signature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-info-strip article {
        border-right: 1px solid var(--line);
        border-radius: 8px !important;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: block;
        order: 3;
    }

    .site-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px 22px 22px;
        background: rgba(246, 241, 232, .98);
        border-bottom: 1px solid var(--line);
    }

        .site-nav.open {
            display: flex;
        }

    .language-switcher {
        margin-left: auto;
        order: 2;
    }

    .home-about,
    .franchise-band,
    .split,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .home-hero {
        background-position: center;
    }

    .about-photo {
        min-height: 260px;
    }

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

    .branches-hero {
        min-height: 300px;
        background: linear-gradient(180deg, rgba(246,241,232,.94), rgba(246,241,232,.72)), url("../images/branches/CN 42.jpg") center / cover no-repeat;
    }

    .branch-stats,
    .branch-finder,
    .featured-branch {
        grid-template-columns: 1fr;
    }

    .branch-stats {
        padding: 10px 34px;
    }

        .branch-stats article {
            min-height: 92px;
            padding: 0 20px;
            border-right: 0;
            border-bottom: 1px solid var(--line);
        }

            .branch-stats article:last-child {
                border-bottom: 0;
            }

    .branch-cta-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-main-grid,
    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .contact-info-strip {
        margin-top: 22px;
    }

    .contact-franchise-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .franchise-stats,
    .franchise-model,
    .franchise-process,
    .menu-hero,
    .about-story,
    .about-experience,
    .about-partners {
        grid-template-columns: 1fr;
    }

    .franchise-stats {
        gap: 12px;
        margin-top: 22px;
    }

        .franchise-stats article {
            border-right: 1px solid var(--line);
            border-radius: 8px !important;
        }

    .franchise-consult {
        align-items: flex-start;
        flex-direction: column;
    }

    .franchise-consult-actions {
        justify-content: flex-start;
    }

    .menu-list-heading,
    .menu-cta-band,
    .about-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu-filter-bar,
    .menu-filter-slider,
    .menu-cta-actions,
    .about-cta-actions {
        justify-content: flex-start;
        max-width: 100%;
        width: 100%;
    }

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

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

@media (max-width: 640px) {
    .site-header {
        min-height: 68px;
    }

    .brand img {
        height: 46px;
    }

    .brand {
        margin-right: auto;
    }

    .site-nav {
        top: 68px;
    }

    .home-hero {
        min-height: auto;
        padding-top: 28px;
        background: linear-gradient(180deg, rgba(246, 241, 232, .98) 0%, rgba(246, 241, 232, .86) 56%, rgba(246, 241, 232, .22) 100%), url("../images/branches/CN 42.jpg") center bottom / cover no-repeat;
    }

    .home-hero-content {
        padding-bottom: 170px;
    }

    .hero-logo {
        width: 235px;
    }

    .home-category-grid,
    .home-product-grid,
    .home-branch-grid,
    .home-gallery-grid,
    .franchise-points,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        aspect-ratio: 1.35 / 1;
    }

    .franchise-band {
        margin-left: 18px;
        margin-right: 18px;
        padding: 20px;
    }

    .franchise-hero {
        min-height: 340px;
        padding: 34px 20px;
        background: linear-gradient(180deg, rgba(30, 30, 28, .78), rgba(30, 30, 28, .38)), url("../images/branches/CN A30.jpg") center / cover no-repeat;
    }

        .franchise-hero h1 {
            font-size: 34px;
        }

        .franchise-hero p:not(.eyebrow) {
            font-size: 16px;
        }

    .franchise-benefit-grid,
    .franchise-process-steps {
        grid-template-columns: 1fr;
    }

    .franchise-model-copy {
        padding: 20px;
    }

    .franchise-model-photo {
        height: 300px;
        min-height: 0;
    }

    .franchise-stats article {
        min-height: 96px;
    }

    .franchise-consult {
        margin-left: 18px;
        margin-right: 18px;
        padding: 22px;
    }

    .menu-hero {
        padding: 34px 20px;
    }

        .menu-hero h1 {
            font-size: 36px;
        }

        .menu-hero p:not(.eyebrow) {
            font-size: 16px;
        }

    .menu-hero-plate img {
        height: 260px;
    }

    .menu-featured-grid,
    .menu-product-grid {
        grid-template-columns: 1fr;
    }

    .menu-featured-card {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 12px;
        min-height: 142px;
    }

    .menu-featured-image {
        height: 116px;
    }

    .menu-product-image {
        height: auto;
    }

    .menu-highlight,
    .menu-list-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .menu-cta-band {
        margin-left: 18px;
        margin-right: 18px;
        padding: 22px;
    }

    .about-hero {
        min-height: 330px;
        padding: 36px 20px;
    }

        .about-hero h1 {
            font-size: 44px;
        }

    .about-story,
    .about-values,
    .about-experience,
    .about-signatures,
    .about-partners {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-partners {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        background-position: right -80px bottom -34px;
        background-size: 140px auto;
    }

    .about-partner-intro,
    .about-partner-list {
        min-width: 0;
        max-width: 100%;
    }

    .about-partner-list {
        padding: 0 34px;
    }

    .about-partner-nav button {
        width: 32px;
        height: 32px;
    }

    .about-partner-nav .about-partner-prev {
        left: -2px;
    }

    .about-partner-nav .about-partner-next {
        right: -2px;
    }

    .about-story-photo {
        height: 260px;
    }

    .about-value-grid,
    .about-signature-grid,
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }

    .about-mosaic {
        grid-auto-rows: 130px;
    }

    .about-cta {
        width: auto;
        max-width: calc(100vw - 36px);
        overflow: hidden;
        margin-left: 18px;
        margin-right: 18px;
        padding: 22px;
    }

        .about-cta h2 {
            overflow-wrap: anywhere;
        }

    .feature-item {
        border-left: 0;
        border-top: 1px solid rgba(174,144,85,.22);
    }

    .branches-hero-inner h1 {
        font-size: 31px;
    }

    .branch-stats-band {
        padding-left: 18px;
        padding-right: 18px;
    }

    .branch-stats {
        padding: 8px 14px;
    }

        .branch-stats article {
            gap: 12px;
            min-height: 84px;
            padding: 12px 4px;
        }

    .stat-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .branch-stats article strong {
        font-size: 21px;
    }

    .branch-stats article div span {
        font-size: 12px;
    }

    .branch-finder {
        padding-left: 18px;
        padding-right: 18px;
        overflow: hidden;
    }

    .branch-list-panel {
        min-width: 0;
        overflow: hidden;
    }

    .branch-filter-row {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .branch-filter-row::-webkit-scrollbar {
            display: none;
        }

        .branch-filter-row button {
            flex: 0 0 auto;
            max-width: 142px;
        }

    .branch-map-card,
    .branch-map-visual {
        min-height: 280px;
    }

    .branch-card-grid,
    .branch-gallery-strip,
    .featured-icons {
        grid-template-columns: 1fr;
    }

    .featured-branch,
    .branch-gallery-section,
    .branch-cta-band {
        margin-left: 18px;
        margin-right: 18px;
    }

    .featured-branch {
        padding: 14px;
    }

    .featured-branch-photo {
        min-height: 230px;
    }

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

    .branch-list a {
        grid-template-columns: 24px 1fr;
    }

    .branch-list em {
        grid-column: 2;
    }

    .contact-hero {
        min-height: 260px;
        background: linear-gradient(180deg, rgba(246,241,232,.96), rgba(246,241,232,.72)), url("../images/branches/CN A30.jpg") center / cover no-repeat;
    }

    .contact-info-strip,
    .contact-branch-grid,
    .contact-support-grid,
    .contact-trust-row,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

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

        .contact-branch-grid .branch-showcase-card {
            max-width: none;
            width: 100%;
            margin: 0 auto;
        }

    .contact-branches {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-info-strip {
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

        .contact-info-strip article {
            min-height: 96px;
            border: none;
            border-radius: 0 !important;
            border-left: 1px solid var(--line);
            border-right: 1px solid var(--line);
            border-bottom: none;
            box-shadow: none;
        }

            .contact-info-strip article:first-child {
                border-radius: 8px 8px 0 0 !important;
            }

            .contact-info-strip article:last-child {
                border-bottom: 1px solid var(--line);
                border-radius: 0 0 8px 8px !important;
            }

    .contact-form-grid .span-2 {
        grid-column: span 1;
    }

    .contact-form-card,
    .contact-listen-card > div {
        padding: 18px;
    }

    .contact-hotline-box {
        min-width: 0;
        width: 100%;
    }

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

    .contact-book-btn {
        min-width: 0;
        width: 100%;
    }

    .mobile-sticky-cta {
        position: sticky;
        bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        z-index: 40;
    }

        .mobile-sticky-cta a {
            text-align: center;
            padding: 13px;
            background: var(--gold);
            color: var(--white);
            font-weight: 900;
        }

            .mobile-sticky-cta a + a {
                background: var(--charcoal);
            }
}
/* FAQ page */
.simple-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    padding: 86px clamp(18px, 5vw, 78px);
    background: linear-gradient(90deg, rgba(246, 241, 232, .98) 0%, rgba(246, 241, 232, .78) 52%, rgba(246, 241, 232, .2) 100%), url("../images/branches/CN 42.jpg") center / cover no-repeat;
}

.simple-hero > div {
    max-width: 720px;
}

.simple-hero h1 {
    margin: 0 0 14px;
    color: #201a16;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.04;
}

.simple-hero p:not(.eyebrow) {
    margin: 0;
    color: #4f4237;
    font-size: 18px;
    line-height: 1.65;
}

.faq-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 36px;
    padding: 56px clamp(18px, 5vw, 78px);
}

.faq-intro h2 {
    margin: 0;
    color: var(--espresso);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.1;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 240, .82);
    box-shadow: 0 12px 28px rgba(90, 68, 50, .06);
}

.faq-item button {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--espresso);
    text-align: left;
    font-size: 18px;
    font-weight: 900;
}

.faq-item i {
    flex: 0 0 auto;
    color: var(--gold);
    transition: transform .2s ease;
}

.faq-item.is-open i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

.faq-answer p + p,
.faq-answer ul,
.faq-answer ol {
    margin-top: 10px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 22px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

@media (max-width: 900px) {
    .faq-section {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 576px) {
    .simple-hero {
        min-height: 280px;
        padding: 58px 18px;
    }

    .faq-item button {
        font-size: 16px;
        padding: 16px;
    }

    .faq-answer {
        padding: 0 16px 18px;
    }
}
