/* ============================================================
   ZAJAZD POLSKI · zajazd-polski.pl · Piotrków Kujawski
   Design: czarno-złoty, ekskluzywny, eventowy
   ============================================================ */

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

:root {
  --black:       #080705;
  --dark-1:      #100e07;
  --dark-2:      #181409;
  --dark-3:      #22190c;
  --dark-4:      #2e2210;
  --gold:        #c9a84c;
  --gold-light:  #e8d5a3;
  --gold-pale:   #f5edcc;
  --gold-dark:   #8a6e25;
  --gold-dim:    #5a4810;
  --white:       #f5f0e8;
  --gray-light:  #c0b8a8;
  --gray:        #8a8070;
  --gray-dark:   #4a4438;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Raleway', sans-serif;
  --ease:        0.3s ease;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --border-gold: 1px solid rgba(201,168,76,0.18);
}

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

body {
  background-color: var(--dark-1);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAFIA ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { color: var(--white); margin-bottom: 0.8rem; }
.section-title span { color: var(--gold); font-style: normal; }
.section-desc { color: var(--gray-light); max-width: 600px; line-height: 1.8; }

.gold-line {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  margin: 1.2rem 0;
}
.gold-line.center { margin: 1.2rem auto; }

/* ===== PRZYCISKI ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--ease);
}
.btn-primary {
  background: linear-gradient(105deg,
    var(--gold-dark)  0%,
    var(--gold)       25%,
    var(--gold-light) 45%,
    #fff8dc           50%,
    var(--gold-light) 55%,
    var(--gold)       75%,
    var(--gold-dark)  100%);
  background-size: 250% auto;
  color: var(--black);
  animation: btn-shimmer 5.5s linear infinite;
}
@keyframes btn-shimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 250% center; }
}
.btn-primary:hover {
  background-size: 250% auto;
  animation-duration: 2.8s;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold); color: var(--black); transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08); color: var(--white); transform: translateY(-2px);
}

/* ===== NAWIGACJA ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 0; transition: all var(--ease); background: transparent;
}
.navbar.scrolled {
  background: rgba(8,7,5,0.96); backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: var(--border-gold);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-logo-name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); letter-spacing: 1px; font-weight: 700; }
.nav-logo-sub { font-size: 0.58rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gray); }
.nav-menu { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-light); position: relative; transition: color var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.6rem; background: var(--gold); color: var(--black);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: all var(--ease);
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); transition: all var(--ease); display: block; }

/* ===== HERO — STRONA GŁÓWNA ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom, rgba(5,4,3,0.18) 0%, rgba(5,4,3,0.06) 60%, rgba(5,4,3,0.55) 100%),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-photo-hint {
  display: none; /* placeholder — schowany do czasu wgrania prawdziwego zdjęcia */
  position: absolute; top: 50%;
  right: calc((100% - 1200px) / 2 + 2rem);
  transform: translateY(-50%);
  width: 380px; height: 480px; z-index: 1;
  background: linear-gradient(135deg, #1a1408, #261c0a, #1a1408);
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(201,168,76,0.2);
}
.hero-photo-hint-label {
  text-align: center; padding: 1.5rem;
  color: rgba(201,168,76,0.35); font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase; line-height: 2;
}
.hero-photo-hint-label i { font-size: 2rem; display: block; margin-bottom: 1rem; opacity: 0.4; }
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 2rem 2rem 0;
  box-sizing: border-box;
  flex: 1; display: flex; align-items: center;
}
.hero-card {
  position: relative;
  max-width: 580px;
  padding: 2.8rem 3.2rem;
  background: rgba(10,8,4,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-card::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,0.30); pointer-events: none;
}
.hero-card .hero-eyebrow { color: rgba(201,168,76,0.85); }
.hero-card .hero-sub { color: rgba(220,210,195,0.85); }
.hero-card .hero-cta { flex-wrap: nowrap; }
.hero-services {
  display: flex; gap: 1.8rem; margin-top: 0.5rem;
  border-top: 1px solid rgba(201,168,76,0.18); padding-top: 1.4rem;
}
.hero-service {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(201,168,76,0.75); white-space: nowrap;
}
.hero-service i { font-size: 0.9rem; color: #c9a84c; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { max-width: 640px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.page-hero h1 em, .page-hero h1 span[style] { font-style: normal; }
.hero-sub {
  color: var(--gray-light); font-size: 1.05rem; max-width: 480px;
  margin-bottom: 3rem; line-height: 1.9;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-val {
  font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 0.2rem; }
.hero-scroll { display: none; }
.hero-scroll i { font-size: 1rem; color: var(--gold); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== PASEK ODZNACZEŃ ===== */
.awards-bar {
  background: linear-gradient(90deg, var(--dark-2), rgba(201,168,76,0.06), var(--dark-2));
  border-top: var(--border-gold); border-bottom: var(--border-gold);
  padding: 1.8rem 0; overflow: hidden;
}
/* Wewnątrz hero: ZAWSZE solidny ciemny pasek — hardcoded, nie CSS vars */
.hero .awards-bar {
  position: relative; z-index: 3;
  background: #0f0d07;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: none;
  flex-shrink: 0;
}
html[data-theme="light"] .hero .awards-bar {
  background: #f5f0e4;
  border-top-color: rgba(150,110,30,0.25);
}
.awards-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.2rem; flex-wrap: nowrap;
}
.award-item { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.award-icon {
  width: 42px; height: 42px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.award-main { font-family: var(--font-serif); font-size: 0.95rem; color: var(--gold); line-height: 1.2; white-space: nowrap; }
.award-sub { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); white-space: nowrap; }
.award-sep { width: 1px; height: 36px; background: linear-gradient(180deg, transparent, var(--gold-dim), transparent); }

/* ===== SEKCJE OGÓLNE ===== */
.section { padding: 6rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.center .gold-line { margin: 1.2rem auto; }
.section-dark { background: var(--dark-2); border-top: var(--border-gold); border-bottom: var(--border-gold); }

/* ===== KARTY OFERTY (SIATKA) ===== */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
  border: var(--border-gold);
}
.offer-card {
  background: var(--dark-1); padding: 2.8rem 2.2rem;
  position: relative; overflow: hidden; transition: background var(--ease);
}
.offer-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform var(--ease);
}
.offer-card:hover { background: var(--dark-2); }
.offer-card:hover::after { transform: scaleX(1); }
.offer-card-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.4rem; opacity: 0.85; }
.offer-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.7rem; }
.offer-card p { color: var(--gray); font-size: 0.87rem; line-height: 1.75; }
.offer-card-more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.4rem;
  font-size: 0.67rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); transition: color var(--ease);
}
.offer-card-more:hover { color: var(--gold); }

