/* ==========================================================================
   Zentaprol — kuchnia południa na bałtyckiej rybie
   al. Papieża Jana Pawła II 42, Szczecin
   Jeden arkusz. Mobile-first. Bez frameworków.
   Kierunek: jasna baza, pastelowe pola, antykwa w nagłówkach,
   asymetryczna siatka z lewą szyną etykiet, dużo powietrza.
   ========================================================================== */

:root {
    --paper:   #FCFBF7;
    --paper-2: #F5F2EA;
    --sage-w:  #E9EFE6;
    --sage-w2: #DDE7DA;
    --clay-w:  #F7EDE5;
    --ink:     #22282A;
    --ink-2:   #39413F;
    --muted:   #7D8580;
    --muted-2: #9AA19B;
    --line:    #DFDACE;
    --line-2:  #CBD2C4;
    --sage:    #6F8B6E;
    --sage-dk: #4F6A50;
    --clay:    #BC6B4C;
    --lemon:   #D8AE47;
    --deep:    #22322A;
    --deep-2:  #2C3F35;
    --on-deep: #E8EDE4;

    --disp: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
    --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --edge: 20px;
    --gut:  20px;
    --sec:  62px;
    --max:  1240px;

    --dur:  .8s;
    --ease: cubic-bezier(.2, .68, .28, 1);
}

@media (min-width: 760px)  { :root { --edge: 38px; --gut: 30px; --sec: 96px; } }
@media (min-width: 1140px) { :root { --edge: 64px; --gut: 40px; --sec: 132px; } }

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink-2);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.72;
    overflow-x: hidden;
}

@media (min-width: 760px) { body { font-size: 17px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 18px; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--disp);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.005em;
    color: var(--ink);
}

.h-xl { font-size: clamp(42px, 9vw, 88px); line-height: 1.02; }
.h-lg { font-size: clamp(30px, 5.4vw, 52px); }
.h-md { font-size: clamp(23px, 3.4vw, 32px); }
.h-sm { font-size: clamp(19px, 2.6vw, 24px); }

.h-xl em, .h-lg em, .h-md em { font-style: italic; color: var(--sage-dk); }

.lead { font-size: clamp(18px, 2.4vw, 21px); line-height: 1.6; color: var(--ink-2); }
.muted { color: var(--muted); }
.small { font-size: 14.5px; line-height: 1.65; }
.tight { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--edge); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sage-dk);
}

.num {
    display: block;
    font-family: var(--disp);
    font-size: 15px;
    letter-spacing: .14em;
    color: var(--clay);
    margin-bottom: 10px;
}

