/* ===================================================================
   STOPNIE NA BETON — style.css
   Konwersja 1:1 z Next.js / Tailwind CSS
   =================================================================== */

/* ===================== 1. CSS VARIABLES ============================ */
:root {
  --wood-950: #0A0500;
  --wood-900: #1C0F05;
  --wood-800: #261508;
  --wood-700: #32200A;
  --wood-600: #3D2510;
  --wood-500: #5C3A1E;
  --wood-400: #8B6B50;
  --wood-300: #C8A882;
  --wood-200: #D4C4A8;
  --wood-100: #F5EDD8;
  --wood-50:  #F7F2E8;
  --gold:        #C8922A;
  --gold-light:  #E8B84B;
  --gold-dark:   #8B6218;
  --gold-muted:  #6B4F1A;
  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ===================== 2. RESET & BASE ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--wood-900);
  color: var(--wood-100);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--wood-900);
  color: var(--wood-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; background: none; border: none; }
input, select, textarea { font-family: var(--font-body); }

::selection { background: var(--gold); color: var(--wood-900); }
::-webkit-scrollbar { width: 6px; background: var(--wood-800); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== 3. GLOBAL INPUT STYLES ====================== */
input, select, textarea {
  background: var(--wood-700);
  border: 1px solid var(--wood-600);
  color: #EDE5D4;
  padding: 12px 16px;
  border-radius: 2px;
  width: 100%;
  transition: border-color 0.2s;
  font-size: 14px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
input::placeholder, textarea::placeholder { color: var(--wood-500); }
select option { background: var(--wood-700); color: #EDE5D4; }

/* ===================== 4. CUSTOM COMPONENTS ======================= */
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.gold-divider {
  border: none;
  border-top: 1px solid rgba(200,146,42,0.25);
  margin: 1.5rem 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--wood-900);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: background 0.2s;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 2rem;
  border-radius: 0;
  transition: all 0.2s;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  text-align: center;
}
.btn-outline:hover { background: var(--gold); color: var(--wood-900); }

/* ===================== 5. LAYOUT HELPERS ========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,146,42,0.15), transparent);
}

/* ===================== 6. NAVBAR ================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
}
.site-header.scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  background: rgba(28,15,5,0.90);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px)  { .nav-inner { height: 80px; padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) { .nav-logo { gap: 0.75rem; } }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text span:first-child {
  font-weight: 700;
  color: var(--wood-100);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
.nav-logo-text span:last-child {
  font-weight: 300;
  color: var(--wood-100);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
@media (min-width: 640px) {
  .nav-logo-text span { font-size: 14px; }
}

/* Desktop nav — lg+ */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1280px) { .nav-desktop { gap: 2rem; } }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 500;
  color: var(--wood-300);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.8; }
.nav-cta .btn-outline { font-size: 14px; padding: 0.625rem 1.25rem; }

/* Tablet nav (md–lg) */
.nav-tablet {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) and (max-width: 1023px) { .nav-tablet { display: flex; } }
.nav-tablet .nav-link { font-size: 10px; color: var(--wood-400); }
.nav-tablet .btn-outline { font-size: 12px; padding: 0.5rem 0.875rem; }
.nav-tablet .nav-phone { font-size: 12px; gap: 0.375rem; }

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-100);
  padding: 0.5rem;
  margin-right: -0.5rem;
}
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(28,15,5,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wood-700);
  padding: 0 1.25rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 0.75rem; }
.mobile-menu-link {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 500;
  color: var(--wood-300);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--wood-800);
  display: block;
  transition: color 0.2s;
}
.mobile-menu-link:last-of-type { border-bottom: none; }
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--gold); }
.mobile-menu-actions {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}
.mobile-menu-actions .btn-gold { display: block; width: 100%; }

