/* =============================================================
   TOMASZ PODLASIAK - Style główny
   Paleta brand: granat #0F1128, złoto #B8962E, czerwień #E63946,
                 żółty #F4C400, teal #1D9E75
   Typografia: Playfair Display (nagłówki) + Inter (tekst)
============================================================= */

/* ----- DESIGN TOKENS ----- */
:root {
  --navy:    #0F1128;
  --navy2:   #1A1E3C;
  --gold:    #B8962E;
  --red:     #E63946;
  --yellow:  #F4C400;
  --green:   #1D9E75;
  --white:   #FFFFFF;
  --off:     #F8F7F4;
  --off2:    #EFEDE8;
  --ink:     #2C2D3A;
  --muted:   #6B6E85;
  --border:  rgba(15,17,40,.09);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --ease:  cubic-bezier(.22,.68,0,1.2);
  --ease2: cubic-bezier(.25,.46,.45,.94);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
p { line-height: 1.78; color: var(--muted); }
button { font-family: inherit; cursor: pointer; }

/* ----- TYPOGRAFIA ----- */
.t-display { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; color: var(--navy); }
.t-h1      { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.12; letter-spacing: -.015em; color: var(--navy); }
.t-h2      { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; color: var(--navy); }
.t-h3      { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 400; line-height: 1.25; color: var(--navy); }
.t-h4      { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; line-height: 1.3; color: var(--navy); }
.t-label   { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }

/* ----- LAYOUT ----- */
.wrap     { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.wrap-sm  { max-width: 820px;  margin: 0 auto; padding: 0 2rem; }
.section          { padding: 5.5rem 0; }
.section-sm       { padding: 3.5rem 0; }
.section-dark     { background: var(--navy); color: var(--white); }
.section-dark p   { color: rgba(255,255,255,.6); }
.section-off      { background: var(--off); }

.section-head        { margin-bottom: 3rem; }
.section-head .t-h2  { margin-bottom: .8rem; }
.section-head p      { font-size: 1.02rem; max-width: 600px; }

/* ----- UTILITIES ----- */
.divider { width: 40px; height: 2px; background: var(--gold); display: block; margin-bottom: 1.4rem; }
.divider.r { background: var(--red); }
.divider.y { background: var(--yellow); }
.divider.g { background: var(--green); }
.divider.white { background: rgba(255,255,255,.4); }

.pill { display: inline-flex; align-items: center; gap: 8px; padding: .32rem .9rem; border-radius: 100px; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pill-r { background: rgba(230,57,70,.08); color: var(--red); }
.pill-r::before { background: var(--red); }
.pill-y { background: rgba(244,196,0,.12); color: #7A6200; }
.pill-y::before { background: var(--yellow); }
.pill-g { background: rgba(29,158,117,.08); color: var(--green); }
.pill-g::before { background: var(--green); }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: all .25s var(--ease2);
  padding: .95rem 2.2rem;
}
.btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; transition: transform .25s var(--ease2); }
.btn:hover svg { transform: translateX(3px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #f04050; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #cba940; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid rgba(15,17,40,.2); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-link { background: none; border: none; color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 0; display: inline-flex; align-items: center; gap: 8px; transition: gap .25s var(--ease2); }
.btn-link:hover { gap: 14px; }
.btn-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ----- NAVIGATION ----- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(15,17,40,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,150,46,.18);
  transition: background .3s;
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo img {
  height: 28px; width: auto;
  display: block;
}
.logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.005em;
}

.nav-menu {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu a {
  font-size: .76rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color .22s;
  padding: .5rem 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-menu a:hover, .nav-menu a.active { color: rgba(255,255,255,.98); }
.nav-menu .has-submenu > a::after {
  content: ''; width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.nav-menu .has-submenu:hover > a::after { transform: rotate(225deg) translateY(2px); }

.submenu {
  position: absolute; top: 100%; left: -1rem;
  background: rgba(15,17,40,.98);
  border: 1px solid rgba(184,150,46,.18);
  border-radius: 8px;
  padding: .8rem 0;
  min-width: 280px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  list-style: none;
}
.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block; padding: .65rem 1.4rem;
  font-size: .78rem; letter-spacing: .04em;
  text-transform: none; font-weight: 400;
  color: rgba(255,255,255,.7);
}
.submenu a:hover { background: rgba(184,150,46,.08); color: var(--white); }

.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: .55rem 1.3rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background .22s !important;
}
.nav-cta:hover { background: #f04050 !important; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.7); transition: .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Push content below fixed nav */
.page-spacer { height: 70px; }

/* ----- HERO ----- */
#hero {
  background: var(--navy);
  min-height: 80vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 5rem 0;
}
.hero-glow {
  position: absolute; pointer-events: none; border-radius: 50%;
}
.hg1 { width: 700px; height: 700px; background: radial-gradient(circle,rgba(230,57,70,.07),transparent 65%); top: -200px; right: -150px; }
.hg2 { width: 500px; height: 500px; background: radial-gradient(circle,rgba(29,158,117,.06),transparent 65%); bottom: -100px; left: -100px; }
.hg3 { width: 400px; height: 400px; background: radial-gradient(circle,rgba(244,196,0,.05),transparent 65%); top: 40%; right: 25%; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-left .t-label { color: var(--gold); margin-bottom: 1.4rem; display: block; }
.hero-left .t-display { color: var(--white); margin-bottom: 1.4rem; }
.hero-left .t-display em { font-style: italic; color: var(--yellow); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-photo {
  width: 100%; max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

/* ----- FOOTER ----- */
footer {
  background: #070917;
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,.55);
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 1.6rem;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { height: 24px; width: auto; }
.footer-logo-name { font-family: var(--serif); font-size: 1.15rem; color: var(--white); font-weight: 400; }
.footer-desc { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-size: .62rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: .55rem; }
.footer-col a {
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: color .22s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.3); }
.footer-tm {
  max-width: 500px;
  font-size: .68rem;
  color: rgba(255,255,255,.25);
  line-height: 1.55;
  margin-top: .8rem;
}

/* ----- SECTION: USŁUGI (siatka 2x2) ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease2), box-shadow .3s var(--ease2);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(15,17,40,.08);
}
.service-card-top { padding: 2rem; position: relative; }
.service-card-top.r { background: linear-gradient(135deg,rgba(230,57,70,.07),rgba(230,57,70,.02)); }
.service-card-top.y { background: linear-gradient(135deg,rgba(244,196,0,.1),rgba(244,196,0,.02)); }
.service-card-top.g { background: linear-gradient(135deg,rgba(29,158,117,.08),rgba(29,158,117,.02)); }
.service-card-top.n { background: linear-gradient(135deg,rgba(15,17,40,.06),rgba(15,17,40,.01)); }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon.r { background: rgba(230,57,70,.12); }
.service-icon.r svg { fill: var(--red); }
.service-icon.y { background: rgba(244,196,0,.15); }
.service-icon.y svg { fill: #8A6A00; }
.service-icon.g { background: rgba(29,158,117,.12); }
.service-icon.g svg { fill: var(--green); }
.service-icon.n { background: rgba(15,17,40,.08); }
.service-icon.n svg { fill: var(--navy); }
.service-icon svg { width: 22px; height: 22px; }

.service-card-top .t-h3 { margin-bottom: .3rem; }
.service-subtitle {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.service-card-top p { font-size: .92rem; }

.service-card-body { padding: 1.6rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.service-features {
  display: flex; flex-direction: column; gap: .55rem;
  margin-bottom: 1.4rem;
}
.service-feature { display: flex; gap: .7rem; align-items: flex-start; }
.service-feature-mark {
  width: 16px; height: 16px;
  border-radius: 50%; flex-shrink: 0;
  margin-top: 3px;
  display: flex; align-items: center; justify-content: center;
}
.service-feature-mark.r { background: rgba(230,57,70,.1); }
.service-feature-mark.r svg { fill: var(--red); }
.service-feature-mark.y { background: rgba(244,196,0,.15); }
.service-feature-mark.y svg { fill: #8A6A00; }
.service-feature-mark.g { background: rgba(29,158,117,.1); }
.service-feature-mark.g svg { fill: var(--green); }
.service-feature-mark.n { background: rgba(15,17,40,.08); }
.service-feature-mark.n svg { fill: var(--navy); }
.service-feature-mark svg { width: 9px; height: 9px; }
.service-feature span { font-size: .85rem; color: var(--ink); line-height: 1.5; }

.service-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.service-for {
  font-size: .76rem; color: var(--muted);
  margin-bottom: .9rem;
}
.service-for strong { color: var(--ink); font-weight: 600; }

/* ----- SECTION: O MNIE ----- */
.about-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.about-photo-col { position: relative; }
.about-photo {
  aspect-ratio: 3/4;
  background: var(--off2);
  border-radius: 12px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.about-content .divider { margin-top: .5rem; }
.about-lead { font-size: 1.05rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.4rem; }
.about-body { font-size: .96rem; margin-bottom: 1.4rem; }
.about-body strong { color: var(--navy); font-weight: 600; }

.cred-list {
  display: flex; flex-direction: column; gap: .6rem;
  margin: 2rem 0 2.4rem;
}
.cred-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .9rem 1.1rem;
  border-radius: 8px;
  background: var(--off);
  border: 1px solid var(--border);
}
.cred-dot {
  width: 10px; height: 10px;
  border-radius: 50%; flex-shrink: 0;
  margin-top: 6px;
}
.cred-dot.r { background: var(--red); }
.cred-dot.y { background: var(--yellow); }
.cred-dot.g { background: var(--green); }
.cred-dot.gold { background: var(--gold); }
.cred-item-text strong {
  display: block;
  font-size: .9rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: .15rem;
}
.cred-item-text span { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ----- SECTION: KONTAKT ----- */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: start;
}
.contact-info .t-h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; max-width: 380px; }

.contact-mail-box {
  background: var(--off);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
}
.contact-mail-box span {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: .3rem;
}
.contact-mail-box a {
  font-size: 1.02rem; font-weight: 500;
  color: var(--navy);
  word-break: break-all;
}
.contact-mail-box a:hover { color: var(--gold); }

.contact-promise {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.contact-promise h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.promise-items { display: flex; flex-direction: column; gap: .9rem; }
.promise-item { display: flex; gap: .9rem; align-items: flex-start; }
.promise-num {
  width: 24px; height: 24px;
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  margin-top: 1px;
}
.pn-r { background: rgba(230,57,70,.15); color: var(--red); }
.pn-y { background: rgba(244,196,0,.18); color: #7A6200; }
.pn-g { background: rgba(29,158,117,.15); color: var(--green); }
.promise-item p { font-size: .88rem; line-height: 1.6; }

/* ----- FORMULARZ KONTAKTOWY ----- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .76rem; font-weight: 600;
  letter-spacing: .05em; color: var(--ink);
}
.form-group label .req { color: var(--red); }
.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: .92rem;
  padding: .75rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-checkbox {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .9rem;
  background: var(--off);
  border-radius: 6px;
}
.form-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--gold);
}
.form-checkbox label {
  font-size: .82rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
}
.form-checkbox a { color: var(--gold); text-decoration: underline; }

.form-submit { margin-top: .5rem; }
.form-status {
  padding: .9rem;
  border-radius: 6px;
  font-size: .88rem;
  margin-top: .5rem;
  display: none;
}
.form-status.success { background: rgba(29,158,117,.1); color: var(--green); display: block; }
.form-status.error { background: rgba(230,57,70,.1); color: var(--red); display: block; }

/* ----- PAGE HEADER (dla podstron) ----- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-header .hero-glow { z-index: 0; }
.page-header-inner { position: relative; z-index: 1; max-width: 800px; }
.page-header .t-label { color: var(--gold); display: block; margin-bottom: 1rem; }
.page-header .t-h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 640px; }

/* ----- SERVICE PAGE (pojedyncza usługa) ----- */
.service-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-detail-main h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { font-size: 1rem; margin-bottom: 1.2rem; }
.service-detail-main ul {
  list-style: none;
  margin: 1.2rem 0;
}
.service-detail-main ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: .7rem;
  color: var(--ink);
  line-height: 1.6;
}
.service-detail-main ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 14px; height: 2px;
  background: var(--gold);
}

.service-sidebar {
  background: var(--off);
  border-radius: 10px;
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.service-sidebar h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.service-sidebar p { font-size: .92rem; margin-bottom: 1.5rem; }
.service-sidebar .btn { width: 100%; justify-content: center; }

/* ----- BLOG PLACEHOLDER ----- */
.blog-coming-soon {
  text-align: center;
  padding: 4rem 0;
}
.blog-coming-soon .t-h2 { margin-bottom: 1rem; }
.blog-coming-soon p { max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ----- LEGAL PAGES ----- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 .8rem;
}
.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin: 1.5rem 0 .6rem;
}
.legal-content p { margin-bottom: 1rem; font-size: .96rem; }
.legal-content ul { margin: 1rem 0 1rem 2rem; }
.legal-content ul li { margin-bottom: .5rem; color: var(--muted); }

/* ============================================================= 
   RESPONSIVE
============================================================= */
@media (max-width: 1000px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .about-layout     { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail   { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-sidebar  { position: static; }
  .footer-inner     { grid-template-columns: 1fr; gap: 2.4rem; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(15,17,40,.99);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0; visibility: hidden;
    transition: all .3s;
    border-top: 1px solid rgba(184,150,46,.2);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1; visibility: visible;
  }
  .nav-menu > li { width: 100%; }
  .nav-menu a { padding: 1rem 2rem; width: 100%; }
  .nav-burger { display: flex; }
  .submenu {
    position: static; opacity: 1; visibility: visible;
    transform: none;
    background: rgba(0,0,0,.2);
    border: none; border-radius: 0;
    padding: 0;
    min-width: 100%;
  }
  .submenu a { padding-left: 3rem !important; }

  .services-grid    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .section          { padding: 4rem 0; }
  .section-head     { margin-bottom: 2rem; }
  .wrap             { padding: 0 1.2rem; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
}

/* ----- ANIMATIONS ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s var(--ease2) both; }

/* ----- LSP GALLERY ----- */
.lsp-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.lsp-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off2);
  box-shadow: 0 4px 20px rgba(15,17,40,.06);
  transition: transform .35s var(--ease2), box-shadow .35s var(--ease2);
}
.lsp-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15,17,40,.12);
}
.lsp-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease2);
}
.lsp-gallery-item:hover img {
  transform: scale(1.04);
}
.lsp-gallery-tall {
  grid-row: span 2;
  aspect-ratio: 4/5;
}

@media (max-width: 768px) {
  .lsp-gallery { grid-template-columns: 1fr; gap: 1rem; }
  .lsp-gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
}

/* ----- DODATKOWE POPRAWKI MOBILE ----- */
@media (max-width: 768px) {
  .hero-photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-left .t-display {
    font-size: 2.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .page-header {
    padding: 3.5rem 0 3rem;
  }
  .page-header .t-h1 {
    font-size: 1.8rem;
  }
  .section-head .t-h2 {
    font-size: 1.6rem;
  }
  .service-card-top, .service-card-body {
    padding: 1.5rem;
  }
  .service-card-top .t-h3 {
    font-size: 1.2rem;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .nav-inner {
    height: 60px;
  }
  .page-spacer {
    height: 60px;
  }
  .nav-menu {
    top: 60px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .logo img {
    height: 24px;
  }
  /* Lepiej widoczne submenu items na mobile */
  .nav-menu .has-submenu > a::after {
    display: none;
  }
  .submenu {
    background: rgba(255,255,255,.04) !important;
  }
  .submenu a {
    font-size: .76rem !important;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 1rem;
  }
  .hero-left .t-display {
    font-size: 2.1rem;
  }
  .t-display {
    font-size: 2.1rem;
  }
  .section {
    padding: 3rem 0;
  }
  .footer-inner {
    gap: 2rem;
  }
}

/* ----- LINKEDIN ICON W NAWIGACJI ----- */
/* Zgodnie z LinkedIn Brand Guidelines: białe "in" logo to dozwolony kolor */
.nav-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04);
  transition: all .22s var(--ease2);
  margin-left: .3rem;
}
.nav-linkedin:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-linkedin svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* Mobile — ikona LinkedIn jako pełny element menu */
@media (max-width: 768px) {
  .nav-linkedin {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin: 0;
    padding: 1rem 2rem !important;
    justify-content: flex-start;
    gap: .8rem;
  }
  .nav-linkedin::after {
    content: 'LinkedIn';
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
}

/* Footer — link LinkedIn */
.footer-col .footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col .footer-linkedin svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
