/* Dodatkowe style dla sklepu (na bazie palety SZLAK) - rozszerza styles.css z paczki */

/* === WYMUSZENIE JASNEJ, CZYTELNEJ PALETY (overriding forest palette) === */
:root {
    --bg:        #ece4d2;
    --bg-2:      #e3d9c0;
    --paper:     #f4ecd8;
    --ink:       #1c2620;
    --ink-2:     #344038;
    --ink-soft:  #586458;
    --line:      #d4c8a8;
    --rule:      rgba(28,38,32,0.18);
    --forest:    #2c4a32;
    --forest-d:  #1d3322;
    --moss:      #6b7b3a;
    --rust:      #d68a2a;     /* mustard accent z paczki */
    --rust-d:    #b97320;
    --bone:      #f7f1e0;
    --kraft:     #c9b88e;
    --headline:  #ebd8a8;
}

body {
    background: var(--bg) !important;
    color: var(--ink) !important;
}

/* Tło topograficzne - bardzo subtelne */
.bg-topo { opacity: 0.05 !important; }

/* Headline w heroB ma być czytelny - jasny piaskowy na ciemnym dla efektu */
.heroB { background: color-mix(in oklab, var(--forest-d) 90%, var(--ink)) !important; color: var(--bone); }
.heroB-headline, .heroB .heroB-tagline, .heroB .stamp, .heroB .coord, .heroB .heroB-stat .v, .heroB .heroB-stat .l { color: var(--bone) !important; }
.heroB-headline .col-ru { color: var(--rust) !important; }
.heroB-headline .stroke { color: var(--rust) !important; -webkit-text-stroke: 0; }

/* Sekcje pod hero - jasne tło */
.section { background: transparent; color: var(--ink); padding: 64px 0; }
.section .num { color: var(--rust); font-weight: 700; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.section .title { color: var(--ink); font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; line-height: 1.1; margin: 12px 0 24px; }
.section h1, .section h2, .section h3, .section h4 { color: var(--ink); }
.section-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; gap: 24px; }
.section-head .rhs { color: var(--ink-soft); font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-align: right; line-height: 1.6; opacity: .8; }

/* Ticker - ciemne tło + jasny tekst (czytelne) */
.cta-strip {
    background: var(--ink) !important;
    color: var(--bone) !important;
    padding: 14px 0;
    overflow: hidden;
    margin: 32px 0;
}
.cta-strip .ticker {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--bone);
}
.cta-strip .ticker span { color: var(--bone); }
.cta-strip .ticker .sep {
    width: 6px; height: 6px;
    background: var(--rust);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Buttony - czytelny kontrast */
.btn.primary { background: var(--rust) !important; color: white !important; border: 0; }
.btn.primary:hover { background: var(--rust-d) !important; color: white !important; }
.btn.ghost { background: var(--paper) !important; color: var(--ink) !important; border: 1.5px solid var(--ink) !important; }
.btn.ghost:hover { background: var(--ink) !important; color: var(--paper) !important; }

/* Karty produktów - białe tło, ciemny tekst */
.patch-card {
    background: #fff !important;
    color: var(--ink) !important;
    border: 1px solid #e0d8c4;
    border-radius: 12px;
    padding: 20px;
    transition: all 200ms;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(28, 38, 32, 0.04);
}
.patch-card:hover {
    border-color: var(--rust);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 38, 32, 0.12);
}
.patch-card .name { color: var(--ink) !important; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.patch-card .price { color: var(--ink-soft) !important; font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 1px; }
.patch-card .corner-no { font-family: 'Space Mono', monospace; font-size: 10px; opacity: .5; letter-spacing: 1.5px; }
.patch-card .meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-top: 8px; padding-top: 12px; border-top: 1px solid #f0e7d3; }
.patch-card .patch-svg { margin: 0 auto; }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery { grid-template-columns: 1fr; } }

