/* ========================================
   Just Couscous & Co — Design System
   ======================================== */

:root {
    /* Colors — warm Moroccan palette */
    --c-gold:       #B8792E;
    --c-gold-light: #D8A15A;
    --c-gold-dark:  #8C571F;
    --c-action:     #8C571F;
    --c-action-hover: #704015;
    --c-focus:      #1769C2;
    --c-terracotta: #A24B31;
    --c-cream:      #FBF4E8;
    --c-cream-dark: #EFE1CD;
    --c-page:       #FFFDF9;
    --c-dark:       #221B15;
    --c-dark-soft:  #332920;
    --c-text:       #342D25;
    --c-text-light: #6F6255;
    --c-white:      #FFFFFF;
    --c-border:     #E8DFD0;

    /* Typography */
    --f-display: Georgia, 'Times New Roman', serif;
    --f-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

    /* Radius */
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 8px;
    --r-full: 50px;

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-med:  0.35s ease;
    --t-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 24, 20, 0.06);
    --shadow-md: 0 8px 24px rgba(40, 32, 24, 0.08);
    --shadow-lg: 0 18px 36px rgba(40, 32, 24, 0.12);
    --shadow-gold: 0 8px 18px rgba(184, 121, 46, 0.22);
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-page);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

:where(a, button):focus-visible {
    outline: 3px solid var(--c-focus);
    outline-offset: 3px;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--t-med), box-shadow var(--t-med);
}

.nav--scrolled {
    background: rgba(255, 253, 249, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-white);
    display: flex;
    align-items: center;
    gap: var(--s-sm);
    transition: color var(--t-fast);
}

.nav--scrolled .nav__logo { color: var(--c-dark); }

.nav__logo span { color: var(--c-gold-light); }
.nav--scrolled .nav__logo span { color: var(--c-action); }

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

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: var(--s-xs) 0;
    transition: color var(--t-fast);
}

.nav--scrolled .nav__link { color: var(--c-text); }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-gold);
    transition: width var(--t-med);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--c-white); }
.nav--scrolled .nav__link:hover { color: var(--c-action); }

.nav__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-gold-light) !important;
    border: 1.5px solid var(--c-gold-light);
    padding: 8px 20px;
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.nav--scrolled .nav__cta {
    color: var(--c-action) !important;
    border-color: var(--c-action);
}

.nav__cta:hover {
    background: var(--c-action);
    border-color: var(--c-action);
    color: var(--c-white) !important;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: all var(--t-fast);
}

.nav--scrolled .nav__toggle span { background: var(--c-dark); }

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-sm);
    padding: 14px 32px;
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    min-height: 48px;
}

.btn--primary {
    background: var(--c-action);
    color: var(--c-white);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--c-action-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(200, 146, 60, 0.35);
}

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

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

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background-image: url('assets/hero-couscous.webp');
    background-size: cover;
    background-position: center;
    background-color: var(--c-dark);
    padding: 9rem var(--s-lg) 5rem;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(25, 19, 14, 0.93) 0%, rgba(25, 19, 14, 0.82) 40%, rgba(25, 19, 14, 0.18) 76%, rgba(25, 19, 14, 0.06) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold-light);
    margin-bottom: var(--s-lg);
    padding: 0;
}

.hero__title {
    font-family: var(--f-display);
    font-size: clamp(2.7rem, 6vw, 5.3rem);
    font-weight: 700;
    line-height: 1.02;
    color: var(--c-white);
    margin-bottom: var(--s-lg);
    max-width: 760px;
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: var(--s-xl);
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: var(--s-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: var(--s-xl);
}

.hero__service-line {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__service-line span::before {
    content: '·';
    color: var(--c-gold-light);
    margin: 0 0.7rem;
}

.hero__note {
    margin-top: var(--s-md);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

/* ========================================
   Section Headers
   ======================================== */

.section-header {
    text-align: left;
    margin-bottom: var(--s-3xl);
}

.section-header__tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-action);
    margin-bottom: var(--s-sm);
}

.section-header__title {
    font-family: var(--f-display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: var(--s-md);
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--c-text-light);
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   Concept Section
   ======================================== */

.concept {
    padding: var(--s-4xl) 0;
    background: var(--c-cream);
}

.concept__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-xl);
}

.concept__card {
    background: transparent;
    padding: var(--s-lg) 0 var(--s-xl);
    border-radius: var(--r-md);
    text-align: left;
    transition: transform var(--t-med), box-shadow var(--t-med);
    border-top: 1px solid var(--c-border);
    border-bottom: 0;
}

.concept__card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.concept__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: var(--s-md);
}

.concept__card--lead {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.65fr 1fr 1.35fr;
    gap: var(--s-xl);
    align-items: start;
    padding: var(--s-2xl);
    background: var(--c-dark);
    border: 0;
    color: var(--c-cream);
}

.concept__card--lead .concept__eyebrow { color: var(--c-gold-light); }
.concept__card--lead h3 { color: var(--c-page); font-size: 1.7rem; }
.concept__card--lead p:last-child { color: rgba(255, 255, 255, 0.7); }

