/* ─── ROOT ─────────────────────────────────────────── */
:root {
  --gold: #c9a96e; --gold2: #e8d5a3; --gold3: #f5ead0;
  --dark: #0d0505; --dark2: #180a0a; --dark3: #251010;
  --pink: #fdf0f0; --pink2: #f9dede; --pink3: #f2c4c4;
  --white: #fffcfc; --text: #4a3030; --muted: #9a7070; --faint: #c4a0a0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--dark); color: white; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ─── NAV ───────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; width: 100%; z-index: 300;
  padding: 1.8rem 5rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s;
}
#mainNav.scrolled {
  padding: 1rem 5rem;
  background: rgba(13,5,5,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: white; letter-spacing: 0.08em; text-transform: uppercase; }
.logo em { color: var(--gold); font-style: italic; text-transform: none; }
#mainNav ul { list-style: none; display: flex; gap: 2.5rem; }
#mainNav a { color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; transition: color 0.3s; position: relative; }
#mainNav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
#mainNav a:hover, #mainNav a.active { color: var(--gold); }
#mainNav a:hover::after, #mainNav a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 1.5rem); left: 50%; transform: translateX(-50%) translateY(-8px); background: rgba(13,5,5,0.97); border: 1px solid rgba(201,169,110,0.2); min-width: 260px; padding: 0.8rem 0; opacity: 0; visibility: hidden; transition: all 0.25s; z-index: 400; list-style: none; display: flex; flex-direction: column; backdrop-filter: blur(20px); }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li { display: block; }
.dropdown a { display: block; padding: 0.6rem 1.5rem; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: none; color: rgba(255,255,255,0.5); transition: all 0.2s; font-weight: 300; }
.dropdown a:hover { color: var(--gold); background: rgba(201,169,110,0.05); padding-left: 1.8rem; }
.dropdown a::after { display: none; }
.dl { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,169,110,0.5); font-weight: 500; padding: 0.7rem 1.5rem 0.2rem; pointer-events: none; }
.dd { height: 1px; background: rgba(201,169,110,0.1); margin: 0.4rem 1.5rem; pointer-events: none; }

/* Nav CTA */
.nav-cta { border: 1px solid rgba(201,169,110,0.5); color: var(--gold2); padding: 0.6rem 1.6rem; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; background: transparent; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* Hamburger */
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 400; position: fixed; top: 1.5rem; right: 1.5rem; }
.ham span { display: block; width: 22px; height: 1.5px; background: white; transition: all 0.3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mob-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 290; flex-direction: column; justify-content: center; align-items: center; gap: 0; }
.mob-menu.open { display: flex; }
.mob-menu a { color: rgba(255,255,255,0.5); font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; font-weight: 300; padding: 0.8rem 0; border-bottom: 1px solid rgba(201,169,110,0.1); width: 280px; text-align: center; transition: color 0.2s; letter-spacing: 0.05em; }
.mob-menu a:hover { color: var(--gold); }
.mob-menu .ms { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,169,110,0.4); padding: 1.2rem 0 0.3rem; width: 280px; text-align: center; }
.mob-menu .msub { font-size: 0.9rem; color: rgba(255,255,255,0.3); padding: 0.5rem 0; width: 280px; text-align: center; border-bottom: 1px solid rgba(201,169,110,0.07); }
.mob-menu .mob-cta { margin-top: 1.5rem; background: var(--gold); color: white !important; padding: 0.9rem 0; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; width: 280px; text-align: center; font-family: 'Raleway', sans-serif; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-g { background: var(--gold); color: white; padding: 1rem 2.2rem; font-family: 'Raleway', sans-serif; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s; display: inline-block; border: none; }
.btn-g:hover { background: #b8935a; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,0.3); color: white; }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.5); border: none; font-family: 'Raleway', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-ghost:hover { color: var(--gold); }
.btn-ol { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 1rem 2rem; font-family: 'Raleway', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; transition: all 0.3s; display: inline-block; }
.btn-ol:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; background: var(--gold); color: white; border: none; padding: 1.1rem; font-family: 'Raleway', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s; display: block; text-align: center; }
.btn-full:hover { background: #b8935a; }
.btn-submit { width: 100%; background: var(--dark); color: white; border: none; padding: 1.1rem; font-family: 'Raleway', sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--gold); }
.link-gold { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); transition: opacity 0.2s; }
.link-gold:hover { opacity: 0.6; color: var(--gold); }
.gold { color: var(--gold); }
.gold-pill { background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); color: var(--gold2); padding: 0.2rem 0.6rem; font-size: 0.62rem; letter-spacing: 0.1em; }

