/*
Theme Name: Magnara Luxury
Theme URI: https://magnara.pl
Author: Magnara
Author URI: https://magnara.pl
Description: Luksusowy motyw one-page dla sprzedaży magnesów premium. Elegancka kolorystyka złoto-czarna z pełną edytowalnością przez Customizer WordPress.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: magnara
Tags: one-page, e-commerce, luxury, dark, gold, responsive
*/

/* === ZMIENNE KOLORÓW — edytowane przez Customizer === */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5E6C0;
  --gold-dark:    #8B6914;
  --obsidian:     #0A0A0A;
  --charcoal:     #141414;
  --deep:         #1C1C1C;
  --mid:          #2A2A2A;
  --text-muted:   #888888;
  --text-light:   #CCCCCC;
  --cream:        #F9F3E8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Josefin Sans', 'Helvetica Neue', sans-serif;
  --transition:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; font-size: 16px; }
body {
  background: var(--obsidian);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* === TYPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
}
p { line-height: 1.9; }

/* === KURSOR === */
body { cursor: none; }
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}
.cursor-hover { width: 16px !important; height: 16px !important; }
.cursor-ring-hover { width: 50px !important; height: 50px !important; }

/* === NAWIGACJA === */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.96), transparent);
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#masthead.scrolled {
  padding: 16px 60px;
  background: rgba(10,10,10,0.98);
  border-color: rgba(201,168,76,0.15);
}
.site-branding .site-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 300;
}
.site-branding .site-title a { color: inherit; }
.site-branding .site-title span { color: var(--cream); }

/* Menu hamburger mobile */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 8px 14px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.3s;
}
.menu-toggle:hover { border-color: var(--gold); }

/* === GŁÓWNE MENU === */
#primary-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
#primary-menu li a {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
#primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item a { color: var(--gold); }
#primary-menu li a:hover::after,
#primary-menu li.current-menu-item a::after { transform: scaleX(1); }

/* === PRZYCISKI === */
.btn-gold {
  display: inline-block;
  padding: 15px 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
  cursor: none;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--transition);
}
.btn-gold:hover { color: var(--obsidian); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }

/* === LINIE I OZDOBNIKI === */
.gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4));
}
.ornament::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.4));
}
.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* === ETYKIETY SEKCJI === */
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
}

/* === HERO === */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 10% 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.05), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 1s 0.2s both;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.05;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-description {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 2;
  max-width: 440px;
  margin-bottom: 48px;
}

/* Animacja magnesu hero */
.hero-visual {
  position: absolute;
  right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  pointer-events: none;
}
.magnet-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18);
  animation: spin 25s linear infinite;
}
.magnet-ring:nth-child(1) { inset: 0; animation-duration: 25s; }
.magnet-ring:nth-child(2) { inset: 30px; animation-duration: 18s; animation-direction: reverse; border-color: rgba(201,168,76,0.12); }
.magnet-ring:nth-child(3) { inset: 60px; animation-duration: 32s; border-color: rgba(201,168,76,0.08); }
.magnet-center {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(201,168,76,0.25), rgba(201,168,76,0.04) 60%, transparent);
  border: 1px solid rgba(201,168,76,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.magnet-symbol {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1;
}
.orbit-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}
.orbit-dot:nth-child(4) { top: 2px; left: 50%; transform: translateX(-50%); }
.orbit-dot:nth-child(5) { bottom: 2px; left: 50%; transform: translateX(-50%); }

/* === PASEK STATYSTYK === */
#stats-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 44px 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === PRODUKTY (stacked rows — MOF integration) === */
#produkty {
  padding: 120px 10%;
  background: var(--charcoal);
}
.products-intro { margin-bottom: 64px; }

.products-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Wiersz produktu */
.product-row {
  display: grid;
  grid-template-columns: 200px 1fr 260px;
  grid-template-rows: 1fr auto;
  align-items: center;
  background: var(--deep);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  min-height: 140px;
}
.product-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.product-row:hover { background: var(--mid); }
.product-row:hover::before { opacity: 1; }
.product-row--alt { background: rgba(18,18,18,0.85); }
.product-row--alt:hover { background: var(--mid); }

/* Linia dekoracyjna na dole */
.product-row__accent-line {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.1) 50%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.product-row:hover .product-row__accent-line { transform: scaleX(1); }

