/* ============================================================
   SUSHI ZEN — Modern Asian Sushi & Ramen Template
   Prefix: .sz-*
   Palette:
     --sz-black     #0a0e16  (pitch black)
     --sz-navy      #13234a  (dark navy)
     --sz-orange    #f37121  (bright orange)
     --sz-cream     #f5ead8  (warm cream)
     --sz-white     #fffaf3  (soft white)
     --sz-gold      #bea177
   Fonts: Manrope (sans), Bebas Neue (display)
   Responsive breakpoint: 800px
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&display=swap');

:root {
    --sz-black:  #0a0e16;
    --sz-navy:   #13234a;
    --sz-orange: #f37121;
    --sz-cream:  #f5ead8;
    --sz-white:  #fffaf3;
    --sz-gold:   #bea177;

    --sz-text-on-dark:  #f5ead8;
    --sz-text-on-light: #0a0e16;
    --sz-muted-on-dark:  rgba(245, 234, 216, 0.65);
    --sz-muted-on-light: rgba(10, 14, 22, 0.62);

    --sz-radius:    18px;
    --sz-radius-lg: 28px;

    --sz-font-sans:    'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --sz-font-display: 'Bebas Neue', 'Manrope', sans-serif;
    --sz-font-italic:  'Cormorant Garamond', Georgia, serif;

    --sz-shadow:     0 18px 40px -22px rgba(10, 14, 22, 0.55);
    --sz-shadow-lg:  0 36px 60px -28px rgba(10, 14, 22, 0.7);
}

/* ---- Reset / base --------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body,
.sz-body {
    margin: 0;
    padding: 0;
    background: var(--sz-black);
    color: var(--sz-text-on-dark);
    font-family: var(--sz-font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

button { font-family: inherit; cursor: pointer; }

[x-cloak] { display: none !important; }

/* ---- Preview banner ------------------------------------- */
.preview-banner {
    background: var(--sz-orange);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    padding: 10px 16px;
}

/* ---- Shared layout -------------------------------------- */
.sz-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sz-font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sz-orange);
}

.sz-eyebrow--dark { color: var(--sz-orange); }

.sz-section-title {
    margin: 14px 0 18px;
    font-family: var(--sz-font-display);
    font-size: clamp(40px, 6vw, 78px);
    line-height: .95;
    letter-spacing: .01em;
    color: var(--sz-text-on-light);
    text-transform: uppercase;
    font-weight: 400;
}

.sz-section-title--light { color: var(--sz-cream); }

.sz-section-title--xxl { font-size: clamp(48px, 7vw, 96px); }

.sz-section-title > span { display: block; }

.sz-section-title__italic {
    font-family: var(--sz-font-italic);
    font-style: italic;
    font-weight: 500;
    color: var(--sz-orange);
    text-transform: none;
    letter-spacing: 0;
    font-size: .92em;
}

/* ---- Buttons -------------------------------------------- */
.sz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--sz-font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.sz-btn:hover { transform: translateY(-2px); }

.sz-btn--orange {
    background: var(--sz-orange);
    color: #fff;
}
.sz-btn--orange:hover { background: #d75c10; color: #fff; }

.sz-btn--ghost {
    background: transparent;
    color: var(--sz-cream);
    border-color: rgba(245, 234, 216, 0.35);
}
.sz-btn--ghost:hover {
    border-color: var(--sz-orange);
    color: var(--sz-orange);
}

.sz-btn--ghost-light {
    background: transparent;
    color: var(--sz-cream);
    border-color: rgba(245, 234, 216, 0.35);
}
.sz-btn--ghost-light:hover { border-color: var(--sz-cream); }

.sz-btn--sm { padding: 10px 18px; font-size: 12px; }

/* ===========================================================
   HEADER
=========================================================== */
.sz-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--sz-black);
    border-bottom: 1px solid rgba(245, 234, 216, 0.06);
    color: var(--sz-cream);
}

.sz-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.sz-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sz-font-display);
    letter-spacing: .04em;
}

.sz-logo__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sz-navy);
}

.sz-logo__star {
    color: var(--sz-orange);
    font-size: 18px;
    line-height: 1;
}

.sz-logo__ring { position: absolute; inset: 0; }

.sz-logo__ringtext {
    fill: var(--sz-cream);
    font-family: var(--sz-font-sans);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .6;
}

.sz-logo__name {
    font-size: 22px;
    color: var(--sz-cream);
    text-transform: uppercase;
}

