/* ─── TOKENS ──────────────────────────────────────────── */
:root {
    --red: #ad0a0f;
    --red-hover: #93090d;
    --red-glow: rgba(173, 10, 15, 0.25);
    --red-soft: rgba(173, 10, 15, 0.08);
    --black: #0e0e0e;
    --near-black: #1a1a1a;
    --text: #1f1f1f;
    --muted: #6b7280;
    --border: #e8e8e8;
    --surface: #f9f9f9;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ─── UTILITY ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 14px;
}

.section-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--muted);
    max-width: 560px;
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    transition: all 0.25s var(--ease);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 16px var(--red-glow);
}

.btn-red:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: var(--red);
    backdrop-filter: blur(12px);
    border-bottom: none;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 96px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
}

.nav-logo-text {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--white);
}

.nav-logo-text span {
    color: var(--white);
}

.nav-center {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.nav-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.2s;
}

.nav-contact a:hover {
    color: var(--white);
}

.nav-contact svg {
    flex-shrink: 0;
}

/* ─── TOP BANNER ─────────────────────────────────────── */
.top-banner {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
}

.top-banner-frame {
    width: 100%;
    aspect-ratio: 2.2 / 1;
    height: auto;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    background: var(--surface);
}

.top-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 24px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #fff 0%,
            #fdf5f5 50%,
            #fff 100%);
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.03) 1px,
            transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-accent {
    position: absolute;
    right: -120px;
    top: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(173, 10, 15, 0.07) 0%,
            transparent 65%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 64px;
}

.hero-pre {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-pre-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--red-glow);
    }

    50% {
        box-shadow: 0 0 0 8px transparent;
    }
}

.hero-pre-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 20px;
}

.hero h1 .red {
    color: var(--red);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.hero-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-branch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-branch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    transition: background 0.2s;
}

.hero-branch-item:hover {
    background: var(--surface);
}

.branch-flag {
    width: 24px;
    height: 18px;
    display: inline-block;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.branch-info {
    flex: 1;
}

.branch-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.branch-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
}

.branch-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
}

.badge-active {
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
}

.badge-soon {
    background: var(--surface);
    color: var(--muted);
}

.hero-card-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.hero-card-btn-secondary {
    margin-top: 10px;
}

/* ─── WORLD MAP SECTION ──────────────────────────────── */
#presence {
    padding: 100px 0;
    background: var(--surface);
}

.presence-header {
    text-align: center;
    margin-bottom: 60px;
}

.presence-header .section-desc {
    margin: 0 auto;
}

.map-layout {
    /* display: grid;
                grid-template-columns: 1fr 300px;
                gap: 48px;
                align-items: center; */
}

.map-wrapper {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 24px;
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG map paths */
.land {
    fill: #e8ecef;
    transition: fill 0.2s;
}

.map-marker {
    cursor: pointer;
}

.marker-circle-active {
    fill: var(--red);
    animation: markerPulse 2s infinite;
}

.marker-circle-inactive {
    fill: #9ca3af;
}

@keyframes markerPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 0 transparent);
    }

    50% {
        filter: drop-shadow(0 0 6px var(--red-glow));
    }
}

.tooltip {
    position: absolute;
    background: var(--near-black);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
    z-index: 10;
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--near-black);
    border-bottom: none;
}

.branch-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-panel-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s var(--ease);
}

.branch-panel-item.active-item {
    border-color: var(--red);
    background: #fffafa;
}

.branch-panel-item:hover {
    box-shadow: var(--shadow-sm);
}

.bpi-flag {
    width: 26px;
    height: 20px;
    display: inline-block;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.bpi-info {
    flex: 1;
}

.bpi-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.bpi-status {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 1px;
}

.active-item .bpi-status {
    color: #16a34a;
}

.bpi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-active {
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.dot-inactive {
    background: #d1d5db;
}

.visit-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    text-align: center;
}

/* ─── MENU ────────────────────────────────────────────── */
#menu {
    padding: 100px 0;
}

.menu-header {
    margin-bottom: 56px;
}

#menuPreviewBtn {
    margin-bottom: 18px;
}

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

.menu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.menu-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-body {
    padding: 20px 20px 20px;
}