/* Kolumna wizualna */
.product-row__visual {
  padding: 32px 28px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(201,168,76,0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* Wariant z obrazkiem tła */
.product-row__visual--has-image {
  background-size: cover;
  background-position: center;
  padding: 0;
  justify-content: flex-end;
  align-items: flex-start;
}
/* Zaciemnij prawą krawędź przy obrazku (usuwa jasną kreskę) */
.product-row__visual--has-image::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 100%;
  background: linear-gradient(to right, transparent, rgba(10,10,10,0.5));
  pointer-events: none;
  z-index: 3;
}
.product-row__visual--has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0.5) 70%,
    rgba(10,10,10,0.78) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.product-row__visual--has-image .product-row__dims {
  position: relative;
  z-index: 2;
  padding: 0 20px 12px 20px;
  color: rgba(201,168,76,0.9);
}
.product-row__icon-wrap {
  width: 60px; height: 60px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: border-color 0.3s, transform 0.35s;
  flex-shrink: 0;
}
.product-row:hover .product-row__icon-wrap {
  border-color: var(--gold);
  transform: scale(1.08) rotate(6deg);
}
.product-row__dims {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.product-row__index {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: rgba(201,168,76,0.06);
  position: absolute;
  bottom: 6px; right: 12px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
  user-select: none;
}
.product-row:hover .product-row__index { color: rgba(201,168,76,0.11); }

/* Kolumna treści */
.product-row__content {
  padding: 32px 44px;
  border-right: 1px solid rgba(201,168,76,0.08);
}
.product-row__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 400;
  transition: color 0.3s;
}
.product-row:hover .product-row__name { color: var(--gold-light); }
.product-row__desc {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 500px;
}
.product-row__spec {
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-row__spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-label {
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}
.spec-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
}
.product-row__spec-sep {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(201,168,76,0.3);
  margin-top: 10px;
}

/* Kolumna cennika */
.product-row__pricing {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  justify-content: center;
}
.product-row__price-wrap { text-align: right; }
.product-row__price-label {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.product-row__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.product-row__price span {
  font-size: 0.95rem;
  opacity: 0.65;
}
.product-row__cta { padding: 12px 26px; font-size: 0.6rem; }

/* === O NAS === */
#o-nas {
  padding: 120px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; height: 480px; }
.about-box {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.18);
}
.about-box-main {
  inset: 0 60px 60px 0;
  background: linear-gradient(135deg, var(--charcoal), var(--deep));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-box-main .about-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
}
/* Gdy ustawiony obrazek */
.about-box-main--has-image { background: var(--obsidian); }
.about-box-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-visual:hover .about-box-main__img { transform: scale(1.04); }

/* === DLACZEGO MY === */
#dlaczego {
  padding: 120px 10%;
  background: var(--charcoal);
}
.features-intro { text-align: center; margin-bottom: 64px; }
.features-intro .section-subtitle { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}
.feature-item {
  background: var(--charcoal);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.feature-item:hover { background: var(--deep); }
.feature-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,168,76,0.1);
  position: absolute;
  top: 24px; right: 36px;
  line-height: 1;
  transition: color 0.3s;
}
.feature-item:hover .feature-number { color: rgba(201,168,76,0.18); }
.feature-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  transition: width 0.5s;
}
.feature-item:hover .feature-line { width: 40px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.feature-text {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  line-height: 1.9;
}

/* === OPINIE === */
#opinie {
  padding: 120px 10%;
  text-align: center;
}
.testimonials-intro { margin-bottom: 64px; }
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
}
/* Każda karta: max 1/3 szerokości (3 kolumny), ale nie mniej niż 280px */
.testimonials-grid .testimonial-item {
  flex: 1 1 280px;
  max-width: calc(33.333% - 2px);
}
.testimonial-item {
  background: var(--charcoal);
  padding: 48px 36px;
  text-align: left;
  border-top: 1px solid transparent;
  transition: border-color 0.3s;
}
.testimonial-item:hover { border-color: var(--gold); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201,168,76,0.2);
  line-height: 0.6;
  display: block;
  margin-bottom: 24px;
}
.stars {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  display: flex;
  gap: 3px;
}
.star { line-height: 1; }
.star--filled { color: var(--gold); }
.star--empty  { color: rgba(201,168,76,0.18); }
.testimonial-content {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.testimonial-role { font-size: 0.6rem; letter-spacing: 0.14em; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   KARUZELA OPINII (>3 opinii)
   ============================================================ */
.testimonials-carousel-mode { overflow: hidden; }

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
  user-select: none;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  gap: 2px;
}
.testimonial-slide {
  flex: 0 0 calc(33.333% - 2px);
  min-width: 0;
}
.testimonial-slide .testimonial-item { height: 100%; box-sizing: border-box; }

/* Strzałki */
.testimonials-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px; height: 46px;
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, opacity 0.25s;
}
.testimonials-arrow:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.testimonials-arrow:disabled { opacity: 0.25; cursor: default; }
.testimonials-arrow--prev { left: 0; }
.testimonials-arrow--next { right: 0; }

/* Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testimonials-dot {
  width: 28px; height: 2px;
  background: rgba(201,168,76,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.testimonials-dot--active {
  background: var(--gold);
  width: 48px;
}

@media (max-width: 1100px) {
  .testimonial-slide { flex: 0 0 calc(50% - 1px); }
}
@media (max-width: 700px) {
  .testimonial-slide { flex: 0 0 100%; }
  .testimonials-arrow { display: none; }
}

/* --- Formularz kontaktowy — etykiety i pola --- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-required {
  color: rgba(201,168,76,0.6);
  font-size: 0.9em;
}

/* Honeypot — całkowicie ukryte */
.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top:  -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1 !important;
}

/* reCAPTCHA informacja */
.recaptcha-note {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: rgba(136,136,136,0.6);
  line-height: 1.7;
  margin-top: -4px;
}
.recaptcha-note a {
  color: rgba(201,168,76,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.recaptcha-note a:hover { color: var(--gold); border-color: var(--gold); }

/* Ukryj domyślny badge reCAPTCHA (mamy własną notę) */
.grecaptcha-badge { visibility: hidden !important; }

/* Hint dla admina */
.contact-admin-hint {
  margin-top: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(201,168,76,0.35);
  text-align: center;
}
.contact-admin-hint a { color: rgba(201,168,76,0.55); text-decoration: underline; }

/* ── Contact Form 7 — stylowanie dla motywu ── */
.contact-cf7 .wpcf7 { width: 100%; }
.contact-cf7 .wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.contact-cf7 p { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-cf7 label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-cf7 input[type="text"],
.contact-cf7 input[type="email"],
.contact-cf7 input[type="tel"],
.contact-cf7 input[type="url"],
.contact-cf7 textarea,
.contact-cf7 select {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-radius: 0 !important;
  padding: 16px 20px !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  outline: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
}
.contact-cf7 input:focus,
.contact-cf7 textarea:focus { border-color: var(--gold) !important; }
.contact-cf7 textarea { resize: vertical !important; min-height: 120px !important; }
.contact-cf7 input[type="submit"],
.contact-cf7 .wpcf7-submit {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border: none !important;
  padding: 18px 52px !important;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.38em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  border-radius: 0 !important;
  align-self: flex-start !important;
}
.contact-cf7 input[type="submit"]:hover,
.contact-cf7 .wpcf7-submit:hover { background: var(--gold-light) !important; }
.contact-cf7 .wpcf7-not-valid-tip {
  font-size: 0.65rem !important;
  letter-spacing: 0.06em !important;
  color: #e87878 !important;
  margin-top: 4px !important;
}
.contact-cf7 .wpcf7-response-output {
  border: 1px solid rgba(201,168,76,0.3) !important;
  padding: 14px 20px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  color: var(--cream) !important;
  margin-top: 0 !important;
  border-radius: 0 !important;
}
.contact-cf7 .wpcf7-mail-sent-ok {
  border-color: rgba(100,200,100,0.4) !important;
  color: #90d090 !important;
}
.contact-cf7 .wpcf7-validation-errors,
.contact-cf7 .wpcf7-spam-blocked {
  border-color: rgba(220,80,80,0.4) !important;
  color: #e87878 !important;
}

/* ============================================================
   === GALERIA REALIZACJI — KARUZELA
   ============================================================ */
#galeria {
  padding: 120px 0 100px;
  background: var(--obsidian);
  overflow: hidden;
  position: relative;
}
#galeria::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.3) 70%, transparent);
}

/* --- Header z tytułem i kontrolkami --- */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 10%;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.gallery-header__text { flex: 1; min-width: 260px; }
.gallery-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  padding-bottom: 6px;
}
.gallery-counter {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.gallery-counter__current {
  font-size: 1.6rem;
  color: var(--gold);
  transition: color 0.3s;
  min-width: 2ch;
  text-align: right;
  line-height: 1;
}
.gallery-counter__sep { color: rgba(201,168,76,0.3); font-size: 0.85rem; }
.gallery-counter__total { font-size: 1rem; }
.gallery-arrows { display: flex; gap: 8px; }
.gallery-arrow {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,0.28);
  background: transparent;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.gallery-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition);
}
.gallery-arrow--prev::before { transform-origin: right; }
.gallery-arrow:hover { color: var(--obsidian); border-color: var(--gold); }
.gallery-arrow:hover::before { transform: scaleX(1); }
.gallery-arrow svg { position: relative; z-index: 1; }
.gallery-arrow:disabled { opacity: 0.3; pointer-events: none; }