/* ===================== 7. STICKY MOBILE CTA ====================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(200,146,42,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(28,15,5,0.95);
}
@media (max-width: 767px) { .sticky-cta { display: flex; } }
.sticky-cta.visible { display: flex; }
.sticky-cta-inner { display: flex; width: 100%; height: 64px; }
.sticky-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--wood-900);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}
.sticky-cta-wycena {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(200,146,42,0.25);
}

/* ===================== 8. HERO SECTION ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--wood-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,15,5,0.96) 0%, rgba(28,15,5,0.85) 45%, rgba(28,15,5,0.55) 100%);
}
.hero-radial {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 60% 40%, #3D2510 0%, #261508 40%, #1C0F05 100%);
  opacity: 0.45;
}
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.25rem 3rem;
  width: 100%;
}
@media (min-width: 640px) { .hero-content { padding: 6rem 1.5rem 4rem; } }
@media (min-width: 1024px) { .hero-content { padding: 6rem 2rem 4rem; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 640px) { .hero-grid { gap: 2.5rem; } }
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 58% 42%;
    gap: 4rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  color: var(--wood-50);
  line-height: 1.0;
  margin-bottom: 1rem;
  font-size: clamp(32px, 7vw, 80px);
}
@media (min-width: 640px) { .hero-title { margin-bottom: 1.5rem; } }

.hero-subtitle {
  color: var(--wood-300);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 440px;
  font-family: var(--font-body);
}
@media (min-width: 640px) { .hero-subtitle { font-size: 16px; margin-bottom: 2rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 18px; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; gap: 1rem; margin-bottom: 3rem; }
}

.hero-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.hero-stat-value {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-heading);
}
@media (min-width: 640px) { .hero-stat-value { font-size: 20px; } }
.hero-stat-label {
  color: var(--wood-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  font-size: 10px;
  opacity: 0.65;
  font-family: var(--font-body);
}

/* Hero right image */
.hero-image-wrap {
  display: none;
  position: relative;
  width: 100%;
}
@media (min-width: 640px) {
  .hero-image-wrap {
    display: block;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1024px) {
  .hero-image-wrap { aspect-ratio: 3/4; }
}
.hero-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--wood-600);
}
.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-image-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,15,5,0.4), transparent);
  pointer-events: none;
}
.hero-corner-tr {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-top: 1px solid #C8922A;
  border-right: 1px solid #C8922A;
  opacity: 0.4;
}
.hero-corner-bl {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #C8922A;
  border-left: 1px solid #C8922A;
  opacity: 0.4;
}
@media (min-width: 640px) {
  .hero-corner-tr, .hero-corner-bl { width: 48px; height: 48px; }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 1.8s ease-in-out infinite;
}
@media (min-width: 640px) { .hero-scroll { bottom: 2rem; } }
.hero-scroll-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero-scroll-ring { width: 40px; height: 40px; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===================== 9. ABOUT SECTION ========================== */
.about-section {
  padding: 4rem 0;
  background: var(--wood-900);
}
@media (min-width: 640px) { .about-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .about-section { padding: 6rem 0; } }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-photo-wrap {
  position: relative;
  max-width: 384px;
  margin: 0 auto;
}
@media (min-width: 640px) { .about-photo-wrap { max-width: 448px; } }
@media (min-width: 1024px) { .about-photo-wrap { max-width: 100%; margin: 0; } }

.about-photo-line {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 0;
  width: 1px;
  display: none;
  background: linear-gradient(to bottom, rgba(200,146,42,0.5) 0%, rgba(200,146,42,0.05) 100%);
}
@media (min-width: 640px) { .about-photo-line { display: block; } }

.about-photo-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--wood-600);
  aspect-ratio: 3/4;
  max-height: 500px;
  margin-left: 0;
}
@media (min-width: 640px) { .about-photo-inner { margin-left: 2.5rem; } }
.about-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,15,5,0.3), transparent);
  pointer-events: none;
}
.about-corner-tr {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-top: 1px solid #C8922A;
  border-right: 1px solid #C8922A;
  opacity: 0.4;
  display: none;
}
@media (min-width: 640px) { .about-corner-tr { display: block; } }
.about-corner-bl {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid #C8922A;
  border-left: 1px solid #C8922A;
  opacity: 0.4;
  display: none;
}
@media (min-width: 640px) { .about-corner-bl { display: block; left: 0.5rem; } }

.about-text { }
.about-text .section-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .about-text .section-label { margin-bottom: 1rem; } }
.about-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .about-h2 { margin-bottom: 1.5rem; } }
.about-paragraphs { margin-bottom: 1.75rem; }
@media (min-width: 640px) { .about-paragraphs { margin-bottom: 2rem; } }
.about-paragraphs p {
  color: var(--wood-300);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .about-paragraphs p { font-size: 16px; } }
.about-paragraphs p:last-child { margin-bottom: 0; }
.about-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.about-link:hover { color: var(--gold-light); }

.about-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .about-buttons { flex-direction: row; gap: 1rem; } }

/* ===================== 10. BEFORE/AFTER (REALIZACJE) ============== */
.realizacje-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .realizacje-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .realizacje-section { padding: 6rem 0; } }

.realizacje-bg {
  position: absolute;
  inset: 0;
}
.realizacje-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.realizacje-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,7,2,0.82);
}
.realizacje-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .realizacje-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .realizacje-content { padding: 0 2rem; } }

.realizacje-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .realizacje-header { margin-bottom: 4rem; } }
.realizacje-header .section-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .realizacje-header .section-label { margin-bottom: 1rem; } }
.realizacje-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(28px, 4vw, 52px);
}

.realizacje-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .realizacje-grid { gap: 1.5rem; } }
@media (min-width: 768px) { .realizacje-grid { grid-template-columns: 1fr 1fr; } }