/* ===== O NAS (STRONA GŁÓWNA) ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-frame-wrap { position: relative; }
.about-frame {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1408, #231a0b, #1a1408);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-frame::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,0.25); pointer-events: none;
}
.about-frame-label {
  text-align: center; padding: 2rem;
  color: rgba(201,168,76,0.4); font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase; line-height: 2;
}
.about-frame-label i { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; opacity: 0.35; }
.corner { position: absolute; width: 44px; height: 44px; }
.corner::before, .corner::after { content: ''; position: absolute; background: var(--gold); }
.corner.tl { top: -5px; left: -5px; }
.corner.tl::before { top: 0; left: 0; width: 100%; height: 2px; }
.corner.tl::after  { top: 0; left: 0; width: 2px; height: 100%; }
.corner.br { bottom: -5px; right: -5px; }
.corner.br::before { bottom: 0; right: 0; width: 100%; height: 2px; }
.corner.br::after  { bottom: 0; right: 0; width: 2px; height: 100%; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--dark-3); border: var(--border-gold);
  padding: 1.4rem 1.8rem; text-align: center;
}
.about-badge-num { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.about-badge-label { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 0.2rem; }
.about-owner {
  display: flex; align-items: center; gap: 1.4rem;
  padding: 1.4rem 1.6rem; border: var(--border-gold);
  background: rgba(201,168,76,0.03); margin: 1.8rem 0;
}
.about-owner-icon {
  width: 64px; height: 64px; background: var(--dark-3);
  border: 2px solid var(--gold-dark); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.6rem; color: var(--gold);
}
.about-owner-name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); line-height: 1.2; }
.about-owner-role { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 0.15rem; }

/* ===== CECHY / DLACZEGO MY ===== */
.features-strip {
  background: var(--dark-2);
  border-top: var(--border-gold); border-bottom: var(--border-gold);
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item {
  padding: 3rem 1.8rem; text-align: center;
  border-right: var(--border-gold); transition: background var(--ease);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(201,168,76,0.03); }
.feature-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.1rem; }
.feature-item h4 { font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ===== GALERIA PODGLĄD ===== */
.gallery-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 4px;
}
.gp-item {
  background: var(--dark-3); position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: pointer;
}
.gp-item.span-row { grid-row: 1 / 3; }
.gp-item::after { content: ''; position: absolute; inset: 0; background: transparent; transition: background var(--ease); }
.gp-item:hover::after { background: rgba(201,168,76,0.08); }
.gp-label {
  text-align: center; padding: 1rem; z-index: 1;
  color: rgba(201,168,76,0.35); font-size: 0.58rem;
  letter-spacing: 2px; text-transform: uppercase; line-height: 2;
}
.gp-label i { font-size: 1.2rem; display: block; margin-bottom: 0.5rem; opacity: 0.5; }
.gallery-link {
  display: block; text-align: center; margin-top: 2.5rem;
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); transition: color var(--ease);
}
.gallery-link:hover { color: var(--gold); }