.age {
    display: inline-block;
    font-style: normal;
    font-family: var(--sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 2px 7px;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    color: var(--sage-dk);
    vertical-align: middle;
    white-space: nowrap;
}

/* ── Przyciski ─────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 28px;
    background: var(--sage-dk);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--sage-dk);
    border-radius: 2px;
    cursor: pointer;
    transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: var(--deep); border-color: var(--deep); color: var(--paper); }

.btn--line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--line:hover { background: var(--sage-w); border-color: var(--sage); color: var(--ink); }

.btn--plain { background: transparent; border-color: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; }
.btn--plain:hover { background: transparent; border-color: transparent; color: var(--ink); }

.btn--sm { min-height: 42px; padding: 9px 18px; font-size: 12.5px; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; }

.tlink {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage-dk);
    border-bottom: 1px solid var(--line-2);
    padding-bottom: 3px;
    transition: border-color .3s var(--ease), color .3s var(--ease);
}
.tlink:hover { color: var(--clay); border-color: var(--clay); }

/* ── Nagłówek serwisu ──────────────────────────────────────────── */

.strip {
    background: var(--deep);
    color: var(--on-deep);
    font-size: 12.5px;
    letter-spacing: .02em;
}
.strip__in {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    text-align: center;
    padding: 9px 0;
}
.strip b { color: var(--lemon); font-weight: 700; letter-spacing: .08em; margin-right: 5px; }
.strip a { text-decoration: none; }
.strip a:hover { color: var(--lemon); }

@media (min-width: 980px) {
    .strip__in { flex-direction: row; justify-content: space-between; text-align: left; gap: 24px; }
}

.masthead {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.mast__in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.wordmark { text-decoration: none; display: block; }
.wordmark__name {
    display: block;
    font-family: var(--disp);
    font-size: clamp(26px, 5.2vw, 36px);
    line-height: 1;
    letter-spacing: .04em;
    color: var(--ink);
}
.wordmark__name em { font-style: italic; color: var(--clay); }
.wordmark__sub {
    display: none;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 7px;
}
@media (min-width: 760px) { .wordmark__sub { display: block; } }

.mast__cta { display: none; }
@media (min-width: 980px) { .mast__cta { display: inline-flex; } }

.toggle {
    width: 46px; height: 46px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: transparent; border: 1px solid var(--line); border-radius: 2px;
    cursor: pointer; padding: 0 12px;
}
.toggle i { display: block; height: 1px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 980px) { .toggle { display: none; } }

.nav { display: none; border-top: 1px solid var(--line); }
@media (min-width: 980px) {
    .nav { display: block; }
    .nav__in { display: flex; gap: 34px; justify-content: center; }
    .nav a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .13em;
        text-transform: uppercase;
        text-decoration: none;
        color: var(--ink-2);
        border-bottom: 2px solid transparent;
        transition: color .3s var(--ease), border-color .3s var(--ease);
    }
    .nav a:hover { color: var(--clay); }
    .nav a.is-on { border-color: var(--clay); color: var(--ink); }
}

.mob {
    display: none;
    padding: 8px 0 26px;
    border-top: 1px solid var(--line);
}
.mob.is-open { display: block; }
@media (min-width: 980px) { .mob, .mob.is-open { display: none; } }
.mob a {
    display: block;
    padding: 14px var(--edge);
    font-size: 15px;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}
.mob a.is-on { color: var(--clay); }
.mob .btn { margin: 20px var(--edge) 0; width: calc(100% - var(--edge) * 2); }
.mob__meta { padding: 18px var(--edge) 0; font-size: 14px; color: var(--muted); }
.mob__meta a { display: inline; padding: 0; border: 0; text-transform: none; }

/* ── Sekcje ────────────────────────────────────────────────────── */

.sec { padding: var(--sec) 0; }
.sec--tight { padding: calc(var(--sec) * .58) 0; }
.sec--paper { background: var(--paper-2); }
.sec--sage { background: var(--sage-w); }
.sec--clay { background: var(--clay-w); }
.sec--deep { background: var(--deep); color: var(--on-deep); }
.sec--deep h2, .sec--deep h3 { color: var(--paper); }
.sec--deep .eyebrow { color: var(--lemon); }
.sec--deep .muted { color: #A9B5A8; }

/* asymetryczna szyna: etykieta po lewej, treść po prawej */
.rail { display: grid; gap: 26px; }
@media (min-width: 900px) {
    .rail { grid-template-columns: 210px minmax(0, 1fr); gap: var(--gut) calc(var(--gut) * 2); align-items: start; }
    .rail--wide { grid-template-columns: 260px minmax(0, 1fr); }
    .rail__side { position: sticky; top: 130px; }
}
.rail__side .eyebrow { display: block; }
.rail__side p { margin-top: 14px; font-size: 14.5px; color: var(--muted); }

.cols { display: grid; gap: var(--gut); }
@media (min-width: 700px)  { .cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 700px)  { .cols--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px)  { .cols--21 { grid-template-columns: 1.35fr 1fr; gap: calc(var(--gut) * 1.8); } }
@media (min-width: 900px)  { .cols--12 { grid-template-columns: 1fr 1.35fr; gap: calc(var(--gut) * 1.8); } }

.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── Hero ──────────────────────────────────────────────────────── */

.hero { position: relative; padding: 46px 0 0; overflow: hidden; }
.hero__grid { display: grid; gap: 30px; }
.hero__kick { margin-bottom: 18px; }
.hero__lead { margin: 22px 0 30px; max-width: 34em; }

.hero__fig { position: relative; }
.hero__fig img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }

.hero__note {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 20px 22px;
    margin: -34px 0 0 0;
    position: relative;
    max-width: 330px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-2);
}
.hero__note b { display: block; font-family: var(--disp); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 6px; }