.project-card {
  background: var(--wood-700);
  border: 1px solid var(--wood-600);
  border-radius: 4px;
  overflow: hidden;
}
.project-card-main {
  position: relative;
  width: 100%;
  height: clamp(220px, 55vw, 340px);
  overflow: hidden;
}
.project-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.project-card-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
}
.project-card-thumb {
  position: relative;
  height: clamp(60px, 15vw, 80px);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: outline-color 0.2s;
}
.project-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card-thumb.active { outline-color: #C8922A; }
.project-card-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,15,5,0.35);
  transition: opacity 0.2s;
}
.project-card-thumb.active .project-card-thumb-overlay { opacity: 0; }
.project-card-info { padding: 1.25rem; }
@media (min-width: 640px) { .project-card-info { padding: 1.5rem; } }
.project-card-info .section-label { margin-bottom: 0.25rem; font-size: 10px; }
@media (min-width: 640px) { .project-card-info .section-label { font-size: 11px; } }
.project-card-info p { color: var(--wood-300); font-size: 14px; line-height: 1.7; }

.project-card--gallery .project-card-main {
  height: clamp(280px, 45vw, 480px);
}

.project-card-before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 4px;
}

.project-card-ba-label {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--wood-400);
  padding: 6px 2px 4px;
}
@media (min-width: 640px) { .project-card-ba-label { font-size: 11px; } }

.project-card-ba-group .project-card-thumbs {
  padding: 0;
  gap: 4px;
}
.project-card-ba-group .project-card-thumb {
  height: clamp(90px, 18vw, 130px);
}
.project-card-thumbs--3 { grid-template-columns: repeat(3, 1fr); }
.project-card-thumbs--4 { grid-template-columns: repeat(4, 1fr); }

/* ===================== 11. PROCESS SECTION ======================== */
.process-section {
  padding: 4rem 0;
  background: var(--wood-900);
}
@media (min-width: 640px) { .process-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .process-section { padding: 6rem 0; } }

.process-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .process-header { margin-bottom: 4rem; } }
.process-header .section-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .process-header .section-label { margin-bottom: 1rem; } }
.process-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(26px, 4vw, 52px);
}

/* Desktop: 4-col */
.process-desktop {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .process-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.process-desktop-line {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  border-top: 1px dashed rgba(200,146,42,0.3);
}
.process-step-desktop { padding: 0 1.5rem; }
.process-circle-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.process-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #C8922A;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wood-900);
  position: relative;
  z-index: 10;
}
.process-circle span {
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-heading);
}
.process-step-h3 {
  color: var(--wood-100);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.process-step-p { color: var(--wood-400); font-size: 14px; text-align: center; line-height: 1.7; }

/* Tablet: 2×2 */
.process-tablet {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) and (max-width: 1023px) { .process-tablet { display: grid; } }
.process-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--wood-800);
  border: 1px solid var(--wood-600);
  border-radius: 4px;
}
.process-card-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #C8922A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card-circle span {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-heading);
}
.process-card-h3 {
  color: var(--wood-100);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.375rem;
  font-family: var(--font-body);
}
.process-card-p { color: var(--wood-400); font-size: 14px; line-height: 1.7; }

/* Mobile: vertical timeline */
.process-mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
@media (min-width: 768px) { .process-mobile { display: none; } }
.process-mobile-line {
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  border-left: 1px dashed rgba(200,146,42,0.3);
}
.process-mobile-step { display: flex; gap: 1rem; padding-bottom: 2rem; }
@media (min-width: 640px) { .process-mobile-step { gap: 1.5rem; padding-bottom: 2.5rem; } }
.process-mobile-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #C8922A;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wood-900);
  position: relative;
  z-index: 10;
}
.process-mobile-circle span {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  font-family: var(--font-heading);
}
.process-mobile-body { padding-top: 0.375rem; }
.process-mobile-h3 {
  color: var(--wood-100);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.375rem;
  font-family: var(--font-body);
}
.process-mobile-p { color: var(--wood-400); font-size: 14px; line-height: 1.7; }

/* ===================== 12. MATERIALS SECTION ====================== */
.materials-section {
  padding: 4rem 0;
  background: var(--wood-800);
}
@media (min-width: 640px) { .materials-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .materials-section { padding: 6rem 0; } }

.materials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .materials-header { margin-bottom: 4rem; } }
.materials-header .section-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .materials-header .section-label { margin-bottom: 1rem; } }
.materials-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .materials-h2 { margin-bottom: 1rem; } }
.materials-subtitle { color: var(--wood-400); font-size: 14px; max-width: 512px; margin: 0 auto; }
@media (min-width: 640px) { .materials-subtitle { font-size: 16px; } }

.materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .materials-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (min-width: 1024px) { .materials-grid { grid-template-columns: repeat(4, 1fr); } }