/* ─── MARQUEE ─────────────────────────────────────────── */
.mq { background: var(--gold); padding: 0.8rem 0; overflow: hidden; white-space: nowrap; }
.mq-t { display: inline-flex; animation: mq 25s linear infinite; }
.mq-i { color: white; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; padding: 0 2.5rem; }
.mq-s { color: rgba(255,255,255,0.35); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── HERO ────────────────────────────────────────────── */
.hero { height: 100vh; min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0.15; filter: grayscale(30%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,5,5,0.97) 0%, rgba(13,5,5,0.85) 40%, rgba(13,5,5,0.35) 100%); }
.hero-l { background: transparent; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 5rem 6rem; position: relative; z-index: 1; }
.hero-l::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent); }
.hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 7vw, 7.5rem); font-weight: 200; line-height: 0.92; color: white; letter-spacing: -0.02em; margin-bottom: 2rem; }
.hero-name .line2 { font-style: italic; color: var(--gold); display: block; padding-left: 2rem; }
.hero-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.9; max-width: 340px; font-weight: 300; border-left: 1px solid rgba(201,169,110,0.3); padding-left: 1.2rem; margin-bottom: 3rem; }
.hero-tagline strong { color: rgba(255,255,255,0.7); font-weight: 400; }
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.hero-r { position: relative; overflow: hidden; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; filter: grayscale(5%) contrast(1.05); }
.hero-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a0808, #2a1414); display: flex; align-items: center; justify-content: center; }
.hero-r::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(13,5,5,0.5) 0%, transparent 30%, transparent 70%, rgba(13,5,5,0.2) 100%); pointer-events: none; }
.hero-float { position: absolute; z-index: 2; background: rgba(13,5,5,0.75); border: 1px solid rgba(201,169,110,0.25); padding: 1rem 1.4rem; backdrop-filter: blur(10px); }
.hf1 { bottom: 8rem; left: 2rem; }
.hf2 { top: 8rem; right: 2rem; }
.hf-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); line-height: 1; display: block; }
.hf-lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-top: 0.3rem; }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint span { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: sl 2s ease-in-out infinite; }
@keyframes sl { 0%,100%{opacity:0.2;transform:scaleY(0.5);transform-origin:top;} 50%{opacity:1;transform:scaleY(1);transform-origin:top;} }

/* ─── SYLWETKA ────────────────────────────────────────── */
.sylwetka { position: relative; height: 90vh; min-height: 600px; overflow: hidden; }
.syl-img { position: absolute; inset: 0; background-size: cover; background-position: center 15%; filter: grayscale(15%); }
.syl-ov { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,5,5,0.0) 0%, rgba(13,5,5,0.0) 30%, rgba(13,5,5,0.75) 55%, rgba(13,5,5,0.97) 100%); }
.syl-line { position: absolute; left: 35%; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent); }
.syl-content { position: absolute; right: 5rem; top: 50%; transform: translateY(-50%); max-width: 500px; z-index: 2; }
.syl-pretag { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.syl-pretag::before { content: ''; width: 25px; height: 1px; background: var(--gold); }
.syl-content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 200; line-height: 1.05; color: white; margin-bottom: 1.5rem; }
.syl-content h2 em { font-style: italic; color: var(--gold); display: block; }
.syl-content p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.9; font-weight: 300; margin-bottom: 2.5rem; }

