/* ============================================================
   MAIN — komponenty i sekcje strony Futo Sushi
   ============================================================ */

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(14,14,16,.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 800; }
.brand img { width: 46px; height: 46px; border-radius: 11px; }
.brand img.brand__logo { width: auto; height: 42px; border-radius: 0; }
@media (max-width: 560px) { .brand img.brand__logo { height: 36px; } }
.brand__name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .04em; line-height: 1; }
.brand__name span { color: var(--red-l); display: block; font-size: .68rem; letter-spacing: .22em; font-weight: 700; margin-top: 2px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .3rem; }
.nav a { padding: .55rem .8rem; border-radius: var(--r-pill); font-size: var(--t-sm); font-weight: 600; color: var(--ink-2); transition: color .2s, background .2s; }
.nav a:hover { color: var(--ink); background: rgba(245,241,233,.06); }
.header__cta { margin-left: .4rem; display: flex; align-items: center; gap: .5rem; }
.header__phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: var(--t-sm); color: var(--ink); padding: .5rem .7rem; }
.header__phone:hover { color: var(--red-l); }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-2); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: .5rem;
    transform: translateY(-140%); transition: transform .35s var(--ease); box-shadow: var(--shadow-l);
  }
  body.nav-open .nav { transform: none; }
  .nav a { padding: .9rem 1rem; font-size: var(--t-md); }
  .header__cta .btn { display: none; }
  .header__phone { display: none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(16px) brightness(.4) saturate(1.15); transform: scale(1.14); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 80% at 20% 35%, rgba(225,27,34,.20), transparent 60%),
    linear-gradient(100deg, rgba(14,14,16,.95) 0%, rgba(14,14,16,.72) 46%, rgba(14,14,16,.55) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero__content { max-width: 640px; }
.hero__badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(0,0,0,.45); border: 1px solid var(--line-2); padding: .42rem .9rem; border-radius: var(--r-pill); font-size: var(--t-sm); font-weight: 600; margin-bottom: 1.3rem; backdrop-filter: blur(4px); }
.hero__badge b { color: var(--gold); }
.hero h1 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; line-height: .92; text-shadow: 0 6px 34px rgba(0,0,0,.75); text-wrap: balance; }
.hero h1 .accent { color: var(--red-l); }
.hero__sub { font-size: var(--t-md); color: var(--ink); margin-top: 1.1rem; max-width: 44ch; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.hero__chips li { font-size: var(--t-sm); font-weight: 600; color: var(--ink); background: rgba(245,241,233,.07); border: 1px solid var(--line-2); padding: .45rem .95rem; border-radius: var(--r-pill); }
.hero__chips b { color: var(--red-l); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__visual { position: relative; }
.hero__visual img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-l); border: 1px solid var(--line-2); box-shadow: var(--shadow-l), 0 0 70px -22px rgba(225,27,34,.55); }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero__content { max-width: none; }
  .hero__visual img { aspect-ratio: 16/10; }
}

/* ---------- HIGHLIGHTS (atuty) ---------- */
.highlights-sec { background: var(--bg-2); border-block: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem); }
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.hl { position: relative; background: linear-gradient(165deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--r-l); padding: 1.7rem 1.5rem; transition: transform .28s var(--ease), border-color .28s, box-shadow .28s; }
.hl::before { content: ""; position: absolute; inset: 0; border-radius: var(--r-l); box-shadow: inset 0 1px 0 rgba(245,241,233,.06); pointer-events: none; }
.hl:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow-m); }
.hl__ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; margin-bottom: 1.15rem; color: var(--red-l);
  background: radial-gradient(125% 125% at 28% 18%, rgba(225,27,34,.24), rgba(225,27,34,.04) 68%), var(--surface-2);
  border: 1px solid rgba(225,27,34,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 26px -16px rgba(225,27,34,.7);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s; }
.hl__ico svg { filter: drop-shadow(0 1px 2px rgba(0,0,0,.35)); }
.hl:hover .hl__ico { transform: translateY(-2px) scale(1.04); border-color: rgba(225,27,34,.6); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 30px -14px rgba(225,27,34,.85); }
.hl h3 { font-size: var(--t-md); }
.hl p { font-size: var(--t-sm); color: var(--ink-2); margin-top: .5rem; line-height: 1.55; }
@media (max-width: 900px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .highlights { grid-template-columns: 1fr; } }