@media (min-width: 900px) {
    .hero { padding-top: 72px; }
    .hero__grid { grid-template-columns: 1fr 1.06fr; gap: calc(var(--gut) * 2); align-items: center; }
    .hero__fig { margin-right: calc(var(--edge) * -1); }
    .hero__fig img { aspect-ratio: 5 / 6; }
    .hero__note { position: absolute; left: -48px; bottom: 40px; margin: 0; box-shadow: 0 20px 50px rgba(34, 50, 42, .1); }
}

.facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    margin: 34px 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
@media (min-width: 620px) { .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.facts dt { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.facts dd { margin: 0; font-family: var(--disp); font-size: clamp(19px, 2.8vw, 24px); line-height: 1.2; color: var(--ink); }

/* ── Nagłówek podstrony ────────────────────────────────────────── */

.phead { padding: 44px 0 0; }
.phead__in { padding-bottom: var(--sec); border-bottom: 1px solid var(--line); }
.phead .h-lg { margin: 14px 0 20px; }
.phead p.lead { max-width: 44em; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--line-2); }
.crumbs a:hover { color: var(--clay); }

.phead__fig { margin-top: 34px; }
.phead__fig img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: 2px; }

/* ── Figury ────────────────────────────────────────────────────── */

.fig { margin: 0; }
.fig img { width: 100%; border-radius: 2px; }
.fig--sq img { aspect-ratio: 4 / 3; object-fit: cover; }
.fig--tall img { aspect-ratio: 3 / 4; object-fit: cover; }
.fig--wide img { aspect-ratio: 16 / 9; object-fit: cover; }
.fig figcaption { margin-top: 12px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }

.offset { display: grid; gap: var(--gut); }
@media (min-width: 900px) {
    .offset { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
    .offset > :nth-child(2) { margin-top: 68px; }
}

/* ── Kafle ─────────────────────────────────────────────────────── */

.tile {
    display: block;
    padding: 28px 0 0;
    border-top: 2px solid var(--line-2);
    text-decoration: none;
    color: inherit;
}
.tile h3 { margin-bottom: 12px; font-size: clamp(21px, 2.8vw, 26px); }
.tile p { font-size: 15.5px; }
.tile__foot { margin-top: 18px; }
.tile--link { transition: border-color .35s var(--ease); }
.tile--link:hover { border-color: var(--clay); }
.tile--ent { border-top-color: var(--sage); }

/* ── Karta dań ─────────────────────────────────────────────────── */

.plate { padding: 20px 0; border-bottom: 1px solid var(--line); }
.plate:first-child { padding-top: 0; }
.plate__hd { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.plate__name { font-family: var(--disp); font-size: clamp(19px, 2.5vw, 23px); line-height: 1.25; color: var(--ink); }
.plate__price { font-family: var(--disp); font-size: 18px; color: var(--clay); white-space: nowrap; }
.plate__txt { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--muted); }
.tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sage-dk);
    background: var(--sage-w);
    padding: 2px 8px;
    border-radius: 2px;
    vertical-align: 2px;
}

.setmenu {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 28px 26px;
}
.sec--paper .setmenu, .sec--sage .setmenu { background: var(--paper); }
.setmenu h3 { margin-bottom: 8px; }
.setmenu__price { font-family: var(--disp); font-size: 30px; color: var(--clay); margin-bottom: 14px; }
.setmenu ul { list-style: none; margin: 0; padding: 0; }
.setmenu li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.setmenu li:last-child { border-bottom: 0; }

/* ── Statystyki, cytaty, listy ─────────────────────────────────── */