/* ─── QUOTE BANNER ────────────────────────────────────── */
.quote-banner { background: var(--dark2); padding: 6rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.qb-mark { font-family: 'Cormorant Garamond', serif; font-size: 10rem; color: rgba(201,169,110,0.1); line-height: 0.7; display: block; margin-bottom: 0.5rem; }
.qb-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 200; color: white; line-height: 1.2; }
.qb-text em { font-style: italic; color: var(--gold); }
.qb-sig { font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.25); margin-top: 1.5rem; text-transform: uppercase; }
.qb-stat { padding: 2rem 0; border-bottom: 1px solid rgba(201,169,110,0.1); display: flex; align-items: baseline; gap: 1.2rem; }
.qb-stat:last-child { border-bottom: none; }
.qb-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); font-weight: 200; line-height: 1; flex-shrink: 0; }
.qb-desc h4 { font-size: 0.78rem; font-weight: 500; color: white; margin-bottom: 0.2rem; letter-spacing: 0.05em; }
.qb-desc p { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.5; }

/* ─── SZKOLENIA BENTO ─────────────────────────────────── */
.szk-section { background: var(--dark); padding: 8rem 5rem; }
.szk-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 5rem; }
.szk-header h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 200; line-height: 1.0; color: white; }
.szk-header h2 em { font-style: italic; color: var(--gold); display: block; }
.szk-header a { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); transition: opacity 0.2s; white-space: nowrap; }
.szk-header a:hover { opacity: 0.7; color: var(--gold); }
.szk-bento { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; gap: 0.3rem; }
.szk-tile { position: relative; overflow: hidden; color: white; display: block; transition: all 0.4s; }
.szk-tile:hover .st-img { transform: scale(1.05); }
.st-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; filter: grayscale(15%); }
.szk-tile.tall .st-img { min-height: 660px; }
.st-img-bg { width: 100%; min-height: 320px; background-size: cover; background-position: center; transition: transform 0.6s ease; filter: grayscale(15%); }
.szk-tile:hover .st-img-bg { transform: scale(1.05); }
.st-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,3,3,0.92) 0%, rgba(10,3,3,0.3) 50%, transparent 100%); transition: background 0.3s; }
.szk-tile:hover .st-ov { background: linear-gradient(to top, rgba(10,3,3,0.97) 0%, rgba(10,3,3,0.5) 60%, rgba(10,3,3,0.1) 100%); }
.st-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.st-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.5rem; }
.st-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; line-height: 1.15; margin-bottom: 0.5rem; }
.szk-tile.tall .st-title { font-size: 2rem; }
.st-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.st-price { display: inline-flex; align-items: center; gap: 0.8rem; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold); }
.st-arrow { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: transform 0.2s, color 0.2s; }
.szk-tile:hover .st-arrow { transform: translateX(5px); color: var(--gold); }

/* ─── MARTA FULL ──────────────────────────────────────── */
.marta-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 85vh; overflow: hidden; }
.mf-left { position: relative; overflow: hidden; }
.mf-photo { width: 100%; height: 100%; min-height: 700px; object-fit: cover; object-position: center 10%; display: block; filter: grayscale(5%); transition: transform 0.8s ease; }
.mf-left:hover .mf-photo { transform: scale(1.03); }
.mf-left::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,5,5,0.1) 0%, transparent 40%, transparent 80%, rgba(13,5,5,0.7) 100%); }
.mf-left::before { content: ''; position: absolute; inset: 20px; z-index: 1; border: 1px solid rgba(201,169,110,0.12); pointer-events: none; }
.mf-right { background: var(--dark2); display: flex; flex-direction: column; justify-content: center; padding: 6rem 5rem; }
.mf-right .pre-tag { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.mf-right .pre-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.mf-right .pre-tag span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.mf-right h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 200; line-height: 1.0; color: white; margin-bottom: 1.5rem; }
.mf-right h2 em { font-style: italic; color: var(--gold); display: block; }
.mf-right p { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.mf-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0; }
.mf-tag { border: 1px solid rgba(201,169,110,0.2); color: rgba(255,255,255,0.4); padding: 0.35rem 0.9rem; font-size: 0.68rem; letter-spacing: 0.1em; }
.mf-actions { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

/* ─── OPINIE ──────────────────────────────────────────── */
.opinie { background: var(--dark); padding: 8rem 5rem; }
.op-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.op-c { border: 1px solid rgba(201,169,110,0.1); padding: 2.5rem; transition: border-color 0.3s; }
.op-c:hover { border-color: rgba(201,169,110,0.3); }
.op-q { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: rgba(201,169,110,0.15); line-height: 0.7; margin-bottom: 0.5rem; }
.op-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.op-c p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.8; font-style: italic; font-weight: 300; margin-bottom: 1.5rem; }
.op-name { font-size: 0.78rem; font-weight: 500; color: white; letter-spacing: 0.05em; }
.op-role { font-size: 0.68rem; color: rgba(255,255,255,0.25); margin-top: 0.25rem; }