/* ---------- POLECANE ---------- */
.recos { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.reco {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-l); padding: 1.4rem; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.reco:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-m); }
.reco__tag { position: absolute; top: 1rem; right: 1rem; font-size: var(--t-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red-l); }
.reco__cat { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); font-weight: 700; }
.reco h3 { font-size: var(--t-lg); margin-top: .5rem; font-family: var(--font-display); text-transform: uppercase; }
.reco p { color: var(--ink-2); font-size: var(--t-sm); margin-top: .5rem; min-height: 3em; }
.reco__foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1rem; }
.reco__price { font-family: var(--font-display); font-size: var(--t-lg); color: var(--red-l); }
.reco__pieces { font-size: var(--t-xs); color: var(--ink-3); }
.reco__img { width: calc(100% + 2.8rem); margin: -1.4rem -1.4rem 1.1rem; height: 175px; object-fit: cover; display: block; background: #14141a; }

/* Galeria zdjęć dań */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); gap: 1rem; margin-top: 2rem; }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr 1fr; gap: .6rem; } }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #14141a; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }

/* ---------- MENU ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; margin-bottom: 2.5rem; }
.menu-tab { padding: .6rem 1.1rem; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-weight: 700; font-size: var(--t-sm); color: var(--ink-2); transition: all .2s; }
.menu-tab:hover { color: var(--ink); border-color: var(--ink-3); }
.menu-tab.is-active { background: linear-gradient(180deg, var(--red-l), var(--red)); color: #fff; border-color: var(--red); box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,.18); }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 1rem; }
.mcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.4rem; overflow: hidden; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.mcard__img { display: block; width: calc(100% + 2.8rem); margin: -1.3rem -1.4rem 1rem; aspect-ratio: 11 / 5; height: auto; object-fit: cover; background: #1a1a1d; border-bottom: 1px solid var(--line); }
.mcard:hover .mcard__img { filter: brightness(1.05); }
.mcard__img--soon { display: grid; place-items: center; align-content: center; gap: .45rem; background: radial-gradient(120% 130% at 50% 28%, rgba(225,27,34,.10), transparent 60%), linear-gradient(160deg, #1c1c20, #141417); }
.mcard__img--soon svg { width: 34px; height: 22px; color: var(--red-l); opacity: .6; }
.mcard__img--soon span { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.mcard:hover .mcard__img--soon { filter: none; }
.mcard:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-2px); }
.mcard__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.mcard__name { font-weight: 800; font-size: var(--t-md); }
.mcard__price { font-family: var(--font-display); color: var(--red-l); font-size: var(--t-md); white-space: nowrap; }
.mcard__meta { font-size: var(--t-xs); color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-top: .1rem; }
.mcard__desc { color: var(--ink-2); font-size: var(--t-sm); margin-top: .6rem; }
.mcard__parts { list-style: none; margin: .8rem 0 0; padding: .8rem 0 0; border-top: 1px solid var(--line); display: grid; gap: .36rem; }
.mcard__parts li { font-size: var(--t-sm); color: var(--ink-2); line-height: 1.35; display: flex; gap: .55rem; align-items: baseline; }
.mcard__parts .q { flex: none; min-width: 1.75rem; font-weight: 800; color: var(--red-l); font-variant-numeric: tabular-nums; letter-spacing: 0; }
.mcard .tag-veg { display: inline-block; margin-top: .7rem; font-size: var(--t-xs); font-weight: 700; color: #7BD88F; background: rgba(123,216,143,.12); padding: .15rem .5rem; border-radius: var(--r-pill); }

/* Cennik prosty (rolki) — lista dwukolumnowa */
.pricelist { columns: 2; column-gap: 2.5rem; }
.pricelist li { break-inside: avoid; display: flex; align-items: baseline; gap: .6rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.pricelist li .dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.pricelist li .p { font-family: var(--font-display); color: var(--red-l); white-space: nowrap; }
.pricelist li .v { color: #7BD88F; font-size: var(--t-xs); font-weight: 700; }
@media (max-width: 620px) { .pricelist { columns: 1; } }

.menu-note { margin-top: 1.2rem; font-size: var(--t-sm); color: var(--ink-3); }
.menu-order-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 1.6rem; justify-content: space-between; margin-top: 2.5rem; padding: 1.6rem 1.8rem; background: linear-gradient(120deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: var(--r-l); }
.menu-order-cta > div:first-child { flex: 1 1 260px; min-width: 0; }
.menu-order-cta p { color: var(--ink-2); font-size: var(--t-sm); margin-top: .25rem; }
.menu-order-cta strong { color: var(--ink); display: block; font-size: var(--t-md); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; line-height: 1.05; }
/* Mobile: układamy w kolumnę, przyciski na całą szerokość (koniec ściśniętego tekstu) */
@media (max-width: 620px) {
  .menu-order-cta { flex-direction: column; align-items: stretch; text-align: left; padding: 1.4rem 1.3rem; gap: 1.1rem; }
  .menu-order-cta > a.btn { width: 100%; }
  .menu-order-cta > div:last-child { display: flex; flex-direction: column; width: 100%; gap: .6rem; }
  .menu-order-cta > div:last-child .btn { width: 100%; }
}

/* ---------- CIEPŁE DANIA (feature) ---------- */
.hot { background: var(--bg-2); border-block: 1px solid var(--line); }
.hot__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 1rem; margin-top: 2.2rem; }
.hot__item { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--r); padding: 1.2rem 1.3rem; }
.hot__item .row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.hot__item h3 { font-size: var(--t-md); }
.hot__item .p { font-family: var(--font-display); color: var(--red-l); font-size: var(--t-md); white-space: nowrap; }