/* --- Pasek postępu autoplay --- */
.gallery-progress-bar {
  height: 1px;
  background: rgba(201,168,76,0.12);
  margin: 0 10%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.gallery-progress-bar__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  will-change: width;
}
.gallery-progress-bar__fill.is-running {
  animation: galleryProgress var(--autoplay-ms, 4000ms) linear forwards;
}
@keyframes galleryProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* --- Viewport (okno karuzeli) --- */
.gallery-viewport {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  outline: none;
  margin-top: 0;
}
.gallery-viewport:active { cursor: grabbing; }
.gallery-viewport:focus-visible {
  outline: 1px solid rgba(201,168,76,0.4);
  outline-offset: -1px;
}

/* --- Track (kontener slajdów) --- */
.gallery-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-track.is-dragging { transition: none; }

/* --- Pojedynczy slajd --- */
.gallery-slide {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  padding: 0 2px;
  position: relative;
  box-sizing: border-box;
}

/* Zdjęcie slajdu */
.gallery-slide__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--deep);
  position: relative;
}
.gallery-slide__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-slide:hover .gallery-slide__img img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.gallery-slide__img--placeholder svg {
  width: 100%; height: 100%;
  display: block;
}

/* Nakładka złota na aktywnym slajdzie */
.gallery-slide::after {
  content: '';
  position: absolute;
  inset: 0 2px;
  border: 2px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
  z-index: 2;
}
.gallery-slide.is-active::after {
  border-color: rgba(201,168,76,0.55);
}

/* Caption */
.gallery-slide__caption {
  padding: 20px 24px 28px;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.gallery-slide__caption::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.gallery-slide:hover .gallery-slide__caption::before { transform: scaleX(1); }
.gallery-slide:hover .gallery-slide__caption { background: var(--deep); }
.gallery-slide__tag {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gallery-slide__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.gallery-slide:hover .gallery-slide__title { color: var(--gold-light); }
.gallery-slide__client {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Cropkki nawigacyjne --- */
.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding: 0 10%;
}
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
  flex-shrink: 0;
}
.gallery-dot--active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}
.gallery-dot:hover:not(.gallery-dot--active) {
  background: rgba(201,168,76,0.5);
  transform: scale(1.3);
}

/* --- Responsywność galerii --- */
@media (max-width: 1100px) {
  .gallery-slide { flex: 0 0 50%; min-width: 50%; }
}
@media (max-width: 700px) {
  .gallery-slide { flex: 0 0 85%; min-width: 85%; }
  .gallery-header { padding: 0 6%; flex-direction: column; align-items: flex-start; }
  .gallery-dots { padding: 0 6%; }
  .gallery-progress-bar { margin: 0 6%; }
  #galeria { padding: 80px 0 72px; }
}


/* ============================================================
   === SEKCJA PROMOCJI
   ============================================================ */
#promocje {
  padding: 120px 10%;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#promocje::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.25) 70%, transparent);
}

/* Nagłówek sekcji */
.promo-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 72px;
}
.promo-header .section-subtitle { margin-top: 20px; }
.promo-header .gold-line         { margin: 24px auto 0; }

/* Siatka — 3 kolumny desktop */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.promo-grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
}
.promo-grid:has(> :only-child) {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

/* ── Karta ── */
.promo-card {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.35s;
}
.promo-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.promo-card--featured {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), 0 20px 48px rgba(0,0,0,0.25);
}
/* Złota kreska na górze wyróżnionej */
.promo-card--featured::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  flex-shrink: 0;
}

/* ── Banner z grafiką ── */
.promo-banner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mid);
  flex-shrink: 0;
}
.promo-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.promo-card:hover .promo-banner__img { transform: scale(1.04); }

/* Delikatny gradient na dole banera — łączy z treścią */
.promo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10,10,10,0.55) 100%
  );
  pointer-events: none;
}

/* Fallback gdy brak grafiki */
.promo-banner__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mid) 0%, rgba(201,168,76,0.06) 100%);
}

/* ── Badge (na banerze, lewy dolny róg) ── */
.promo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--obsidian);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 14px 4px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ── Treść karty ── */
.promo-card__body {
  padding: 24px 24px 16px;
  flex: 1;
}
.promo-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.promo-card__desc {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(249,243,232,0.65);
  line-height: 1.9;
  margin: 0;
}

/* ── Odliczanie ── */
.promo-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px 24px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.promo-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
}
.promo-countdown__num {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
}
.promo-countdown__label {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-top: 5px;
}
.promo-countdown__sep {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(201,168,76,0.25);
  align-self: flex-start;
  margin-top: 3px;
  line-height: 1;
  padding: 0 2px;
}

/* Bezterminowa */
.promo-no-expiry {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  text-align: center;
  padding: 12px 24px;
  margin: 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}