/* ─── GALERIA STRIP ───────────────────────────────────── */
.gal-strip { display: grid; grid-template-columns: repeat(5,1fr); height: 420px; overflow: hidden; }
.gs-item { position: relative; overflow: hidden; cursor: pointer; background: #1a0808; }
.gs-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; filter: grayscale(20%); }
.gs-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gs-item::after { content: ''; position: absolute; inset: 0; background: rgba(13,5,5,0.4); transition: background 0.3s; }
.gs-item:hover::after { background: rgba(13,5,5,0.1); }

/* ─── CTA FINAL ───────────────────────────────────────── */
.cta-final { background: var(--dark2); padding: 8rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; position: relative; overflow: hidden; }
.cf-eyebrow { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.cf-eyebrow::before { content: ''; display: block; width: 25px; height: 1px; background: var(--gold); }
.cf-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 5rem); font-weight: 200; line-height: 1.0; color: white; margin-bottom: 1.5rem; }
.cf-left h2 em { font-style: italic; color: var(--gold); display: block; }
.cf-left p { font-size: 0.87rem; color: rgba(255,255,255,0.4); line-height: 1.9; font-weight: 300; max-width: 420px; margin-bottom: 2.5rem; }
.cf-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cf-contact-label { font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(201,169,110,0.4); margin-bottom: 2rem; }
.cf-contact { display: flex; flex-direction: column; gap: 1.5rem; }
.cf-ci { display: flex; gap: 1rem; align-items: center; }
.cf-ci-icon { width: 46px; height: 46px; border: 1px solid rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.cf-ci h4 { font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; margin-bottom: 0.25rem; }
.cf-ci a, .cf-ci p { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; margin: 0; }
.cf-ci a:hover { color: var(--gold); }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner { background: var(--dark2); padding: 8rem 5rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: white; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.9; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── SZKOLENIE SINGLE ────────────────────────────────── */
.szk-hero { min-height: 78vh; display: flex; align-items: flex-end; padding: 10rem 5rem 5rem; position: relative; overflow: hidden; background: var(--dark); }
.szk-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.25; filter: grayscale(20%); }
.szk-hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,3,3,0.98) 0%, rgba(10,3,3,0.7) 50%, rgba(10,3,3,0.3) 100%); pointer-events: none; }
.szk-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: flex-end; width: 100%; }
.szk-h-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.szk-h-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; color: white; line-height: 1.0; }
.szk-h-cards { display: flex; flex-direction: column; gap: 0.8rem; flex-shrink: 0; }
.szk-h-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.2); padding: 1rem 1.5rem; text-align: center; min-width: 130px; }
.hc-val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); display: block; line-height: 1; }
.hc-lbl { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }
.szk-body-wrap { padding: 6rem 5rem; display: grid; grid-template-columns: 1fr 380px; gap: 5rem; background: var(--white); }
.szk-main h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 1rem; color: var(--text); }
.szk-main h2 em { font-style: italic; color: var(--gold); }
.szk-content { color: var(--muted); font-size: 0.9rem; line-height: 1.9; }
.szk-content h3, .szk-content h4 { font-family: 'Cormorant Garamond', serif; color: var(--text); margin: 1.5rem 0 0.8rem; }
.szk-points { display: flex; flex-direction: column; gap: 1.5rem; }
.szk-point { display: flex; gap: 1.5rem; align-items: flex-start; }
.sp-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); font-weight: 300; line-height: 1; flex-shrink: 0; }
.sp-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--text); margin-bottom: 0.3rem; }
.sp-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.szk-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.szk-content li { padding: 0.3rem 0; }
.szk-content p { margin-bottom: 1rem; }
.szk-price-card { background: var(--dark); color: white; padding: 2.5rem; position: sticky; top: 100px; }
.spc-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.spc-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.spc-price small { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-family: 'Raleway', sans-serif; }
.spc-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.5rem 0; }
.spc-meta { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.spc-meta-item { display: flex; justify-content: space-between; align-items: center; }
.spc-meta-item span:first-child { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); }
.spc-meta-item span:last-child { font-size: 0.85rem; color: white; }
.spc-meta-item .gold { color: var(--gold); }
.spc-dof { margin-top: 1rem; text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.spc-dof strong { color: var(--gold); }
.szk-nav { display: flex; justify-content: space-between; padding: 3rem 5rem; border-top: 1px solid var(--pink2); background: var(--pink); }
.szk-nav a { color: var(--text); font-size: 0.78rem; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.szk-nav a:hover { color: var(--gold); }
.szk-nav a small { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }

/* ─── CONTACT FORM ────────────────────────────────────── */
.szk-contact-form { margin-top: 1.5rem; }
.scf-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: white; margin-bottom: 1.2rem; }
.szk-form .sf-row, .contact-form .sf-row { margin-bottom: 1rem; }
.szk-form label, .contact-form label { display: block; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; }
.szk-form input, .szk-form select, .szk-form textarea,
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1rem; color: white; font-family: 'Raleway', sans-serif; font-size: 0.85rem; transition: border-color 0.3s; }
.szk-form input::placeholder, .szk-form textarea::placeholder,
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.szk-form input:focus, .szk-form select:focus, .szk-form textarea:focus,
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.szk-form select, .contact-form select { color: rgba(255,255,255,0.45); appearance: none; }
.szk-form textarea, .contact-form textarea { height: 90px; resize: vertical; }
.form-note { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-bottom: 1.2rem; line-height: 1.6; }
.form-msg { margin-top: 1rem; padding: 0.8rem 1rem; font-size: 0.82rem; display: none; }
.form-msg.success { background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); color: var(--gold2); display: block; }
.form-msg.error { background: rgba(255,100,100,0.1); border: 1px solid rgba(255,100,100,0.2); color: #ff8080; display: block; }

/* ─── ARCHIVE SZKOLENIE ───────────────────────────────── */
.szk-index-hero { min-height: 60vh; display: flex; align-items: flex-end; padding: 10rem 5rem 5rem; position: relative; overflow: hidden; background: var(--dark); }
.sih-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0.2; }
.sih-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,3,3,0.98) 0%, rgba(10,3,3,0.6) 60%, transparent 100%); }
.sih-content { position: relative; z-index: 1; }
.sih-content h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: white; line-height: 1.0; }
.sih-content h1 em { font-style: italic; color: var(--gold); }
.sih-content p { font-size: 0.92rem; color: rgba(255,255,255,0.45); max-width: 550px; line-height: 1.8; margin-top: 0.8rem; }
.szk-all { padding: 6rem 5rem; background: var(--white); }
.szk-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--pink2); color: var(--text); }
.szk-section-title em { font-style: italic; color: var(--gold); }
.szk-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.szk-li { color: var(--text); background: white; border-top: 2px solid var(--pink3); overflow: hidden; transition: all 0.3s; display: block; }
.szk-li:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(232,168,168,0.15); border-top-color: var(--gold); }
.szk-li-img { height: 220px; background-size: cover; background-position: center; position: relative; background-color: #1a0808; }
.szk-li-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,5,5,0.65) 0%, transparent 60%); }
.szk-li-lvl { position: absolute; bottom: 1rem; left: 1.2rem; z-index: 1; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold2); font-weight: 600; }
.szk-li-body { padding: 1.5rem; }
.szk-li-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; margin-bottom: 0.4rem; }
.szk-li-body p { font-size: 0.79rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.szk-li-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--pink2); padding-top: 0.9rem; flex-wrap: wrap; gap: 0.5rem; }
.szk-li-price { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); }
.szk-li-meta { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; font-size: 0.72rem; color: var(--muted); }
.szk-li-arrow { font-size: 0.8rem; color: var(--gold); transition: transform 0.2s; }
.szk-li:hover .szk-li-arrow { transform: translateX(4px); }