/* ---------- O NAS ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__text p { color: var(--ink-2); margin-top: 1rem; font-size: var(--t-md); }
.about__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l); padding: 2rem; box-shadow: var(--shadow-m); }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.about__stat b { font-family: var(--font-display); font-size: var(--t-xl); color: var(--red-l); display: block; }
.about__stat span { font-size: var(--t-sm); color: var(--ink-3); }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ---------- UDOGODNIENIA ---------- */
.feats { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); gap: 1rem; margin-top: 2.2rem; }
.feat { display: flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.2rem; font-weight: 600; }
.feat .ico { flex: none; color: var(--red-l); }

/* ---------- DOSTAWA / KONTAKT / MAPA ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
.info-list { margin-top: 1.5rem; display: grid; gap: 1.1rem; }
.info-row { display: flex; gap: .9rem; align-items: flex-start; }
.info-row .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--red-wash); color: var(--red-l); display: grid; place-items: center; }
.info-row .lbl { font-size: var(--t-sm); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin: 0; }
.info-row p, .info-row a { font-size: var(--t-md); font-weight: 600; }
.info-row a:hover { color: var(--red-l); }
.contact-intro { color: var(--ink-2); margin-top: 1.4rem; font-size: var(--t-base); max-width: 54ch; }
.contact-guide { margin-top: 1.6rem; }
.contact-guide li { display: grid; gap: .25rem; padding: 1.05rem 0; border-top: 1px solid var(--line); }
.contact-guide li:last-child { border-bottom: 1px solid var(--line); }
.contact-guide b { color: var(--ink); font-weight: 800; font-size: var(--t-base); }
.contact-guide span { color: var(--ink-2); font-size: var(--t-sm); line-height: 1.6; }
.contact-guide a { color: var(--red-l); font-weight: 700; }
.contact-guide a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hours { margin-top: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.hours .row { display: flex; justify-content: space-between; padding: .35rem 0; font-size: var(--t-sm); }
.hours .row b { color: var(--gold); }
.map-card {
  position: relative; display: flex; align-items: flex-end; gap: 1rem; min-height: 220px;
  border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m);
  border: 1px solid var(--line-2); padding: 1.3rem;
  background:
    radial-gradient(circle at 62% 42%, rgba(225,27,34,.18), transparent 45%),
    repeating-linear-gradient(0deg, rgba(245,241,233,.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(245,241,233,.05) 0 1px, transparent 1px 46px),
    linear-gradient(135deg, #16161b, #1d1d23);
  transition: border-color .2s, transform .2s var(--ease);
}
.map-card:hover { border-color: var(--red); transform: translateY(-2px); }
.map-pin { position: absolute; top: 38%; left: 60%; transform: translate(-50%,-50%); filter: drop-shadow(0 6px 12px rgba(0,0,0,.6)); animation: pin 2.4s var(--ease) infinite; }
@keyframes pin { 0%,100% { transform: translate(-50%,-50%); } 50% { transform: translate(-50%,-58%); } }
@media (prefers-reduced-motion: reduce) { .map-pin { animation: none; } }
.map-label { display: grid; gap: .15rem; background: rgba(14,14,16,.72); backdrop-filter: blur(6px); border: 1px solid var(--line); border-radius: var(--r); padding: .9rem 1.1rem; font-size: var(--t-sm); color: var(--ink-2); }
.map-label b { color: var(--ink); font-size: var(--t-base); }
.map-open { color: var(--red-l); font-weight: 700; margin-top: .25rem; }

/* ---------- MAPA GOOGLE (osadzona) ---------- */
.map-embed { border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-m); background: var(--surface); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.12) contrast(1.04) brightness(.98); }
.map-embed__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem 1rem; padding: .95rem 1.15rem; border-top: 1px solid var(--line); font-size: var(--t-sm); }
.map-embed__bar b { color: var(--ink); }
.map-embed__bar a { color: var(--red-l); font-weight: 700; white-space: nowrap; }
.map-embed__bar a:hover { color: var(--red-l); text-decoration: underline; }

