/* =========================================
   The Wok Design System
   Modern • Bold • Premium • Chinese-American
   ========================================= */

/* ----- CSS Variables ----- */
:root {
    /* Primary Colors - Bold Red & Black */
    --color-primary: #C41E3A;
    --color-primary-dark: #9A1830;
    --color-primary-light: #E63950;

    /* Secondary & Accent */
    --color-secondary: #1A1A1A;
    --color-accent: #D4AF37;
    --color-accent-light: #E8C961;

    /* Neutrals - Warm Tones */
    --color-bg: #FAFAFA;
    --color-bg-alt: #F5F5F5;
    --color-surface: #FFFFFF;
    --color-surface-elevated: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #888888;
    --color-border: #E5E5E5;

    /* Gradients */
    --gradient-fire: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    --gradient-subtle: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C961 100%);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-chinese: 'Noto Sans SC', sans-serif;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(196, 30, 58, 0.3);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

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

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

ul,
ol {
    list-style: none;
}

/* ----- Utility Classes ----- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.text-gradient {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-fire);
    background-size: 100% 100%;
    background-origin: border-box;
    color: white;
    box-shadow: var(--shadow-md), 0 4px 20px rgba(196, 30, 58, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 30px rgba(196, 30, 58, 0.4);
}

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

.btn--secondary:hover {
    background: var(--color-text);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

/* ----- Header / Navigation ----- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

/* Solid Header for inner pages */
.header--solid {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
}

.nav__link--active {
    color: var(--color-primary);
}

.nav__link--active::after {
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-the {
    color: var(--color-secondary);
}

.logo-wok {
    color: var(--color-primary);
}

/* Logo images */
.nav__logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.nav__logo-img--desktop {
    display: block;
}

.nav__logo-img--mobile {
    display: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__btn {
    padding: var(--space-sm) var(--space-lg);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.nav__order-mobile {
    display: none;
}

/* ----- Hero Section ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-subtle);
    z-index: -1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.hero__badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(196, 30, 58, 0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-lg);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero__carousel {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
    margin: 0 auto;
}

.hero__card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.3);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero__card--1 {
    z-index: 3;
    transform: translateZ(0) scale(1);
    animation: cardRotate1 9s ease-in-out infinite;
}

.hero__card--2 {
    z-index: 2;
    transform: translateX(25px) translateY(15px) scale(0.97);
    animation: cardRotate2 9s ease-in-out infinite;
}

.hero__card--3 {
    z-index: 1;
    transform: translateX(50px) translateY(30px) scale(0.94);
    animation: cardRotate3 9s ease-in-out infinite;
}

@keyframes cardRotate1 {

    0%,
    30% {
        z-index: 3;
        transform: translateZ(0) scale(1);
    }

    33%,
    63% {
        z-index: 1;
        transform: translateX(50px) translateY(30px) scale(0.94);
    }

    66%,
    96% {
        z-index: 2;
        transform: translateX(25px) translateY(15px) scale(0.97);
    }

    100% {
        z-index: 3;
        transform: translateZ(0) scale(1);
    }
}

@keyframes cardRotate2 {

    0%,
    30% {
        z-index: 2;
        transform: translateX(25px) translateY(15px) scale(0.97);
    }

    33%,
    63% {
        z-index: 3;
        transform: translateZ(0) scale(1);
    }

    66%,
    96% {
        z-index: 1;
        transform: translateX(50px) translateY(30px) scale(0.94);
    }

    100% {
        z-index: 2;
        transform: translateX(25px) translateY(15px) scale(0.97);
    }
}

@keyframes cardRotate3 {

    0%,
    30% {
        z-index: 1;
        transform: translateX(50px) translateY(30px) scale(0.94);
    }

    33%,
    63% {
        z-index: 2;
        transform: translateX(25px) translateY(15px) scale(0.97);
    }

    66%,
    96% {
        z-index: 3;
        transform: translateZ(0) scale(1);
    }

    100% {
        z-index: 1;
        transform: translateX(50px) translateY(30px) scale(0.94);
    }
}

.hero__card:hover {
    transform: rotate(0deg) translateX(0) translateY(0) scale(1.05) !important;
    z-index: 10 !important;
    box-shadow: 0 30px 70px -20px rgba(196, 30, 58, 0.5);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeIn 1s ease-out 1s both;
}

.hero__scroll span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ----- Story Section ----- */
.story {
    padding: var(--space-5xl) 0;
    background: var(--color-surface);
}

.story__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.story__header .section-description {
    margin: 0 auto;
}

.story__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    perspective: 1000px;
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow:
        0 30px 60px -20px rgba(196, 30, 58, 0.4),
        0 15px 30px -15px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.feature-card__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    font-size: 42px;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e5 100%);
    border-radius: 50%;
    border: 3px solid rgba(196, 30, 58, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px -10px rgba(196, 30, 58, 0.3);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.15) rotate(-10deg);
    background: var(--gradient-fire);
    border-color: transparent;
    box-shadow: 0 15px 40px -10px rgba(196, 30, 58, 0.6);
}

.feature-card__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__title {
    color: var(--color-primary);
}

.feature-card__text {
    position: relative;
    z-index: 1;
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ----- Menu Section ----- */
.menu {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-alt);
}

.menu__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.menu-card-link {
    display: block;
    text-decoration: none;
}

.menu-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 8px 30px rgba(196, 30, 58, 0.15);
}