/* ─── PAGE HERO ───────────────────────────────────────── */
.page-hero { padding: 10rem 5rem 5rem; background: var(--dark); position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: 0.2; filter: grayscale(20%); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,5,5,0.98) 0%, rgba(15,5,5,0.6) 100%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; color: white; line-height: 1.0; margin-bottom: 0.5rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-content-wrap { padding: 6rem 5rem; background: var(--white); }
.page-content { max-width: 800px; color: var(--text); line-height: 1.9; font-size: 0.95rem; }
.page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--text); margin: 2rem 0 1rem; }
.page-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin: 1.5rem 0 0.8rem; }
.page-content p { margin-bottom: 1.2rem; color: var(--muted); }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.page-content li { padding: 0.3rem 0; color: var(--muted); }
.contact-form-wrap .contact-form { background: var(--dark); padding: 2.5rem; }

/* ─── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.breadcrumb a { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--gold); }

/* ─── PRE-TAG ─────────────────────────────────────────── */
.pre-tag { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.pre-tag::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.pre-tag span { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.pre-tag.light span { color: var(--gold2); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark); padding: 3rem 5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; border-top: 1px solid rgba(201,169,110,0.08); }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: white; }
.f-logo em { font-style: italic; color: var(--gold); }
.f-domain { font-size: 0.62rem; color: rgba(255,255,255,0.2); letter-spacing: 0.12em; margin-top: 0.3rem; }
footer p { font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.f-soc { display: flex; gap: 0.8rem; }
.f-soc a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: all 0.3s; }
.f-soc a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
.rev, .reveal { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }
.rev-l { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }
.rev-r { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }

/* ─── WORDPRESS ADMIN BAR FIX ─────────────────────────── */
.admin-bar #mainNav { top: 32px; }
.admin-bar .ham { top: calc(1.5rem + 32px); }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  #mainNav { padding: 1.2rem 1.5rem; }
  #mainNav ul, .nav-cta { display: none; }
  .ham { display: flex; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-l { padding: 9rem 1.8rem 4rem; }
  .hero-r { height: 70vw; max-height: 500px; }
  .hf2 { display: none; }
  .sylwetka { height: auto; }
  .syl-img { position: relative; height: 70vw; background-attachment: initial; }
  .syl-content { position: relative; right: auto; top: auto; transform: none; padding: 3rem 1.8rem; max-width: 100%; background: var(--dark2); }
  .syl-line { display: none; }
  .quote-banner, .szk-section, .marta-full, .opinie, .cta-final { padding: 4rem 1.8rem; }
  .quote-banner, .cta-final { grid-template-columns: 1fr; gap: 3rem; }
  .szk-header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 3rem; }
  .szk-bento { grid-template-columns: 1fr; }
  .szk-tile.tall .st-img { min-height: 320px; }
  .marta-full { grid-template-columns: 1fr; }
  .mf-left { height: 80vw; }
  .mf-right { padding: 4rem 1.8rem; }
  .op-grid { grid-template-columns: 1fr; }
  .gal-strip { grid-template-columns: repeat(3,1fr); height: 280px; }
  .gal-strip .gs-item:nth-child(n+4) { display: none; }
  .szk-body-wrap { grid-template-columns: 1fr; padding: 4rem 1.8rem; }
  .szk-hero { padding: 8rem 1.8rem 3rem; }
  .szk-hero-inner { grid-template-columns: 1fr; }
  .szk-h-cards { flex-direction: row; flex-wrap: wrap; }
  .szk-nav { padding: 2rem 1.8rem; }
  .szk-all { padding: 3rem 1.8rem; }
  .szk-list-grid { grid-template-columns: 1fr; }
  .szk-index-hero { padding: 8rem 1.8rem 3rem; }
  .page-hero { padding: 8rem 1.8rem 3rem; }
  .page-content-wrap { padding: 4rem 1.8rem; }
  footer { padding: 2.5rem 1.8rem; flex-direction: column; text-align: center; }
}