.sz-nav { justify-self: center; }
.sz-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}
.sz-nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sz-cream);
    opacity: .85;
}
.sz-nav a:hover { color: var(--sz-orange); opacity: 1; }

/* ===========================================================
   HERO — sz_hero.php
=========================================================== */
.sz-hero {
    background: var(--sz-black);
    color: var(--sz-cream);
    overflow: hidden;
}

.sz-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 100px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.sz-hero__text { max-width: 580px; }

.sz-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sz-orange);
    margin-bottom: 24px;
}

.sz-hero__title {
    margin: 0 0 22px;
    font-family: var(--sz-font-display);
    font-size: clamp(48px, 7.5vw, 110px);
    line-height: .92;
    letter-spacing: .005em;
    text-transform: uppercase;
    font-weight: 400;
}

.sz-hero__title-bold {
    display: block;
    color: var(--sz-cream);
}

.sz-hero__title-italic {
    display: block;
    font-family: var(--sz-font-italic);
    font-style: italic;
    font-weight: 500;
    color: var(--sz-orange);
    text-transform: none;
    letter-spacing: 0;
    font-size: .58em;
    margin-top: 8px;
}

.sz-hero__lead {
    color: var(--sz-muted-on-dark);
    font-size: 17px;
    line-height: 1.65;
    max-width: 480px;
    margin: 0 0 32px;
}

.sz-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.sz-hero__meta {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--sz-muted-on-dark);
    font-size: 14px;
}
.sz-hero__meta strong { color: var(--sz-cream); font-weight: 700; }
.sz-hero__meta-sep { color: var(--sz-orange); font-weight: 700; }

/* Collage */
.sz-hero__collage {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    justify-self: end;
}

.sz-hero__photo {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--sz-radius);
    box-shadow: var(--sz-shadow-lg);
    border: 4px solid var(--sz-black);
}

.sz-hero__photo--a {
    top: 0;
    left: 0;
    width: 58%;
    height: 64%;
    z-index: 2;
    border-top-left-radius: 50% 38%;
    border-top-right-radius: 50% 38%;
}

.sz-hero__photo--b {
    top: 6%;
    right: 0;
    width: 42%;
    height: 36%;
    z-index: 1;
}

.sz-hero__photo--c {
    bottom: 0;
    left: 8%;
    width: 38%;
    height: 32%;
    z-index: 1;
    border-radius: 50%;
}

.sz-hero__photo--d {
    bottom: 4%;
    right: 4%;
    width: 50%;
    height: 50%;
    z-index: 2;
    border-bottom-left-radius: var(--sz-radius);
    border-bottom-right-radius: var(--sz-radius);
}

.sz-hero__badge {
    position: absolute;
    top: 38%;
    left: 36%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--sz-orange);
    color: #fff;
    text-align: center;
    box-shadow: var(--sz-shadow-lg);
    font-family: var(--sz-font-sans);
}

.sz-hero__badge-num {
    font-family: var(--sz-font-display);
    font-size: 38px;
    line-height: 1;
}
.sz-hero__badge-label {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 4px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ===========================================================
   MENU — sz_menu.php
=========================================================== */
.sz-menu {
    background: var(--sz-cream);
    color: var(--sz-text-on-light);
    padding: 100px 0;
}

.sz-menu__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.sz-menu__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.sz-menu__lead {
    color: var(--sz-muted-on-light);
    font-size: 17px;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto;
}

.sz-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sz-menu__card {
    background: var(--sz-white);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    box-shadow: var(--sz-shadow);
    display: flex;
    flex-direction: column;
}

.sz-menu__photo {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}

.sz-menu__body { padding: 32px; }

.sz-menu__cardhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.sz-menu__name {
    margin: 0;
    font-family: var(--sz-font-display);
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--sz-black);
}

.sz-menu__chip {
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sz-menu__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.sz-menu__list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(10, 14, 22, 0.12);
    font-size: 15px;
}
.sz-menu__list li:last-child { border-bottom: 0; }

.sz-menu__item-name {
    color: var(--sz-black);
    font-weight: 600;
    flex-shrink: 0;
}

.sz-menu__dots {
    flex: 1;
    border-bottom: 1px dotted rgba(10, 14, 22, 0.3);
    transform: translateY(-3px);
}

.sz-menu__item-price {
    color: var(--sz-orange);
    font-weight: 700;
    flex-shrink: 0;
}