/* ---------- FORMULARZ ---------- */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-m); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-top: 1rem; }
.field label { display: block; font-size: var(--t-sm); font-weight: 600; margin-bottom: .4rem; color: var(--ink-2); }
.field input, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--r-s);
  background: var(--surface-2); border: 1px solid var(--line-2); color: var(--ink);
  font: inherit; font-size: var(--t-sm); transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: var(--surface-3); }
/* Fix ciemnych inputów pod autofillem (per pamięć dark_input_autofill_fix) */
.field input:-webkit-autofill, .field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink); transition: background-color 9999s ease-out; box-shadow: 0 0 0 100px var(--surface-2) inset;
}
.consent { display: flex; gap: .6rem; margin-top: 1.1rem; font-size: var(--t-xs); color: var(--ink-3); align-items: flex-start; }
.consent input { margin-top: .2rem; accent-color: var(--red); width: 18px; height: 18px; flex: none; }
.form__submit { margin-top: 1.3rem; width: 100%; }
.form__status { margin-top: 1rem; font-size: var(--t-sm); font-weight: 600; min-height: 1.2em; }
.form__status.ok { color: #7BD88F; }
.form__status.err { color: var(--red-l); }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__brand img { width: 116px; height: auto; border-radius: 18px; flex: none; }
@media (max-width: 760px) { .footer__brand img { width: 96px; } }
.footer p { color: var(--ink-3); font-size: var(--t-sm); margin-top: .8rem; }
.footer .col-h { font-size: var(--t-sm); text-transform: uppercase; letter-spacing: .12em; color: var(--ink-2); margin-bottom: .9rem; }
.footer a { color: var(--ink-2); font-size: var(--t-sm); display: block; padding: .25rem 0; }
.footer a:hover { color: var(--red-l); }
.footer__socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer__socials a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); padding: 0; }
.footer__socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__bottom p { margin: 0; }
.footer__bottom a { display: inline; color: var(--ink-2); }
.footer__credit::before { content: " · "; }
@media (max-width: 760px) {
  .footer__bottom { gap: .5rem; }
  .footer__credit { display: block; margin-top: .5rem; }
  .footer__credit::before { content: none; } /* na mobile bez wiodącego „·" — kredyt od nowej linii */
}

/* Miejscowości dostawy (SEO lokalne) */
.zone-group { margin-top: 1.8rem; }
.zone-group__head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.zone-group__head b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: var(--t-md); }
.zone-group__head .price { font-size: var(--t-sm); font-weight: 700; color: var(--ink); padding: .25rem .7rem; border-radius: var(--r-pill); background: var(--red-wash); border: 1px solid var(--red); }
.zone-group__head .min { font-size: var(--t-sm); font-weight: 600; color: var(--ink-3); }
.zone-group .locality-list { margin-top: .9rem; }
.zone-group .locality-list li:first-child { color: var(--ink-2); border-color: var(--line-2); background: var(--surface); }
.locality-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.locality-list li { padding: .5rem 1rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line-2); font-size: var(--t-sm); font-weight: 600; color: var(--ink-2); }
.locality-list li:first-child { color: var(--ink); border-color: var(--red); background: var(--red-wash); }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; gap: .6rem; padding: .7rem clamp(.8rem,4vw,1.2rem); background: rgba(14,14,16,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line-2); }
.sticky-cta .btn { flex: 1; }
@media (max-width: 900px) { .sticky-cta { display: flex; } body { padding-bottom: 74px; } }

