/* 1. Zmienne i reset */
:root {
  --color-primary: #174f35;
  --color-primary-dark: #0b3020;
  --color-green: #397b50;
  --color-green-light: #dcebdd;
  --color-surface: #f7f8f3;
  --color-white: #fff;
  --color-text: #17231c;
  --color-muted: #647168;
  --color-border: rgba(23, 79, 53, .14);
  --color-earth: #b59655;
  --shadow-sm: 0 12px 35px rgba(11, 48, 32, .09);
  --shadow-lg: 0 26px 70px rgba(8, 31, 21, .18);
  --radius: 24px;
  --header-height: 92px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--color-text); background: var(--color-surface); font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1rem; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

/* 2. Typografia i elementy wspólne */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.14; letter-spacing: -.025em; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(2.55rem, 5.5vw, 5.35rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 4vw, 3.75rem); }
h3 { font-size: 1.35rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(82px, 9vw, 138px) 0; scroll-margin-top: 76px; }
.section-kicker, .eyebrow { margin-bottom: 18px; color: var(--color-green); font-size: .79rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.2; transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--color-primary); color: white; box-shadow: 0 12px 28px rgba(23, 79, 53, .2); }
.button-primary:hover { background: var(--color-primary-dark); }
.button-light { background: white; color: var(--color-primary-dark); }
.button-light:hover { background: #edf5ee; }
.button-ghost { border-color: rgba(255, 255, 255, .55); color: white; backdrop-filter: blur(5px); }
.button-ghost:hover { background: rgba(255, 255, 255, .12); border-color: white; }
.skip-link { position: fixed; z-index: 2000; top: 8px; left: 8px; padding: 10px 16px; border-radius: 8px; background: white; color: var(--color-primary-dark); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #d9b75f; outline-offset: 3px; }

/* 3. Navbar */
.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: var(--header-height); color: white; transition: height .35s ease, background-color .35s ease, box-shadow .35s ease, color .35s ease; }
.site-header::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(255,255,255,.2); content: ""; }
.site-header.is-scrolled { height: 76px; color: var(--color-text); background: rgba(255, 255, 255, .96); box-shadow: 0 12px 35px rgba(11, 48, 32, .11); backdrop-filter: blur(12px); }
.site-header.is-scrolled::after { background: var(--color-border); }
.nav-shell { width: min(calc(100% - 40px), 1380px); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { width: 155px; flex: 0 0 auto; padding: 5px 9px; border-radius: 11px; background: rgba(255,255,255,.96); box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.brand img { width: 100%; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); font-size: .95rem; font-weight: 600; }
.main-nav > a { position: relative; padding: 10px 0; }
.main-nav > a:not(.nav-cta)::after { position: absolute; bottom: 4px; left: 0; width: 100%; height: 2px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; }
.site-header.is-scrolled .nav-cta { border-color: var(--color-primary-dark); background: var(--color-primary); color: white; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; margin: 4px auto; display: block; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.language { position: relative; }
.language-toggle { display: flex; min-width: 87px; min-height: 44px; align-items: center; justify-content: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; background: rgba(0,0,0,.08); cursor: pointer; font-weight: 700; }
.site-header.is-scrolled .language-toggle { border-color: var(--color-border); background: var(--color-surface); }
.language-toggle svg { transition: transform .2s ease; }
.language-toggle[aria-expanded="true"] > svg { transform: rotate(180deg); }
.flag-frame { width: 24px; height: 16px; display: inline-grid; flex: 0 0 24px; place-items: center; overflow: hidden; border-radius: 3px; background: rgba(23,79,53,.08); box-shadow: inset 0 0 0 1px rgba(23,79,53,.12); }
.flag-frame img { width: 24px; height: 16px; object-fit: cover; }
.flag-frame img.asset-missing { visibility: hidden; }
.flag-frame.globe { height: 24px; border-radius: 50%; color: var(--color-primary); background: var(--color-green-light); }
.globe svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.language-panel { position: absolute; top: calc(100% + 14px); right: 0; width: min(680px, calc(100vw - 36px)); max-height: min(66vh, 530px); padding: 16px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 4px; overflow-y: auto; border: 1px solid var(--color-border); border-radius: 20px; color: var(--color-text); background: rgba(255,255,255,.985); box-shadow: var(--shadow-lg); }
.language-panel[hidden] { display: none; }
.language-panel a { display: grid; min-height: 48px; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: .88rem; }
.language-panel a:hover, .language-panel a:focus-visible { background: var(--color-surface); }
.language-panel b { color: var(--color-muted); font-size: .73rem; letter-spacing: .08em; }

/* 4. Hero i slider */
.hero { min-height: 700px; height: max(700px, 100svh); color: white; background: var(--color-primary-dark); }
.slider, .slide, .slide picture, .slide img, .hero-shade { position: absolute; inset: 0; }
.slider { overflow: hidden; }
.slide { opacity: 0; transition: opacity 1.25s ease; }
.slide.is-active { z-index: 1; opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); }
.slide:nth-child(1) img { object-position: 58% 50%; transform-origin: 65% 42%; }
.slide:nth-child(2) img { object-position: 55% 50%; transform-origin: 72% 38%; }
.slide:nth-child(3) img { object-position: 50% 50%; transform-origin: 58% 48%; }
.slide.is-active img { animation: ken-burns 7.8s ease-out both; }
@keyframes ken-burns { from { transform: scale(1.085); } to { transform: scale(1); } }
.hero-shade { z-index: 2; background: linear-gradient(90deg, rgba(5,31,20,.88) 0%, rgba(7,42,27,.65) 45%, rgba(7,35,24,.22) 76%, rgba(5,25,17,.35) 100%), linear-gradient(0deg, rgba(4,25,16,.55), transparent 45%); }
.hero-content { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: var(--header-height); }
.hero .eyebrow { color: #cde5c7; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.84); font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.slider-controls { position: absolute; z-index: 5; right: max(20px, calc((100% - var(--container))/2)); bottom: 38px; display: flex; align-items: center; gap: 16px; }
.slider-arrow { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; color: white; background: rgba(7,35,24,.2); cursor: pointer; backdrop-filter: blur(4px); transition: background .2s ease, transform .2s ease; }
.slider-arrow:hover { background: rgba(255,255,255,.16); transform: scale(1.04); }
.slider-arrow path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 28px; height: 4px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.4); cursor: pointer; transition: width .25s ease, background .25s ease; }
.slider-dots button.is-active { width: 48px; background: white; }

