@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

/* SowaKuchnia — warm studio poster */

:root {
    --ink: #1c140e;
    --ink-soft: #4a3728;
    --paper: #fff4dc;
    --white: #fffdf8;
    --mist: #f3e2c4;
    --line: #e8d0a4;
    --muted: #6b5340;
    --accent: #e23d28;
    --accent-deep: #b91c12;
    --gold: #f0b429;
    --max: 1120px;
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --radius: 1.35rem;
    --shadow: 0 16px 40px rgba(28, 20, 14, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 1.02rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* Compact cookie chip — not a full-width wall */
.cookie-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    max-width: 640px;
    margin-inline: auto;
    padding: 0.4rem 0.45rem 0.4rem 0.85rem;
    background: var(--ink);
    color: #fff8ee;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(28, 20, 14, 0.28);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}
.cookie-banner h2 { display: none; }
.cookie-banner p {
    font-size: 0.74rem;
    color: rgba(255, 248, 238, 0.82);
    margin: 0;
    line-height: 1.35;
    flex: 1 1 auto;
}
.cookie-actions { display: flex; gap: 0.35rem; flex-shrink: 0; }
.cookie-actions .btn {
    min-height: 34px;
    min-width: 0;
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
    border-radius: 999px;
}
.btn-reject {
    background: transparent;
    color: #fff8ee;
    border-color: rgba(255, 248, 238, 0.35);
}
.btn-reject:hover { background: #fff8ee; color: var(--ink); }
.cookie-links { display: none; }
.cookie-banner a { color: var(--gold); }

.ad-strip {
    background: var(--ink);
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.28rem 1rem;
}
.ad-strip span { display: block; width: min(100%, var(--max)); margin-inline: auto; }

.ad-notice, .trader-bar { display: none; }

.site-header {
    background: var(--white);
    color: var(--ink);
    padding: 0.35rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
}
.header-inner {
    width: min(100% - 1.4rem, var(--max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 44px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--ink);
}
.logo-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.logo-text {
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.035em;
    line-height: 1.05;
    white-space: nowrap;
}
.logo-text em { font-style: normal; color: var(--accent); }
.header-meta { display: none; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.main-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 600;
}
.main-nav a:hover { color: var(--ink); }
.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.35rem 0.75rem !important;
    border-radius: 999px;
    font-size: 0.78rem !important;
}
.nav-cta:hover { background: var(--accent-deep) !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 0.9rem 1.4rem; }
.btn-invert {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}
.btn-invert:hover { background: #fff; color: var(--ink); }

/* Full-bleed photo hero */
.hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: grid;
    align-items: end;
    color: #fff8ee;
    overflow: hidden;
    background: #3a2416;
}
.hero-visual {
    position: absolute;
    inset: 0;
}
.hero-visual img.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(1.05);
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 20, 14, 0.82) 0%, rgba(28, 20, 14, 0.35) 55%, rgba(28, 20, 14, 0.15) 100%);
}
.hero-cover-float {
    position: absolute;
    right: 8%;
    bottom: 10%;
    width: min(28%, 190px);
    z-index: 2;
    border-radius: 0.7rem;
    box-shadow: var(--shadow);
    border: 5px solid #fff;
}
.hero-copy {
    position: relative;
    z-index: 2;
    padding: clamp(2.4rem, 7vw, 4.8rem) clamp(1.2rem, 5vw, 4rem) 2.6rem;
    max-width: 40rem;
}
.hero-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}
.hero-brand {
    font-weight: 800;
    font-size: clamp(2.2rem, 5.4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 0.55rem;
    color: #fff;
}
.hero-line {
    font-size: 1.12rem;
    font-weight: 600;
    color: #ffe8c2;
    margin-bottom: 0.85rem;
}
.hero-sub {
    color: rgba(255, 248, 238, 0.86);
    margin-bottom: 1rem;
    font-size: 0.98rem;
}
.hero-merchant {
    font-size: 0.82rem;
    color: rgba(255, 248, 238, 0.7);
    margin-bottom: 0.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.1rem; }

.colophon {
    background: var(--gold);
    color: var(--ink);
    padding: 1.15rem 0;
}
.colophon h2 { font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; }
.colophon p { max-width: 64rem; margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
.colophon a { color: var(--accent-deep); }
.colophon-meta { display: none; }

.context {
    padding: 3.2rem 0;
    background: var(--white);
}
.context-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.8rem;
    align-items: center;
}
.context figure {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.context figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.context figcaption { display: none; }
.context h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
}
.context p { color: var(--muted); margin-bottom: 0.7rem; max-width: 38rem; }
.note-box { display: none; }
.eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.45rem;
}

