/* ========================================
   Melvins Hamburgers and Hotdogs
   Bold Editorial Style
   ======================================== */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background-color: var(--slate-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(248, 250, 252, 0.95);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--slate-900);
    transition: var(--transition-fast);
}

.nav__logo:hover {
    color: var(--teal-700);
}

.nav__logo-icon {
    font-size: 1.5rem;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav__link--cta {
    background: var(--teal-700);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--teal-800);
    color: white;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    transition: var(--transition-base);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--slate-50);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: 8px;
    color: var(--slate-600);
    transition: var(--transition-fast);
}

.mobile-menu__close:hover {
    color: var(--teal-700);
    transform: rotate(90deg);
}

.mobile-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-800);
    transition: var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--teal-700);
}

.mobile-menu__link--cta {
    margin-top: var(--space-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    background: var(--teal-700);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    color: var(--slate-900);
}

.hero__headline-line {
    display: block;
}

.hero__headline-line--accent {
    color: var(--teal-700);
    font-style: italic;
}

.hero__headline-line--serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    color: var(--slate-500);
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__trust-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--slate-900);
}

.hero__trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.hero__trust-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-300);
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 600/750;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero__image-container:hover .hero__image {
    transform: scale(1.03);
}

.hero__image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero__image-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--teal-700);
    color: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(13, 148, 136, 0.3);
    max-width: 260px;
}

.hero__image-float-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.hero__image-float-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-700);
    color: white;
}

.btn--primary:hover {
    background: var(--teal-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--slate-700);
    border: 2px solid var(--slate-300);
}

.btn--ghost:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    transform: translateY(-2px);
}

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

.btn--white:hover {
    background: var(--teal-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.btn--ghost-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.divider__line {
    flex: 1;
    height: 1px;
    background: var(--slate-200);
}

.divider__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-400);
    white-space: nowrap;
}

.divider--reverse .divider__line:first-child {
    order: 2;
}

.divider--reverse .divider__text {
    order: 1;
}

.divider--reverse .divider__line:last-child {
    order: 3;
}

/* --- Section Shared --- */
.section__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: var(--space-sm);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.section__title-accent {
    font-style: italic;
    color: var(--teal-700);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
    max-width: 560px;
}

/* --- Menu --- */
.menu {
    padding: var(--space-4xl) 0;
    background: white;
}

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

.menu__header .section__subtitle {
    margin: 0 auto;
}

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

.menu__cat-btn {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--slate-200);
    transition: var(--transition-base);
    background: transparent;
}

.menu__cat-btn:hover {
    border-color: var(--teal-300);
    color: var(--teal-700);
}

.menu__cat-btn.active {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: white;
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.menu__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--space-md);
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--slate-100);
}

.menu__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    border-color: var(--teal-200);
}

.menu__item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.menu__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu__item:hover .menu__item-image img {
    transform: scale(1.08);
}

.menu__item-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.menu__item-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--slate-600);
}

.hidden {
    display: none !important;
}

/* --- About --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--slate-50);
}

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

.about__image-side {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 600/800;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

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

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--slate-50);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__divider {
    width: 64px;
    height: 3px;
    background: var(--teal-600);
    border-radius: 2px;
    margin-bottom: var(--space-lg);
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.about__value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--teal-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
}

.about__value-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.about__value-title {
    font-weight: 600;
    color: var(--slate-900);
    font-size: 1rem;
}

.about__value-desc {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* --- Location --- */
.location {
    padding: var(--space-4xl) 0;
    background: white;
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.location__divider {
    width: 64px;
    height: 3px;
    background: var(--teal-600);
    border-radius: 2px;
    margin-bottom: var(--space-lg);
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.location__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.location__detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-700);
}

.location__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 0.25rem;
}

.location__detail-value {
    font-size: 1rem;
    color: var(--slate-800);
    line-height: 1.6;
}

.location__detail-phone {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--teal-700);
    transition: var(--transition-fast);
}

.location__detail-phone:hover {
    color: var(--teal-600);
    text-decoration: underline;
}

.location__detail-hours {
    font-size: 0.9375rem;
    color: var(--slate-700);
    line-height: 1.7;
}

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

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1/1;
    min-height: 400px;
}

/* --- CTA --- */
.cta {
    padding: var(--space-4xl) 0;
    background: var(--teal-800);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta__content {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: var(--space-sm);
}

.cta__headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: var(--space-md);
}

.cta__sub {
    font-size: 1.125rem;
    color: var(--teal-200);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.footer__logo-icon {
    font-size: 1.5rem;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-500);
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-300);
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--slate-500);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal-400);
}

.footer__bottom {
    border-top: 1px solid var(--slate-800);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--slate-600);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: var(--space-2xl);
    }

    .about__image-secondary {
        right: -20px;
        bottom: -20px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

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

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-container {
        aspect-ratio: 4/3;
    }

    .hero__image-float {
        bottom: -16px;
        left: -8px;
        padding: var(--space-sm) var(--space-md);
    }

    .hero__scroll {
        display: none;
    }

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

    .menu__item {
        grid-template-columns: 120px 1fr;
    }

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

    .about__image-side {
        max-width: 500px;
        margin: 0 auto;
    }

    .about__image-secondary {
        right: -10px;
        bottom: -10px;
        width: 50%;
    }

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

    .location__map {
        aspect-ratio: 16/9;
        min-height: 300px;
    }

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

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

    .divider {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-lg) 0;
    }

    .divider__line {
        width: 100%;
        height: 1px;
    }

    .divider--reverse .divider__line:first-child,
    .divider--reverse .divider__text,
    .divider--reverse .divider__line:last-child {
        order: unset;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }

    .hero__trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .hero__trust-divider {
        display: none;
    }

    .menu__categories {
        gap: 0.5rem;
    }

    .menu__cat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

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

    .menu__item-image {
        aspect-ratio: 16/9;
    }

    .location__actions {
        flex-direction: column;
    }

    .location__actions .btn {
        justify-content: center;
        width: 100%;
    }

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

    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