/* 5. O firmie */
.about { overflow: hidden; background: var(--color-surface); }
.about::before { position: absolute; top: 0; right: -180px; width: 520px; height: 520px; border-radius: 50%; background: repeating-radial-gradient(ellipse at 40% 50%, transparent 0 20px, rgba(57,123,80,.035) 22px 24px, transparent 26px 43px); content: ""; transform: rotate(-18deg); }
.about-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(48px,7vw,100px); }
.about-media { position: relative; }
.about-image-shell { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 8px 80px 8px 8px; background: linear-gradient(145deg,#d9e8d8,#eef3e9); box-shadow: var(--shadow-lg); }
.about-image-shell picture { width: 100%; height: 100%; display: block; }
.about-image-shell img { width: 100%; height: 100%; object-fit: cover; }
.about-image-shell.is-missing img { display: none; }
.image-placeholder { position: absolute; inset: 0; display: none; place-items: center; color: rgba(23,79,53,.28); background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.7), transparent 30%), linear-gradient(145deg,#d9e8d8,#eef3e9); }
.about-image-shell.is-missing .image-placeholder { display: grid; }
.image-placeholder svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.image-note { position: absolute; right: -22px; bottom: -22px; max-width: 250px; margin: 0; padding: 18px 22px; border-radius: 16px 4px 16px 16px; color: white; background: var(--color-primary); font-family: Georgia, "Times New Roman", serif; font-weight: 600; box-shadow: var(--shadow-sm); }
.about-copy p:not(.section-kicker) { color: var(--color-muted); }
.facts { grid-column: 1/-1; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 12px; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.fact { min-height: 135px; padding: 30px clamp(16px,2.5vw,36px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--color-border); }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--color-primary); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem,2vw,2rem); }
.fact span { margin-top: 4px; color: var(--color-muted); font-size: .91rem; }
.about-details { grid-column: 1/-1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: 42px; }
.story-block { padding: clamp(28px,4vw,48px); border: 1px solid var(--color-border); border-radius: var(--radius); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); }
.story-block-accent { background: linear-gradient(145deg,rgba(220,235,221,.72),rgba(255,255,255,.9)); }
.story-block h3 { margin-bottom: 22px; color: var(--color-primary-dark); font-size: clamp(1.55rem,2.5vw,2.25rem); }
.story-block p:not(.section-kicker) { max-width: 64ch; color: var(--color-muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--color-primary); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(23,79,53,.28); text-underline-offset: 5px; }
.text-link:hover { text-decoration-color: currentColor; }
.activity-cards { grid-column: 1/-1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.activity-card { position: relative; min-height: 255px; padding: 30px; overflow: hidden; border: 1px solid var(--color-border); border-radius: 18px; background: white; }
.activity-number { display: block; margin-bottom: 30px; color: var(--color-green); font-size: .76rem; font-weight: 700; letter-spacing: .15em; }
.activity-card h3 { margin-bottom: 14px; color: var(--color-primary-dark); font-size: 1.2rem; }
.activity-card p { margin-bottom: 0; color: var(--color-muted); font-size: .94rem; }
.delivery-block { grid-column: 1/-1; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px,5vw,70px); margin-top: 34px; padding: clamp(30px,5vw,64px); border-radius: var(--radius); color: white; background: var(--color-primary-dark); box-shadow: var(--shadow-lg); }
.delivery-intro h3 { margin-bottom: 22px; font-size: clamp(1.9rem,3vw,2.8rem); }
.delivery-intro > p:not(.section-kicker) { max-width: 62ch; color: rgba(255,255,255,.72); }
.delivery-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.delivery-block .section-kicker { color: #bcd9b9; }
.button-outline { border-color: rgba(255,255,255,.42); color: white; background: transparent; }
.button-outline:hover { border-color: white; background: rgba(255,255,255,.08); }
.transport-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.transport-item { display: grid; grid-template-columns: 42px minmax(0,1fr); align-content: start; gap: 14px; padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.055); }
.transport-item svg { width: 34px; height: 34px; fill: none; stroke: #bcd9b9; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.transport-item h4 { margin: 1px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; line-height: 1.25; }
.transport-item p { margin: 0; color: rgba(255,255,255,.65); font-size: .86rem; line-height: 1.5; }

/* 6. Oferta */
.offer { background: white; }
.offer-intro { max-width: 1080px; margin-bottom: 50px; }
.offer-intro h2 { max-width: 900px; }
.offer-intro-copy { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(28px,5vw,70px); }
.offer-intro-copy p { max-width: 64ch; margin-bottom: 0; color: var(--color-muted); }
.offer-intro-copy a { color: var(--color-primary); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(23,79,53,.28); text-underline-offset: 4px; }
.offer-intro-copy a:hover { text-decoration-color: currentColor; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.product-card { height: 390px; min-height: 390px; overflow: hidden; border-radius: 18px; background: var(--color-primary-dark); box-shadow: 0 8px 25px rgba(11,48,32,.11); }
.product-card-wide { grid-column: span 2; }
.product-card a { position: relative; height: 100%; display: block; overflow: hidden; }
.product-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card-fallback a { background: radial-gradient(circle at 85% 15%,rgba(220,235,221,.18),transparent 34%), linear-gradient(145deg,#397b50,#0d3524); }
.product-card-fallback a::before { position: absolute; z-index: 0; inset: 0; opacity: .18; background: repeating-radial-gradient(ellipse at 65% 35%,transparent 0 18px,rgba(255,255,255,.4) 20px 21px,transparent 23px 38px); content: ""; }
.product-card-fallback.is-image-missing img { visibility: hidden; }
.product-card a::after { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(5,33,21,.88),rgba(7,38,25,.04) 70%); content: ""; transition: background .35s ease; }
.product-overlay { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; color: white; }
.product-overlay > span { margin-bottom: 3px; color: rgba(255,255,255,.74); font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; }
.product-overlay strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.65rem,2.5vw,2.25rem); }
.product-overlay em { align-self: flex-start; margin-top: 12px; padding: 7px 11px; border-radius: 999px; color: white; background: var(--color-primary-dark); font-style: normal; font-weight: 700; }
.product-card:hover img { transform: scale(1.045); }
.all-categories { margin-top: 22px; padding: clamp(28px,4vw,50px); border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); }
.all-categories h3 { margin-bottom: 24px; }
.category-links { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.category-links a { min-height: 42px; padding: 9px 15px; border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-primary-dark); background: white; font-size: .91rem; font-weight: 600; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.category-links a:hover { border-color: var(--color-primary-dark); color: white; background: var(--color-primary); }

/* 7. FAQ */
.faq { background: var(--color-surface); }
.faq-intro { max-width: 920px; margin-bottom: clamp(36px,5vw,58px); }
.faq-intro h2 { margin-bottom: 0; }
.faq-list { max-width: 980px; border-bottom: 1px solid var(--color-border); }
.faq-item { border-top: 1px solid var(--color-border); }
.faq-item summary { position: relative; min-height: 82px; padding: 25px 64px 25px 0; display: flex; align-items: center; color: var(--color-primary-dark); cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.18rem,2vw,1.48rem); font-weight: 700; line-height: 1.3; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; right: 2px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; color: var(--color-primary); background: white; content: "+"; font-family: "Segoe UI", Arial, sans-serif; font-size: 1.45rem; font-weight: 400; line-height: 1; transition: color .2s ease, background-color .2s ease, transform .25s ease; }
.faq-item[open] summary::after { color: white; background: var(--color-primary); transform: rotate(45deg); }
.faq-item summary:hover::after { border-color: var(--color-primary); }
.faq-item summary:focus-visible { border-radius: 6px; }
.faq-answer { max-width: 82ch; padding: 0 64px 26px 0; color: var(--color-muted); }
.faq-answer p { margin-bottom: 0; }
.faq-answer a { color: var(--color-primary); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(23,79,53,.32); text-underline-offset: 4px; }
.faq-answer a:hover { text-decoration-color: currentColor; }