/* ── Kod rabatowy ── */
.promo-code-wrap {
  padding: 12px 24px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.promo-code {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: rgba(201,168,76,0.05);
  border: 1px dashed rgba(201,168,76,0.3);
  padding: 11px 14px;
  cursor: pointer;
  color: inherit;
  font-family: var(--font-body);
  transition: border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.promo-code:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.09);
}
.promo-code__label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  white-space: nowrap;
}
.promo-code__value {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-align: center;
  font-weight: 700;
}
.promo-code__icon {
  color: rgba(201,168,76,0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.promo-code:hover .promo-code__icon { color: var(--gold); }
.promo-code__copied {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.promo-code.is-copied .promo-code__copied  { opacity: 1; }
.promo-code.is-copied .promo-code__value,
.promo-code.is-copied .promo-code__icon,
.promo-code.is-copied .promo-code__label   { opacity: 0; }

/* ── Przycisk CTA ── */
.promo-card__footer {
  padding: 16px 24px 24px;
}
.promo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  background: transparent;
  transition: background 0.3s, border-color 0.3s, color 0.3s, gap 0.3s;
  width: 100%;
}
.promo-btn:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  gap: 16px;
}
.promo-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}
.promo-btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--obsidian);
}

/* ── Responsywność ── */
@media (max-width: 1200px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  #promocje { padding: 80px 6%; }
  .promo-grid,
  .promo-grid:has(> :nth-child(2):last-child),
  .promo-grid:has(> :only-child) { grid-template-columns: 1fr; justify-content: stretch; }
}


/* ============================================================
   === FAQ — ACCORDION
   ============================================================ */
#faq {
  padding: 120px 10%;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.25) 70%, transparent);
}
/* Subtelna dekoracja w tle */
#faq::after {
  content: 'FAQ';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 300;
  color: rgba(201,168,76,0.025);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Layout: dwie kolumny */
.faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* --- Intro (lewa) --- */
.faq-title { margin-bottom: 24px; }
.faq-subtitle {
  max-width: 320px;
  margin-bottom: 48px;
}
.faq-count {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.faq-count__number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
}
.faq-count__label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 100px;
}

/* --- Accordion (prawa) --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

/* --- Pojedynczy item --- */
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative;
  /* Złota kreska po lewej — wskaźnik otwartego pytania */
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item--open::before,
.faq-item:focus-within::before {
  transform: scaleY(1);
}

/* --- Przycisk pytania --- */
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 36px;
  align-items: center;
  gap: 20px;
  padding: 28px 0 28px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: background 0.25s;
}
.faq-question:hover { background: rgba(201,168,76,0.025); }
.faq-item--open .faq-question { background: rgba(201,168,76,0.04); }

.faq-question__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(201,168,76,0.3);
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  line-height: 1;
  user-select: none;
}
.faq-item--open .faq-question__num { color: var(--gold); }

.faq-question__text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.4;
  transition: color 0.3s;
}
.faq-item--open .faq-question__text,
.faq-question:hover .faq-question__text { color: var(--gold-light); }

/* Ikona +/× */
.faq-question__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item--open .faq-question__icon {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.faq-icon-bar {
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
}
.faq-icon-bar--h { width: 12px; height: 1.5px; }
.faq-icon-bar--v { width: 1.5px; height: 12px; }
/* Otwarte: pionowa kreska znika (obrót do 0 = niewidoczna) */
.faq-item--open .faq-icon-bar--v {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item--open .faq-icon-bar--h {
  transform: rotate(180deg);
}

/* --- Panel odpowiedzi --- */
.faq-answer {
  overflow: hidden;
  /* Animacja przez grid-template-rows: 0fr → 1fr */
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-answer:not([hidden]) {
  grid-template-rows: 1fr;
}
/* Fallback: hidden attr ukrywa */
.faq-answer[hidden] {
  display: grid !important; /* override hidden, animacja obsługuje ukrycie */
}

.faq-answer__inner {
  overflow: hidden;
  padding: 0 0 0 88px; /* wyrównanie z tekstem pytania (44 num + 20 gap + 24 padding) */
}
.faq-answer:not([hidden]) .faq-answer__inner {
  padding-top: 20px;
  padding-bottom: 28px;
}
.faq-answer__inner p {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 2;
  margin: 0 0 12px;
}
.faq-answer__inner p:last-child { margin-bottom: 0; }
.faq-answer__inner strong { color: var(--cream); }
.faq-answer__inner a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.faq-answer__inner a:hover { color: var(--gold-light); border-color: var(--gold); }

/* --- Responsywność --- */
@media (max-width: 1100px) {
  .faq-inner { grid-template-columns: 300px 1fr; gap: 60px; }
  #faq::after { display: none; }
}
@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-subtitle { max-width: 100%; }
  .faq-count { display: none; }
  #faq { padding: 80px 6%; }
}
@media (max-width: 600px) {
  .faq-question { grid-template-columns: 36px 1fr 32px; gap: 14px; padding: 22px 0 22px 16px; }
  .faq-answer__inner { padding-left: 66px; }
}

/* ============================================================
   === FORMULARZ ZAMÓWIEŃ
   ============================================================ */
#zamow {
  padding: 120px 5%;
  background: var(--charcoal);
  position: relative;
}
#zamow::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25) 30%, rgba(201,168,76,0.25) 70%, transparent);
}
.order-section__header {
  margin-bottom: 64px;
}
.order-section__form {
  position: relative;
}

