/* ============================================
   6th and Cedar — Café & Bar
   Fresh & Airy · Terracotta + Sand
   ============================================ */

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

:root {
    /* Terracotta */
    --terracotta: #C4725A;
    --terracotta-light: #D4917D;
    --terracotta-dark: #A85A45;
    --terracotta-pale: #F2DDD5;

    /* Sand */
    --sand: #F5EDE3;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD0;
    --sand-warm: #EDE3D6;

    /* Neutrals */
    --cream: #FDF9F5;
    --warm-white: #FFFCF8;
    --text-dark: #3A2E28;
    --text-mid: #6B5649;
    --text-light: #9A8478;
    --text-faint: #C4B4A8;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

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

    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ---------- Utility ---------- */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-title--accent {
    font-style: italic;
    color: var(--terracotta);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--terracotta);
    color: #fff;
    border: 1.5px solid var(--terracotta);
}

.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 114, 90, 0.3);
}

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

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

.btn--full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 rgba(196, 114, 90, 0.08);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--sand-dark);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

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

.nav__link--cta:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: var(--terracotta-pale);
}

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

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 249, 245, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu__list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s var(--ease-out);
}

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

.mobile-menu__link--cta {
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    border: 1.5px solid var(--terracotta);
    border-radius: 100px;
    color: var(--terracotta);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 40%, var(--terracotta-pale) 100%);
    padding: 8rem var(--space-md) var(--space-lg);
}

.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 145, 125, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(245, 237, 227, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 560px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero__headline-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
}

.hero__headline-line--accent {
    color: var(--terracotta);
}

.hero__headline-line--script {
    font-style: italic;
    color: var(--terracotta-light);
}

.hero__sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: var(--space-lg);
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero Image Stack */
.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__image {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(58, 46, 40, 0.12);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

.hero__image--main {
    width: 360px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__image--floating {
    width: 260px;
    height: 180px;
    bottom: 100px;
    right: 50px;
    z-index: 3;
    border-radius: 12px;
    border: 4px solid var(--cream);
}

.hero__image--small {
    width: 160px;
    height: 160px;
    bottom: 0;
    left: 20px;
    z-index: 3;
    border-radius: 12px;
    border: 4px solid var(--cream);
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero__scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- Divider ---------- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 var(--space-md);
}

.divider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta-light);
    opacity: 0.5;
}

.divider__dot:nth-child(2) {
    width: 8px;
    height: 8px;
    opacity: 0.7;
}

.divider__dot:nth-child(3) {
    width: 6px;
    height: 6px;
    opacity: 0.5;
}

/* ---------- About ---------- */
.about {
    padding: var(--space-2xl) var(--space-md);
    background: var(--warm-white);
}

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

.about__image-side {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(58, 46, 40, 0.1);
}

.about__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

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

.about__text {
    margin-bottom: var(--space-lg);
}

.about__text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: var(--space-sm);
}

.about__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

.about__detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.about__detail-value {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
}

.about__detail-link {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--terracotta);
    transition: color 0.3s var(--ease-out);
}

.about__detail-link:hover {
    color: var(--terracotta-dark);
}

/* ---------- Menu ---------- */
.menu {
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
}

.menu__container {
    max-width: 900px;
    margin: 0 auto;
}

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

.menu__intro {
    font-size: 1.0625rem;
    color: var(--text-mid);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.menu__tab {
    padding: 0.625rem 1.75rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: 1.5px solid var(--sand-dark);
    transition: all 0.3s var(--ease-out);
}

.menu__tab:hover {
    color: var(--terracotta);
    border-color: var(--terracotta-light);
}

.menu__tab--active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #fff;
}

.menu__panel {
    display: none;
}

.menu__panel--active {
    display: block;
    animation: fadeUp 0.4s var(--ease-out);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.menu__item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--sand-dark);
    transition: background 0.3s var(--ease-out);
}

.menu__item:hover {
    background: rgba(245, 237, 227, 0.5);
}

.menu__item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu__item-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.menu__item-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-2xl) var(--space-md);
    background: var(--cream);
}

.gallery__container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}

.gallery__item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 46, 40, 0.08) 0%, transparent 40%);
    pointer-events: none;
    border-radius: 16px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--tall {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 6;
}

.gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) {
    grid-column: span 3;
}

/* ---------- Visit ---------- */
.visit {
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(135deg, var(--sand) 0%, var(--terracotta-pale) 100%);
}

.visit__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit__content {
    padding: var(--space-md) 0;
}

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

.visit__info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit__icon {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.visit__info-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.25rem;
}

.visit__info-value {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
}

.visit__info-link {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--terracotta);
    transition: color 0.3s var(--ease-out);
}

.visit__info-link:hover {
    color: var(--terracotta-dark);
}

/* Contact Form */
.visit__form-side {
    background: var(--warm-white);
    border-radius: 20px;
    padding: var(--space-lg);
    box-shadow: 0 16px 48px rgba(58, 46, 40, 0.06);
}

.visit__form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.form__group {
    margin-bottom: var(--space-sm);
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--sand-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--sand-light);
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-faint);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--terracotta);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196, 114, 90, 0.1);
}

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

.form__success {
    display: none;
    margin-top: var(--space-sm);
    padding: 1rem;
    border-radius: 12px;
    background: rgba(196, 114, 90, 0.08);
    color: var(--terracotta-dark);
    font-size: 0.9375rem;
    text-align: center;
}

.form__success.show {
    display: block;
    animation: fadeUp 0.4s var(--ease-out);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-md);
    align-items: start;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer__tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    text-align: center;
}

.footer__links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease-out);
}

.footer__links a:hover {
    color: var(--terracotta-light);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer__contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s var(--ease-out);
}

.footer__contact a:hover {
    color: var(--terracotta-light);
}

.footer__contact span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: var(--space-md);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image-stack {
        height: 450px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__image--main {
        width: 280px;
        height: 380px;
    }

    .hero__image--floating {
        width: 200px;
        height: 140px;
        right: 20px;
    }

    .hero__image--small {
        width: 130px;
        height: 130px;
    }

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

    .about__image-side {
        max-height: 400px;
    }

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

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

    .gallery__item--tall {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item:not(.gallery__item--tall):not(.gallery__item--wide) {
        grid-column: span 1;
        min-height: 220px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 7rem var(--space-sm) var(--space-lg);
    }

    .hero__image-stack {
        height: 360px;
    }

    .hero__image--main {
        width: 220px;
        height: 300px;
    }

    .hero__image--floating {
        width: 160px;
        height: 110px;
        right: 0;
        bottom: 80px;
    }

    .hero__image--small {
        width: 110px;
        height: 110px;
    }

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

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

    .gallery__item--tall,
    .gallery__item--wide {
        grid-column: span 1;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .footer__contact {
        text-align: center;
    }

    .visit__form-side {
        padding: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero__image-stack {
        height: 300px;
    }

    .hero__image--main {
        width: 180px;
        height: 250px;
    }

    .hero__image--floating {
        width: 130px;
        height: 90px;
    }

    .hero__image--small {
        width: 90px;
        height: 90px;
    }

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

    .btn {
        width: 100%;
        max-width: 240px;
    }

    .menu__tabs {
        flex-wrap: wrap;
    }
}