.catalog { padding: 3.4rem 0 3rem; background: var(--paper); }
.catalog-grid {
    display: grid;
    grid-template-columns: minmax(180px, 230px) 1fr;
    gap: 2.2rem;
    align-items: start;
}
.book-frame {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.9rem;
    box-shadow: var(--shadow);
}
.book-frame img { width: 100%; height: auto; border-radius: 0.5rem; }
.book-note { margin-top: 0.55rem; font-size: 0.74rem; color: var(--muted); }
.catalog .eyebrow {
    background: var(--gold);
    color: var(--ink);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}
.catalog h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0.2rem;
}
.subtitle { font-size: 1rem; color: var(--accent); font-weight: 650; margin-bottom: 0.85rem; }
.lead { color: var(--muted); margin-bottom: 1.1rem; max-width: 40rem; }
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}
.spec-grid div {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.88rem;
}
.spec-grid span {
    display: block;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}
.price-caveat { font-size: 0.82rem; color: var(--muted); margin: 0.7rem 0 1rem; }

.section-head {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto 1.3rem;
}
.section-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}
.section-head p { color: var(--muted); max-width: 38rem; font-size: 0.94rem; }

.essay { padding: 3rem 0 1.2rem; background: var(--white); }
.essay-grid {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.essay-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.essay-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.essay-card:nth-child(2) img { object-position: center 22%; }
.essay-card .tile-body { padding: 1rem 1.05rem 1.15rem; }
.essay-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 0.35rem; }
.essay-card p { color: var(--muted); font-size: 0.88rem; }
.essay-num {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.mosaic { padding: 1.2rem 0 3rem; background: var(--white); }
.mosaic-grid {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
}
.tile {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
}
.tile img { width: 100%; height: 210px; object-fit: cover; }
.tile.tall img { height: 250px; }
.tile-body { padding: 1.05rem 1.1rem 1.2rem; }
.tile h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 0.3rem; }
.tile p { color: var(--muted); font-size: 0.9rem; }

.ticket-section { padding: 2.8rem 0 3.6rem; background: var(--paper); }
.ticket-section h2 {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto 1rem;
    font-size: clamp(1.7rem, 3.2vw, 2.2rem);
    font-weight: 800;
}
.ticket {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.2rem 1.2rem 1.3rem;
    box-shadow: var(--shadow);
}
.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}
.steps li { display: grid; gap: 0.4rem; }
.steps li::before {
    content: attr(data-n);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.steps strong { display: block; font-size: 0.98rem; }
.steps span { color: var(--muted); font-size: 0.86rem; }
.ticket-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--ink);
    color: #fff8ee;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
}
.price-ref { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.price-now { font-size: 2rem; font-weight: 800; line-height: 1; }
.price-was { font-size: 0.82rem; opacity: 0.75; margin-top: 0.2rem; }
.price-was s { text-decoration: line-through; }
.policy-note { margin-top: 0.85rem; font-size: 0.82rem; color: var(--muted); }

.faq { background: var(--white); padding: 3rem 0; }
.faq h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); font-weight: 800; margin-bottom: 0.9rem; }
.faq-list { display: grid; gap: 0.4rem; max-width: 740px; }
.faq-list details {
    background: var(--paper);
    border-radius: 0.85rem;
    padding: 0.75rem 0.95rem;
}
.faq-list summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "+  "; color: var(--accent); }
.faq-list details[open] summary::before { content: "–  "; }
.faq-list p { margin-top: 0.4rem; color: var(--muted); font-size: 0.92rem; }