.feat-card {
    background: #fff !important;
    color: var(--ink) !important;
    border: 1px solid #e0d8c4;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(28, 38, 32, 0.04);
}
.feat-card h3 { color: var(--ink) !important; font-family: 'Oswald', sans-serif; font-size: 22px; margin: 16px 0 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.feat-card p { color: var(--ink-soft) !important; font-size: 14px; line-height: 1.6; }
.feat-card .num-tag { font-family: 'Space Mono', monospace; font-size: 10px; opacity: .5; letter-spacing: 2px; color: var(--rust); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .feat-grid { grid-template-columns: 1fr; } }

/* Sekcje wewnątrz kontenerów */
.wrap { color: var(--ink); }
.lead { color: var(--ink-soft) !important; }
.section-head .rhs { color: var(--ink-soft); }

/* === HEADER === */
.hdr { padding: 16px 0; border-bottom: 1px solid var(--line); background: color-mix(in oklab, var(--paper) 96%, var(--ink)); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 40px; height: 40px; border-radius: 6px; background: var(--rust); color: var(--paper); display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 1.5px; font-size: 14px; }
.brand-sub { font-family: 'Space Mono', monospace; font-size: 9px; opacity: .6; letter-spacing: 1.5px; }

.nav { display: flex; gap: 8px; }
.nav-link { padding: 8px 16px; border-radius: 4px; color: var(--ink); text-decoration: none; font-weight: 500; font-size: 14px; transition: background 200ms; }
.nav-link:hover { background: color-mix(in oklab, var(--rust) 12%, transparent); }
.nav-link.active { background: color-mix(in oklab, var(--rust) 18%, transparent); color: var(--rust); }

.hdr-actions { display: flex; gap: 8px; align-items: center; }
.ic-btn { width: 40px; height: 40px; border-radius: 6px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); display: grid; place-items: center; cursor: pointer; position: relative; text-decoration: none; }
.ic-btn:hover { background: color-mix(in oklab, var(--rust) 10%, var(--paper)); border-color: var(--rust); }
.cart-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--rust); color: var(--paper); font-size: 10px; font-weight: 700; display: grid; place-items: center; }
.mobile-toggle { display: none; }

/* === FOOTER === */
.ftr { margin-top: 80px; padding: 64px 0 32px; border-top: 1px solid var(--line); background: color-mix(in oklab, var(--ink) 92%, var(--paper)); color: color-mix(in oklab, var(--paper) 92%, var(--ink)); }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.ftr-h { font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 2px; font-size: 12px; margin-bottom: 12px; opacity: .85; }
.ftr-col a { display: block; color: inherit; text-decoration: none; font-size: 14px; padding: 4px 0; opacity: .8; }
.ftr-col a:hover { opacity: 1; color: var(--rust); }
.ftr-desc { font-size: 14px; opacity: .7; margin: 16px 0; }
.ftr-stamps { display: flex; gap: 8px; }
.ftr-contact { font-size: 13px; opacity: .7; line-height: 1.6; margin-bottom: 12px; }
.ftr-contact a { display: inline; padding: 0; }
.ftr-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid color-mix(in oklab, var(--paper) 20%, transparent); font-size: 12px; opacity: .6; }
.ftr-links { display: flex; gap: 16px; }
.ftr-links a { color: inherit; }
.link-btn { background: none; border: none; color: inherit; cursor: pointer; padding: 4px 0; font: inherit; opacity: .8; text-align: left; }

/* === FORMULARZE === */
.text-input, .select-input { width: 100%; padding: 12px 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink); transition: border-color 200ms; }
.text-input:focus, .select-input:focus { outline: none; border-color: var(--rust); }
.qty-input { width: 100px; }
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.form-row label { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; }
.form-row label.grow { flex: 2; }
.form-error { color: #c0392b; font-size: 13px; margin-top: 4px; display: block; }
.form-hint { font-size: 13px; opacity: .7; margin-top: 8px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; }
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--rust); }