.material-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
@media (min-width: 640px) { .material-card { aspect-ratio: 1; } }
.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.material-card:hover img { transform: scale(1.05); }
.material-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,9,0,0.96) 0%, rgba(18,9,0,0.45) 50%, transparent 100%);
}
.material-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
}
@media (min-width: 640px) { .material-card-info { padding: 1rem; } }
.material-card-info .section-label { margin-bottom: 0.125rem; font-size: 10px; }
@media (min-width: 640px) { .material-card-info .section-label { margin-bottom: 0.25rem; font-size: 11px; } }
.material-card-info p { color: var(--wood-200); font-size: 12px; line-height: 1.4; }
@media (min-width: 640px) { .material-card-info p { font-size: 14px; } }
.material-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.material-card:hover .material-card-border { border-color: var(--gold); }

.materials-footer {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .materials-footer { margin-top: 2.5rem; } }
.materials-footer p { color: var(--wood-400); font-size: 14px; }
.materials-footer a { color: var(--gold); transition: color 0.2s; }
.materials-footer a:hover { color: var(--gold-light); }

/* ===================== 13. CONTACT CTA SECTION =================== */
.contact-cta-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .contact-cta-section { padding: 5rem 0; } }
@media (min-width: 1024px) { .contact-cta-section { padding: 6rem 0; } }
.contact-cta-bg {
  position: absolute;
  inset: 0;
}
.contact-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  filter: blur(3px);
}
.contact-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,11,3,0.75);
}
.contact-cta-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
@media (min-width: 640px) { .contact-cta-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .contact-cta-content { padding: 0 2rem; } }
.contact-cta-content .section-label { margin-bottom: 1rem; }
@media (min-width: 640px) { .contact-cta-content .section-label { margin-bottom: 1.5rem; } }
.contact-cta-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .contact-cta-h2 { margin-bottom: 1.5rem; } }
.contact-cta-sub {
  color: var(--wood-300);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .contact-cta-sub { font-size: 16px; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .contact-cta-sub { font-size: 18px; } }
.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .contact-cta-buttons {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.contact-cta-buttons .btn-gold,
.contact-cta-buttons .btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-cta-link {
  color: var(--wood-400);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.contact-cta-link:hover { color: var(--gold); }

/* ===================== 14. FOOTER ================================= */
.site-footer {
  background: var(--wood-950);
  border-top: 1px solid var(--wood-800);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
@media (min-width: 640px) { .footer-inner { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 4rem 2rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; } }

.footer-brand { }
@media (min-width: 640px) { .footer-brand { grid-column: span 2; } }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .footer-logo { margin-bottom: 1rem; } }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text span:first-child {
  font-weight: 700;
  color: var(--wood-100);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
.footer-logo-text span:last-child {
  font-weight: 300;
  color: var(--wood-100);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}
.footer-desc {
  color: var(--wood-400);
  font-size: 14px;
  line-height: 1.7;
  max-width: 288px;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .footer-desc { margin-bottom: 1rem; } }
.footer-tagline { color: var(--wood-500); font-size: 12px; }

.footer-nav-title { margin-bottom: 1rem; }
@media (min-width: 640px) { .footer-nav-title { margin-bottom: 1.5rem; } }
.footer-nav-links { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .footer-nav-links { gap: 0.75rem; } }
.footer-nav-links a { color: var(--wood-400); font-size: 14px; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--gold); }

.footer-contact-title { margin-bottom: 1rem; }
@media (min-width: 640px) { .footer-contact-title { margin-bottom: 1.5rem; } }
.footer-contact-items { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .footer-contact-items { gap: 1rem; } }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wood-300);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact-item:is(a):hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; }
.footer-contact-item .break-all { word-break: break-all; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; gap: 1rem; } }
.footer-copy { color: var(--wood-500); font-size: 12px; text-align: center; }
@media (min-width: 640px) { .footer-copy { text-align: left; } }
.footer-tagline2 { color: #3D2510; font-size: 12px; text-align: center; }
@media (min-width: 640px) { .footer-tagline2 { text-align: right; } }
.footer-designed {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--wood-300);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}
.footer-designed a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-designed a:hover { color: #fff; }

/* ===================== 15. OFERTA PAGE ============================ */
.oferta-hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: var(--wood-900);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .oferta-hero { padding-top: 7rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .oferta-hero { padding-top: 8rem; padding-bottom: 5rem; } }
.oferta-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, #32200A 0%, #1C0F05 70%);
}
.oferta-hero-content { position: relative; z-index: 10; }
.oferta-hero-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .oferta-hero-label { margin-bottom: 1rem; } }
.oferta-hero-h1 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  max-width: 672px;
  margin-bottom: 1rem;
  line-height: 1.1;
  font-size: clamp(32px, 5vw, 64px);
}
@media (min-width: 640px) { .oferta-hero-h1 { margin-bottom: 1.5rem; } }
.oferta-hero-sub {
  color: var(--wood-300);
  font-size: 14px;
  line-height: 1.7;
  max-width: 576px;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .oferta-hero-sub { font-size: 16px; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .oferta-hero-sub { font-size: 18px; } }

/* Co robimy section */
.corobimy-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .corobimy-section { padding: 4rem 0; } }
@media (min-width: 1024px) { .corobimy-section { padding: 5rem 0; } }
.corobimy-bg {
  position: absolute;
  inset: 0;
}
.corobimy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.corobimy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,7,2,0.82);
}
.corobimy-content { position: relative; z-index: 10; }
.corobimy-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .corobimy-label { margin-bottom: 1rem; } }
.corobimy-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(26px, 4vw, 48px);
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .corobimy-h2 { margin-bottom: 3rem; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border: 1px solid #3D2510;
  border-radius: 4px;
  overflow: hidden;
  background: #32200A;
}
.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  background: var(--wood-900);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card-ba {
  display: flex;
  height: 200px;
}
.service-card-ba-half {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.service-card-ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-ba-overlay { position: absolute; inset: 0; background: rgba(28,15,5,0.3); }
.service-card-ba-label {
  position: absolute;
  bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--wood-200);
  background: rgba(28,15,5,0.7);
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.service-card-ba-label.left { left: 8px; }
.service-card-ba-label.right { right: 8px; color: var(--gold); }
.service-card-ba-divider { width: 1px; background: var(--wood-600); flex-shrink: 0; }
.service-card-body { padding: 1.25rem; }
@media (min-width: 640px) { .service-card-body { padding: 1.75rem; } }
.service-card-icon { color: var(--gold); margin-bottom: 0.75rem; }
@media (min-width: 640px) { .service-card-icon { margin-bottom: 1rem; } }
.service-card-h3 {
  color: var(--wood-100);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
@media (min-width: 640px) { .service-card-h3 { font-size: 18px; margin-bottom: 0.75rem; } }
.service-card-p { color: var(--wood-400); font-size: 14px; line-height: 1.7; }

/* CTA on oferta page */
.oferta-cta {
  padding: 3rem 0;
  background: var(--wood-900);
}
@media (min-width: 640px) { .oferta-cta { padding: 4rem 0; } }
@media (min-width: 1024px) { .oferta-cta { padding: 5rem 0; } }
.oferta-cta-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.oferta-cta-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .oferta-cta-label { margin-bottom: 1rem; } }
.oferta-cta-h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: clamp(26px, 4vw, 48px);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .oferta-cta-h2 { margin-bottom: 1.5rem; } }
.oferta-cta-sub { color: var(--wood-400); font-size: 14px; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .oferta-cta-sub { font-size: 16px; margin-bottom: 2rem; } }
.oferta-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .oferta-cta-buttons { flex-direction: row; gap: 1rem; } }