/* ===== OPINIE ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem;
}
.testimonial {
  background: var(--dark-2); border: var(--border-gold);
  padding: 2.4rem 2rem; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 0.8rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 4.5rem;
  color: rgba(201,168,76,0.08); line-height: 1;
}
.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray-light); font-style: italic; font-size: 0.88rem; line-height: 1.85; margin-bottom: 1.4rem; }
.testimonial-author { font-size: 0.78rem; font-weight: 700; color: var(--gold); }
.testimonial-type { font-size: 0.68rem; color: var(--gray); letter-spacing: 1px; }

/* ===== CTA GŁÓWNA ===== */
.cta-main {
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 65%),
    var(--dark-2);
  border-top: var(--border-gold); border-bottom: var(--border-gold);
  text-align: center; padding: 7rem 0;
}
.cta-main h2 { margin-bottom: 1rem; }
.cta-main .section-desc { margin: 0 auto 3rem; }
.cta-contacts {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.cta-contact-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--gray-light); }
.cta-contact-item i { color: var(--gold); font-size: 1rem; }
.cta-contact-item a { color: var(--gray-light); }
.cta-contact-item a:hover { color: var(--gold); }

/* ===== STOPKA ===== */
.footer { background: var(--black); border-top: var(--border-gold); padding: 4.5rem 0 2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 2px; }
.footer-brand-city { font-size: 0.58rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gray); margin-bottom: 1.1rem; }
.footer-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.4rem; }
.footer-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-badge { border: var(--border-gold); padding: 0.25rem 0.6rem; font-size: 0.58rem; letter-spacing: 1px; color: var(--gold-dark); text-transform: uppercase; }
.footer-col h5 { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; font-family: var(--font-sans); }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.83rem; color: var(--gray); transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 0.8rem; margin-bottom: 0.9rem; font-size: 0.83rem; color: var(--gray); }
.footer-contact-row i { color: var(--gold-dark); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-row a { color: var(--gray); }
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 1.4rem 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p, .footer-bottom span { font-size: 0.73rem; color: var(--gray); }

/* ===== HERO PODSTRON ===== */
.page-hero {
  min-height: 42vh; display: flex; align-items: flex-end; padding-bottom: 4rem;
  padding-top: 120px; position: relative; overflow: hidden;
  background:
    linear-gradient(175deg, rgba(8,7,5,0.72) 0%, rgba(8,7,5,0.88) 100%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(201,168,76,0.01) 30px, rgba(201,168,76,0.01) 31px),
    linear-gradient(135deg, #0c0a06, #1e1608, #0c0a06);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.67rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-dark); }

/* ===== STRONA: WESELE ===== */
.wedding-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.wedding-what {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.5rem;
}
.wedding-what-item { display: flex; gap: 1rem; align-items: flex-start; }
.wedding-what-item i { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.wedding-what-item h4 { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.15rem; }
.wedding-what-item p { font-size: 0.78rem; color: var(--gray); }
.wedding-box {
  background: var(--dark-2); border: var(--border-gold); padding: 3rem 2.5rem; margin-top: 4rem;
}
.wedding-box-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.wedding-inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.wcheck { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--gray-light); }
.wcheck i { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.8rem; }

/* ===== STRONA: OFERTA ===== */
.offer-list { display: flex; flex-direction: column; }
.offer-row {
  display: grid; grid-template-columns: 70px 1fr 220px;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  transition: background var(--ease);
}
.offer-row:hover { background: rgba(201,168,76,0.02); }
.offer-num {
  padding: 2.8rem 1.5rem; font-family: var(--font-serif); font-size: 2rem;
  color: rgba(201,168,76,0.12); display: flex; align-items: center; justify-content: center;
  border-right: 1px solid rgba(201,168,76,0.07);
}
.offer-body { padding: 2.8rem 2.5rem; border-right: 1px solid rgba(201,168,76,0.07); }
.offer-body h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.7rem; }
.offer-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; }
.offer-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.1rem; }
.offer-tag {
  padding: 0.2rem 0.65rem; background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.14); font-size: 0.62rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark);
}
.offer-aside {
  padding: 2.8rem 1.8rem; display: flex; flex-direction: column;
  justify-content: center; gap: 1.2rem;
}
.offer-cap-val { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); line-height: 1; }
.offer-cap-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