/* Fallback gdy wtyczka nieaktywna */
.order-plugin-missing {
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 64px 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.order-plugin-missing__icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 20px;
  opacity: 0.4;
}
.order-plugin-missing__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.order-plugin-missing__desc {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  line-height: 1.9;
}

/* -------------------------------------------------------
   Nadpisanie stylów wtyczki MOF — dopasowanie do motywu
   Strategia: .mof-wrap ma własną szerokość + margin: auto,
   sekcja #zamow ma mniejszy padding poziomy (4%) żeby
   wrapper miał przestrzeń ale nie rozciągał się na cały ekran.
------------------------------------------------------- */

/* Wrapper */
.mof-wrap {
  background: transparent !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  border: none !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

/* Kroki — padding boczny dla całej zawartości kroków */
.mof-step {
  padding: 32px 36px 28px !important;
}

/* Pola danych (krok 5) */
.mof-fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.mof-progress {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-bottom: 52px !important;
  border-bottom: 1px solid rgba(201,168,76,0.12) !important;
  padding-bottom: 28px !important;
  
}
.mof-progress__step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 1 !important;
  position: relative !important;
  opacity: 0.4 !important;
  transition: opacity 0.4s !important;
}
.mof-progress__step.active,
.mof-progress__step.done {
  opacity: 1 !important;
}
.mof-progress__num {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  color: var(--text-muted) !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.mof-progress__step.active .mof-progress__num {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
  border-color: var(--gold) !important;
}
.mof-progress__step.done .mof-progress__num {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.mof-progress__label {
  font-size: 0.58rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--text-muted) !important;
}
.mof-progress__step.active .mof-progress__label { color: var(--gold) !important; }
.mof-progress__line {
  flex: 1 !important;
  height: 1px !important;
  background: rgba(201,168,76,0.15) !important;
  margin: 0 8px !important;
  margin-bottom: 22px !important;
  align-self: flex-start !important;
  margin-top: 18px !important;
}

/* Tytuł kroku */
.mof-step__title {
  font-family: var(--font-display) !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  color: var(--cream) !important;
  margin-bottom: 10px !important;
}
.mof-step__desc {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  color: var(--text-muted) !important;
  line-height: 1.9 !important;
  margin-bottom: 36px !important;
}

/* Produkty w kroku 1 */
.mof-products { display: flex !important; flex-direction: column !important; gap: 2px !important; }
.mof-product {
  display: grid !important;
  grid-template-columns: 160px 1fr !important;
  background: var(--deep) !important;
  border: 1px solid rgba(201,168,76,0.08) !important;
  transition: border-color 0.3s !important;
  overflow: hidden !important;
}
.mof-product:hover { border-color: rgba(201,168,76,0.3) !important; }

/* Kolumna z obrazkiem / ikoną */
.mof-product__img {
  position: relative !important;
  background-color: var(--mid) !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 20px 14px !important;
  border-right: 1px solid rgba(201,168,76,0.08) !important;
  min-height: 130px !important;
  overflow: hidden !important;
}
/* Gdy jest obrazek tła — przestaw na layout z etykietą na dole */
.mof-product__img--has-bg {
  padding: 0 !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}
/* Zaciemnienie prawej krawędzi — usuwa efekt jasnej kreski */
.mof-product__img--has-bg::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0) 30%,
    rgba(10,10,10,0.65) 100%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}
/* Dodatkowy cień po prawej — usuwa jasną kreskę przy krawędzi */
.mof-product__img::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; right: 0 !important;
  width: 12px !important; height: 100% !important;
  background: linear-gradient(to right, transparent, rgba(10,10,10,0.4)) !important;
  pointer-events: none !important;
  z-index: 4 !important;
}

/* Ikona SVG magnesu — wyśrodkowana pionowo/poziomo */
.mof-product__img svg {
  display: block !important;
  flex-shrink: 0 !important;
  opacity: 0.7 !important;
  position: relative !important;
  z-index: 2 !important;
}
/* Schowaj SVG gdy jest zdjęcie */
.mof-product__img--has-bg svg {
  display: none !important;
}

