/* ═══════════════════════════════════════════════════════════════
   CateringKu — Clay-inspired "Artisanal Kitchen Playground"
   
   Based on: Clay.com design system (warm cream, swatch palette,
   playful hover animations, mixed dashed/solid borders,
   generous radius, multi-layer shadow)
   
   Adapted: Swatch names = food flavors (Matcha, Lemon, Ube,
   Pomegranate, Slushie) — this is literally a food brand.
   
   Font: DM Sans (Roobert substitute) with aggressive negative
   letter-spacing on display type.
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    /* Clay Swatch Palette */
    --matcha-300: #84e7a5;
    --matcha-600: #078a52;
    --matcha-800: #02492a;

    --slushie-500: #3bd3fd;
    --slushie-800: #0089ad;

    --lemon-400: #f8cc65;
    --lemon-500: #fbbd41;
    --lemon-700: #d08a11;

    --ube-300: #c1b0ff;
    --ube-800: #43089f;

    --pom-400: #fc7981;
    --pom-700: #d44049;

    /* Clay Neutrals */
    --cream: #faf9f7;
    --white: #ffffff;
    --black: #000000;
    --silver: #9f9b93;
    --charcoal: #55534e;
    --dark-charcoal: #333333;
    --oat: #dad4c8;
    --oat-light: #eee9df;

    /* Typography */
    --ff: 'DM Sans', system-ui, -apple-system, sans-serif;

    /* Clay Shadow — signature multi-layer with inset highlight */
    --shadow: rgba(0,0,0,0.1) 0px 1px 1px, rgba(0,0,0,0.04) 0px -1px 1px inset, rgba(0,0,0,0.05) 0px -0.5px 1px;
    --shadow-lg: rgba(0,0,0,0.12) 0px 4px 12px, rgba(0,0,0,0.04) 0px -1px 2px inset;
    /* Clay Hard Shadow — hover signature */
    --hard: rgb(0,0,0) -7px 7px;

    /* Ease */
    --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--ff);
    color: var(--black);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ── LABEL BADGE ── */
.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.08px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.label--matcha { background: var(--matcha-300); color: var(--matcha-800); }
.label--ube { background: var(--ube-300); color: var(--ube-800); }
.label--white { background: rgba(255,255,255,0.18); color: #fff; backdrop-filter: blur(8px); }
.label--dark { background: rgba(0,0,0,0.08); color: var(--black); }
.label--pom { background: var(--pom-400); color: #fff; }

/* ── BUTTONS — Clay signature hover ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--ff);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    position: relative;
    white-space: nowrap;
}

.btn--solid {
    background: var(--black);
    color: var(--white);
    box-shadow: var(--shadow);
}
.btn--solid:hover {
    background: var(--charcoal);
    transform: rotateZ(-8deg) translateY(-80%);
    box-shadow: var(--hard);
}

.btn--ghost {
    background: transparent;
    color: var(--black);
    border: 1px solid #717989;
    padding: 10px 24px;
    border-radius: 4px;
}
.btn--ghost:hover {
    background: var(--pom-400);
    color: #fff;
    border-color: var(--pom-400);
    transform: rotateZ(-8deg) translateY(-80%);
    box-shadow: var(--hard);
}

.btn--white {
    background: #fff;
    color: var(--black);
    box-shadow: var(--shadow-lg);
    padding: 14px 36px;
    font-size: 15px;
}
.btn--white:hover {
    background: var(--lemon-500);
    transform: rotateZ(-8deg) translateY(-80%);
    box-shadow: var(--hard);
}

.btn--lg { padding: 14px 36px; font-size: 15px; }
.btn--sm { padding: 8px 20px; font-size: 13px; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 1px solid var(--oat);
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled {
    backdrop-filter: blur(20px);
    background: rgba(250, 249, 247, 0.92);
}

.nav__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    z-index: 10;
}

.logo-dot {
    width: 12px; height: 12px;
    border-radius: 3px;
    background: var(--matcha-600);
    display: inline-block;
    transform: rotate(45deg);
}

.nav__links {
    display: flex;
    gap: 4px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav__link:hover {
    background: var(--oat-light);
    color: var(--black);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.nav__burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    gap: 60px;
}

.hero__title {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 20px;
    color: var(--black);
}

.hero__sub {
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 36px;
}

.hero__stats div {
    display: flex;
    flex-direction: column;
}

.hero__stats strong {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1;
}

.hero__stats span {
    font-size: 12px;
    color: var(--silver);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ── Hero Right — Floating Food Cards ── */
.hero__right {
    position: relative;
    min-height: 460px;
}

.float-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--oat);
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease-out);
    cursor: default;
}

.float-card:hover {
    transform: rotateZ(-8deg) translateY(-16px) !important;
    box-shadow: var(--hard);
}

.fc--1 {
    top: 20px; right: 0;
    max-width: 320px;
    animation: floatA 6s ease-in-out infinite;
}

.fc--2 {
    top: 160px; left: 0;
    max-width: 300px;
    border-style: dashed;
    animation: floatB 5.5s ease-in-out infinite;
}