fieldset { border: 1px solid var(--line); padding: 24px; border-radius: 8px; margin-bottom: 24px; background: color-mix(in oklab, var(--paper) 96%, transparent); }
fieldset legend { padding: 0 12px; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 1.5px; font-size: 13px; color: var(--rust); display: flex; align-items: center; gap: 8px; }

/* === FLASH MESSAGES === */
.flash { padding: 14px 18px; border-radius: 6px; font-size: 14px; }
.flash.success { background: color-mix(in oklab, #2ecc71 18%, var(--paper)); border: 1px solid color-mix(in oklab, #2ecc71 50%, var(--paper)); color: #1e7d4d; }
.flash.error { background: color-mix(in oklab, #e74c3c 18%, var(--paper)); border: 1px solid color-mix(in oklab, #e74c3c 50%, var(--paper)); color: #a02619; }

/* === KARTA PRODUKTU === */
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.prod-visual { position: relative; padding: 48px; background: color-mix(in oklab, var(--paper) 92%, var(--ink)); border-radius: 12px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.prod-stamps { display: flex; gap: 8px; }
.prod-info h1 { margin-top: 12px; }
.prod-form { margin-top: 32px; }

.opt-group { margin-bottom: 24px; }
.opt-h { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; margin-bottom: 12px; text-transform: uppercase; }
.opt-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 8px; }
.opt-tile { position: relative; padding: 14px 12px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); cursor: pointer; display: flex; flex-direction: column; gap: 4px; transition: all 200ms; text-align: center; }
.opt-tile:hover { border-color: var(--rust); }
.opt-tile input { position: absolute; opacity: 0; pointer-events: none; }
.opt-tile input:checked ~ .opt-tile-label, .opt-tile.active { border-color: var(--rust); }
.opt-tile.active, .opt-tile:has(input:checked) { background: color-mix(in oklab, var(--rust) 12%, var(--paper)); border-color: var(--rust); }
.opt-tile-label { font-weight: 600; font-size: 14px; }
.opt-tile-sub { font-size: 11px; opacity: .6; font-family: 'Space Mono', monospace; text-transform: uppercase; }
.opt-tile-addon { font-size: 11px; color: var(--rust); font-weight: 700; }
.opt-tile-badge { position: absolute; top: -6px; right: 6px; background: var(--rust); color: var(--paper); padding: 2px 6px; border-radius: 8px; font-size: 9px; font-weight: 700; letter-spacing: 1px; }
.opt-tile-icon { padding: 8px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }

.qty-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 8px; }
.qty-tier { position: relative; padding: 12px 8px; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; text-align: center; background: var(--paper); transition: all 200ms; display: flex; flex-direction: column; gap: 2px; }
.qty-tier input { position: absolute; opacity: 0; }
.qty-tier:has(input:checked), .qty-tier.active { background: color-mix(in oklab, var(--rust) 12%, var(--paper)); border-color: var(--rust); }
.qty-tier.hot { border-color: var(--rust); }
.qty-tier-q { font-weight: 700; font-size: 16px; }
.qty-tier-pp { font-size: 12px; opacity: .7; }
.qty-tier-save { color: var(--rust); font-weight: 700; font-size: 11px; }
.qty-tier-badge { position: absolute; top: -6px; right: 4px; background: var(--rust); color: var(--paper); padding: 1px 6px; border-radius: 8px; font-size: 9px; font-weight: 700; }

.prod-summary { display: flex; align-items: center; justify-content: space-between; padding: 20px; background: color-mix(in oklab, var(--rust) 8%, var(--paper)); border-radius: 8px; margin-top: 24px; }
.prod-price { display: flex; flex-direction: column; }
.prod-price-label { font-size: 11px; opacity: .6; letter-spacing: 1px; }
.prod-price-value { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; }
.prod-description { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }

/* === KONFIGURATOR === */
.conf-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.conf-preview { position: sticky; top: 100px; }
.preview-frame { aspect-ratio: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 32px; display: flex; align-items: center; justify-content: center; position: relative; }
.preview-meta { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.opt-step { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in oklab, var(--paper) 96%, transparent); margin-bottom: 16px; }
.opt-step-h { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: 'Oswald', sans-serif; font-size: 18px; }
.opt-help { font-size: 13px; opacity: .7; margin-bottom: 12px; }
.upload-zone { margin-top: 16px; padding: 32px; border: 2px dashed var(--line); border-radius: 8px; text-align: center; transition: all 200ms; }
.upload-zone.drag-over { border-color: var(--rust); background: color-mix(in oklab, var(--rust) 8%, var(--paper)); }
.upload-label { display: block; cursor: pointer; }
.upload-preview-img { max-width: 100%; max-height: 100%; object-fit: contain; }

.conf-summary { padding: 24px; background: color-mix(in oklab, var(--rust) 14%, var(--paper)); border-radius: 8px; display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.conf-summary-label { display: block; font-size: 11px; opacity: .7; letter-spacing: 1.5px; text-transform: uppercase; }
.conf-summary-price { display: block; font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; }

/* === KOSZYK === */
.cart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.cart-row { display: grid; grid-template-columns: 80px 1fr 80px 100px 24px; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-meta h4 { font-size: 16px; margin-bottom: 4px; }
.cart-attrs, .cart-code { font-size: 12px; opacity: .7; display: block; font-family: 'Space Mono', monospace; }
.cart-qty input { width: 70px; text-align: center; padding: 8px; border: 1px solid var(--line); border-radius: 4px; }
.cart-price { font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 18px; }
.cart-remove { background: none; border: none; cursor: pointer; font-size: 24px; color: var(--ink); opacity: .5; transition: opacity 200ms; }
.cart-remove:hover { opacity: 1; color: #c0392b; }

.cart-summary { padding: 24px; background: color-mix(in oklab, var(--paper) 96%, var(--ink)); border-radius: 8px; height: fit-content; position: sticky; top: 100px; }
.cart-summary h3 { margin-bottom: 16px; font-family: 'Oswald', sans-serif; font-size: 18px; }
.discount-form { display: flex; gap: 8px; margin-bottom: 16px; }
.discount-form input { flex: 1; }
.cart-totals { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.cart-totals dt { font-size: 14px; opacity: .7; }
.cart-totals dd { font-weight: 700; font-family: 'Oswald', sans-serif; }

.empty-state { padding: 80px 20px; text-align: center; }

/* === CHECKOUT === */
.checkout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.summary-items { list-style: none; padding: 0; margin: 0 0 16px; }
.summary-items li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }

/* === KONTO === */
.acc-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.acc-menu { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.acc-menu a, .acc-menu button { padding: 8px 12px; border-radius: 4px; color: var(--ink); text-decoration: none; font-size: 14px; transition: background 200ms; }
.acc-menu a:hover, .acc-menu a.active { background: color-mix(in oklab, var(--rust) 14%, transparent); color: var(--rust); }
.acc-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 32px; }
.acc-stat { padding: 20px; background: color-mix(in oklab, var(--paper) 96%, var(--ink)); border-radius: 8px; }
.acc-stat-label { display: block; font-size: 11px; letter-spacing: 1px; opacity: .6; text-transform: uppercase; }
.acc-stat-value { display: block; font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; }
.acc-table { width: 100%; border-collapse: collapse; }
.acc-table th, .acc-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.acc-table th { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; opacity: .6; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-paid { background: #d1e7dd; color: #0f5132; }
.badge-shipped { background: #cfe2ff; color: #084298; }
.badge-delivered { background: #d1e7dd; color: #0f5132; }
.badge-cancelled { background: #f8d7da; color: #842029; }

.auth-card { max-width: 460px; margin: 0 auto; padding: 40px; background: color-mix(in oklab, var(--paper) 96%, var(--ink)); border-radius: 12px; }
.auth-card label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 500; }
.auth-card label input { margin-top: 6px; }

.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 500; }

.thank-you-card { padding: 48px; background: color-mix(in oklab, var(--rust) 8%, var(--paper)); border-radius: 16px; max-width: 640px; }
.info-block { margin-top: 32px; padding: 24px; background: var(--paper); border-radius: 8px; border: 1px solid var(--line); }
.info-block h3 { font-family: 'Oswald', sans-serif; margin-bottom: 12px; }

.bg-topo { position: fixed; inset: 0; z-index: -1; opacity: .07; pointer-events: none; }
.bg-topo-img { width: 100%; height: 100%; object-fit: cover; }

.w-full { width: 100%; }

/* Responsive */
@media (max-width: 900px) {
    .nav { display: none; }
    .nav.nav-open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--paper); padding: 16px; border-bottom: 1px solid var(--line); }
    .mobile-toggle { display: grid; }
    .ftr-grid, .prod-grid, .cart-grid, .checkout-grid, .conf-grid, .acc-grid, .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .conf-preview, .cart-summary { position: static; }
    .cart-row { grid-template-columns: 60px 1fr 60px; }
    .cart-row .cart-price, .cart-row form { grid-column: 1/-1; }
}
/* ===========================================
   STYLE STARTER - outdoor adventure tone
   Inspirowane Stickershuttle, klimat field guide
   =========================================== */

/* === HERO ADVENTURE === */
.hero-adv {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    color: #ebd8a8;
    margin-bottom: 0;
}

.hero-adv-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-adv-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 80px;
    color: #ebd8a8;
}

.hero-adv-stamps {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.stamp-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(235, 216, 168, 0.1);
    border: 1px solid rgba(235, 216, 168, 0.3);
    border-radius: 999px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #ebd8a8;
    text-transform: uppercase;
}

.dot-orange {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d68a2a;
    flex-shrink: 0;
}

.hero-adv-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 7vw, 84px);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 32px;
    color: #ebd8a8;
    letter-spacing: -1px;
}

.hero-adv-headline .strike {
    color: #d68a2a;
    position: relative;
    display: inline-block;
}

.hero-adv-headline .strike::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 4px;
    background: #d68a2a;
    transform: rotate(-3deg);
    opacity: 0.7;
}

.hero-adv-lead {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 0 40px;
    color: rgba(235, 216, 168, 0.88);
}

.hero-adv-lead strong {
    color: #d68a2a;
    font-weight: 700;
}

.hero-adv-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* === BTN ADV - duży CTA z ikoną i sub-textem === */
.btn-adv {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: all 200ms;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-adv.primary {
    background: #d68a2a;
    color: #1c2620;
}

.btn-adv.primary:hover {
    background: #c87815;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(214, 138, 42, 0.4);
}

.btn-adv.ghost {
    background: rgba(235, 216, 168, 0.08);
    color: #ebd8a8;
    border-color: rgba(235, 216, 168, 0.4);
}

.btn-adv.ghost:hover {
    background: rgba(235, 216, 168, 0.16);
    border-color: #ebd8a8;
}

.btn-adv.inline {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--ink);
    padding: 12px 24px;
}

.btn-adv.inline:hover {
    background: var(--ink);
    color: var(--paper);
}

.btn-adv-icon {
    font-size: 24px;
    line-height: 1;
}

.btn-adv-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.btn-adv-text strong {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-adv-text small {
    font-size: 11px;
    opacity: 0.75;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
    margin-top: 2px;
}

.btn-adv-arrow {
    margin-left: 8px;
    font-size: 20px;
    transition: transform 200ms;
}

.btn-adv:hover .btn-adv-arrow {
    transform: translateX(4px);
}

/* === HERO STATS === */
.hero-adv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(235, 216, 168, 0.2);
    max-width: 720px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-v {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ebd8a8;
    line-height: 1;
}

.hero-stat-l {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(235, 216, 168, 0.7);
    margin-top: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* === TRUST BAR - ikony z opisem === */
.trust-bar {
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding-bottom: 64px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 16px 48px rgba(28, 38, 32, 0.15);
}

.trust-item {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: block;
}

.trust-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    margin: 0 0 6px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item p {
    font-size: 12px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin: 0;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .trust-item { border-right: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
}

@media (max-width: 500px) {
    .trust-grid { grid-template-columns: 1fr; }
}

/* === CATEGORIES GRID - 4 typy podszyć === */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cat-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 200ms;
    position: relative;
    box-shadow: 0 2px 8px rgba(28, 38, 32, 0.04);
}

.cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--rust);
    box-shadow: 0 16px 40px rgba(28, 38, 32, 0.15);
}

.cat-card.cat-card-custom {
    background: linear-gradient(135deg, #fff 0%, #fde9c5 100%);
    border-color: var(--rust);
}

.cat-icon {
    width: 80px;
    height: 80px;
    color: var(--rust);
    margin-bottom: 8px;
}

.cat-icon svg { width: 100%; height: 100%; }

.cat-tag {
    align-self: flex-start;
    padding: 4px 10px;
    background: var(--ink);
    color: var(--paper);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-transform: uppercase;
}

.cat-tag.tag-rust {
    background: var(--rust);
    color: #fff;
}

.cat-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
    flex-grow: 1;
}

.cat-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    color: var(--rust);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

@media (max-width: 900px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .cat-grid { grid-template-columns: 1fr; }
}

/* === FOUNDER SECTION - "Cześć, jestem Wojtek" === */
.founder-section {
    padding: 80px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.founder-photo {
    position: relative;
}

.photo-frame {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2a3a30 0%, #1c2620 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(235, 216, 168, 0.5);
}

.photo-placeholder {
    text-align: center;
    padding: 32px;
    width: 100%;
}

.photo-hint {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-top: 16px;
    text-transform: uppercase;
    opacity: 0.6;
}

.frame-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--rust);
}

.fc-tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.fc-tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.fc-bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.fc-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.founder-stamp {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--rust);
    color: #1c2620;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.founder-text .num {
    color: var(--rust);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.founder-text .title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    margin: 12px 0 32px;
    color: var(--ink);
}