/* ===== STRONA: O NAS — TIMELINE ===== */
.timeline-section { position: relative; padding-left: 3rem; margin: 2.5rem 0; }
.timeline-section::before {
  content: ''; position: absolute; left: 0; top: 0.5rem; bottom: 0;
  width: 1px; background: linear-gradient(180deg, transparent, var(--gold-dark) 20%, var(--gold-dark) 80%, transparent);
}
.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item::before {
  content: ''; position: absolute; left: -3rem; top: 0.45rem;
  width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg);
}
.tl-year { font-size: 0.63rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.tl-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.4rem; }
.tl-text { font-size: 0.87rem; color: var(--gray); line-height: 1.75; }
.awards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.award-box {
  background: var(--dark-2); border: var(--border-gold); padding: 2rem 1.8rem; text-align: center;
}
.award-box-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.award-box-title { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); margin-bottom: 0.4rem; }
.award-box-desc { font-size: 0.8rem; color: var(--gray); }
.team-box {
  background: var(--dark-2); border: var(--border-gold); padding: 3rem 2.5rem; margin-top: 3rem;
  display: grid; grid-template-columns: 120px 1fr; gap: 2.5rem; align-items: center;
}
.team-avatar {
  width: 120px; height: 120px; background: var(--dark-3);
  border: 2px solid var(--gold-dark); display: flex; align-items: center;
  justify-content: center; font-size: 3rem; color: var(--gold);
}
.team-name { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: 0.2rem; }
.team-role { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.team-quote { font-style: italic; font-size: 0.9rem; color: var(--gray-light); line-height: 1.8; border-left: 2px solid var(--gold-dark); padding-left: 1.2rem; }

/* ===== STRONA: GALERIA ===== */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gf-btn {
  padding: 0.5rem 1.4rem; background: transparent;
  border: var(--border-gold); color: var(--gray);
  font-size: 0.67rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; font-family: var(--font-sans); transition: all var(--ease);
}
.gf-btn:hover, .gf-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.gg-item {
  aspect-ratio: 4/3; background: var(--dark-3); position: relative;
  display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden;
}
.gg-item::after { content: ''; position: absolute; inset: 0; background: transparent; transition: background var(--ease); }
.gg-item:hover::after { background: rgba(201,168,76,0.08); }
.gg-label { text-align: center; padding: 1rem; z-index: 1; color: rgba(201,168,76,0.35); font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; }
.gg-label i { font-size: 1rem; display: block; margin-bottom: 0.4rem; opacity: 0.6; }

/* ===== STRONA: KONTAKT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-top: 3.5rem; }
.contact-info-item { display: flex; gap: 1.4rem; margin-bottom: 2.4rem; }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.ci-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.ci-value { font-family: var(--font-serif); font-size: 1.05rem; color: var(--white); line-height: 1.4; }
.ci-sub { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }
.ci-value a { color: var(--white); }
.ci-value a:hover { color: var(--gold); }
.map-ph {
  width: 100%; height: 280px; background: var(--dark-3);
  border: 1px dashed rgba(201,168,76,0.25); margin-top: 2rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem; text-align: center; padding: 1rem;
  color: rgba(201,168,76,0.4); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
}
.map-ph i { font-size: 2.2rem; display: block; opacity: 0.4; }
.contact-form { background: var(--dark-2); border: var(--border-gold); padding: 3rem; }
.form-title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.82rem; color: var(--gray); margin-bottom: 2.2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.18); color: var(--white);
  font-family: var(--font-sans); font-size: 0.9rem;
  padding: 0.85rem 1.1rem; transition: border-color var(--ease);
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); background: rgba(201,168,76,0.03); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); font-size: 0.85rem; }
.form-textarea { min-height: 115px; resize: vertical; }
.form-select option { background: var(--dark-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.72rem; color: var(--gray); margin-top: 0.3rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-frame-wrap { max-width: 380px; }
  .wedding-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .awards-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 270px; height: 100vh;
    background: var(--black); border-left: var(--border-gold);
    flex-direction: column; justify-content: center; padding: 4rem 2rem;
    gap: 1.5rem; transition: right var(--ease); z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-cta { display: none; }
  .hero-photo-hint { display: none; }
  .offer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gp-item.span-row { grid-row: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .offer-row { grid-template-columns: 1fr; }
  .offer-num { display: none; }
  .offer-aside { border-top: 1px solid rgba(201,168,76,0.07); }
  .wedding-what { grid-template-columns: 1fr; }
  .wedding-inc-grid { grid-template-columns: 1fr; }
  .team-box { grid-template-columns: 1fr; text-align: center; }
  .team-avatar { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; gap: 1rem; align-items: center; }
  .awards-inner { gap: 1.5rem; }
  .award-sep { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 500px) {
  .section { padding: 4rem 0; }
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-item { border-right: none; border-bottom: var(--border-gold); }
  .features-grid .feature-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
}

/* ===== PRZYCISK MOTYWU ===== */
.theme-toggle {
  background: none; border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--ease); flex-shrink: 0; font-size: 0.88rem;
}
.theme-toggle:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* ===== MOTYW JASNY ===== */
html[data-theme="light"] {
  --black:      #ede8e0;
  --dark-1:     #faf8f4;
  --dark-2:     #f0ece4;
  --dark-3:     #e6dfd5;
  --dark-4:     #d8cfc4;
  --gold:       #8a6820;
  --gold-light: #6a5018;
  --gold-pale:  #5a4212;
  --gold-dark:  #b88830;
  --gold-dim:   #c9a84c;
  --white:      #1e1a0e;
  --gray-light: #3a3025;
  --gray:       #6a5e50;
  --gray-dark:  #b0a898;
  --border-gold: 1px solid rgba(150,110,30,0.2);
  --shadow-gold: 0 0 40px rgba(138,104,32,0.08);
}