/* ---------- LIGHTBOX (opcjonalny, galeria) ---------- */
.ico svg, .info-row .ico svg { width: 22px; height: 22px; }

/* ---------- BEBAS: kondensowany krój = można większe nagłówki ---------- */
.hero h1 { font-size: clamp(2.7rem, 1.8rem + 4vw, 4.8rem); }
.section-title { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); }

/* ---------- AKTYWNA POZYCJA NAV ---------- */
.nav a[aria-current="page"] { color: var(--ink); background: var(--red-wash); }
.nav a[aria-current="page"]:hover { background: var(--red-wash); }

/* ---------- BREADCRUMBS ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: var(--t-sm); color: var(--ink-3); }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--red-l); }
.crumbs span[aria-current] { color: var(--ink); }
.crumbs .sep { color: var(--ink-3); opacity: .6; }

/* ---------- PAGE HERO (podstrony) ---------- */
.page-hero { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 120% at 85% -10%, var(--red-wash), transparent 55%), var(--bg-2); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 1.7rem + 3vw, 4rem); text-transform: uppercase; letter-spacing: .03em; margin-top: 1rem; text-wrap: balance; }
.page-hero p { color: var(--ink-2); max-width: 60ch; margin-top: .8rem; font-size: var(--t-md); }

/* ---------- PROSE (dokumenty prawne) ---------- */
.prose { max-width: 70ch; color: var(--ink-2); }
.prose h2 { font-size: var(--t-lg); color: var(--ink); margin: 2rem 0 .6rem; }
.prose h3 { font-size: var(--t-md); color: var(--ink); margin: 1.4rem 0 .4rem; }
.prose p, .prose li { font-size: var(--t-base); line-height: 1.75; }
.prose ul { margin: .6rem 0 1rem; padding-left: 1.2rem; list-style: disc; }
.prose li { margin: .3rem 0; }
.prose a { color: var(--red-l); text-decoration: underline; text-underline-offset: 3px; }
.prose .muted { color: var(--ink-3); font-size: var(--t-sm); }
.prose .callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--r); padding: 1rem 1.2rem; margin: 1.2rem 0; }

/* ---------- 404 ---------- */
.nf { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.nf__big { font-family: var(--font-display); font-size: clamp(6rem, 10vw, 12rem); line-height: 1; color: var(--red); }
.nf h1 { font-family: var(--font-display); text-transform: uppercase; font-size: var(--t-xl); margin: .5rem 0 1rem; }
.nf p { color: var(--ink-2); max-width: 46ch; margin: 0 auto 1.6rem; }
.nf__links { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* ---------- SEKCJE HOME: teasery z linkiem ---------- */
.teaser-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split__media { border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-m); aspect-ratio: 4/3; background: linear-gradient(135deg,#16161b,#1d1d23); display: grid; place-items: center; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .ph { color: var(--ink-3); font-size: var(--t-sm); text-align: center; padding: 1rem; }


/* ---------- SKIP LINK (a11y) ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--red); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 var(--r-s) 0; font-weight: 700; }
.skip-link:focus { left: 0; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; display: grid; gap: .8rem; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; font-size: var(--t-md); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); color: var(--red-l); font-size: 1.6rem; line-height: 1; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; color: var(--ink-2); font-size: var(--t-base); margin: 0; }

/* ---------- MAPA STREFY DOSTAWY ---------- */
.zone-map { margin: 0; border-radius: var(--r-l); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow-m); background: var(--surface); }
.zone-map img { width: 100%; height: auto; display: block; }
.zone-map figcaption { padding: .8rem 1.1rem; font-size: var(--t-sm); color: var(--ink-3); border-top: 1px solid var(--line); }
.zone-legend { display: grid; gap: .7rem; margin: 1.4rem 0; }
.zone-row { display: flex; align-items: center; gap: .8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: .8rem 1rem; }
.zone-dot { flex: none; width: 14px; height: 14px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px var(--red-wash); }
.zone-dot--2 { background: var(--gold); box-shadow: 0 0 0 4px rgba(228,185,91,.15); }
.zone-row b { display: block; font-size: var(--t-base); }
.zone-row span:last-child { font-size: var(--t-sm); color: var(--ink-2); }

/* ============================================================
   POLISH — dopracowanie wizualne (spójne na wszystkich stronach)
   ============================================================ */

/* Wtopienie zdjęć dań (jasne tła produktowe z ChoiceQR) w ciemny motyw.
   Scrim TYLKO na kartach ze zdjęciem — karty-kroki (dostawa) go nie dostają. */
.reco { isolation: isolate; }
.reco__img { position: relative; z-index: 0; }
.reco:has(.reco__img)::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 175px; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(14,14,16,.42) 0%, transparent 24%, transparent 60%, var(--surface) 100%);
}
.reco__tag { z-index: 2; }