.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px var(--gut); }
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.stats b { display: block; font-family: var(--disp); font-size: clamp(36px, 6.4vw, 60px); font-weight: 400; line-height: 1; color: var(--lemon); }
.stats span { display: block; margin-top: 10px; font-size: 14px; letter-spacing: .05em; color: #A9B5A8; }

.saying { margin: 0; padding-top: 24px; border-top: 2px solid var(--line-2); }
.saying p { font-family: var(--disp); font-size: clamp(19px, 2.5vw, 22px); line-height: 1.45; color: var(--ink); margin-bottom: 16px; }
.saying footer { font-size: 13.5px; letter-spacing: .04em; color: var(--muted); }

.deflist { margin: 0; }
.deflist > div { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 560px) { .deflist > div { grid-template-columns: 150px minmax(0, 1fr); gap: 18px; } }
.deflist dt { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.deflist dd { margin: 0; font-size: 15.5px; line-height: 1.6; }
.deflist a { text-decoration: none; border-bottom: 1px solid var(--line-2); }
.deflist a:hover { color: var(--clay); }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: st; display: grid; gap: 22px; }
.steps li { counter-increment: st; padding-left: 52px; position: relative; }
.steps li::before {
    content: counter(st, decimal-leading-zero);
    position: absolute; left: 0; top: 0;
    font-family: var(--disp); font-size: 17px; color: var(--clay);
}
.steps b { display: block; font-family: var(--disp); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.steps p { font-size: 15.5px; margin: 0; }

.tline { list-style: none; margin: 0; padding: 0; }
.tline li { padding: 20px 0 20px 0; border-bottom: 1px solid var(--line); display: grid; gap: 6px; }
@media (min-width: 620px) { .tline li { grid-template-columns: 110px minmax(0, 1fr); gap: 24px; } }
.tline b { font-family: var(--disp); font-size: 22px; font-weight: 400; color: var(--clay); }
.tline p { margin: 0; font-size: 15.5px; }

.bullets { list-style: none; margin: 0; padding: 0; }
.bullets li { position: relative; padding: 0 0 12px 22px; font-size: 15.5px; }
.bullets li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--clay); }

/* ── Pas z obrazem ─────────────────────────────────────────────── */

.band { display: grid; }
@media (min-width: 900px) { .band { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.band__fig { position: relative; min-height: 300px; }
.band__fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .band__fig { min-height: 420px; } }
.band__body { background: var(--sage-w); padding: var(--sec) var(--edge); display: flex; align-items: center; }
.band__in { width: 100%; max-width: 560px; margin: 0 auto; }

/* ── FAQ ───────────────────────────────────────────────────────── */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 40px 20px 0;
    position: relative;
    font-family: var(--disp);
    font-size: clamp(18px, 2.4vw, 21px);
    color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute; right: 6px; top: 18px;
    font-size: 22px; color: var(--clay); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 0 22px; font-size: 15.5px; color: var(--ink-2); max-width: 60em; }

/* ── Galeria ───────────────────────────────────────────────────── */