.menu-card__image {
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.menu-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card__img {
    transform: scale(1.1);
}

.menu-card__tag {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-card__tag--gold {
    background: linear-gradient(135deg, #d4af37 0%, #f9df7a 50%, #d4af37 100%);
    color: #1a1a1a;
}

.menu-card__content {
    padding: var(--space-lg);
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.menu-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.menu-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spice-level {
    font-size: var(--text-sm);
}

.menu__cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ----- Process Section ----- */
.process {
    padding: var(--space-5xl) 0;
    background: var(--color-surface);
}

.process__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.process__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.step {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-fire);
    color: white;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 25px -5px rgba(196, 30, 58, 0.4);
}

.step__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.step__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.step__connector {
    width: 60px;
    height: 2px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ----- CTA Section ----- */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
}

.cta__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
}

.cta__actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

/* ----- Locations Section ----- */
.locations {
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
}

.locations__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.location-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.location-card__icon {
    font-size: 32px;
}

.location-card__info {
    flex: 1;
}

.location-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.location-card__address {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.location-card__hours {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.location-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: gap var(--transition-base);
}

.location-card__link:hover {
    gap: var(--space-md);
}

/* ----- Footer ----- */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.footer__logo .logo-the {
    color: white;
}

.footer__logo .logo-wok {
    color: var(--color-accent);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer__heading {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    color: white;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: white;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: white;
}

/* ----- Animations ----- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

@keyframes float {

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

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

/* ----- Media Queries ----- */
@media (max-width: 1024px) {
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .story__features .feature-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        position: relative;
    }

    .nav__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav__logo-img--desktop {
        display: none;
    }

    .nav__logo-img--mobile {
        display: block;
        height: 48px;
    }

    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-surface);
        flex-direction: column;
        padding: var(--space-2xl);
        gap: var(--space-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__toggle {
        display: flex;
        order: -1;
    }

    .nav__order-mobile {
        display: inline-flex;
        padding: var(--space-sm) var(--space-md);
        font-size: var(--text-sm);
        margin-left: auto;
    }

    .nav__menu .nav__btn {
        display: none;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav__item:last-child {
        display: none;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-3xl);
    }

    .hero__actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__carousel {
        max-width: 320px;
        height: 320px;
    }

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

    .story__features .feature-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

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

    .process__steps {
        flex-direction: column;
    }

    .step__connector {
        width: 2px;
        height: 40px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__carousel {
        max-width: 280px;
        height: 280px;
    }

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

/* =========================================
   NEW HERO - Full Width Centered
   ========================================= */

.hero--fullwidth {
    position: relative;
    min-height: 100vh;
    background: var(--color-secondary);
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.95) 0%,
            rgba(40, 20, 25, 0.9) 50%,
            rgba(26, 26, 26, 0.95) 100%);
    z-index: 1;
}

.hero__deco {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero__deco--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
}

.hero__deco--2 {
    width: 400px;
    height: 400px;
    bottom: 100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero--fullwidth .hero__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    flex: 1;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.hero__main {
    animation: fadeInUp 0.8s ease-out both;
}

.hero__eyebrow {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

.hero--fullwidth .hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: var(--space-lg);
}

.hero__title-accent {
    display: block;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero--fullwidth .hero__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.hero__cta-group {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn--outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Food Showcase */
.hero__showcase {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero__dish {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.hero__dish--main {
    width: 420px;
    height: 420px;
    z-index: 3;
    border: 5px solid rgba(196, 30, 58, 0.5);
}

.hero__dish-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.4) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero__dish--left {
    width: 180px;
    height: 180px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: 3px solid rgba(212, 175, 55, 0.4);
    animation: floatLeft 5s ease-in-out infinite;
}

.hero__dish--right {
    width: 200px;
    height: 200px;
    right: 0;
    top: 25%;
    z-index: 2;
    border: 3px solid rgba(212, 175, 55, 0.4);
    animation: floatRight 5s ease-in-out infinite 0.5s;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

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

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(-10px);
    }
}

.hero__dish:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 35px 60px -15px rgba(196, 30, 58, 0.5);
}

.hero__dish--left:hover,
.hero__dish--right:hover {
    transform: scale(1.15);
}

/* Feature Bar */
.hero__features {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-xl) 0;
}

.hero__feature-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-4xl);
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: white;
}

.hero__feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__feature strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
}

.hero__feature span {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero--fullwidth .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero__main {
        order: 1;
    }

    .hero__showcase {
        order: 2;
        height: 350px;
    }

    .hero--fullwidth .hero__subtitle {
        margin: 0 auto var(--space-2xl);
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__dish--main {
        width: 320px;
        height: 320px;
    }

    .hero__dish--left {
        width: 130px;
        height: 130px;
        left: 5%;
    }

    .hero__dish--right {
        width: 150px;
        height: 150px;
        right: 5%;
    }

    .hero__feature-grid {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .hero--fullwidth .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__showcase {
        height: 300px;
    }

    .hero__dish--main {
        width: 280px;
        height: 280px;
    }

    .hero__dish--left,
    .hero__dish--right {
        display: none;
    }

    .hero__feature-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .hero__feature {
        width: 100%;
        max-width: 280px;
        background: rgba(255, 255, 255, 0.03);
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
}

/* =========================================
   NEW FOOTER - Compact Centered Design
   ========================================= */

.footer--compact {
    padding: 0;
}

.footer__newsletter {
    background: var(--color-primary);
    padding: var(--space-3xl) 0;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.newsletter__content {
    flex: 1;
}

.newsletter__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
}

.newsletter__title .text-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #E8C961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.newsletter__form {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.newsletter__input {
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    min-width: 280px;
    background: white;
    color: var(--color-text);
}

.newsletter__input::placeholder {
    color: var(--color-text-muted);
}

.newsletter__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.footer__main {
    background: var(--color-secondary);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.footer__brand-center {
    margin-bottom: var(--space-2xl);
}

.footer__logo-large {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__logo-large .logo-the {
    color: white;
}

.footer__logo-large .logo-wok {
    color: var(--color-accent);
}

.footer__tagline-large {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.6);
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: var(--space-sm);
}

.footer__nav a:hover {
    color: white;
}

.footer__nav-divider {
    color: rgba(255, 255, 255, 0.2);
}

.footer__app {
    margin-bottom: var(--space-2xl);
}

.footer__app-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.footer__app-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-base);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.footer__social-center {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.footer--compact .social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
}

.footer--compact .social-link:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer__bar {
    background: #111111;
    padding: var(--space-lg) 0;
}

.footer__bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bar .footer__copyright {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer__bar .footer__legal {
    display: flex;
    gap: var(--space-xl);
}

.footer__bar .footer__legal a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer__bar .footer__legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Responsive - New Components
   ========================================= */

@media (max-width: 1024px) {
    .hero--split {
        grid-template-columns: 1fr;
    }

    .hero__left {
        padding: var(--space-3xl) var(--space-lg);
        min-height: 60vh;
    }

    .hero__right {
        min-height: 50vh;
        padding: var(--space-3xl) var(--space-lg);
    }

    .hero__image-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero__float-card {
        width: 80px;
        height: 80px;
    }

    .hero__stats {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .hero--split .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__chinese-text {
        font-size: 3rem;
    }

    .hero__image-wrapper {
        width: 250px;
        height: 250px;
    }

    .hero__float-card--1,
    .hero__float-card--2,
    .hero__float-card--3 {
        display: none;
    }

    .hero__stats {
        gap: var(--space-xl);
        padding: var(--space-lg);
    }

    .hero__stat-number {
        font-size: var(--text-2xl);
    }

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

    .newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter__input {
        min-width: unset;
        width: 100%;
    }

    .footer__nav {
        gap: var(--space-sm);
    }

    .footer__nav-divider {
        display: none;
    }

    .footer__app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer__bar .container {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer__bar .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }
}

/* =========================================
   MENU PAGE - Dark Glassmorphism Design
   ========================================= */

/* Light theme body for menu page */
.menu-page-body {
    background: var(--color-bg);
    min-height: 100vh;
}

.menu-page-body .header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
}

.menu-page-body .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.menu-page-body .nav__link {
    color: var(--color-text);
}

.menu-page-body .nav__link:hover,
.menu-page-body .nav__link--active {
    color: var(--color-primary);
}

.menu-page-body .nav__toggle span {
    background: var(--color-secondary);
}

/* Menu Hero */
.menu-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    text-align: center;
    overflow: hidden;
}

.menu-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.menu-hero__label {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

.menu-hero__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.text-glow {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-hero__subtitle {
    position: relative;
    z-index: 1;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Category Filter */
.menu-filter-section {
    padding: var(--space-xl) 0;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.menu-filter {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    padding: var(--space-xs) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.menu-filter__btn {
    flex-shrink: 0;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.menu-filter__btn:hover {
    background: rgba(196, 30, 58, 0.1);
    color: var(--color-primary);
    border-color: rgba(196, 30, 58, 0.3);
}

.menu-filter__btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

/* Menu Grid Section */
.menu-grid-section {
    padding: var(--space-4xl) 0;
    background: #ffffff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Dish Cards - Flat White Design (GoStirFry style) */
.dish-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dish-card__image {
    position: relative;
    aspect-ratio: 5/2;
    overflow: hidden;
    background: #f8f8f8;
}

.dish-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dish-card:hover .dish-card__image img {
    transform: scale(1.05);
}

.dish-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dish-card__badge--gold {
    background: linear-gradient(135deg, #D4AF37 0%, #E8C961 100%);
    color: #1a1a1a;
}

.dish-card__content {
    padding: var(--space-md) var(--space-lg);
}

.dish-card__name {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.dish-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.dish-card__tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-accent-dark, #b5962d);
}

.dish-card__spice {
    display: inline-block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Featured dishes */
.dish-card--featured {
    grid-column: span 1;
}

/* Drink cards - compact */
.dish-card--drink {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    gap: var(--space-md);
    background: #ffffff;
}

.dish-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dish-card--drink .dish-card__content {
    padding: 0;
}

.dish-card--drink .dish-card__name {
    font-size: var(--text-sm);
    margin-bottom: 0;
    color: var(--color-text);
}

/* Menu CTA */
.menu-cta {
    padding: var(--space-5xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f6 100%);
}

.menu-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.menu-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.menu-cta__text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.menu-cta__actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Dark Footer variant */
.footer--dark {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer--dark .footer__main {
    background: transparent;
}

.footer--dark .footer__tagline-large,
.footer--dark .footer__nav a,
.footer--dark .footer__copyright {
    color: rgba(255, 255, 255, 0.6);
}

.footer--dark .footer__nav a:hover {
    color: var(--color-accent);
}

.footer--dark .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer--dark .social-link:hover {
    background: var(--color-accent);
    color: #1a1a1a;
}

.footer--dark .footer__bar {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer--dark .footer__legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer--dark .footer__legal a:hover {
    color: var(--color-accent);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Menu Category Headers - GoStirFry style */
.menu-category {
    margin-bottom: var(--space-4xl);
}

.menu-category__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid #f0f0f0;
}

.menu-category__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: white;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-category__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.menu-category__subtitle {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-left: auto;
}

.menu-category__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

/* Responsive - Menu Page */
@media (max-width: 1024px) {

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

@media (max-width: 768px) {
    .menu-hero__title {
        font-size: var(--text-3xl);
    }

    .menu-grid,
    .menu-category__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .menu-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .menu-cta__title {
        font-size: var(--text-2xl);
    }

    .menu-category__header {
        flex-wrap: wrap;
    }

    .menu-category__subtitle {
        width: 100%;
        margin-left: 0;
        margin-top: var(--space-sm);
    }
}

@media (max-width: 480px) {

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

    .dish-card--featured {
        grid-column: span 1;
    }
}

/* ----- Dish Detail Modal ----- */
.dish-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dish-modal.active {
    opacity: 1;
    visibility: visible;
}

.dish-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.dish-modal__container {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dish-modal.active .dish-modal__container {
    transform: scale(1) translateY(0);
}

.dish-modal__close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    color: #333;
}

.dish-modal__close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.dish-modal__image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8f8f8;
}

.dish-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-modal__content {
    padding: var(--space-xl);
}

.dish-modal__name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.dish-modal__desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.dish-modal__meta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.dish-modal__tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--color-primary), #ff6b6b);
    color: white;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.dish-modal__spice {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

@media (max-width: 600px) {
    .dish-modal__container {
        width: 95%;
        max-height: 85vh;
    }

    .dish-modal__content {
        padding: var(--space-lg);
    }

    .dish-modal__name {
        font-size: var(--text-xl);
    }
}

/* =========================================
   STORY / ABOUT PAGE STYLES
   ========================================= */

.story-page {
    padding-top: var(--header-height);
}

.story-hero {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-bg);
    text-align: center;
    overflow: hidden;
}

.story-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(196, 30, 58, 0.08) 0%, transparent 60%);
}

.story-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.story-hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
}

/* ----- Story Sections ----- */
.story-section {
    padding: var(--space-5xl) 0;
}

.story-section--alt {
    background: var(--color-bg-alt);
}

.story-section--dark {
    background: var(--color-secondary);
    color: white;
}

.story-section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-label--light {
    color: var(--color-accent);
}

.section-title--light {
    color: white;
}

.section-description--light {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

/* ----- Story Content Block ----- */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.story-content--reverse {
    direction: rtl;
}

.story-content--reverse>* {
    direction: ltr;
}

.story-content__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.story-content__lead {
    font-size: var(--text-xl);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.story-content__text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.story-image-placeholder {
    aspect-ratio: 1;
    background: var(--gradient-fire);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    box-shadow: var(--shadow-glow);
}

.story-image-placeholder span:first-child {
    font-size: 80px;
}

.story-image-placeholder--warm {
    background: linear-gradient(135deg, #D4AF37 0%, #C41E3A 100%);
}

.story-image-label {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.story-image {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* ----- Progress Stats Grid ----- */
.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.progress-card {
    position: relative;
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(196, 30, 58, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C41E3A, #D4AF37, #C41E3A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.3);
}

.progress-card:hover::before {
    transform: scaleX(1);
}

.progress-card__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.progress-card__label {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.progress-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ----- Wok Features ----- */
.wok-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    text-align: center;
}

.wok-feature__number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.wok-feature__label {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.wok-feature__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ----- Story CTA ----- */
.story-cta {
    padding: var(--space-4xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f6 100%);
}

.story-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.story-cta__text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.story-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* ----- Careers Section ----- */
.careers-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.careers-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.careers-section__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.careers-section__glow--1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    top: -150px;
    left: -100px;
    animation: glow-float 8s ease-in-out infinite;
}

.careers-section__glow--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    bottom: -100px;
    right: -50px;
    animation: glow-float 10s ease-in-out infinite reverse;
}

@keyframes glow-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.careers-visual {
    display: flex;
    justify-content: center;
}

.careers-visual__card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.careers-visual__icon {
    margin-bottom: var(--space-xl);
    display: flex;
    justify-content: center;
}

.careers-visual__icon svg {
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

.careers-visual__roles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.role-tag {
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
    border: 1px solid rgba(196, 30, 58, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #fdba74;
    transition: all var(--transition-base);
}

.role-tag:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.4) 0%, rgba(212, 175, 55, 0.4) 100%);
    transform: scale(1.05);
}

.careers-visual__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-xs);
}

.careers-content {
    color: white;
}

.careers-label {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: var(--space-lg);
}

.careers-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.careers-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.careers-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateX(5px);
}

.perk-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.perk-info {
    display: flex;
    flex-direction: column;
}

.perk-title {
    font-weight: 700;
    color: white;
    font-size: var(--text-base);
}

.perk-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.careers-actions {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn--gradient {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: var(--text-base);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    transition: all var(--transition-base);
}

.btn--gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

/* =========================================
   REWARDS PAGE STYLES
   ========================================= */

.rewards-page {
    padding-top: var(--header-height);
}

.rewards-hero {
    position: relative;
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.rewards-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rewards-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.rewards-hero__glow--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    top: -150px;
    left: -100px;
    animation: rewards-glow-float 10s ease-in-out infinite;
}

.rewards-hero__glow--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    bottom: -150px;
    right: -100px;
    animation: rewards-glow-float 12s ease-in-out infinite reverse;
}

@keyframes rewards-glow-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

.rewards-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.rewards-hero__content {
    color: white;
}

.rewards-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.rewards-hero__subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.rewards-hero__cta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Phone Mockup */
.rewards-hero__visual {
    display: flex;
    justify-content: center;
}

.rewards-phone-mockup {
    perspective: 1200px;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(135deg, #2c2c2e 0%, #1c1c1e 50%, #3a3a3c 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.6),
        0 30px 60px -20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: phone-float 6s ease-in-out infinite;
}

.phone-button {
    position: absolute;
    background: linear-gradient(180deg, #3a3a3c 0%, #2c2c2e 100%);
    border-radius: 3px;
}

.phone-button--volume-up {
    left: -3px;
    top: 120px;
    width: 3px;
    height: 35px;
}

.phone-button--volume-down {
    left: -3px;
    top: 165px;
    width: 3px;
    height: 35px;
}

.phone-button--power {
    right: -3px;
    top: 150px;
    width: 3px;
    height: 50px;
}

.phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

@keyframes phone-float {

    0%,
    100% {
        transform: translateY(0) rotateY(-3deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-15px) rotateY(3deg) rotateX(-2deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 42px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-md);
}

.status-time {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 12px;
}

.phone-app-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header__left {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.app-logo {
    font-size: 24px;
}

.app-title {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 700;
    color: white;
}

.app-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.app-points-card {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    text-align: center;
}

.points-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.points-card__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.points-card__badge {
    font-size: 11px;
    padding: 2px 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    color: #ffd700;
}

.points-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #C41E3A 0%, #D4AF37 50%, #C41E3A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    display: block;
    line-height: 1.2;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.points-card__subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-xs);
}

.app-progress-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-sm);
}

.progress-target {
    color: #C41E3A;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C41E3A 0%, #D4AF37 100%);
    border-radius: var(--radius-full);
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.app-actions {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding-top: var(--space-md);
}

.app-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.app-action:hover {
    background: rgba(196, 30, 58, 0.2);
}

.action-icon {
    font-size: 20px;
}

.action-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.phone-home-indicator {
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin: var(--space-md) auto 0;
}

/* Rewards Section */
.rewards-section {
    padding: var(--space-5xl) 0;
}

.rewards-section--alt {
    background: var(--color-bg-alt);
}

.rewards-section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

/* Benefits Grid */
.rewards-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.rewards-benefit {
    text-align: center;
    padding: var(--space-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.rewards-benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.2);
}

.rewards-benefit__icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    display: inline-block;
    transition: transform 0.3s ease;
}

.rewards-benefit:hover .rewards-benefit__icon {
    transform: scale(1.2);
}

.rewards-benefit__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.rewards-benefit__text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Steps */
.rewards-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

.rewards-step {
    text-align: center;
    max-width: 280px;
}

.rewards-step__number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.rewards-step__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.rewards-step__text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.rewards-step__connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin-top: 30px;
    flex-shrink: 0;
}

/* Rewards Chart */
.rewards-chart {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.rewards-chart__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-secondary);
}

.rewards-chart__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.chart-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.chart-item:hover {
    background: rgba(196, 30, 58, 0.1);
}

.chart-item--featured {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.chart-item__points {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.chart-item__reward {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* FAQ */
.rewards-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.faq-item__answer {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Rewards CTA */
.rewards-cta {
    padding: var(--space-4xl) 0;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f6 100%);
}

.rewards-cta__title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.rewards-cta__text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

/* Story/About Responsive */
@media (max-width: 900px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .story-content--reverse {
        direction: ltr;
    }

    .progress-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .wok-features {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .careers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .careers-visual {
        order: -1;
    }

    .careers-perks {
        grid-template-columns: 1fr;
    }
}

/* Rewards Responsive */
@media (max-width: 900px) {
    .rewards-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rewards-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .rewards-hero__cta {
        justify-content: center;
    }

    .rewards-hero__visual {
        order: -1;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

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

    .rewards-steps {
        flex-direction: column;
        align-items: center;
    }

    .rewards-step__connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

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

@media (max-width: 600px) {
    .rewards-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rewards-chart__items {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FRANCHISE PAGE STYLES
   ========================================= */

.franchise-page {
    padding-top: var(--header-height);
}

.franchise-hero {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--color-secondary);
    color: white;
    text-align: center;
    overflow: hidden;
}

.franchise-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.2) 0%, transparent 60%);
}

.franchise-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    position: relative;
}

.franchise-hero__subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    position: relative;
}

/* ----- Franchise Sections ----- */
.franchise-section {
    padding: var(--space-5xl) 0;
}

.franchise-section--alt {
    background: var(--color-bg-alt);
}

.franchise-section--dark {
    background: var(--color-secondary);
    color: white;
}

.franchise-section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.franchise-section__header .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ----- Stats Grid ----- */
.franchise-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    padding: var(--space-2xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.stat-card__label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* ----- Benefits Grid ----- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    position: relative;
    padding: var(--space-xl) var(--space-xl) var(--space-xl) calc(var(--space-xl) + 60px);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--color-border);
    overflow: hidden;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.benefit-card:nth-child(1) {
    animation-delay: 0s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.benefit-card__number {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: white;
    background: var(--gradient-fire);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-card__number {
    width: 60px;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px -15px rgba(196, 30, 58, 0.3),
        0 10px 20px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.benefit-card__icon {
    font-size: 32px;
    margin-bottom: var(--space-sm);
    display: inline-block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card__icon {
    transform: scale(1.2) rotate(-5deg);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card__title {
    color: var(--color-primary);
}

.benefit-card__text {
    color: var(--color-text-secondary);
    line-height: 1.5;
    font-size: var(--text-sm);
}

/* ----- Investment Grid ----- */
.investment-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
}

.investment-card {
    padding: var(--space-2xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.investment-card--featured {
    background: var(--gradient-fire);
    color: white;
}

.investment-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.investment-card__range {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.investment-card__note {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.investment-card__list {
    list-style: none;
}

.investment-card__list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-card__list li:last-child {
    border-bottom: none;
}

.investment-card__fees li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.investment-card__fees li:last-child {
    border-bottom: none;
}

.fee-label {
    flex: 1;
    color: var(--color-text-secondary);
}

.fee-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
}

.fee-note {
    width: 100%;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.investment-card__requirements li {
    padding: var(--space-sm) 0;
    color: var(--color-text-secondary);
}

/* ----- Process Timeline ----- */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item__step {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-fire);
    color: white;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.timeline-item__content {
    padding-top: var(--space-md);
}

.timeline-item__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.timeline-item__text {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ----- Franchise Form ----- */
.franchise-form {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    min-width: 0;
}

.form-group--full {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 48px;
}

.form-select option {
    background: var(--color-secondary);
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.checkbox-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.form-actions {
    margin-top: var(--space-2xl);
    text-align: center;
}

.form-disclaimer {
    margin-top: var(--space-xl);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.5;
}

/* ----- Franchise Contact ----- */
.franchise-contact {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    text-align: center;
}

.franchise-contact__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.franchise-contact__text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.franchise-contact__info {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.contact-item:hover {
    color: var(--color-primary-dark);
}

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

/* ----- Franchise Responsive ----- */
@media (max-width: 1024px) {
    .franchise-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .franchise-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .franchise-form {
        padding: var(--space-xl);
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item__step {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }

    .franchise-contact__info {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .benefit-card {
        padding-left: calc(var(--space-lg) + 50px);
    }
}

@media (max-width: 480px) {
    .franchise-hero__title {
        font-size: var(--text-3xl);
    }

    .stat-card__number {
        font-size: var(--text-3xl);
    }

    .investment-card__range {
        font-size: var(--text-2xl);
    }
}