/* ===================== 16. KONTAKT PAGE ========================== */
.kontakt-hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: var(--wood-900);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .kontakt-hero { padding-top: 7rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .kontakt-hero { padding-top: 8rem; padding-bottom: 5rem; } }
.kontakt-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, #32200A 0%, #1C0F05 70%);
}
.kontakt-hero-content { position: relative; z-index: 10; }
.kontakt-hero-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .kontakt-hero-label { margin-bottom: 1rem; } }
.kontakt-hero-h1 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  margin-bottom: 0.75rem;
  line-height: 1.1;
  font-size: clamp(32px, 5vw, 60px);
}
@media (min-width: 640px) { .kontakt-hero-h1 { margin-bottom: 1rem; } }
.kontakt-hero-sub { color: var(--wood-400); font-size: 14px; max-width: 448px; }
@media (min-width: 640px) { .kontakt-hero-sub { font-size: 16px; } }
@media (min-width: 1024px) { .kontakt-hero-sub { font-size: 18px; } }

.kontakt-body {
  padding: 3rem 0;
  background: var(--wood-800);
}
@media (min-width: 640px) { .kontakt-body { padding: 4rem 0; } }
@media (min-width: 1024px) { .kontakt-body { padding: 5rem 0; } }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .kontakt-grid { gap: 3rem; } }
@media (min-width: 1024px) { .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.kontakt-info-label { margin-bottom: 1.5rem; }
@media (min-width: 640px) { .kontakt-info-label { margin-bottom: 2rem; } }
.kontakt-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .kontakt-info-items { gap: 2rem; margin-bottom: 3rem; } }
.kontakt-info-item { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
@media (min-width: 640px) { .kontakt-info-item { gap: 1.25rem; } }
.kontakt-info-item:is(a) { transition: opacity 0.2s; }
.kontakt-info-item:is(a):hover .kontakt-info-value { color: var(--gold); }
.kontakt-info-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #32200A;
  border: 1px solid #3D2510;
}
@media (min-width: 640px) { .kontakt-info-icon-wrap { width: 56px; height: 56px; } }
.kontakt-info-icon { color: var(--gold); }
.kontakt-info-label2 { color: var(--wood-500); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
@media (min-width: 640px) { .kontakt-info-label2 { margin-bottom: 4px; } }
.kontakt-info-value { color: var(--wood-100); font-size: 20px; font-weight: 600; font-family: var(--font-body); transition: color 0.2s; }
@media (min-width: 640px) { .kontakt-info-value { font-size: 24px; } }
.kontakt-info-value-sm { color: var(--wood-100); font-size: 14px; font-family: var(--font-body); transition: color 0.2s; word-break: break-all; }
@media (min-width: 640px) { .kontakt-info-value-sm { font-size: 18px; } }
.kontakt-info-value-area { color: var(--wood-200); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
@media (min-width: 640px) { .kontakt-info-value-area { font-size: 16px; } }
.kontakt-info-area-desc { color: var(--wood-400); font-size: 12px; line-height: 1.7; }
@media (min-width: 640px) { .kontakt-info-area-desc { font-size: 14px; } }
.kontakt-info-hours { color: var(--wood-200); font-size: 14px; }
@media (min-width: 640px) { .kontakt-info-hours { font-size: 16px; } }
.kontakt-info-hours-sub { color: var(--wood-400); font-size: 12px; }
@media (min-width: 640px) { .kontakt-info-hours-sub { font-size: 14px; } }

.kontakt-map-placeholder {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #3D2510;
  height: 180px;
  background: var(--wood-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontakt-map-inner { text-align: center; }
.kontakt-map-icon { color: rgba(200,146,42,0.3); margin: 0 auto 0.5rem; }
.kontakt-map-text { color: var(--wood-600); font-size: 14px; }

.kontakt-form-label { margin-bottom: 1.5rem; }
@media (min-width: 640px) { .kontakt-form-label { margin-bottom: 2rem; } }
.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-field label { display: block; color: var(--wood-300); font-size: 14px; margin-bottom: 0.5rem; }
.form-field .field-error { color: #f87171; font-size: 12px; margin-top: 4px; display: none; }
.form-field .field-error.visible { display: block; }
.form-success {
  text-align: center;
  padding: 4rem 0;
  display: none;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,42,0.15);
  border: 2px solid #C8922A;
}
.form-success h3 {
  font-family: var(--font-heading);
  color: var(--wood-100);
  font-size: 24px;
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--wood-400); }
.kontakt-form-wrap { }
.kontakt-form-wrap.hidden { display: none; }

/* ===================== 17. WYCENA PAGE =========================== */
.wycena-hero {
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  background: var(--wood-900);
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .wycena-hero { padding-top: 7rem; padding-bottom: 3.5rem; } }
@media (min-width: 1024px) { .wycena-hero { padding-top: 8rem; padding-bottom: 4rem; } }
.wycena-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #32200A 0%, #1C0F05 70%);
}
.wycena-hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.wycena-hero-label { margin-bottom: 0.75rem; }
@media (min-width: 640px) { .wycena-hero-label { margin-bottom: 1rem; } }
.wycena-hero-h1 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  margin-bottom: 0.75rem;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 56px);
}
@media (min-width: 640px) { .wycena-hero-h1 { margin-bottom: 1rem; } }
.wycena-hero-sub { color: var(--wood-400); font-size: 14px; }
@media (min-width: 640px) { .wycena-hero-sub { font-size: 16px; } }