.concept__card h3 {
    font-family: var(--f-display);
    font-size: 1.35rem;
    color: var(--c-dark);
    margin-bottom: var(--s-md);
}

.concept__card p {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.7;
}

/* ========================================
   Menu Section
   ======================================== */

.menu {
    padding: var(--s-4xl) 0;
    background: var(--c-page);
}

.menu__tabs {
    display: flex;
    justify-content: flex-start;
    gap: var(--s-sm);
    margin-bottom: var(--s-2xl);
    flex-wrap: wrap;
}

.menu__tab {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--r-sm);
    background: var(--c-white);
    color: var(--c-text-light);
    cursor: pointer;
    min-height: 44px;
    transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}

.menu__tab:hover {
    border-color: var(--c-action);
    color: var(--c-action);
}

.menu__tab--active {
    background: var(--c-action);
    border-color: var(--c-action);
    color: var(--c-white);
}

.menu__panel { display: none; }
.menu__panel--active { display: block; }
.menu__panel:focus-visible { outline: none; }

.menu__category { margin-bottom: var(--s-2xl); }

.menu__category-title {
    font-family: var(--f-display);
    font-size: 1.4rem;
    color: var(--c-dark);
    margin-bottom: var(--s-lg);
    padding-bottom: var(--s-sm);
    border-bottom: 1px solid var(--c-cream-dark);
}

.menu__items {
    display: grid;
    gap: 2px;
}

.menu__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--s-lg);
    padding: var(--s-lg);
    border-radius: 0;
    border-bottom: 1px solid rgba(232, 223, 208, 0.78);
    transition: background var(--t-fast);
}

.menu__item:hover { background: var(--c-cream); }

.menu__item--featured {
    background: rgba(184, 121, 46, 0.06);
    border: 1px solid rgba(200, 146, 60, 0.15);
    border-radius: var(--r-md);
}

.menu__item--featured:hover {
    background: rgba(184, 121, 46, 0.1);
}

.menu__item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-dark);
    margin-bottom: 4px;
}

.menu__item-info p {
    font-size: 0.88rem;
    color: var(--c-text-light);
}

.menu__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: var(--r-sm);
    background: var(--c-action);
    color: var(--c-white);
    vertical-align: middle;
    margin-left: 6px;
}

.menu__price {
    font-family: var(--f-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-gold-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   Traiteur Section
   ======================================== */

.traiteur {
    padding: var(--s-4xl) 0;
    background: var(--c-dark);
    color: var(--c-white);
}

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

.traiteur__content .section-header__tag {
    text-align: left;
    color: var(--c-gold-light);
}

.traiteur__title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--s-lg);
    line-height: 1.2;
}

.traiteur__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--s-xl);
}

.traiteur__list {
    margin-bottom: var(--s-2xl);
}

.traiteur__list li {
    padding: var(--s-sm) 0;
    padding-left: var(--s-xl);
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.traiteur__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-gold);
}

.traiteur__visual {
    display: grid;
    gap: var(--s-lg);
}

.traiteur__card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--s-2xl);
    border-radius: var(--r-md);
    transition: border-color var(--t-med);
}

.traiteur__card:hover {
    border-color: rgba(200, 146, 60, 0.3);
}

.traiteur__card h3 {
    font-family: var(--f-display);
    font-size: 1.2rem;
    margin-bottom: var(--s-sm);
}

.traiteur__card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--s-4xl) 0;
    background: var(--c-cream);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-2xl);
    align-items: start;
}

.contact__info {
    display: grid;
    gap: var(--s-lg);
}

.contact__card {
    background: var(--c-page);
    padding: var(--s-xl);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
}

.contact__card h3 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--c-dark);
    margin-bottom: var(--s-sm);
}

.contact__card p {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.7;
}

.contact__card address {
    font-size: 0.95rem;
    font-style: normal;
    color: var(--c-text-light);
    line-height: 1.7;
}

.contact__card a {
    color: var(--c-gold-dark);
    font-weight: 500;
}

.contact__card a:hover { color: var(--c-action-hover); }

.contact__closed {
    margin-top: var(--s-xs);
    color: var(--c-terracotta) !important;
    font-weight: 500;
    font-size: 0.85rem !important;
}

.contact__social {
    display: flex;
    gap: var(--s-md);
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-page);
    border: 1px solid var(--c-border);
    color: var(--c-text-light);
    transition: all var(--t-fast);
}

.contact__social-link:hover {
    background: var(--c-action);
    border-color: var(--c-action);
    color: var(--c-white);
}

.contact__map {
    border-radius: var(--r-md);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

.contact__map-link {
    width: 100%;
    height: 100%;
    min-height: 400px;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--c-white);
    background:
        linear-gradient(rgba(34, 27, 21, 0.72), rgba(34, 27, 21, 0.9)),
        url('assets/hero-couscous.webp') center 58% / cover;
    transition: filter var(--t-fast);
}