.menu-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.menu-card-name {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

/* ─── FRANCHISE CTA ───────────────────────────────────── */
#franchise-cta {
    padding: 100px 0;
    background: var(--text);
    position: relative;
    overflow: hidden;
}

#franchise-cta::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(173, 10, 15, 0.12) 0%,
            transparent 65%);
}

#franchise-cta::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(173, 10, 15, 0.08) 0%,
            transparent 65%);
}

.franchise-cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

.franchise-cta-text .tag {
    color: rgba(255, 255, 255, 0.4);
}

.franchise-cta-text .section-title {
    color: var(--white);
}

.franchise-cta-text .section-desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
}

.franchise-cta-right {
    flex-shrink: 0;
}

/* ─── WHY ─────────────────────────────────────────────── */
#why {
    padding: 100px 0;
    background: var(--white);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: all 0.25s var(--ease);
}

.why-card:hover {
    border-color: var(--red);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.why-card:last-child {
    grid-column: span 2;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: var(--red-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.why-icon svg {
    color: var(--red);
}

.why-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    background: var(--near-black);
    color: rgba(255, 255, 255, 0.55);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo-mark {
    width: 80px;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.footer-logo-mark img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
}

.footer-logo-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--red);
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-col ul li {
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
}

/* ─── MODAL ───────────────────────────────────────────── */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    backdrop-filter: blur(6px);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--white);
    border-radius: var(--r-lg);
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    padding: 48px 44px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    transform: scale(0.95) translateY(16px);
    transition: transform 0.3s var(--ease);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
}

.modal-backdrop.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-box,
.menu-modal-box {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal-box::-webkit-scrollbar,
.menu-modal-box::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.menu-modal-box {
    max-width: 920px;
    padding: 20px;
}

.menu-modal-image-wrap {
    margin-top: 10px;
    touch-action: pan-y;
}

.menu-modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}

.menu-modal-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.menu-nav-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0;
    font-size: 0;
    font-weight: 600;
    transition: all 0.2s var(--ease);
}

.menu-nav-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.menu-modal-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1px;
}

@media (min-width: 641px) {
    .menu-modal-box {
        max-height: calc(100vh - 36px);
        overflow-y: auto;
    }

    .menu-modal-image {
        max-height: 74vh;
        object-fit: contain;
    }
}

@media (max-width: 640px) {
    .menu-modal-controls {
        gap: 8px;
    }

    .menu-nav-btn {
        width: 38px;
        height: 38px;
    }

    .menu-modal-count {
        min-width: 56px;
        text-align: center;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.modal-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}

.modal-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.modal-sub {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 28px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--red);
}

.form-row textarea {
    height: 96px;
}

.form-row input[type="file"] {
    padding: 10px 12px;
    line-height: 1.4;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--r-sm);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    margin-top: 6px;
    transition: all 0.2s var(--ease);
}

.form-submit:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
}

.modal-success {
    display: none;
    text-align: center;
    padding: 16px 0;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.modal-success h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.modal-success p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── SCROLL ANIMATION ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s var(--ease),
        transform 0.65s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: 0.1s;
}

.reveal.d2 {
    transition-delay: 0.2s;
}

.reveal.d3 {
    transition-delay: 0.3s;
}

.reveal.d4 {
    transition-delay: 0.4s;
}

.reveal.d5 {
    transition-delay: 0.5s;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card {
        max-width: 100%;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .branch-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .branch-panel-item {
        flex: 1 1 calc(50% - 6px);
    }

    .franchise-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .franchise-cta-text .section-desc {
        margin: 0 auto 28px;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .top-banner {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .top-banner-frame {
        aspect-ratio: 2.2 / 1;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }

    .top-banner {
        margin-bottom: 10px;
    }

    .nav-logo-mark {
        width: 84px;
        height: 48px;
    }

    .footer-logo-mark {
        width: 60px;
    }

    .nav-center {
        display: block;
        font-size: 10px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .nav-contact a span {
        display: none;
    }

    .hero {
        padding: 18px 0 60px;
    }

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

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-card:last-child {
        grid-column: span 1;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .branch-panel-item {
        flex: 1 1 100%;
    }

    .modal-box {
        padding: 32px 24px;
    }
}