/* Netlify form success */
.nl-form-success { background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.3); color: var(--gold2); padding: 1.2rem; text-align: center; font-size: 0.88rem; margin-top: 1rem; display: none; }
.nl-form-success.show { display: block; }

/* ═══════════════════════════════════════════════════════
   PODSTRONY SZKOLEŃ — czarno-złoty na białym tle
   (nie dotyczy pakiet-basic i pakiet-premium)
   ═══════════════════════════════════════════════════════ */

/* Tło sekcji treści — tylko dla zwykłych szkoleń (nie pakiety) */
.szk-body-wrap:not(.pakiet-page) {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

/* Nagłówki */
.szk-body-wrap:not(.pakiet-page) h2 {
  font-family: 'Cormorant Garamond', serif !important;
  color: #111111 !important;
  font-weight: 300 !important;
}
.szk-body-wrap:not(.pakiet-page) h2 em { color: var(--gold) !important; }
.szk-body-wrap:not(.pakiet-page) h3,
.szk-body-wrap:not(.pakiet-page) h4 { color: #111111 !important; }

/* Akapity i treść */
.szk-body-wrap:not(.pakiet-page) p { color: #444444 !important; }
.szk-body-wrap:not(.pakiet-page) .szk-main p { color: #444444 !important; }
.szk-body-wrap:not(.pakiet-page) .szk-content { color: #444444 !important; }

/* Numerki punktów programu */
.szk-body-wrap:not(.pakiet-page) .sp-num { color: var(--gold) !important; }

/* Tytuły i opisy punktów */
.szk-body-wrap:not(.pakiet-page) .sp-text h4 {
  color: #111111 !important;
  font-weight: 500 !important;
}
.szk-body-wrap:not(.pakiet-page) .sp-text p { color: #555555 !important; }

/* Pre-tag (etykieta nad nagłówkiem) */
.szk-body-wrap:not(.pakiet-page) .pre-tag::before { background: var(--gold) !important; }
.szk-body-wrap:not(.pakiet-page) .pre-tag span { color: var(--gold) !important; }

/* Ramka wyróżniona (złoty lewy border) */
.szk-body-wrap:not(.pakiet-page) [style*="border-left"] {
  background: #faf8f4 !important;
}
.szk-body-wrap:not(.pakiet-page) [style*="border-left"] p { color: #555555 !important; }

/* Nawigacja między szkoleniami */
.szk-nav {
  background: #f7f3ee !important;
  border-top: 1px solid rgba(201,169,110,0.3) !important;
}
.szk-nav a { color: #111111 !important; }
.szk-nav a small { color: var(--gold) !important; }
.szk-nav a:hover { color: var(--gold) !important; }

/* Lista szkoleń (strona archiwum) */
.szk-all { color: #111111 !important; background: #ffffff !important; }
.szk-section-title { color: #111111 !important; border-bottom-color: rgba(201,169,110,0.3) !important; }
.szk-li { background: #ffffff !important; border-top-color: rgba(201,169,110,0.4) !important; }
.szk-li:hover { border-top-color: var(--gold) !important; box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important; }
.szk-li-body h3 { color: #111111 !important; }
.szk-li-body p { color: #666666 !important; }
.szk-li-foot { border-top-color: rgba(201,169,110,0.2) !important; }
.szk-li-meta { color: #888888 !important; }

/* CTA banner — ciemny ze złotem (wszystkie podstrony) */
.cta-banner { background: #111111 !important; }
.cta-banner h2 { color: #ffffff !important; }
.cta-banner p { color: rgba(255,255,255,0.5) !important; }

/* ═══════════════════════════════════════════════════════
   PAKIETY (Basic & Premium) — ciemne tło, złote akcenty
   ═══════════════════════════════════════════════════════ */

.szk-body-wrap.pakiet-page {
  background: #0f0707 !important;
  color: rgba(255,255,255,0.75) !important;
}

/* Nagłówki */
.pakiet-page h2 {
  color: #ffffff !important;
  font-weight: 300 !important;
}
.pakiet-page h2 em { color: var(--gold) !important; }
.pakiet-page h3,
.pakiet-page h4 { color: #ffffff !important; }

/* Akapity */
.pakiet-page p { color: rgba(255,255,255,0.6) !important; }
.pakiet-page .szk-content { color: rgba(255,255,255,0.6) !important; }

/* Pre-tag */
.pakiet-page .pre-tag::before { background: var(--gold) !important; }
.pakiet-page .pre-tag span { color: var(--gold) !important; }

/* Numerki */
.pakiet-page .sp-num { color: var(--gold) !important; }

/* Tytuły i opisy punktów */
.pakiet-page .sp-text h4 { color: #ffffff !important; font-weight: 400 !important; }
.pakiet-page .sp-text p { color: rgba(255,255,255,0.55) !important; }

/* Ramka wyróżniona */
.pakiet-page [style*="border-left"] {
  background: rgba(201,169,110,0.07) !important;
  border-left-color: var(--gold) !important;
}
.pakiet-page [style*="border-left"] p { color: rgba(255,255,255,0.6) !important; }

/* Separator */
.pakiet-page .spc-divider { background: rgba(255,255,255,0.08) !important; }

.rev,.rev-l,.rev-r,.reveal { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════════════════════
   MOBILE FIXES
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1000px) {

  /* Dofinansowanie — grid 2-kolumnowy → 1-kolumnowy */
  section[style*="grid-template-columns:1fr 1fr"],
  section[style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
    padding: 3rem 1.8rem !important;
  }

  /* Dofinansowanie — grid 4-kolumnowy kroków → 2-kolumnowy */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1.5rem !important;
  }

  /* Kontakt — sekcja z formularzem → 1-kolumnowa */
  section[style*="grid-template-columns:1fr 1fr"][style*="background:var(--white)"],
  .page-content-wrap section,
  section[style*="padding:6rem 5rem;display:grid"] {
    display: block !important;
    padding: 3rem 1.8rem !important;
  }

  /* Kontakt — formularz nie wychodzi poza ekran */
  .contact-form,
  .szk-form {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .szk-form input,
  .szk-form select,
  .szk-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ogólny fix overflow na mobile */
  body { overflow-x: hidden !important; }
  section, div { max-width: 100vw; }
}

/* ═══════════════════════════════════════════════════════
   DOFINANSOWANIE + KONTAKT — mobile grid fixes (klasy)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1000px) {

  /* Dofinansowanie — 2-kolumnowy layout → 1-kolumna */
  .dof-main-grid {
    display: block !important;
    padding: 3rem 1.8rem !important;
  }
  .dof-main-grid > * { margin-bottom: 3rem; }
  .dof-main-grid > *:last-child { margin-bottom: 0; }

  /* Dofinansowanie — 4-kolumnowe kroki → 2-kolumny */
  .dof-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  /* Kontakt — 2-kolumnowy layout → 1-kolumna */
  .kontakt-grid {
    display: block !important;
    padding: 3rem 1.8rem !important;
  }
  .kontakt-grid > * { margin-bottom: 3rem; }
  .kontakt-grid > *:last-child { margin-bottom: 0; }

  /* Kontakt — formularz i inputy nie wychodzą poza ekran */
  .kontakt-grid .contact-form,
  .szk-price-card .contact-form {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .kontakt-grid input,
  .kontakt-grid select,
  .kontakt-grid textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* mf-photo — mobile: wyższa sekcja żeby portret był widoczny */
@media (max-width: 1000px) {
  .mf-left { height: 100vw !important; max-height: 600px !important; }
  .mf-photo { object-position: center 15% !important; }
}

/* ═══════════════════════════════════════════════════════
   O-MNIE HERO — mobile fix
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  /* hero-r na mobile: normalny box, nie wylewa base64 */
  .hero-r {
    height: 70vw !important;
    max-height: 500px !important;
    overflow: hidden !important;
    display: block !important;
    width: 100% !important;
  }
  .hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  /* Ukryj pływające statystyki na mobile w hero */
  .hero-float { display: none !important; }
}