/* Etykieta z rozmiarem */
.mof-product__img span {
  font-size: 0.58rem !important;
  letter-spacing: 0.22em !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  position: relative !important;
  z-index: 2 !important;
  line-height: 1 !important;
}
/* Przy zdjęciu — etykieta na dole z paddingiem */
.mof-product__img--has-bg span {
  padding: 0 14px 12px !important;
  align-self: flex-start !important;
  margin-top: auto !important;
}

/* Usuń stare reguły fallback ::before (nie używane przez MOF v16) */
.mof-product__img--large::before,
.mof-product__img--small::before { content: none !important; }
.mof-product__info {
  padding: 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}
.mof-product__info h3 {
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: var(--cream) !important;
  margin: 0 !important;
}
.mof-product__info p {
  font-size: 0.73rem !important;
  letter-spacing: 0.06em !important;
  color: var(--text-muted) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}
.mof-product__price {
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  color: var(--gold) !important;
  margin-top: 4px !important;
}

/* Kontrolki ilości */
.mof-qty-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-top: 10px !important;
}
.mof-qty__btn {
  width: 36px !important; height: 36px !important;
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.25) !important;
  color: var(--gold) !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
.mof-qty__btn:hover { background: var(--gold) !important; color: var(--obsidian) !important; }
.mof-qty__input {
  width: 52px !important;
  text-align: center !important;
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  border-left: none !important;
  border-right: none !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  padding: 0 8px !important;
  height: 36px !important;
  outline: none !important;
}
.mof-qty__unit {
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  color: var(--text-muted) !important;
  margin-left: 10px !important;
}

/* Radio wyboru wzoru */
.mof-pattern-choice { margin-top: 12px !important; }
.mof-pattern-choice__label {
  font-size: 0.62rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 8px !important;
}
.mof-radio {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  margin-bottom: 6px !important;
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
}
.mof-radio input[type="radio"] { display: none !important; }
.mof-radio__box {
  width: 16px !important; height: 16px !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  transition: background 0.2s, border-color 0.2s !important;
  position: relative !important;
}
.mof-radio input:checked + .mof-radio__box {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.mof-radio input:checked + .mof-radio__box::after {
  content: '' !important;
  position: absolute !important;
  inset: 3px !important;
  background: var(--obsidian) !important;
  border-radius: 50% !important;
}

/* Pasek sumy */
.mof-summary-bar {
  border-top: 1px solid rgba(201,168,76,0.12) !important;
  padding-top: 20px !important;
  margin-top: 28px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  color: var(--text-muted) !important;
  text-transform: uppercase !important;
  
}
.mof-summary-bar strong {
  font-family: var(--font-display) !important;
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  font-weight: 300 !important;
}

/* Przyciski nawigacyjne */
.mof-nav {
  display: flex !important;
  gap: 12px !important;
  margin-top: 32px !important;
  
}
.mof-nav--right { justify-content: flex-end !important; }
.mof-nav--between { justify-content: space-between !important; }
.mof-btn {
  padding: 15px 40px !important;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.35em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.3s, color 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
}
.mof-btn--primary {
  background: var(--gold) !important;
  color: var(--obsidian) !important;
}
.mof-btn--primary:hover {
  background: var(--gold-light) !important;
}
.mof-btn--secondary {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
}
.mof-btn--secondary:hover {
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.06) !important;
}

/* Upload slotów (krok 2) */
.mof-upload-slots { display: flex !important; flex-direction: column !important; gap: 2px !important; }

/* Wysyłka (krok 3) */
.mof-shipping-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-bottom: 16px !important;
  
}