.sz-menu__link {
    color: var(--sz-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sz-menu__link:hover { color: var(--sz-black); }

/* ===========================================================
   DISHES — sz_dishes.php
=========================================================== */
.sz-dishes {
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 100px 0;
}

.sz-dishes__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.sz-dishes__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
}

.sz-dishes__lead {
    color: var(--sz-muted-on-dark);
    font-size: 16px;
    line-height: 1.65;
    max-width: 420px;
    margin: 0 0 0 auto;
}

.sz-dishes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sz-dishes__card {
    background: rgba(19, 35, 74, 0.45);
    border: 1px solid rgba(245, 234, 216, 0.08);
    border-radius: var(--sz-radius-lg);
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.sz-dishes__card:hover {
    transform: translateY(-6px);
    border-color: var(--sz-orange);
}

.sz-dishes__photo-wrap {
    padding: 16px;
}

.sz-dishes__photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    border-radius: var(--sz-radius);
}

.sz-dishes__body { padding: 0 24px 28px; }

.sz-dishes__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.sz-dishes__name {
    margin: 0;
    font-family: var(--sz-font-display);
    font-size: 26px;
    color: var(--sz-cream);
    letter-spacing: .03em;
    text-transform: uppercase;
}

.sz-dishes__price {
    color: var(--sz-orange);
    font-weight: 700;
    font-size: 16px;
}

.sz-dishes__desc {
    color: var(--sz-muted-on-dark);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
}

.sz-dishes__link {
    color: var(--sz-orange);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sz-dishes__link:hover { color: var(--sz-cream); }

/* ===========================================================
   COMBO — sz_combo.php
=========================================================== */
.sz-combo {
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 100px 0;
    border-top: 1px solid rgba(245, 234, 216, 0.06);
}

.sz-combo__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sz-combo__lead {
    color: var(--sz-muted-on-dark);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 520px;
}

.sz-combo__bullets {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.sz-combo__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--sz-cream);
    font-size: 15px;
}

.sz-combo__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sz-orange);
    flex-shrink: 0;
}

.sz-combo__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sz-combo__media {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 540px;
    justify-self: end;
}

.sz-combo__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow-lg);
}

.sz-combo__sticker {
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--sz-orange);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--sz-shadow-lg);
    font-family: var(--sz-font-sans);
}

.sz-combo__sticker-from {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .85;
}
.sz-combo__sticker-price {
    font-family: var(--sz-font-display);
    font-size: 50px;
    line-height: 1;
    margin-top: 2px;
}
.sz-combo__sticker-cur {
    font-size: 12px;
    letter-spacing: .14em;
    margin-top: 2px;
    opacity: .9;
}

/* ===========================================================
   CONTACT — sz_contact.php
=========================================================== */
.sz-contact {
    background: var(--sz-cream);
    color: var(--sz-text-on-light);
    padding: 100px 0;
}

.sz-contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sz-contact__media {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 520px;
}

.sz-contact__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow-lg);
}

.sz-contact__caption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sz-contact__lead {
    color: var(--sz-muted-on-light);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 480px;
}

.sz-contact__list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.sz-contact__list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 14, 22, 0.12);
    align-items: baseline;
}

.sz-contact__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--sz-muted-on-light);
}

.sz-contact__value {
    color: var(--sz-black);
    font-weight: 600;
    font-size: 16px;
}
a.sz-contact__value:hover { color: var(--sz-orange); }

.sz-contact__ctas {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.sz-contact__textlink {
    color: var(--sz-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.sz-contact__textlink:hover { color: var(--sz-black); }

/* ===========================================================
   FOOTER
=========================================================== */
.sz-footer {
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 80px 0 30px;
}

.sz-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.sz-footer__brand { max-width: 360px; }

.sz-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sz-font-display);
    font-size: 26px;
    letter-spacing: .04em;
    color: var(--sz-cream);
    text-transform: uppercase;
}

.sz-footer__star {
    color: var(--sz-orange);
    font-size: 22px;
}

.sz-footer__tag {
    margin: 18px 0 22px;
    color: var(--sz-muted-on-dark);
    font-size: 14px;
    line-height: 1.6;
}

.sz-footer__socials {
    display: flex;
    gap: 12px;
}
.sz-footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(245, 234, 216, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--sz-cream);
}
.sz-footer__socials a:hover {
    background: var(--sz-orange);
    color: #fff;
    border-color: var(--sz-orange);
}