.fc--3 {
    bottom: 40px; right: 20px;
    max-width: 290px;
    animation: floatC 7s ease-in-out infinite;
}

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-14px) rotate(1deg)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.fc__emoji {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.float-card span {
    font-size: 12px;
    color: var(--silver);
}

/* ═══════════════════════════════════════════
   SECTIONS — COMMON
   ═══════════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.section__title--left {
    text-align: left;
}

.section__desc {
    font-size: 16px;
    color: var(--charcoal);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ── Matcha Section ── */
.section--matcha {
    background: var(--matcha-800);
    color: #fff;
}

.section--matcha .section__title { color: #fff; }
.section--matcha .section__desc { color: var(--matcha-300); }

/* ── Slushie Section ── */
.section--slushie {
    background: var(--slushie-800);
    color: #fff;
}

.section--slushie .section__title { color: #fff; }
.section--slushie .section__desc { color: rgba(59, 211, 253, 0.6); }

/* ── Lemon Section ── */
.section--lemon {
    background: var(--lemon-500);
    color: var(--black);
}

.section--lemon .section__title { color: var(--black); }

/* ── Pomegranate Section ── */
.section--pom {
    background: var(--pom-400);
    color: #fff;
}

/* ── Cream Section ── */
.section--cream {
    background: var(--cream);
}

/* ═══════════════════════════════════════════
   PACKAGES (inside matcha)
   ═══════════════════════════════════════════ */
.pkgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pkg {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid var(--oat);
    box-shadow: var(--shadow);
    transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.pkg:hover {
    transform: rotateZ(-4deg) translateY(-8px);
    box-shadow: var(--hard);
}

.pkg--featured {
    background: var(--lemon-500);
    border-color: var(--lemon-700);
    transform: scale(1.04);
    z-index: 2;
}

.pkg--featured:hover {
    transform: scale(1.04) rotateZ(-4deg) translateY(-8px);
}

.pkg__ribbon {
    position: absolute;
    top: 18px; right: -30px;
    background: var(--pom-400);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pkg__head { margin-bottom: 20px; }
.pkg__emoji { font-size: 2rem; display: block; margin-bottom: 12px; }
.pkg__head h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 4px; }
.pkg__tag { font-size: 12px; color: var(--silver); line-height: 1.5; }
.pkg--featured .pkg__tag { color: rgba(0,0,0,0.5); }

.pkg__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--oat);
}

.pkg__num {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--black);
}

.pkg--featured .pkg__num { color: var(--black); }

.pkg__rb {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}

.pkg__per {
    font-size: 13px;
    color: var(--silver);
    margin-left: 2px;
}

.pkg__list {
    list-style: none;
    margin-bottom: 24px;
}

.pkg__list li {
    font-size: 14px;
    padding: 5px 0;
    padding-left: 24px;
    position: relative;
    color: var(--charcoal);
}

.pkg__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--matcha-300);
    transform: translateY(-50%);
}

.pkg__list li::after {
    content: '✓';
    position: absolute;
    left: 3px; top: 50%;
    font-size: 7px;
    color: var(--matcha-800);
    font-weight: 700;
    transform: translateY(-50%);
}

.pkg--featured .pkg__list li::before { background: rgba(255,255,255,0.4); }
.pkg--featured .pkg__list li::after { color: var(--black); }
.pkg--featured .pkg__list li { color: rgba(0,0,0,0.7); }

.pkg__note {
    font-size: 11px !important;
    color: var(--silver) !important;
    font-style: italic;
    margin-top: 8px;
}

.pkg .btn { width: 100%; }

/* ═══════════════════════════════════════════
   WEEKLY MENU
   ═══════════════════════════════════════════ */
.section__header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.menu__tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tab {
    font-family: var(--ff);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid var(--oat);
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.tab:hover {
    border-color: var(--ube-800);
    color: var(--ube-800);
    transform: translateY(-2px);
}

.tab.active {
    background: var(--ube-800);
    color: #fff;
    border-color: var(--ube-800);
}

.menu__panels { position: relative; min-height: 340px; }

.mpanel {
    display: none;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    animation: panelIn 0.45s var(--ease-out);
}

.mpanel.active { display: grid; }

@keyframes panelIn {
    from { opacity: 0; transform: translateY(20px) rotateZ(-2deg); }
    to   { opacity: 1; transform: translateY(0) rotateZ(0); }
}

.mpanel__art {
    background: var(--black);
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mpanel__art span:first-child {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 12px;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.06); }
}

.mpanel__label {
    font-size: 15px;
    font-weight: 600;
    color: var(--matcha-300);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mpanel__dishes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-content: start;
}

.dish {
    background: var(--white);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--oat);
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.3s var(--ease-out);
}

.dish:hover {
    transform: rotateZ(-5deg) translateY(-4px);
    box-shadow: var(--hard);
}

.dish__e {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dish strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2px;
}

.dish span {
    font-size: 12px;
    color: var(--silver);
}