.contact__map-link:hover { filter: brightness(1.08); }

.contact__map-kicker {
    margin-bottom: var(--s-md);
    color: var(--c-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact__map-link strong {
    font-family: var(--f-display);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.contact__map-action {
    margin-top: var(--s-xl);
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   Legal pages
   ======================================== */

.legal-page { background: var(--c-page); }

.legal-header {
    background: var(--c-dark);
    color: var(--c-white);
}

.legal-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-lg);
}

.legal-header .nav__logo { color: var(--c-white); }

.legal-back {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-back:hover { color: var(--c-gold-light); }

.legal-main {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.legal-heading {
    max-width: 780px;
    margin-bottom: var(--s-2xl);
}

.legal-kicker {
    margin-bottom: var(--s-sm);
    color: var(--c-action);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-heading h1 {
    color: var(--c-dark);
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 1.08;
}

.legal-updated {
    margin-top: var(--s-md);
    color: var(--c-text-light);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 820px;
}

.legal-content section {
    padding: var(--s-xl) 0;
    border-top: 1px solid var(--c-border);
}

.legal-content h2 {
    margin-bottom: var(--s-md);
    color: var(--c-dark);
    font-family: var(--f-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.25;
}

.legal-content h3 {
    margin: var(--s-lg) 0 var(--s-xs);
    color: var(--c-dark);
    font-size: 1rem;
}

.legal-content p,
.legal-content li {
    color: var(--c-text-light);
    line-height: 1.75;
}

.legal-content p + p { margin-top: var(--s-md); }

.legal-content ul {
    margin-top: var(--s-md);
    padding-left: 1.2rem;
    list-style: disc;
}

.legal-content li + li { margin-top: var(--s-sm); }

.legal-content a {
    color: var(--c-action);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-content address { font-style: normal; }

.legal-footer {
    padding: var(--s-xl) 0;
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
}

.legal-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-lg);
}

.legal-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-lg);
}

.legal-footer a:hover { color: var(--c-gold-light); }

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--s-3xl) 0 var(--s-xl);
    background: var(--c-dark);
    color: rgba(255, 255, 255, 0.6);
}

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

.footer__brand .nav__logo { color: var(--c-white); }

.footer__brand p {
    margin-top: var(--s-md);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-white);
    margin-bottom: var(--s-lg);
}

.footer__links li { margin-bottom: var(--s-sm); }

.footer__links a {
    font-size: 0.9rem;
    transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--c-gold); }

.footer__bottom {
    padding-top: var(--s-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    text-align: center;
}

/* ========================================
   Scroll Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in { opacity: 1; transform: none; }
}

/* ========================================
   Mobile — Tablet (< 1024px)
   ======================================== */

@media (max-width: 1024px) {
    .traiteur__grid {
        grid-template-columns: 1fr;
        gap: var(--s-2xl);
    }

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

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

/* ========================================
   Mobile (< 768px)
   ======================================== */

@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px var(--s-xl) var(--s-xl);
        background: var(--c-page);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right var(--t-med);
    }

    .nav__menu--open { right: 0; }

    .nav__link {
        color: var(--c-text) !important;
        font-size: 1.1rem;
        padding: var(--s-md) 0;
        width: 100%;
        border-bottom: 1px solid var(--c-border);
    }

    .nav__cta {
        margin-top: var(--s-lg);
        width: 100%;
        text-align: center;
    }

    /* Toggle animation */
    .nav__toggle--open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle--open span:nth-child(2) { opacity: 0; }
    .nav__toggle--open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 700px;
        padding: 7rem var(--s-md) 4rem;
        background-position: 64% center;
    }
    .hero__overlay {
        background: linear-gradient(90deg, rgba(25, 19, 14, 0.94) 0%, rgba(25, 19, 14, 0.83) 55%, rgba(25, 19, 14, 0.38) 100%);
    }
    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

    .concept__grid { grid-template-columns: 1fr; }
    .concept__card { padding: var(--s-xl) 0; }
    .concept__card--lead {
        grid-column: auto;
        display: block;
        padding: var(--s-xl);
    }

    .menu__tabs {
        gap: var(--s-xs);
        padding: 0 var(--s-sm);
    }
    .menu__tab {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .menu__item {
        flex-direction: column;
        gap: var(--s-sm);
    }

    .menu__price {
        align-self: flex-start;
    }

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

    .legal-header__inner,
    .legal-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-header__inner { padding-top: var(--s-md); padding-bottom: var(--s-md); }
}

/* ========================================
   Small Mobile (< 480px)
   ======================================== */

@media (max-width: 480px) {
    .hero { min-height: 680px; background-position: 67% center; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; max-width: 280px; }
    .hero__service-line { max-width: 280px; line-height: 1.9; }

    .menu__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: var(--s-sm);
    }
    .menu__tabs::-webkit-scrollbar { display: none; }
    .menu__tab { flex-shrink: 0; }
}