/* Tabela płatności (krok 4) */
.mof-payment-box {
  background: var(--deep) !important;
  border: 1px solid rgba(201,168,76,0.12) !important;
  padding: 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.mof-payment-box p {
  font-size: 0.78rem !important;
  letter-spacing: 0.07em !important;
  color: var(--text-muted) !important;
  line-height: 1.9 !important;
  margin-bottom: 24px !important;
}
.mof-payment-table { width: 100% !important; border-collapse: collapse !important; }
.mof-payment-table th,
.mof-payment-table td {
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(201,168,76,0.06) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  text-align: left !important;
}
.mof-payment-table th { color: var(--text-muted) !important; width: 40% !important; }
.mof-payment-table td { color: var(--cream) !important; }
.mof-payment-table td strong {
  font-family: var(--font-display) !important;
  font-size: 1.4rem !important;
  color: var(--gold) !important;
  font-weight: 300 !important;
}
.mof-payment-table code {
  font-family: monospace !important;
  background: var(--mid) !important;
  padding: 2px 8px !important;
  color: var(--gold-light) !important;
  font-size: 0.8em !important;
}
.mof-payment-note {
  margin-top: 20px !important;
  font-size: 0.7rem !important;
  color: rgba(201,168,76,0.45) !important;
  letter-spacing: 0.06em !important;
  border-top: 1px solid rgba(201,168,76,0.08) !important;
  padding-top: 16px !important;
}

/* Pola danych kontaktowych (krok 5) */
.mof-field { display: flex !important; flex-direction: column !important; gap: 8px !important; }
.mof-field--full { grid-column: 1 / -1 !important; }
.mof-field label {
  font-size: 0.6rem !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
}
.mof-field input,
.mof-field textarea {
  background: transparent !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  padding: 14px 18px !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  outline: none !important;
  transition: border-color 0.3s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.mof-field input:focus,
.mof-field textarea:focus { border-color: var(--gold) !important; }
.mof-field textarea { resize: vertical !important; min-height: 100px !important; }

/* Alerty / błędy */
.mof-alert--error {
  background: rgba(180,60,60,0.12) !important;
  border: 1px solid rgba(180,60,60,0.3) !important;
  padding: 14px 20px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em !important;
  color: #e87878 !important;
  margin-top: 16px !important;
}

/* Ekran sukcesu */
.mof-step--success {
  text-align: center !important;
  padding: 80px 40px !important;
}
.mof-success-icon {
  width: 72px !important; height: 72px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-size: 1.8rem !important;
  color: var(--gold) !important;
  margin: 0 auto 28px !important;
}
.mof-step--success h2 {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  color: var(--cream) !important;
  margin-bottom: 16px !important;
  font-weight: 300 !important;
}
.mof-step--success p {
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  color: var(--text-muted) !important;
  line-height: 2 !important;
  max-width: 440px !important;
  margin: 0 auto !important;
}

/* Responsywność formularza */
@media (max-width: 700px) {
  .mof-product { grid-template-columns: 1fr !important; }
  .mof-fields  { grid-template-columns: 1fr !important; }
  .mof-payment-box { padding: 24px !important; }
}

/* === KONTAKT === */
#kontakt {
  padding: 140px 10%;
  text-align: center;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
}
#kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.contact-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 18px;
}
.contact-title em { color: var(--gold); font-style: italic; }
.contact-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 52px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.magnara-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.22);
  padding: 16px 22px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  outline: none;
  transition: border-color 0.3s;
}
.magnara-input::placeholder { color: var(--text-muted); }
.magnara-input:focus { border-color: var(--gold); }
textarea.magnara-input { resize: vertical; min-height: 120px; }
.btn-submit {
  align-self: center;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 17px 54px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: color var(--transition);
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform var(--transition);
}
.btn-submit:hover { color: var(--obsidian); }
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit span { position: relative; z-index: 1; }

/* Wiadomość WP Contact Form */
.wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
}

/* === FOOTER === */
#colophon {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.14);
  padding: 44px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.footer-nav a {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 28px;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

/* === ANIMACJE === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  #o-nas { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 300px; }
}
@media (max-width: 900px) {
  #masthead { padding: 20px 32px; }
  #masthead.scrolled { padding: 14px 32px; }
  .menu-toggle { display: block; }
  #primary-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  #primary-menu.is-open { display: flex; }
  .product-row { grid-template-columns: 160px 1fr; grid-template-rows: auto auto auto; }
  .product-row__pricing { grid-column: 2; grid-row: 2; border-right: none; align-items: flex-start; padding-top: 0; }
  .product-row__accent-line { grid-row: 3; }
  #stats-bar { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); padding: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-item { max-width: calc(50% - 1px); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #hero { padding: 100px 6% 60px; }
  section { padding: 80px 6%; }
  #stats-bar { padding: 32px 6%; }
  #masthead { padding: 16px 24px; }
  .product-row { grid-template-columns: 1fr; }
  .product-row__visual { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); flex-direction: row; align-items: center; padding: 24px 24px 20px; height: auto; }
  .product-row__content { padding: 16px 24px; border-right: none; }
  .product-row__pricing { padding: 16px 24px 24px; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-item { max-width: 100%; flex: 1 1 100%; }
  #colophon { flex-direction: column; text-align: center; }
  .footer-nav a { margin: 0 12px; }
}

/* ============================================================
   === BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s, border-color 0.25s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.back-to-top:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Pasek postępu — cienka złota linia na lewej krawędzi */
.back-to-top::before {
  content: '';
  position: absolute;
  left: -1px;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  height: var(--scroll-progress, 0%);
  transition: height 0.1s linear;
}
@media (max-width: 600px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}