/* Galeria (o nas) — delikatny scrim spinający kadry z tłem */
.gallery figure { position: relative; }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,14,16,.22), transparent 42%, rgba(14,14,16,.34));
}

/* Split — food-shoty: subtelny dolny cień, by zdjęcie „siadło" na ciemnym tle */
.split__media { position: relative; }
.split__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(14,14,16,.32));
}

/* Kaskadowe wejście siatek (respektuje prefers-reduced-motion via .reveal) */
.highlights .hl:nth-child(2), .recos .reco:nth-child(2) { transition-delay: .07s; }
.highlights .hl:nth-child(3), .recos .reco:nth-child(3) { transition-delay: .14s; }
.highlights .hl:nth-child(4), .recos .reco:nth-child(4) { transition-delay: .21s; }

/* Hero — pływający detal na zdjęciu (nazwa seta) */
.hero__tag {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .9rem; border-radius: var(--r-pill);
  background: rgba(14,14,16,.62); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: var(--t-xs); font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 22px -10px rgba(0,0,0,.7);
}
.hero__tag b { font-family: var(--font-display); font-weight: 400; letter-spacing: .03em; font-size: var(--t-sm); color: var(--red-l); }
.hero__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(228,185,91,.18); }
@media (max-width: 860px) { .hero__tag { left: .7rem; bottom: .7rem; } }

/* Tactile feedback — spójny język hoveru na wszystkich kartach (o nas, ciepłe, dostawa) */
.feat, .hot__item, .zone-row {
  transition: transform .2s var(--ease), border-color .2s, background .2s, box-shadow .2s;
}
.feat:hover { transform: translateY(-2px); border-color: var(--line-2); box-shadow: var(--shadow-s); }
.feat .ico { transition: transform .2s var(--ease); }
.feat:hover .ico { transform: scale(1.08); }
.hot__item { transition: transform .2s var(--ease), border-color .2s, box-shadow .2s; }
.hot__item:hover { transform: translateY(-2px); border-left-color: var(--red-l); box-shadow: var(--shadow-m); }
.zone-row:hover { border-color: var(--line-2); background: var(--surface-2); }

/* Karta „O nas" — materialność zgodna z .hl (gradient + wewnętrzny highlight) */
.about__card { background: linear-gradient(165deg, var(--surface-2), var(--surface)); position: relative; }
.about__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(245,241,233,.06);
}
/* Statystyki — struktura przez hairline zamiast luźnych liczb (taste: logic-grouping) */
.about__stats { gap: 0; }
.about__stat { padding: 1rem .2rem; }
.about__stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 1.2rem; }
.about__stat:nth-child(even) { padding-left: 1.2rem; }
.about__stat:nth-child(1), .about__stat:nth-child(2) { border-bottom: 1px solid var(--line); }
.about__stat b { line-height: 1; margin-bottom: .35rem; }

/* ---------- COOKIE CONSENT ---------- */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; padding: clamp(1rem,3vw,1.4rem);
  background: rgba(20,20,23,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-2); box-shadow: 0 -20px 50px -20px rgba(0,0,0,.7);
}
.cookie.is-open { display: block; animation: fade .4s var(--ease); }
.cookie__inner { max-width: var(--container); margin-inline: auto; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between; }
.cookie__text { flex: 1 1 340px; font-size: var(--t-sm); color: var(--ink-2); }
.cookie__text b { color: var(--ink); display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em; font-size: var(--t-md); margin-bottom: .2rem; }
.cookie__text a { color: var(--red-l); text-decoration: underline; text-underline-offset: 2px; }
.cookie__btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie__btns .btn { padding: .7rem 1.3rem; }
@media (max-width: 900px) { .cookie { bottom: 74px; } /* nad sticky-cta */ }