.wycena-body {
  padding: 2.5rem 0;
  background: var(--wood-900);
}
@media (min-width: 640px) { .wycena-body { padding: 3.5rem 0; } }
@media (min-width: 1024px) { .wycena-body { padding: 4rem 0; } }
.wycena-form-wrap {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .wycena-form-wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .wycena-form-wrap { padding: 0 2rem; } }
.wycena-form-box {
  padding: 1.25rem;
  border: 1px solid #3D2510;
  border-radius: 4px;
  background: #261508;
}
@media (min-width: 640px) { .wycena-form-box { padding: 2.5rem; } }

/* Step Indicator */
.step-indicator { margin-bottom: 2.5rem; }
.step-circles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 1rem;
}
.step-line-bg {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #3D2510;
}
.step-line-progress {
  position: absolute;
  top: 20px;
  left: 0;
  height: 1px;
  background: #C8922A;
  transition: width 0.4s ease;
}
.step-item { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 10; }
.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #3D2510;
  background: #261508;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.step-circle.active { border-color: #C8922A; background: #32200A; }
.step-circle.completed { border-color: #C8922A; background: #C8922A; }
.step-circle span {
  font-size: 14px;
  font-weight: 600;
  color: var(--wood-500);
  font-family: var(--font-heading);
}
.step-circle.active span { color: var(--gold); }
.step-circle.completed span { display: none; }
.step-circle-check { display: none; color: var(--wood-900); }
.step-circle.completed .step-circle-check { display: flex; }
.step-label {
  font-size: 10px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wood-600);
  display: none;
}
@media (min-width: 640px) { .step-label { display: block; } }
.step-item.active .step-label { color: var(--gold); }
.step-item.completed .step-label { color: var(--wood-400); }