.founder-text .lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
    margin-bottom: 16px;
}

.founder-text p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.founder-text strong {
    color: var(--ink);
    background: linear-gradient(transparent 60%, rgba(214, 138, 42, 0.25) 60%);
}

.founder-signature {
    margin: 32px 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sig-line {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 24px;
    color: var(--ink);
}

.sig-detail {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--ink-soft);
    text-transform: uppercase;
}

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

@media (max-width: 800px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* === FAQ - field briefing === */
.faq-list {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    transition: background 200ms;
}

.faq-item.open {
    background: color-mix(in oklab, var(--rust) 4%, var(--paper));
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
}

.faq-q-num {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--rust);
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.faq-q-text {
    flex-grow: 1;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
}

.faq-q-icon {
    font-size: 28px;
    color: var(--rust);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 250ms;
    font-weight: 300;
}

.faq-q-icon.rotated {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 0 24px 60px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.faq-a strong {
    color: var(--ink);
}

.faq-a a {
    color: var(--rust);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .faq-q-text { font-size: 16px; }
    .faq-a { padding-left: 0; }
}

/* === CTA FINAL === */
.cta-final {
    background: linear-gradient(135deg, #1c2620 0%, #2c4a32 100%);
    color: #ebd8a8;
    padding: 80px 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(214, 138, 42, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.cta-final > * { position: relative; z-index: 1; }

.cta-final .num {
    color: #d68a2a;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-final-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 16px 0 24px;
    color: #ebd8a8;
}

.cta-final-headline .rust { color: #d68a2a; }

.cta-final .lead {
    color: rgba(235, 216, 168, 0.85);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RWD hero */
@media (max-width: 800px) {
    .hero-adv { min-height: 580px; }
    .hero-adv-content { padding-top: 60px; }
    .hero-adv-stats { grid-template-columns: 1fr; gap: 16px; }
    .hero-adv-actions { flex-direction: column; }
    .btn-adv { width: 100%; }
}

