/* =============================================
   PIACH-TRANS – MAIN STYLESHEET
   Ciemna paleta + akcent złoto/piasek
   ============================================= */

/* --- ZMIENNE --- */
:root {
  --bg:         #0d0c0b;
  --surface:    #161412;
  --surface-2:  #1e1c18;
  --surface-3:  #272420;
  --border:     #2c2a24;
  --gold:       #c8a44a;
  --gold-h:     #d8b660;
  --gold-dim:   rgba(200,164,74,.13);
  --gold-dim2:  rgba(200,164,74,.06);
  --text:       #ede8df;
  --text-mid:   #aaa49a;
  --text-muted: #6a6258;
  --white:      #ffffff;
  --nav-h:      72px;
  --container:  1200px;
  --radius:     4px;
  --tr:         0.25s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* --- TYPOGRAFIA --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p   { max-width: 68ch; }

/* --- LAYOUT --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.section-alt { background: var(--surface); }
.section-intro {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-intro h2 { margin: 0.4em 0 0.6em; }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35em 0.9em;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  background: var(--gold-dim2);
}
.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--tr);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0a0900;
}
.btn-gold:hover { background: var(--gold-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,164,74,.3); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAWIGACJA
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--tr), box-shadow var(--tr);
}
#navbar.scrolled {
  background: rgba(13,12,11,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  /* Biała poświata = czarne obrysy widoczne na ciemnym navbarze,
     żółty piasek pozostaje oryginalny */
  filter:
    drop-shadow(0  1px 0 rgba(255,255,255,0.5))
    drop-shadow(0 -1px 0 rgba(255,255,255,0.5))
    drop-shadow( 1px 0 0 rgba(255,255,255,0.5))
    drop-shadow(-1px 0 0 rgba(255,255,255,0.5));
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--gold-dim);
  border: 1px solid rgba(200,164,74,.3);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: all var(--tr);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: #0a0900; border-color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  background: rgba(13,12,11,.98);
  border-top: 1px solid var(--border);
  padding: 1rem clamp(1.25rem,5vw,3rem) 1.5rem;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.nav-mobile a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--tr);
}
.nav-mobile a:hover { color: var(--gold); background: var(--gold-dim2); }
.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--gold);
  color: #0a0900 !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(13,12,11,.6) 0%,
    rgba(13,12,11,.35) 40%,
    rgba(13,12,11,.55) 75%,
    rgba(13,12,11,.88) 100%
  );
}
/* Fallback gdy brak wideo */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 60% 40%, #2a2218 0%, #0d0c0b 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  flex-shrink: 0;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 0.35em;
  max-width: none;
  line-height: 1.0;
}
.hero-content h1 span {
  display: block;
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3em;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(237,232,223,.75);
  margin: 0 auto 2.5rem;
  max-width: 60ch;
  letter-spacing: 0.01em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 0.4em 0.9em;
  border-radius: 20px;
}

/* ============================================
   O NAS
   ============================================ */

/* Watermark – logo w tle sekcji */
.section-with-watermark {
  position: relative;
  overflow: hidden;
}
.section-watermark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 520px);
  height: auto;
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: luminosity;
  z-index: 0;
}
.section-with-watermark .container {
  position: relative;
  z-index: 1;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.about-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  background: var(--gold-dim2);
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}
.about-cert svg { flex-shrink: 0; stroke: var(--gold); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  align-self: start;
}
.stat-card {
  background: var(--surface-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background var(--tr);
}
.stat-card:hover { background: var(--surface-3); }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--tr);
}
.badge svg { stroke: var(--gold); flex-shrink: 0; }
.badge:hover { border-color: var(--gold-dim); color: var(--text); background: var(--gold-dim2); }

/* ============================================
   OFERTA
   ============================================ */
.oferta-block {
  margin-bottom: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--border);
}
.oferta-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.oferta-block-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.oferta-block-title svg { stroke: var(--gold); flex-shrink: 0; }
.product-category-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.product-card {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background var(--tr);
}
.product-card:hover { background: var(--surface-2); }
.pcat {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25em 0.6em;
  border-radius: 3px;
  align-self: flex-start;
}
.pcat-sand  { background: rgba(200,164,74,.18); color: #d4ad50; }
.pcat-gravel{ background: rgba(160,160,160,.15); color: #aaa; }
.pcat-grit  { background: rgba(140,100,60,.2); color: #b88050; }
.pcat-crush { background: rgba(100,100,100,.2); color: #909090; }
.pcat-earth { background: rgba(90,130,60,.18); color: #88b060; }
.product-card h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}
.product-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: none;
  margin: 0;
  flex: 1;
}
.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.card-tags span {
  font-size: 0.65rem;
  padding: 0.2em 0.55em;
  background: var(--surface-3);
  border-radius: 3px;
  color: var(--text-muted);
  font-weight: 500;
}
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--gold-dim2);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.cta-inline p { font-size: 0.92rem; color: var(--text-mid); max-width: none; margin: 0; }

/* Usługi */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background var(--tr);
}
.service-item:hover { background: var(--surface-2); }
.si-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.si-icon svg { stroke: var(--gold); }
.service-item h4 { font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--text); }
.service-item p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; max-width: none; margin: 0; }

/* Transport */
.transport-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.transport-text p {
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
  max-width: none;
}
.transport-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.transport-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.transport-list svg { stroke: var(--gold); flex-shrink: 0; }
.transport-area-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.transport-area-box h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.area-tags span {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--surface-3);
}
.transport-area-box > p { font-size: 0.82rem; color: var(--text-muted); max-width: none; margin: 0; }