.step-progress-bar {
  height: 2px;
  width: 100%;
  background: var(--wood-700);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.step-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 9999px;
  transition: width 0.4s ease;
}
.step-mobile-label {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  color: var(--gold);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 500;
}
@media (min-width: 640px) { .step-mobile-label { display: none; } }

/* Form steps */
.quote-step { display: none; }
.quote-step.active { display: block; }
.quote-step h3 {
  font-family: var(--font-heading);
  color: var(--wood-100);
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.quote-step > p { color: var(--wood-400); font-size: 14px; margin-bottom: 2rem; }

/* Step 1 & 2: cards */
.type-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .type-cards { grid-template-columns: repeat(3, 1fr); } }
.type-card {
  border: 1px solid #3D2510;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #261508;
  display: flex;
  flex-direction: column;
}
.type-card.selected { border-color: #C8922A; background: #32200A; }
.type-card-image {
  position: relative;
  width: 100%;
  background: var(--wood-900);
  height: clamp(180px, 45vw, 280px);
  overflow: hidden;
}
.type-card-image img { width: 100%; height: 100%; object-fit: contain; }
.type-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--gold);
  color: var(--wood-900);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;
}
.type-card.selected .type-card-badge { display: block; }
.type-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
}
.type-card-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--wood-300);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.type-card.selected .type-card-title { color: var(--wood-50); }
.type-card-desc { font-size: 12px; line-height: 1.5; color: var(--wood-500); }
.type-card.selected .type-card-desc { color: var(--wood-300); }

/* Step 2: layout cards */
.layout-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .layout-cards { grid-template-columns: repeat(3, 1fr); } }
.layout-card {
  border: 1px solid #3D2510;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #261508;
}
.layout-card.selected { border-color: #C8922A; }
.layout-card-header { padding: 1.25rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.layout-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--wood-300);
  font-family: var(--font-body);
}
.layout-card.selected .layout-card-title { color: var(--wood-50); }
.layout-card-preview {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
  background: #1C0F05;
}
.layout-card.selected .layout-card-preview { max-height: 240px; opacity: 1; }
.layout-card-preview img { width: 100%; height: 240px; object-fit: contain; }
.layout-card-preview-overlay { position: absolute; inset: 0; background: rgba(28,15,5,0.2); }
.layout-card-preview-label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 12px;
  color: var(--wood-300);
  background: rgba(28,15,5,0.7);
  padding: 4px 8px;
  border-radius: 2px;
}

.steps-count-wrap { }
.steps-count-wrap label { display: block; color: var(--wood-300); font-size: 14px; margin-bottom: 0.5rem; }
.steps-count-wrap input { width: 100%; max-width: 192px; }
.steps-count-optional { color: var(--wood-500); }

/* Step 3: addons + wood */
.addons-section { margin-bottom: 2rem; }
.addons-section-label {
  color: var(--wood-300);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.addons-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .addons-grid { grid-template-columns: 1fr 1fr; } }