.sz-footer__title {
    font-family: var(--sz-font-display);
    font-size: 18px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sz-cream);
    margin: 0 0 18px;
}

.sz-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--sz-muted-on-dark);
    font-size: 14px;
}

.sz-footer__list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.sz-footer__list--links li,
.sz-footer__list--contact li {
    display: block;
}

.sz-footer__list a:hover { color: var(--sz-orange); }

.sz-footer__divider {
    max-width: 1280px;
    margin: 60px auto 24px;
    height: 2px;
    background: var(--sz-orange);
    opacity: .9;
}

.sz-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--sz-muted-on-dark);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.sz-footer__credit { color: var(--sz-gold); }

/* ===========================================================
   CONTACT PAGE & GENERIC
=========================================================== */
.contact-page {
    background: var(--sz-cream);
    color: var(--sz-text-on-light);
    padding: 100px 0;
}

.contact-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-page .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-page h1 {
    font-family: var(--sz-font-display);
    font-size: clamp(40px, 5vw, 64px);
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--sz-black);
    margin: 0 0 24px;
}

.contact-page p { color: var(--sz-muted-on-light); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: var(--sz-white);
    padding: 32px;
    border-radius: var(--sz-radius-lg);
    box-shadow: var(--sz-shadow);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sz-black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    padding: 12px 14px;
    border: 1.5px solid rgba(10, 14, 22, 0.14);
    border-radius: 12px;
    background: #fff;
    color: var(--sz-black);
    outline: none;
    transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--sz-orange);
}

.contact-form .hp { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--sz-font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: var(--sz-orange);
    color: #fff;
    border-color: var(--sz-orange);
}
.btn-primary:hover { background: #d75c10; border-color: #d75c10; }

.flash {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 18px;
}
.flash-success { background: rgba(46, 160, 67, 0.12); color: #1f6b30; }
.flash-error   { background: rgba(243, 113, 33, 0.12); color: #c1450b; }

.not-found {
    background: var(--sz-black);
    color: var(--sz-cream);
    padding: 120px 0;
    text-align: center;
}
.not-found h1 {
    font-family: var(--sz-font-display);
    font-size: clamp(48px, 6vw, 88px);
    text-transform: uppercase;
    margin: 0 0 16px;
}
.not-found .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===========================================================
   RESPONSIVE — break at 800px
=========================================================== */
@media (max-width: 800px) {
    .sz-header__inner {
        grid-template-columns: auto auto;
        gap: 12px;
        padding: 16px 20px;
    }
    .sz-header__inner .sz-btn { display: none; }
    .sz-nav {
        grid-column: 1 / -1;
        order: 3;
        justify-self: stretch;
        overflow-x: auto;
    }
    .sz-nav ul {
        gap: 18px;
        justify-content: center;
        padding-bottom: 4px;
    }

    .sz-hero__inner,
    .sz-menu__grid,
    .sz-dishes__grid,
    .sz-dishes__head,
    .sz-combo__inner,
    .sz-contact__inner,
    .contact-page .two-col,
    .sz-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sz-hero__inner { padding: 60px 20px 70px; }
    .sz-hero__title { font-size: clamp(44px, 12vw, 64px); }
    .sz-hero__lead  { font-size: 16px; }
    .sz-hero__collage {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        justify-self: stretch;
    }
    .sz-hero__badge {
        width: 88px;
        height: 88px;
        top: 50%;
        left: 50%;
    }
    .sz-hero__badge-num { font-size: 28px; }

    .sz-menu,
    .sz-dishes,
    .sz-combo,
    .sz-contact { padding: 70px 0; }

    .sz-menu__inner,
    .sz-dishes__inner,
    .sz-combo__inner,
    .sz-contact__inner,
    .sz-footer__inner { padding: 0 20px; }

    .sz-section-title { font-size: clamp(36px, 9vw, 56px); }
    .sz-section-title--xxl { font-size: clamp(40px, 10vw, 64px); }

    .sz-dishes__lead { margin-left: 0; }

    .sz-combo__media,
    .sz-contact__media { max-width: 100%; }

    .sz-combo__sticker,
    .sz-hero__badge {
        width: 96px;
        height: 96px;
    }
    .sz-combo__sticker-price { font-size: 36px; }

    .sz-footer { padding: 60px 0 24px; }
    .sz-footer__divider { margin: 40px auto 18px; }
    .sz-footer__bottom { padding: 0 20px; }

    .contact-page { padding: 60px 0; }
}