/* ═══════════════════════════════════════════
   GALLERY (inside slushie)
   ═══════════════════════════════════════════ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gcard {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.5s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcard span {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
    transition: transform 0.4s var(--ease);
}

.gcard:hover {
    transform: rotateZ(-3deg) scale(1.04);
    box-shadow: rgba(0,0,0,0.4) -7px 7px;
}

.gcard:hover span { transform: scale(1.15) rotate(-5deg); }

.gcard--tall { grid-row: span 2; }

.gcard:nth-child(1) { background: linear-gradient(135deg, rgba(0,137,173,0.3), rgba(59,211,253,0.15)); }
.gcard:nth-child(2) { background: linear-gradient(135deg, rgba(59,211,253,0.2), rgba(255,255,255,0.1)); }
.gcard:nth-child(3) { background: linear-gradient(135deg, rgba(0,73,42,0.3), rgba(132,231,165,0.15)); }
.gcard:nth-child(4) { background: linear-gradient(135deg, rgba(252,121,129,0.2), rgba(255,255,255,0.1)); }
.gcard:nth-child(5) { background: linear-gradient(135deg, rgba(251,189,65,0.25), rgba(248,204,101,0.1)); }
.gcard:nth-child(6) { background: linear-gradient(135deg, rgba(193,176,255,0.25), rgba(255,255,255,0.1)); }

.gcard__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.gcard:hover .gcard__info { transform: translateY(0); }

.gcard__info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.gcard__info span {
    font-size: 12px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   WHY US (inside lemon)
   ═══════════════════════════════════════════ */
.why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    transition: transform 0.5s var(--ease), box-shadow 0.3s;
}

.why:hover {
    transform: rotateZ(-4deg) translateY(-6px);
    box-shadow: var(--hard);
}

.why__num {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -3px;
    line-height: 1;
    color: rgba(0,0,0,0.04);
    margin-bottom: 12px;
}

.why h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.why p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS (cream)
   ═══════════════════════════════════════════ */
.testi__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--oat);
    box-shadow: var(--shadow);
    transition: transform 0.5s var(--ease), box-shadow 0.3s;
}

.testi:hover {
    transform: rotateZ(-3deg) translateY(-6px);
    box-shadow: var(--hard);
}

.testi__stars {
    color: var(--lemon-500);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}

.testi__who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi__av {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pom-400), var(--ube-300));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi__who strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.testi__who span {
    font-size: 12px;
    color: var(--silver);
}

/* ═══════════════════════════════════════════
   CTA (pomegranate)
   ═══════════════════════════════════════════ */
.cta__inner {
    text-align: center;
    max-width: 600px;
}

.cta__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
}

.cta__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin-bottom: 32px;
}

.cta__divider {
    width: 1px; height: 60px;
    background: rgba(255,255,255,0.2);
    margin: 32px auto;
}

.cta__contact p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 4px 0;
}

/* ═══════════════════════════════════════════
   FOOTER (ube dark)
   ═══════════════════════════════════════════ */
.foot {
    background: var(--ube-800);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 0;
}

.foot__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.foot__top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.foot__brand { max-width: 300px; }

.foot__brand .nav__logo {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    display: inline-flex;
}

.foot__brand .logo-dot { background: var(--matcha-300); }

.foot__brand p {
    font-size: 14px;
    line-height: 1.7;
}

.foot__links {
    display: flex;
    gap: 60px;
}

.foot__col h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.08px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.foot__col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    padding: 4px 0;
    transition: color 0.2s;
}

.foot__col a:hover { color: var(--matcha-300); }

.foot__dashed {
    border: none;
    border-top: 1px dashed rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.foot__bottom {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    font-size: 12px;
}

.foot__bottom span:last-child {
    color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
        padding-top: 100px;
    }
    .hero__sub { margin: 0 auto 32px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__right { display: none; }

    .pkgs { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pkg--featured { transform: none; }
    .pkg--featured:hover { transform: rotateZ(-4deg) translateY(-8px); }

    .section__header-row { flex-direction: column; align-items: flex-start; }

    .mpanel { grid-template-columns: 1fr; }
    .mpanel__art { max-width: 260px; margin: 0 auto; }
    .mpanel__dishes { grid-template-columns: 1fr; }

    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gcard--tall { grid-row: span 1; }

    .why__grid { grid-template-columns: 1fr; }
    .testi__grid { grid-template-columns: 1fr; }

    .foot__top { flex-direction: column; }
    .foot__links { gap: 32px; }
}

@media (max-width: 768px) {
    .nav__links, .nav .btn { display: none; }
    .nav__burger { display: flex; }

    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--oat);
        padding: 12px 24px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }

    .hero__title { letter-spacing: -1.5px; }
    .hero__stats { gap: 24px; }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .foot__links { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2.4rem; }
    .btn--lg { padding: 12px 24px; font-size: 14px; }
    .pkg { padding: 28px 22px; }
    .tab { padding: 6px 14px; font-size: 12px; }
}