/* ============================================
   SPRZĘT
   ============================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.equip-card {
  background: var(--surface);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--tr);
}
.equip-card:hover { background: var(--surface-2); }
.equip-icon {
  width: 56px; height: 56px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.equip-icon svg { stroke: var(--gold); }
.equip-card h4 { font-size: 0.92rem; color: var(--text); margin: 0; }
.equip-card p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; max-width: none; margin: 0; }

/* ============================================
   GALERIA
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; border-radius: 2px; background: var(--surface-2); }
.gallery-item.gi-wide { grid-column: span 2; }
.gallery-item.gi-tall { grid-row: span 2; }
.gal-ph {
  position: absolute;
  inset: 0;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.gal-ph span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
/* Gdy jest prawdziwy obrazek */
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem 0.7rem;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  font-size: 0.75rem;
  color: rgba(237,232,223,.8);
  transform: translateY(100%);
  transition: transform var(--tr);
}
.gallery-item:hover figcaption { transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
}
.lb-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.75rem;
  width: 100%;
}
.lb-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: left;
  flex: 1;
}
.lb-counter {
  font-size: 0.75rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background var(--tr);
  z-index: 201;
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #0a0900; }

/* ============================================
   REALIZACJE
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.project-card:hover { border-color: rgba(200,164,74,.3); transform: translateY(-3px); }
.proj-img { position: relative; height: 190px; background: var(--surface-2); overflow: hidden; }
.proj-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .proj-img img { transform: scale(1.04); }
.proj-ph {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-muted); font-style: italic;
}
.proj-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.3em 0.8em;
  background: var(--gold);
  color: #0a0900;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}
.proj-body { padding: 1.5rem; }
.proj-body h4 { font-size: 0.97rem; color: var(--text); margin-bottom: 0.6rem; }
.proj-body p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; max-width: none; margin-bottom: 1rem; }
.asort-strip {
  display: flex;
  gap: 6px;
  margin: 0.6rem 0 1.4rem;
  flex-wrap: wrap;
}
.asort-thumb {
  width: 88px;
  height: 70px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--tr);
  flex-shrink: 0;
}
.asort-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.asort-thumb:hover { border-color: var(--gold); }
.asort-thumb:hover img { transform: scale(1.1); }
.proj-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.4em 0.85em;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: border-color var(--tr), background var(--tr);
}
.proj-gallery-btn::before { content: '▶'; font-size: 0.6em; }
.proj-gallery-btn:hover { border-color: var(--gold); background: rgba(200,164,74,.08); }
.proj-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.proj-meta span {
  font-size: 0.68rem;
  padding: 0.2em 0.6em;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
}

/* ============================================
   AKTUALNOŚCI
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--tr);
}
.news-card:hover { border-color: rgba(200,164,74,.25); }
.news-date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-card h4 { font-size: 0.97rem; color: var(--text); }
.news-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; max-width: none; flex: 1; }
.news-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: auto;
  transition: opacity var(--tr);
}
.news-link:hover { opacity: 0.75; }

/* ============================================
   KONTAKT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form-wrap h3,
.contact-info-wrap h3 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--tr), background var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--surface-3);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--surface-3); }
.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.btn-full { margin-top: 0.5rem; }
.form-status {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--gold);
  min-height: 1.2em;
}
.contact-info address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-item svg { stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ci-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ci-item strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.ci-item span, .ci-item a { font-size: 0.9rem; color: var(--text); }
.ci-item a:hover { color: var(--gold); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; filter: grayscale(40%) invert(92%) hue-rotate(180deg); }

/* ============================================
   STOPKA
   ============================================ */
#footer { border-top: 1px solid var(--border); }
.footer-top { background: var(--surface); padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
/* Logo w stopce – ikona + tekst, bez tła */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  transition: opacity 0.2s;
}
.footer-brand-logo:hover { opacity: 0.8; }
.footer-brand-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  /* drop-shadow nie zmienia kolorów pikseli — żółty zostaje żółty.
     Biała poświata sprawia że czarne obrysy są widoczne na ciemnym tle. */
  filter:
    drop-shadow(0  1px 0 rgba(255,255,255,0.55))
    drop-shadow(0 -1px 0 rgba(255,255,255,0.55))
    drop-shadow( 1px 0 0 rgba(255,255,255,0.55))
    drop-shadow(-1px 0 0 rgba(255,255,255,0.55))
    drop-shadow(0 0 4px rgba(255,255,255,0.18));
}
.footer-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-logo-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 0.75rem;
}
.footer-legal {
  font-size: 0.72rem;
  color: #4a4540;
  max-width: none !important;
  margin: 0 !important;
}
.footer-nav h5, .footer-contact h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--tr);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); max-width: none; }
.footer-contact a { font-size: 0.88rem; color: var(--text-mid); transition: color var(--tr); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); max-width: none; margin: 0; }

/* ============================================
   FAB TELEFON
   ============================================ */
.fab-tel {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,164,74,.4);
  transition: transform var(--tr), box-shadow var(--tr);
}
.fab-tel:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(200,164,74,.55); }
.fab-tel svg { stroke: #0a0900; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .transport-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gi-wide { grid-column: span 2; }
  .gi-tall { grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gi-wide { grid-column: auto; }
  .equipment-grid { grid-template-columns: 1fr; }
  .lb-prev { left: 0.75rem; }
  .lb-next { right: 0.75rem; }
}