.addon-item { }
.addon-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid #3D2510;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  background: #261508;
}
.addon-btn.active { background: #32200A; border-color: #C8922A; }
.addon-btn.has-sub.active { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.addon-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #3D2510;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.15s;
}
.addon-btn.active .addon-checkbox { border-color: #C8922A; background: #C8922A; }
.addon-label {
  font-size: 14px;
  color: var(--wood-400);
  font-family: var(--font-body);
}
.addon-btn.active .addon-label { color: var(--wood-100); }

.addon-sub {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}
.addon-sub.open { max-height: 80px; opacity: 1; }
.addon-sub-inner {
  border: 1px solid #C8922A;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: #261508;
}
.addon-sub-btn {
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid #3D2510;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
  color: #9A7A5A;
  font-family: var(--font-body);
  background: transparent;
}
.addon-sub-btn.selected { border-color: #C8922A; background: rgba(200,146,42,0.09); color: #C8922A; }

.wood-section-label {
  color: var(--wood-300);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.wood-optional { color: var(--wood-600); text-transform: none; letter-spacing: normal; }
.wood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .wood-grid { grid-template-columns: repeat(3, 1fr); } }
.wood-btn {
  border: 1px solid #3D2510;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: transparent;
  text-align: left;
  width: 100%;
}
.wood-btn.selected { border-color: #C8922A; }
.wood-img-wrap { position: relative; width: 100%; height: 56px; overflow: hidden; }
.wood-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.wood-img-overlay { position: absolute; inset: 0; background: rgba(200,146,42,0.12); opacity: 0; transition: opacity 0.2s; }
.wood-btn.selected .wood-img-overlay { opacity: 1; }
.wood-img-placeholder {
  width: 100%;
  height: 56px;
  background: #3D2510;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wood-img-placeholder span { color: var(--wood-500); font-size: 18px; }
.wood-btn-body { padding: 8px 12px; background: #261508; }
.wood-btn.selected .wood-btn-body { background: #32200A; }
.wood-name { font-size: 12px; color: var(--wood-400); font-family: var(--font-body); display: block; }
.wood-btn.selected .wood-name { color: var(--gold); }
.wood-hint { font-size: 10px; color: var(--wood-600); display: block; line-height: 1.3; margin-top: 2px; }

/* Step 4 */
.step4-fields { display: flex; flex-direction: column; gap: 1.5rem; }
.step4-field label { display: block; color: var(--wood-300); font-size: 14px; margin-bottom: 0.5rem; }
.field-required { color: var(--gold); }
.field-optional { color: var(--wood-500); }
.field-hint { color: var(--wood-500); font-size: 12px; margin-top: 4px; }
.field-error { color: #f87171; font-size: 12px; margin-top: 4px; display: none; }
.field-error.visible { display: block; }
.file-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wood-400);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}
.file-toggle-btn:hover { color: var(--wood-200); }
.file-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #3D2510;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.15s;
}
.file-checkbox.checked { border-color: #C8922A; background: #C8922A; }
.file-toggle-label { font-size: 14px; font-family: var(--font-body); }
.file-upload-wrap {
  margin-top: 1rem;
  display: none;
}
.file-upload-wrap.open { display: block; }
.file-drop-area {
  border: 2px dashed #6B4F1A;
  border-radius: 2px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  background: #32200A;
}
.file-drop-area.has-file { border-color: #C8922A; }
.file-drop-area:hover { border-color: #C8922A; }
.file-drop-icon { color: var(--gold); margin: 0 auto 0.75rem; }
.file-drop-text { color: var(--wood-300); font-size: 14px; margin-bottom: 4px; }
.file-drop-hint { color: var(--wood-500); font-size: 12px; }
.file-drop-name { color: var(--wood-200); font-size: 14px; }

/* Step 5 */
.step5-fields { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.rodo-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
}
.rodo-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #3D2510;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-top: 2px;
  transition: all 0.15s;
}
.rodo-checkbox.checked { border-color: #C8922A; background: #C8922A; }
.rodo-checkbox.error { border-color: #f87171; }
.rodo-text { color: var(--wood-400); font-size: 12px; line-height: 1.7; }

.summary-box {
  padding: 1.25rem;
  border-radius: 4px;
  border: 1px solid #6B4F1A;
  background: #32200A;
  margin-bottom: 1.5rem;
}
.summary-box .section-label { margin-bottom: 1rem; }
.summary-items { display: flex; flex-direction: column; gap: 0.5rem; }
.summary-item { display: flex; align-items: center; gap: 0.5rem; }
.summary-item-check { color: var(--gold); flex-shrink: 0; }
.summary-item-text { color: var(--wood-300); font-size: 14px; }
.summary-note {
  color: var(--wood-500);
  font-size: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #3D2510;
  line-height: 1.7;
}

/* Form navigation buttons */
.form-nav { display: flex; gap: 1rem; margin-top: 2.5rem; }
.form-nav .btn-outline, .form-nav .btn-gold {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-nav .btn-gold.submit { font-size: 16px; padding: 1rem; }
.form-nav .btn-gold:disabled { opacity: 0.7; cursor: not-allowed; }

/* Layout error */
.layout-error { color: #f87171; font-size: 12px; margin-top: 0.5rem; display: none; }
.layout-error.visible { display: block; }

/* Success screen */
.quote-success {
  padding: 2.5rem 0;
  display: none;
}
.quote-success.visible { display: block; }
.quote-success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.quote-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,146,42,0.15);
  border: 2px solid #C8922A;
}
.quote-success-checkmark path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.quote-success-checkmark.animate path {
  animation: draw-check 0.6s ease forwards;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.quote-success h2 {
  font-family: var(--font-heading);
  color: var(--wood-50);
  font-size: 30px;
  text-align: center;
  margin-bottom: 1rem;
}
.quote-success-sub {
  color: var(--wood-300);
  font-size: 16px;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.quote-success-phone { color: var(--gold); font-weight: 600; }
.quote-success-summary { max-width: 448px; margin: 0 auto 1.5rem; }
.quote-success-btn { display: flex; justify-content: center; }

/* ===================== 18. ANIMATIONS ============================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.13s; }
.stagger > *:nth-child(3) { transition-delay: 0.21s; }
.stagger > *:nth-child(4) { transition-delay: 0.29s; }
.stagger > *:nth-child(5) { transition-delay: 0.37s; }
.stagger > *:nth-child(6) { transition-delay: 0.45s; }

/* SVG icon sizing helpers */
svg { display: inline-block; vertical-align: middle; }

/* ===================== LIGHTBOX ======================== */
.project-card-main { cursor: zoom-in; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: default;
  animation: lb-in 0.2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.15s;
  padding: 0.25rem 0.5rem;
  z-index: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.85rem 0.4rem;
  border-radius: 3px;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
  z-index: 1;
  user-select: none;
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; background: rgba(0,0,0,0.75); }

/* body scroll lock when mobile menu open */
body.menu-open { overflow: hidden; }