.about { padding: 2.8rem 0 3.2rem; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; }
.about h2, .about h3 { font-weight: 800; margin-bottom: 0.55rem; }
.about h2 { font-size: clamp(1.45rem, 2.8vw, 1.85rem); }
.doc-links { list-style: none; display: grid; gap: 0.35rem; }

.site-footer {
    background: var(--ink);
    color: rgba(255, 248, 238, 0.72);
    padding-top: 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
}
.site-footer .logo { color: #fff; }
.site-footer .logo-text em { color: var(--gold); }
.footer-tag { margin: 0.5rem 0; font-size: 0.86rem; }
.footer-entity { font-size: 0.82rem; margin-bottom: 0.7rem; }
.footer-badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.45rem;
    border-radius: 999px;
}
.site-footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 0.45rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.25rem; }
.site-footer a { color: rgba(255, 248, 238, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-disclosure {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.1rem 0;
    font-size: 0.82rem;
}
.footer-disclosure h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.3rem; }
.footer-disclosure p { margin-bottom: 0.3rem; max-width: 70rem; }
.footer-bar {
    background: #120d09;
    color: rgba(255,255,255,0.45);
    padding: 0.8rem 0 1rem;
    font-size: 0.74rem;
}
.footer-bar a { color: var(--gold); }
.footer-bar-inner { display: grid; gap: 0.25rem; }

.page { padding: 1.8rem 0 3.4rem; }
.dossier {
    width: min(100% - 2rem, 1080px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.4rem;
    align-items: start;
}
.dossier-nav {
    position: sticky;
    top: 3.6rem;
    background: var(--white);
    border-radius: 1rem;
    padding: 0.95rem 0.9rem;
    font-size: 0.84rem;
}
.dossier-nav h2 { font-size: 1rem; margin-bottom: 0.5rem; }
.dossier-nav ul { list-style: none; display: grid; gap: 0.3rem; }
.dossier-nav a { text-decoration: none; color: var(--ink-soft); }
.dossier-nav a:hover, .dossier-nav a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.page-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.3rem, 3.5vw, 2.2rem);
}
.doc-badge {
    display: inline-block;
    background: var(--mist);
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
}
.page-card h1 {
    font-size: clamp(1.7rem, 3.2vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.45rem;
}
.page-card .muted { color: var(--muted); margin-bottom: 1.3rem; }
.page-card h2 { font-size: 1.2rem; font-weight: 800; margin: 1.4rem 0 0.45rem; }
.page-card h3 { font-size: 1.02rem; margin: 1rem 0 0.3rem; }
.page-card p, .page-card li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.page-card ul, .page-card ol { padding-left: 1.1rem; margin-bottom: 0.8rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 0.9rem 0 1.2rem; font-size: 0.92rem; }
.legal-table th, .legal-table td {
    text-align: left;
    padding: 0.5rem 0.35rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
.legal-table th { width: 36%; color: var(--muted); font-weight: 600; }
.cookie-table { font-size: 0.88rem; }
.cookie-table th { width: auto; color: var(--ink); font-weight: 700; background: var(--mist); }

.inner-header .header-inner { display: flex; }
.mini-footer .footer-bar { border: 0; }

@media (max-width: 960px) {
    .main-nav a:not(.nav-cta) { display: none; }
    .hero-cover-float { display: none; }
    .catalog-grid,
    .context-grid,
    .essay-grid,
    .mosaic-grid,
    .steps,
    .about-grid,
    .footer-top,
    .dossier {
        grid-template-columns: 1fr;
    }
    .hero { min-height: 520px; }
    .hero-copy { max-width: none; }
    .hero-brand { font-size: 1.9rem; }
    .hero-line { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .dossier-nav { position: static; }
}

@media (max-width: 640px) {
    .cookie-banner { border-radius: 16px; padding: 0.55rem 0.65rem; }
    .cookie-inner { flex-wrap: wrap; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
    .nav-cta { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