/* 8. Kontakt */
.contact { overflow: hidden; color: white; background: var(--color-primary-dark); }
.contact::before { position: absolute; inset: 0; opacity: .55; background: radial-gradient(circle at 10% 90%,rgba(75,137,85,.55),transparent 35%), radial-gradient(circle at 85% 10%,rgba(181,150,85,.18),transparent 30%); content: ""; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.contact-intro { padding: clamp(20px,4vw,60px) clamp(10px,4vw,50px) 20px 0; }
.contact .section-kicker { color: #bcd9b9; }
.contact-intro > p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.contact-card, .hours-card { padding: clamp(28px,4vw,44px); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.075); backdrop-filter: blur(8px); }
.contact-card h3 { margin-bottom: 30px; }
.contact-card address { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; font-style: normal; }
.contact-card address p { color: rgba(255,255,255,.84); }
.contact-card address span { display: block; margin-bottom: 3px; color: #a9cbaa; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-card a:hover, .footer-contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: #dbeccf; font-weight: 700; }
.hours-card { grid-column: 2; padding-top: 26px; padding-bottom: 26px; }
.hours-card h3 { margin-bottom: 18px; font-size: 1.13rem; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1); }
.hours-card dt { color: rgba(255,255,255,.67); }
.hours-card dd { margin: 0; font-weight: 700; }

/* 9. Informacja o charakterze prezentacji */
.presentation-disclaimer { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.72); }
.presentation-disclaimer-inner { max-width: 980px; padding: clamp(24px,3vw,34px); border: 1px solid rgba(255,255,255,.12); border-left: 3px solid #6f9e77; border-radius: 16px; background: rgba(255,255,255,.035); font-size: .89rem; line-height: 1.68; }
.presentation-disclaimer p { margin-bottom: 15px; }
.presentation-disclaimer p:last-child { margin-bottom: 0; }
.presentation-disclaimer-lead { color: rgba(255,255,255,.94); font-size: .95rem; }
.presentation-disclaimer a { color: #dbeccf; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-decoration-color: rgba(219,236,207,.42); text-underline-offset: 4px; }
.presentation-disclaimer a:hover { color: white; text-decoration-color: currentColor; }
.presentation-disclaimer-meta { color: #a9cbaa; font-size: .82rem; letter-spacing: .05em; }
.presentation-disclaimer-credit { color: rgba(255,255,255,.68); }

/* 10. Stopka */
.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.7); background: #071f15; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr; gap: 70px; padding-bottom: 55px; }
.footer-name { display: block; margin-bottom: 10px; color: white; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; }
.footer-grid p { max-width: 420px; }
.footer-grid nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid nav a:hover { color: white; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: grid; grid-template-columns: auto minmax(280px,1fr) auto; align-items: center; gap: 28px; font-size: .88rem; }
.footer-legal { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.footer-legal > a { color: white; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal span a { color: rgba(255,255,255,.88); text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 3px; }
.footer-legal a:hover { color: white; text-decoration-color: currentColor; }
.back-top { color: white; font-weight: 700; }

/* Strona polityki prywatności */
.privacy-page { background: var(--color-surface); }
.privacy-header { position: relative; z-index: 10; min-height: 88px; display: flex; align-items: center; border-bottom: 1px solid var(--color-border); background: rgba(255,255,255,.97); box-shadow: var(--shadow-sm); }
.privacy-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 10px; }
.privacy-back { min-height: 46px; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border: 1px solid var(--color-border); border-radius: 999px; color: var(--color-primary); font-weight: 700; background: var(--color-surface); }
.privacy-back:hover { border-color: var(--color-primary); background: var(--color-green-light); }
.privacy-hero { position: relative; overflow: hidden; padding: clamp(72px,9vw,125px) 0; color: white; background: var(--color-primary-dark); }
.privacy-hero::after { position: absolute; right: -90px; bottom: -180px; width: 520px; height: 520px; border-radius: 50%; opacity: .3; background: repeating-radial-gradient(ellipse at 50% 50%,transparent 0 22px,rgba(255,255,255,.16) 24px 25px,transparent 27px 45px); content: ""; }
.privacy-hero .container { position: relative; z-index: 1; }
.privacy-hero .container::before { display: block; margin-bottom: 18px; color: #bcd9b9; font-size: .79rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; content: "Informacje prawne"; }
.privacy-hero h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(2.7rem,6vw,5rem); }
.privacy-hero p { max-width: 680px; margin-bottom: 18px; color: rgba(255,255,255,.9); font-size: 1.12rem; }
.privacy-hero span { color: rgba(255,255,255,.78); font-size: .88rem; }
.privacy-section { padding: clamp(65px,8vw,110px) 0; }
.privacy-layout { display: grid; grid-template-columns: 250px minmax(0,820px); justify-content: center; align-items: start; gap: clamp(38px,6vw,85px); }
.privacy-toc { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 5px; padding: 24px; border: 1px solid var(--color-border); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.privacy-toc h2 { grid-column: 1/-1; margin-bottom: 10px; color: var(--color-primary-dark); font-size: 1rem; }
.privacy-toc a { padding: 6px 8px; border-radius: 7px; color: #4c5c52; font-size: .91rem; }
.privacy-toc a:hover { color: var(--color-primary); background: var(--color-surface); }
.privacy-content { display: flex; flex-direction: column; gap: 18px; }
.privacy-summary { padding: clamp(25px,4vw,38px); border: 1px solid rgba(57,123,80,.2); border-radius: var(--radius); background: var(--color-green-light); }
.privacy-summary > h2 { margin-bottom: 14px; color: var(--color-primary-dark); font-size: 1.25rem; }
.privacy-summary ul { margin: 0; padding-left: 20px; }
.privacy-summary li + li { margin-top: 7px; }
.privacy-card { padding: clamp(28px,5vw,52px); border: 1px solid var(--color-border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); scroll-margin-top: 24px; }
.privacy-number { display: block; margin-bottom: 20px; color: var(--color-green); font-size: .75rem; font-weight: 700; letter-spacing: .16em; }
.privacy-card h2 { margin-bottom: 22px; color: var(--color-primary-dark); font-size: clamp(1.55rem,3vw,2.2rem); }
.privacy-card p, .privacy-card address { max-width: 69ch; color: #526057; }
.privacy-card address { padding: 20px 22px; border-left: 3px solid var(--color-green); border-radius: 0 12px 12px 0; font-style: normal; background: var(--color-surface); }
.privacy-card a { color: var(--color-primary); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(23,79,53,.25); text-underline-offset: 4px; }
.privacy-card a:hover { text-decoration-color: currentColor; }
.privacy-card code { padding: 2px 5px; border-radius: 5px; color: var(--color-primary-dark); background: var(--color-green-light); font-size: .88em; }
.privacy-note { margin-top: 25px; padding: 22px; border-radius: 14px; background: linear-gradient(145deg,#edf4e9,#f7f8f3); }
.privacy-note strong { display: block; margin-bottom: 6px; color: var(--color-primary-dark); }
.privacy-note p { margin: 0; font-size: .93rem; }
.privacy-footer { padding-top: 26px; color: rgba(255,255,255,.84); }

/* Pływające media społecznościowe */
.social-rail { position: fixed; z-index: 850; top: 50%; right: 14px; display: flex; flex-direction: column; gap: 8px; visibility: hidden; opacity: 0; transform: translate(28px,-50%); transition: visibility .35s, opacity .35s ease, transform .35s ease; }
.social-rail.is-visible { visibility: visible; opacity: 1; transform: translate(0,-50%); }
.social-link { position: relative; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 14px; color: white; background: var(--color-primary); box-shadow: 0 10px 26px rgba(11,48,32,.2); transition: background .25s ease, transform .25s ease; }
.social-link svg { fill: currentColor; }
.social-instagram svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-instagram .social-dot { fill: currentColor; stroke: none; }
.social-link::after { position: absolute; top: 50%; right: calc(100% + 9px); padding: 6px 9px; border-radius: 7px; color: white; background: var(--color-primary-dark); content: attr(data-label); font-size: .74rem; font-weight: 700; white-space: nowrap; opacity: 0; pointer-events: none; transform: translate(6px,-50%); transition: opacity .2s ease, transform .2s ease; }
.social-link:hover, .social-link:focus-visible { transform: translateX(-3px); }
.social-facebook:hover, .social-facebook:focus-visible { background: #3265a8; }
.social-instagram:hover, .social-instagram:focus-visible { background: linear-gradient(145deg,#833ab4,#e1306c 55%,#f77737); }
.social-link:hover::after, .social-link:focus-visible::after { opacity: 1; transform: translate(0,-50%); }

/* 9. Animacje */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.facts .reveal:nth-child(2), .product-grid .reveal:nth-child(2) { transition-delay: .08s; }
.facts .reveal:nth-child(3), .product-grid .reveal:nth-child(3) { transition-delay: .16s; }
.facts .reveal:nth-child(4), .product-grid .reveal:nth-child(5) { transition-delay: .12s; }

/* 10. Media queries */
@media (max-width: 1100px) {
  :root { --header-height: 80px; }
  .menu-toggle { display: block; }
  .site-header.is-scrolled .menu-toggle { border-color: var(--color-border); }
  .main-nav { position: fixed; z-index: 10; top: var(--header-height); right: 0; bottom: 0; width: min(440px,100%); padding: 28px 26px 40px; flex-direction: column; align-items: stretch; gap: 5px; overflow-y: auto; color: var(--color-text); background: white; box-shadow: -20px 30px 60px rgba(6,31,20,.18); transform: translateX(105%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .site-header.is-scrolled .main-nav { top: 76px; }
  .main-nav.is-open { transform: none; visibility: visible; }
  .main-nav > a { min-height: 50px; display: flex; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--color-border); }
  .main-nav .nav-cta { min-height: 50px; margin-top: 10px; justify-content: center; border-color: var(--color-primary-dark); color: white; background: var(--color-primary); }
  .language { margin-top: 10px; }
  .language-toggle { width: 100%; justify-content: flex-start; border-color: var(--color-border); background: var(--color-surface); }
  .language-toggle > svg { margin-left: auto; }
  .language-panel { position: static; width: 100%; max-height: 330px; margin-top: 8px; grid-template-columns: repeat(2,minmax(0,1fr)); border-radius: 14px; box-shadow: none; }
}

@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 650px; }
  .facts { grid-template-columns: repeat(2,1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card-wide { grid-column: auto; }
  .delivery-block { grid-template-columns: 1fr; }
  .contact-intro { padding-right: 0; }
  .hours-card { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-contact { grid-column: 1/-1; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-legal { grid-column: 1/-1; grid-row: 2; align-items: flex-start; text-align: left; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-toc { position: static; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .privacy-toc h2 { grid-column: 1/-1; }
}

@media (max-width: 620px) {
  :root { --header-height: 72px; }
  .container, .nav-shell { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .brand { width: 130px; }
  .hero { min-height: 680px; height: 100svh; }
  .hero-content { justify-content: flex-end; padding-top: 110px; padding-bottom: 126px; }
  h1 { font-size: clamp(2.35rem,12vw,3.4rem); }
  .hero-lead { font-size: 1rem; line-height: 1.55; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 155px; }
  .slider-controls { right: 14px; bottom: 26px; left: 14px; justify-content: space-between; }
  .slider-arrow { width: 44px; height: 44px; }
  .about-grid { gap: 58px; }
  .about-details, .activity-cards, .offer-intro-copy { grid-template-columns: 1fr; }
  .image-note { right: 10px; bottom: -25px; }
  .facts { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .fact:last-child { border-bottom: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card img { height: 350px; min-height: 350px; }
  .transport-list { grid-template-columns: 1fr; }
  .delivery-actions .button { width: 100%; }
  .faq-item summary { min-height: 74px; padding: 21px 48px 21px 0; font-size: 1.12rem; }
  .faq-item summary::after { right: 0; width: 32px; height: 32px; font-size: 1.3rem; }
  .faq-answer { padding: 0 0 22px; }
  .contact-card address { grid-template-columns: 1fr; gap: 4px; }
  .contact-actions .button { width: 100%; }
  .hours-card dl div { flex-direction: column; gap: 0; }
  .presentation-disclaimer { margin-top: 24px; padding-top: 24px; }
  .presentation-disclaimer-inner { padding: 22px 18px; border-radius: 12px; font-size: .86rem; line-height: 1.65; }
  .presentation-disclaimer-lead { font-size: .92rem; }
  .presentation-disclaimer-meta { font-size: .79rem; letter-spacing: .035em; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom { display: flex; }
  .footer-legal { align-items: flex-start; text-align: left; }
  .language-panel { grid-template-columns: 1fr; }
  .privacy-header { min-height: 76px; }
  .privacy-nav .brand { width: 116px; }
  .privacy-back { padding-inline: 12px; font-size: .82rem; }
  .privacy-hero { padding: 64px 0; }
  .privacy-toc { grid-template-columns: 1fr; }
  .privacy-card { padding: 27px 22px; }
}

@media (max-width: 390px) {
  .nav-shell { width: calc(100% - 20px); }
  .brand { width: 118px; }
  .menu-toggle { width: 44px; height: 44px; }
  .main-nav { padding-inline: 18px; }
  .hero-content { padding-bottom: 120px; }
  .eyebrow { font-size: .68rem; }
  .product-card, .product-card img { height: 320px; min-height: 320px; }
  .all-categories { padding: 24px 18px; }
  .social-rail { top: auto; right: 12px; bottom: 14px; flex-direction: row; transform: translateY(24px); }
  .social-rail.is-visible { transform: none; }
  .social-link { width: 42px; height: 42px; border-radius: 50%; }
  .social-link::after { display: none; }
}

/* 11. Ograniczenie ruchu */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .slide img { transform: none !important; }
  .social-rail, .social-link { transition: none; }
}
