/* ===================================================
   ŁAPA BARBER SHOP – styles.css
   Dark vintage industrial theme | Gold accents
   =================================================== */

/* ---------- TOKENS ---------- */
:root {
  --gold:          #c8992e;
  --gold-light:    #e8b84b;
  --gold-dark:     #a07520;
  --gold-glow:     rgba(200,153,46,0.25);

  --bg:            #0f0f0f;
  --bg-surface:    #181818;
  --bg-elevated:   #212121;
  --bg-card:       #1c1c1c;

  --border:        rgba(255,255,255,0.06);
  --border-gold:   rgba(200,153,46,0.3);

  --text:          #f0ede8;
  --text-muted:    #888880;
  --text-dim:      #555550;

  --font-head:     'Oswald', sans-serif;
  --font-body:     'Roboto', sans-serif;

  --radius:        6px;
  --radius-lg:     12px;
  --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --navbar-h:      72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a { text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.gold { color: var(--gold); }
.closed { color: #ff4444; }

/* ---------- UTILITIES ---------- */
.section { padding: 120px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 20px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto;
}

.title-line--left { margin: 0; }

.text-left { text-align: left; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--gold);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-primary svg {
  transition: transform 0.25s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in[data-delay="100"]  { transition-delay: 0.10s; }
.fade-in[data-delay="150"]  { transition-delay: 0.15s; }
.fade-in[data-delay="200"]  { transition-delay: 0.20s; }
.fade-in[data-delay="300"]  { transition-delay: 0.30s; }
.fade-in[data-delay="400"]  { transition-delay: 0.40s; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  height: var(--navbar-h);
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  transition: color var(--transition);
}

.logo:hover { color: var(--gold); }

.logo-symbol {
  color: var(--gold);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.nav-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.navbar.scrolled .nav-gold-line {
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.nav-overlay.active { display: block; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(10,10,10,0.55) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: scale(1); }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.hero-title .line-1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--text);
  animation: fadeSlideUp 0.9s ease 0.4s both;
}

.hero-title .line-2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  animation: fadeSlideUp 0.9s ease 0.6s both;
  position: relative;
  display: inline-block;
}

.hero-title .line-2::after {
  content: '_';
  animation: blink 1s step-end infinite;
  color: var(--gold);
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.9;
  animation: fadeSlideUp 0.9s ease 0.8s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 1s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeSlideUp 1s ease 1.4s both;
}

.hero-scroll-hint span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* =====================================================
   CENNIK
   ===================================================== */
.cennik-section {
  background: var(--bg);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border-gold);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card--featured {
  border-color: var(--border-gold);
  background: linear-gradient(135deg, #1c1c1c 0%, #1f1a10 100%);
  grid-column: span 1;
}

.price-card--featured::before {
  opacity: 1;
}

.price-card-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 100px;
}

.price-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.price-card-body h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 10px;
}

.price-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.price-card-footer {
  margin-top: auto;
}

.price-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.price-badge--big {
  font-size: 2rem;
}

.cennik-cta {
  text-align: center;
}

/* =====================================================
   GALERIA
   ===================================================== */
.gallery-section {
  background: var(--bg-surface);
  padding-bottom: 0;
}

.gallery-header {
  text-align: center;
  padding: 100px 24px 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item--wide {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.75);
  transform: scale(1.03);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* =====================================================
   KLIMAT
   ===================================================== */
.klimat-section {
  background: var(--bg);
}

.klimat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.klimat-image {
  position: relative;
}

.klimat-image-frame {
  position: relative;
  z-index: 1;
}

.klimat-image-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: brightness(0.85);
}

.klimat-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.klimat-text .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.klimat-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.85;
}

.klimat-desc strong {
  color: var(--text);
}

.klimat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.klimat-features li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.klimat-features li strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.klimat-features li span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.klimat-hours {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hours-day {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hours-time {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* =====================================================
   ZESPÓŁ
   ===================================================== */
.zespol-section {
  background: var(--bg);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  flex: 1 1 200px;
  max-width: 260px;
}

.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.team-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: 1px;
}

/* =====================================================
   OPINIE
   ===================================================== */
.opinie-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-dark);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {}

.footer-top {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-gold);
  padding: 80px 0;
}

.footer-cta-block {
  text-align: center;
}

.footer-cta-block h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 20px;
}

.footer-cta-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.footer-main {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-map-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 12px;
  transition: color var(--transition);
}

.footer-map-link:hover { color: var(--gold-light); }

.footer-hours {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 24px;
  align-items: center;
}

.footer-hours span {
  font-size: 0.85rem;
}

.footer-hours span:nth-child(odd) {
  color: var(--text-muted);
}

.footer-contact-link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-contact-link:hover { color: var(--text); }
.footer-contact-link.gold:hover { color: var(--gold-light); }

.footer-bottom {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* =====================================================
   FLOATING CTA
   ===================================================== */
.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 40px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(200,153,46,0.4);
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-cta:hover {
  background: var(--gold-light);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 48px rgba(200,153,46,0.5);
}

.floating-cta-icon {
  font-size: 1.1rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card--featured {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .klimat-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .klimat-image-accent { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-divider:nth-child(2),
  .stat-divider:nth-child(6) { display: none; }
  .stat-divider:nth-child(4) {
    display: none;
  }
  .stat-item {
    padding: 24px 16px;
    border-bottom: 1px solid var(--border);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  /* Navbar mobile */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-gold);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 80px 0 40px;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 20px;
    padding: 14px 32px;
    font-size: 1rem;
  }

  /* Hero */
  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-ghost { display: none; }

  /* Price grid */
  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { grid-column: span 1; max-width: 100%; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-content { flex-direction: column; gap: 8px; text-align: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Floating CTA */
  .floating-cta-text { display: none; }
  .floating-cta { padding: 16px; border-radius: 50%; width: 58px; height: 58px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title .line-1,
  .hero-title .line-2 {
    font-size: 2.8rem;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
}