html[data-theme="light"] .navbar { background: rgba(253,248,240,0.88); backdrop-filter: blur(8px); }
html[data-theme="light"] .navbar.scrolled {
  background: rgba(253,248,240,0.97);
  border-bottom-color: rgba(150,110,30,0.18);
}
html[data-theme="light"] .hero-bg {
  background:
    linear-gradient(to bottom, rgba(5,4,3,0.18) 0%, rgba(5,4,3,0.06) 60%, rgba(5,4,3,0.55) 100%),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
html[data-theme="light"] .hero-photo-hint {
  background: linear-gradient(135deg, #e8dfd0, #dfd4c0, #e8dfd0);
  border-color: rgba(138,104,32,0.22);
}
html[data-theme="light"] .page-hero {
  background:
    linear-gradient(175deg, rgba(250,248,244,0.82) 0%, rgba(250,248,244,0.94) 100%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(138,104,32,0.01) 30px, rgba(138,104,32,0.01) 31px),
    linear-gradient(135deg, #f0ece4, #e4dbd0, #f0ece4);
}
html[data-theme="light"] .awards-bar {
  background: linear-gradient(90deg, var(--dark-2), rgba(138,104,32,0.05), var(--dark-2));
}
html[data-theme="light"] .section-dark,
html[data-theme="light"] .features-strip { background: var(--dark-2); }
html[data-theme="light"] .cta-main {
  background: radial-gradient(ellipse at center, rgba(138,104,32,0.05) 0%, transparent 65%), var(--dark-2);
}
html[data-theme="light"] .about-frame,
html[data-theme="light"] .about-frame-wrap .about-frame {
  background: linear-gradient(135deg, #e8dfd0, #dfd4be, #e8dfd0);
}
html[data-theme="light"] .gp-item,
html[data-theme="light"] .gg-item { background: var(--dark-3); }
html[data-theme="light"] .gallery-item { background: var(--dark-3); }
html[data-theme="light"] .footer { background: var(--dark-3); }
html[data-theme="light"] .map-ph { background: var(--dark-3); border-color: rgba(138,104,32,0.2); }
html[data-theme="light"] .form-input,
html[data-theme="light"] .form-textarea,
html[data-theme="light"] .form-select {
  background: rgba(0,0,0,0.03); border-color: rgba(138,104,32,0.2); color: var(--white);
}
html[data-theme="light"] .form-input:focus,
html[data-theme="light"] .form-textarea:focus,
html[data-theme="light"] .form-select:focus { border-color: var(--gold); background: rgba(138,104,32,0.03); }
html[data-theme="light"] .form-input::placeholder,
html[data-theme="light"] .form-textarea::placeholder { color: var(--gray); }
html[data-theme="light"] .btn-outline-white { border-color: rgba(30,26,14,0.3); color: var(--white); }
html[data-theme="light"] .btn-outline-white:hover { background: rgba(30,26,14,0.06); }
html[data-theme="light"] .theme-toggle { border-color: rgba(138,104,32,0.3); }
html[data-theme="light"] .hero-scroll { color: var(--gray); }
html[data-theme="light"] .timeline-section::before { background: linear-gradient(180deg, transparent, #c9a84c 20%, #c9a84c 80%, transparent); }
html[data-theme="light"] .about-badge { background: var(--dark-3); }
html[data-theme="light"] .team-box { background: var(--dark-2); }
html[data-theme="light"] .wedding-box { background: var(--dark-2); }
html[data-theme="light"] .contact-form { background: var(--dark-2); }
html[data-theme="light"] .testimonial { background: var(--dark-2); }
html[data-theme="light"] .offer-card { background: var(--dark-1); }
html[data-theme="light"] .offer-card:hover { background: var(--dark-2); }
html[data-theme="light"] .award-box { background: var(--dark-2); }

/* ============================================================
   MOBILE PATCHES — poprawki responsywności
   ============================================================ */

/* ----- 768px: główne poprawki ----- */
@media (max-width: 768px) {
  /* BUG 1: theme-toggle wędruje na środek paska (space-between + 3 flex items).
     margin-left: auto przykleja go do hamburger po prawej. */
  .theme-toggle { margin-left: auto; }

  /* BUG 2: gallery-preview — grid-template-rows: auto bez height na .gp-item
     powoduje zgniecenie kafelków do wysokości treści (~60px).
     Przywracamy stały rozmiar rzędów. */
  .gallery-preview { grid-template-rows: 155px 155px; }

  /* BUG 3: about-frame-wrap limitowany do 380px i wyrównany do lewej.
     Na mobile powinien być pełnej szerokości i wycentrowany. */
  .about-frame-wrap { max-width: 100%; margin-left: auto; margin-right: auto; }

  /* BUG 4: about-badge wysunięty right: -1.5rem poza viewport.
     Cofamy go do środka ramki. */
  .about-badge { right: 0.8rem; bottom: 0.8rem; }

  /* Hero card na 768px — karta na pełną szerokość kontenera */
  .hero-content { padding-bottom: 0; }
  .hero-card { max-width: 100%; padding: 2rem 1.8rem; }
  .hero-card .hero-cta { flex-wrap: nowrap; gap: 0.7rem; }
  .hero-card .hero-cta .btn { font-size: 0.7rem; padding: 0.75rem 1.1rem; letter-spacing: 1.5px; }
  .hero-services { gap: 1.2rem; }
  .hero-service { font-size: 0.6rem; gap: 0.4rem; }

  /* Drobne: gallery-preview 2 kolumny na 768 — min-height żeby wyglądały OK */
  .gp-item { min-height: 155px; }
}

/* ----- 480px: małe telefony ----- */
@media (max-width: 480px) {
  .hero { padding-top: 70px; }
  .hero-card { padding: 1.6rem 1.4rem; }
  .hero-card h1 { font-size: 2.2rem; }
  .hero-card .hero-sub { font-size: 0.9rem; margin-bottom: 1.8rem; }
  .hero-card .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-card .hero-cta .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.85rem 1rem; }
  .hero-services { gap: 0.9rem; flex-wrap: wrap; }
  .hero-service { font-size: 0.58rem; letter-spacing: 1.5px; }
  .awards-inner { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .award-sep { display: none; }

  /* Gallery preview: 1 kolumna na wąskich ekranach */
  .gallery-preview {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 175px);
  }

  /* Page hero: mniej padding-bottom na małych ekranach */
  .page-hero { padding-bottom: 2rem; min-height: 38vh; }

  /* Awards bar: mniejszy gap */
  .awards-inner { gap: 1rem; }

  /* Nawigacja: logo nieco mniejszy na micro ekranach */
  .nav-logo-name { font-size: 1.15rem; }

  /* Stopka: padding boczny */
  .footer-grid { padding: 0 1rem; }
  .footer-bottom { padding: 1.4rem 1rem 0; }
}

/* ----- 380px: Galaxy S, iPhoneSE ----- */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 3px; }
  .hero-cta .btn { padding: 0.85rem 1.5rem; font-size: 0.68rem; }
  .section-inner { padding: 0 1.2rem; }
  .contact-form { padding: 1.4rem; }
}

/* ============================================================
   MOTYW SREBRNY CIEMNY  (data-theme="dark-silver")
   Zmienne kolorów + korekty hardkodowanych gradientów
   ============================================================ */
html[data-theme="dark-silver"] {
  --gold:        #BCC2CA;
  --gold-light:  #D8DEE6;
  --gold-pale:   #EEF0F4;
  --gold-dark:   #888F9A;
  --gold-dim:    #585E68;
  --shadow-gold: 0 0 40px rgba(188,194,202,0.12);
  --border-gold: 1px solid rgba(188,194,202,0.18);
}

/* Shimmer srebrny — ciemny + jasny */
html[data-theme="dark-silver"] .btn-primary,
html[data-theme="light-silver"] .btn-primary {
  background: linear-gradient(105deg,
    #7A8290  0%,
    #BCC2CA 25%,
    #D8DEE6 45%,
    #f5f6f8 50%,
    #D8DEE6 55%,
    #BCC2CA 75%,
    #7A8290 100%);
  background-size: 250% auto;
  color: #0e1014;
  animation: btn-shimmer-silver 5.5s linear infinite;
}
@keyframes btn-shimmer-silver {
  0%   { background-position: 0%   center; }
  100% { background-position: 250% center; }
}
html[data-theme="dark-silver"] .btn-primary:hover,
html[data-theme="light-silver"] .btn-primary:hover {
  animation-duration: 2.8s;
  box-shadow: 0 8px 30px rgba(188,194,202,0.35);
}

/* Hero bg — chłodny, bez złotawych refleksów */
html[data-theme="dark-silver"] .hero-bg {
  background:
    linear-gradient(to bottom, rgba(5,4,3,0.18) 0%, rgba(5,4,3,0.06) 60%, rgba(5,4,3,0.55) 100%),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
html[data-theme="dark-silver"] .hero-card::before { border-color: rgba(188,194,202,0.28); }
html[data-theme="dark-silver"] .hero-card .hero-eyebrow { color: rgba(188,194,202,0.85); }
html[data-theme="dark-silver"] .hero-service { color: rgba(188,194,202,0.75); }
html[data-theme="dark-silver"] .hero-service i { color: #BCC2CA; }
html[data-theme="dark-silver"] .hero-services { border-top-color: rgba(188,194,202,0.18); }

/* Hero card — jasne motywy (kremowe/srebrne tło zamiast czarnego) */
html[data-theme="light"] .hero-card {
  background: rgba(245,238,224,0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
html[data-theme="light"] .hero-card::before { border-color: rgba(150,110,30,0.35); }
html[data-theme="light"] .hero-card h1 { color: #1a140a; }
html[data-theme="light"] .hero-card .hero-eyebrow { color: rgba(130,90,20,0.9); }
html[data-theme="light"] .hero-card .hero-sub { color: rgba(50,35,15,0.8); }
html[data-theme="light"] .hero-card .corner::before,
html[data-theme="light"] .hero-card .corner::after { background: rgba(150,110,30,0.7); }
html[data-theme="light"] .hero-services { border-top-color: rgba(150,110,30,0.25); }
html[data-theme="light"] .hero-service { color: rgba(110,75,15,0.85); }
html[data-theme="light"] .hero-service i { color: #8a6010; }

html[data-theme="light-silver"] .hero-card {
  background: rgba(236,242,250,0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
html[data-theme="light-silver"] .hero-card::before { border-color: rgba(94,102,114,0.30); }
html[data-theme="light-silver"] .hero-card h1 { color: #101418; }
html[data-theme="light-silver"] .hero-card .hero-eyebrow { color: rgba(70,85,105,0.9); }
html[data-theme="light-silver"] .hero-card .hero-sub { color: rgba(40,50,65,0.8); }
html[data-theme="light-silver"] .hero-card .corner::before,
html[data-theme="light-silver"] .hero-card .corner::after { background: rgba(94,102,114,0.6); }
html[data-theme="light-silver"] .hero-services { border-top-color: rgba(94,102,114,0.22); }
html[data-theme="light-silver"] .hero-service { color: rgba(60,72,90,0.85); }
html[data-theme="light-silver"] .hero-service i { color: #5e6672; }
html[data-theme="dark-silver"] .hero-photo-hint {
  background: linear-gradient(135deg, #141618, #1c2028, #141618);
  border-color: rgba(188,194,202,0.2);
}
html[data-theme="dark-silver"] .hero-photo-hint-label { color: rgba(188,194,202,0.35); }
html[data-theme="dark-silver"] .awards-bar {
  background: linear-gradient(90deg, var(--dark-2), rgba(188,194,202,0.05), var(--dark-2));
}
html[data-theme="dark-silver"] .cta-main {
  background:
    radial-gradient(ellipse at center, rgba(188,194,202,0.06) 0%, transparent 65%),
    var(--dark-2);
}
html[data-theme="dark-silver"] .page-hero {
  background:
    linear-gradient(175deg, rgba(8,7,5,0.72) 0%, rgba(8,7,5,0.88) 100%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(188,194,202,0.01) 30px, rgba(188,194,202,0.01) 31px),
    linear-gradient(135deg, #0c0c0e, #181a20, #0c0c0e);
}

/* ============================================================
   MOTYW SREBRNY JASNY  (data-theme="light-silver")
   Chłodna biel zamiast ciepłego kremowego
   ============================================================ */
html[data-theme="light-silver"] {
  --black:       #edf0f4;
  --dark-1:      #fafbfc;
  --dark-2:      #f0f3f6;
  --dark-3:      #e4e8ed;
  --dark-4:      #d5dae0;
  --gold:        #5E6672;
  --gold-light:  #454D59;
  --gold-pale:   #353D49;
  --gold-dark:   #8A929A;
  --gold-dim:    #B0B8C2;
  --white:       #191C22;
  --gray-light:  #2E3240;
  --gray:        #5E6672;
  --gray-dark:   #9AA2AA;
  --border-gold: 1px solid rgba(94,102,114,0.2);
  --shadow-gold: 0 0 40px rgba(94,102,114,0.08);
}

html[data-theme="light-silver"] .navbar { background: rgba(242,246,250,0.88); backdrop-filter: blur(8px); }
html[data-theme="light-silver"] .navbar.scrolled {
  background: rgba(242,246,250,0.97);
  border-bottom-color: rgba(94,102,114,0.18);
}
html[data-theme="light-silver"] .hero-bg {
  background:
    linear-gradient(to bottom, rgba(5,4,3,0.18) 0%, rgba(5,4,3,0.06) 60%, rgba(5,4,3,0.55) 100%),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
html[data-theme="light-silver"] .hero-card::before { border-color: rgba(188,194,202,0.28); }
html[data-theme="light-silver"] .hero-card .hero-eyebrow { color: rgba(188,194,202,0.85); }
html[data-theme="light-silver"] .hero-service { color: rgba(188,194,202,0.75); }
html[data-theme="light-silver"] .hero-service i { color: #BCC2CA; }
html[data-theme="light-silver"] .hero-services { border-top-color: rgba(188,194,202,0.18); }
html[data-theme="light-silver"] .hero-photo-hint {
  background: linear-gradient(135deg, #dde2e8, #cfd5dc, #dde2e8);
  border-color: rgba(94,102,114,0.22);
}
html[data-theme="light-silver"] .page-hero {
  background:
    linear-gradient(175deg, rgba(250,252,254,0.82) 0%, rgba(250,252,254,0.94) 100%),
    repeating-linear-gradient(-45deg, transparent 0, transparent 30px, rgba(94,102,114,0.01) 30px, rgba(94,102,114,0.01) 31px),
    linear-gradient(135deg, #f0f3f6, #e4e8ed, #f0f3f6);
}
html[data-theme="light-silver"] .awards-bar {
  background: linear-gradient(90deg, var(--dark-2), rgba(94,102,114,0.05), var(--dark-2));
}
html[data-theme="light-silver"] .section-dark,
html[data-theme="light-silver"] .features-strip { background: var(--dark-2); }
html[data-theme="light-silver"] .cta-main {
  background: radial-gradient(ellipse at center, rgba(94,102,114,0.05) 0%, transparent 65%), var(--dark-2);
}
html[data-theme="light-silver"] .about-frame,
html[data-theme="light-silver"] .about-frame-wrap .about-frame {
  background: linear-gradient(135deg, #dde2e8, #cfd5dc, #dde2e8);
}
html[data-theme="light-silver"] .gp-item,
html[data-theme="light-silver"] .gg-item,
html[data-theme="light-silver"] .gallery-item { background: var(--dark-3); }
html[data-theme="light-silver"] .footer,
html[data-theme="light-silver"] .about-badge { background: var(--dark-3); }
html[data-theme="light-silver"] .map-ph { background: var(--dark-3); border-color: rgba(94,102,114,0.2); }
html[data-theme="light-silver"] .form-input,
html[data-theme="light-silver"] .form-textarea,
html[data-theme="light-silver"] .form-select {
  background: rgba(0,0,0,0.03); border-color: rgba(94,102,114,0.2); color: var(--white);
}
html[data-theme="light-silver"] .form-input:focus,
html[data-theme="light-silver"] .form-textarea:focus,
html[data-theme="light-silver"] .form-select:focus {
  border-color: var(--gold); background: rgba(94,102,114,0.03);
}
html[data-theme="light-silver"] .form-input::placeholder,
html[data-theme="light-silver"] .form-textarea::placeholder { color: var(--gray); }
html[data-theme="light-silver"] .btn-outline-white { border-color: rgba(25,28,34,0.3); color: var(--white); }
html[data-theme="light-silver"] .btn-outline-white:hover { background: rgba(25,28,34,0.06); }
html[data-theme="light-silver"] .theme-toggle { border-color: rgba(94,102,114,0.3); }
html[data-theme="light-silver"] .hero-scroll { color: var(--gray); }
html[data-theme="light-silver"] .timeline-section::before {
  background: linear-gradient(180deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
html[data-theme="light-silver"] .team-box,
html[data-theme="light-silver"] .wedding-box,
html[data-theme="light-silver"] .contact-form,
html[data-theme="light-silver"] .testimonial,
html[data-theme="light-silver"] .award-box { background: var(--dark-2); }
html[data-theme="light-silver"] .offer-card { background: var(--dark-1); }
html[data-theme="light-silver"] .offer-card:hover { background: var(--dark-2); }