.gal { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 900px) { .gal { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
.gal figure { margin: 0; }
.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; }
.gal figcaption { margin-top: 10px; font-size: 13px; color: var(--muted); }
.gal .gal--tall img { aspect-ratio: 3 / 4; }

/* ── Formularz ─────────────────────────────────────────────────── */

.form { display: grid; gap: 18px; }
@media (min-width: 700px) { .form--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field label, .field > span, .legend { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    font-family: var(--sans);
    font-size: 16px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    transition: border-color .3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); }
.field--err input, .field--err select, .field--err textarea { border-color: var(--clay); background: #FCF4F0; }
.field__hint { margin-top: 7px; font-size: 13px; color: var(--muted); }

.check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 12px; align-items: start; padding: 4px 0; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--sage-dk); }
.check span { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.check a { color: var(--sage-dk); }
.check--err span { color: var(--clay); }

/* ── Stopka ────────────────────────────────────────────────────── */

.foot { background: var(--deep); color: var(--on-deep); padding: var(--sec) 0 40px; font-size: 15px; }
.foot__grid { display: grid; gap: 38px; }
@media (min-width: 720px)  { .foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--gut); } }
.foot h4 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--lemon); margin-bottom: 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { padding: 5px 0; color: #B7C2B5; }
.foot a { text-decoration: none; color: #D6DED3; }
.foot a:hover { color: var(--lemon); }
.foot__mark { font-family: var(--disp); font-size: 32px; letter-spacing: .04em; color: var(--paper); margin-bottom: 16px; }
.foot__mark em { font-style: italic; color: var(--lemon); }
.foot__about p { color: #B7C2B5; font-size: 14.5px; }
.foot__ent { margin-top: 10px; color: var(--lemon) !important; }

.foot__disc {
    margin-top: 46px;
    padding: 30px 0 0;
    border-top: 1px solid rgba(232, 237, 228, .16);
    font-size: 13.5px;
    line-height: 1.7;
    color: #A9B5A8;
}
.foot__disc strong { color: var(--paper); font-weight: 600; }
.foot__disc a { border-bottom: 1px solid rgba(232, 237, 228, .3); }

.foot__bot {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 237, 228, .16);
    display: grid;
    gap: 14px;
    font-size: 13px;
    color: #A9B5A8;
}
@media (min-width: 900px) { .foot__bot { grid-template-columns: 1fr auto; align-items: center; } }
.foot__bot nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot__bot button {
    background: none; border: 0; padding: 0; cursor: pointer;
    font: inherit; color: #D6DED3; text-decoration: none;
}
.foot__bot button:hover { color: var(--lemon); }

/* ── Cookies ───────────────────────────────────────────────────── */

.cookiebar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: var(--paper);
    border-top: 1px solid var(--line-2);
    box-shadow: 0 -14px 40px rgba(34, 50, 42, .1);
    transform: translateY(110%);
    transition: transform .5s var(--ease);
}
.cookiebar.is-on { transform: translateY(0); }
.cookiebar__in { display: grid; gap: 16px; padding: 20px 0; }
@media (min-width: 1000px) { .cookiebar__in { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 30px; } }
.cookiebar p { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.cookiebar a { color: var(--sage-dk); }

.sheet {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(34, 50, 42, .5);
    display: none;
    padding: 20px;
    overflow-y: auto;
}
.sheet.is-on { display: flex; align-items: center; justify-content: center; }
.sheet__box {
    position: relative;
    width: 100%; max-width: 620px;
    background: var(--paper);
    border-radius: 2px;
    padding: 34px 26px;
    max-height: 88vh;
    overflow-y: auto;
}
@media (min-width: 700px) { .sheet__box { padding: 42px 44px; } }
.sheet__close {
    position: absolute; top: 12px; right: 14px;
    width: 40px; height: 40px;
    background: none; border: 0; cursor: pointer;
    font-size: 26px; line-height: 1; color: var(--muted);
}
.sheet__close:hover { color: var(--ink); }
.sheet h3 { margin: 10px 0 14px; }

.copt { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.copt input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--sage-dk); }
.copt b { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.copt p { font-size: 14px; margin: 0; color: var(--muted); }

/* ── Treść prawna ──────────────────────────────────────────────── */

.legal { max-width: 46em; }
.legal h2 { margin: 44px 0 14px; font-size: clamp(22px, 3vw, 28px); }
.legal h3 { margin: 30px 0 10px; font-size: 19px; }
.legal ul, .legal ol { padding-left: 20px; margin: 0 0 18px; }
.legal li { padding: 4px 0; }
.legal a { color: var(--sage-dk); }
.legal__meta { font-size: 14px; color: var(--muted); padding-bottom: 22px; border-bottom: 1px solid var(--line); }

/* ── Pojawianie się ────────────────────────────────────────────── */

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

::selection { background: var(--sage-w2); color: var(--ink); }

:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
