/* ─────────────────────────────────────────────────────────
   Pracownia Ślubna Gabi — Global Stylesheet
   Cream #FDF8F0 · Gold #C9A96E · Cormorant + DM Sans
──────────────────────────────────────────────────────── */
/* Fonty ładowane <link>-iem w <head> każdej strony (szybszy LCP) */

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'DM Sans', sans-serif; background: #FDF8F0; color: #2C2014; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:       #FDF8F0;
  --cream-2:     #F7EFE0;
  --cream-3:     #F0E6D0;
  --gold:        #C9A96E;
  --gold-dark:   #A8845A;
  --gold-light:  #E8D5B0;
  --gold-pale:   #F5EDD8;
  --brown:       #2C2014;
  --brown-2:     #4A3520;
  --brown-3:     #6B4F35;
  --brown-4:     #9B7D5E;
  --white:       #FEFCF8;
  --shadow-sm:   0 2px 12px rgba(44,32,20,0.08);
  --shadow-md:   0 8px 32px rgba(44,32,20,0.12);
  --shadow-lg:   0 20px 60px rgba(44,32,20,0.15);
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:      cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h:       72px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4,h5 { overflow-wrap: anywhere; min-width: 0; text-wrap: balance; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.1; color: var(--brown); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }
p  { line-height: 1.75; color: var(--brown-3); }
.eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--brown-3);
  display: block; margin-bottom: 10px;
}
.lead { font-size: 1.1rem; line-height: 1.8; color: var(--brown-3); }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ─── ORNAMENT ───────────────────────────────────────── */
.ornament {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.ornament::before,.ornament::after {
  content:''; flex: 0 0 36px; height: 1px; background: var(--gold-light);
}
.ornament span { font-size: 16px; color: var(--gold); }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 14px;
  font-weight: 500; white-space: nowrap;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.btn-gold {
  background: var(--gold); color: var(--brown);
  font-weight: 600; letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-gold:active { background: var(--brown-2); }
.btn-outline {
  background: transparent; color: var(--brown);
  border: 1.5px solid var(--gold-light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,169,110,0.06); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: background-color 0.4s, box-shadow 0.4s;
}
.navbar.transparent {
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(2px);
  box-shadow: none;
}
.navbar.transparent::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 160px;
  background: linear-gradient(to bottom, rgba(30,18,8,0.72) 0%, rgba(30,18,8,0.18) 65%, transparent 100%);
  z-index: -1; pointer-events: none;
}
.navbar.solid {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.18);
  height: 62px;
}
.navbar.always-solid {
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid var(--gold-light);
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--brown); white-space: nowrap;
}
.nav-logo-name.white { color: var(--white); }
.nav-links {
  display: flex; gap: 0; align-items: center;
}
.nav-link {
  padding: 8px 14px; font-size: 13px; font-weight: 400;
  color: var(--brown-3); position: relative; transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content:''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s var(--ease); transform-origin: center;
}
.nav-link:hover, .nav-link.active { color: var(--brown); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.white { color: rgba(255,255,255,0.95); text-shadow: 0 1px 6px rgba(20,12,4,0.7), 0 2px 12px rgba(20,12,4,0.4); }
.nav-link.white:hover { color: white; }
.nav-link.white::after { background: var(--gold-light); }
.nav-logo-name.white { text-shadow: 0 1px 6px rgba(20,12,4,0.7), 0 2px 12px rgba(20,12,4,0.4); }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: var(--brown); transition: background-color 0.3s, opacity 0.3s; display: block; }
.hamburger.white span { background: white; }
/* Mobile menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(253,248,240,0.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding-top: 72px;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--brown); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav .mobile-phone { font-size: 1.1rem; color: var(--gold-dark); font-family: 'DM Sans', sans-serif; font-weight: 500; margin-top: 12px; }

/* ─── PAGE HERO (subpages) ───────────────────────────── */
.page-hero {
  height: 52vh; min-height: 380px;
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,32,20,0.3) 0%, rgba(44,32,20,0.65) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 5% 56px; width: 100%;
  max-width: 1200px; margin: 0 auto;
}
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 8px; }
.page-hero-content h1 { color: white; font-weight: 400; letter-spacing: -0.01em; }

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  background: var(--cream-2); border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 12px 5%;
}
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--brown-4);
}
.breadcrumb a { color: var(--gold-dark); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-light); }

/* ─── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: 4px;
  border: 1px solid rgba(201,169,110,0.15);
  overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ─── DIVIDER ────────────────────────────────────────── */
.divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }
.divider.center { margin: 20px auto; }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--brown); color: rgba(253,248,240,0.65);
  padding: 64px 5% 28px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 28px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 500; color: var(--cream); margin-bottom: 12px; display: block; }
.footer-desc { font-size: 13px; line-height: 1.75; color: rgba(253,248,240,0.55); max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--gold-light);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; font-family: 'DM Sans', sans-serif;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: white; }
.footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--cream); margin-bottom: 18px; font-weight: 500; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(253,248,240,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-address { font-style: normal; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px 20px; font-size: 12px;
  color: rgba(253,248,240,0.3);
}
.footer-credit a { color: rgba(232,213,176,0.7); transition: color 0.2s; }
.footer-credit a:hover { color: var(--gold-light); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-r.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: none; }


/* Na mobile animacje wjazdu z boku zamieniamy na wjazd od dołu — translateX rozpychał layout */
@media (max-width: 900px) {
  .reveal-l, .reveal-r { transform: translateY(28px); }
  .reveal-l.visible, .reveal-r.visible { transform: none; }
}

/* ─── FORM ───────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-dark); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; background: var(--white);
  border: 1px solid rgba(201,169,110,0.3); border-radius: 4px;
  color: var(--brown); font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: 2px solid transparent; outline-offset: 1px;
  transition: border-color 0.2s, outline-color 0.2s; appearance: none;
}
.form-input::placeholder,.form-textarea::placeholder { color: var(--brown-4); }
.form-input:focus-visible,.form-textarea:focus-visible,.form-select:focus-visible {
  border-color: var(--gold); outline: 2px solid var(--gold-dark); outline-offset: 1px;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.rev-card { display: flex; flex-direction: column; }
.rev-author { margin-top: auto; }

button:disabled, .btn[aria-disabled="true"] {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}
.btn-outline:active { background: rgba(201,169,110,0.14); }

/* ─── IKONY KRESKOWE ─────────────────────────────────── */
.ic {
  width: 28px; height: 28px; display: block;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ─── MISC ───────────────────────────────────────────── */
.tag { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 500; background: rgba(201,169,110,0.1); color: var(--gold-dark); border: 1px solid rgba(201,169,110,0.2); letter-spacing: 0.04em; }
.stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 14px; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 64px 5%; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* ─── FLOATING WHATSAPP BUTTON ──────────────────────── */
.wa-float {
  position: fixed; bottom: 104px; right: 28px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--brown); color: var(--cream); font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--brown);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ─── SCROLL TO TOP BUTTON ───────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(253,248,240,0.92); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  opacity: 0; pointer-events: none; transform: translateY(8px);
}
.scroll-top.visible { opacity: 1; pointer-events: all; transform: none; }
.scroll-top:hover { background: var(--gold); border-color: var(--gold); }
.scroll-top:hover svg { stroke: white; }
.scroll-top svg { width: 18px; height: 18px; stroke: var(--brown); transition: stroke 0.2s; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

/* ─── GDPR COOKIE NOTICE ─────────────────────────────── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(44,32,20,0.97); backdrop-filter: blur(12px);
  padding: 18px 5%; border-top: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.cookie-bar.visible { transform: none; }
.cookie-bar p {
  flex: 1; font-size: 13px; color: rgba(253,248,240,0.75);
  line-height: 1.5; min-width: 280px; margin: 0;
}
.cookie-bar p a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 500;
  background: var(--gold); color: white; cursor: pointer; border: none;
  transition: background 0.2s; font-family: inherit;
}
.btn-cookie-accept:hover { background: var(--gold-dark); }
.btn-cookie-decline {
  padding: 9px 16px; border-radius: 50px; font-size: 13px;
  background: transparent; color: rgba(253,248,240,0.5);
  border: 1px solid rgba(253,248,240,0.15); cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; font-family: inherit;
}
.btn-cookie-decline:hover { color: rgba(253,248,240,0.8); border-color: rgba(253,248,240,0.3); }

/* ─── PRINT STYLES ───────────────────────────────────── */
@media print {
  .navbar, .footer, .wa-float, .scroll-top, .cookie-bar { display: none !important; }
  body { background: white; color: black; }
}


/* ─── SECTION ORNAMENT DIVIDER ───────────────────────── */
.section-sep {
  text-align: center; padding: 0; margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.section-sep::before, .section-sep::after {
  content: ''; flex: 1; height: 1px; background: var(--gold-light);
  max-width: 80px;
}
.section-sep span { color: var(--gold); font-size: 14px; }

/* ─── VIDEO REELS (9:16) ─────────────────────────────── */
.reel {
  position: relative; aspect-ratio: 9/16; overflow: hidden;
  border-radius: 10px; background: #1a1208; cursor: pointer;
  border: 1px solid rgba(201,169,110,0.18);
  box-shadow: 0 6px 24px rgba(44,32,20,0.16);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.reel:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(44,32,20,0.32); }
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; background: #1a1208; }
.reel-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(26,18,8,0.8) 0%, rgba(26,18,8,0.05) 42%, transparent 70%);
}
.reel-label {
  position: absolute; left: 14px; right: 14px; bottom: 13px;
  color: rgba(253,248,240,0.95); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.01em; pointer-events: none;
}
.reel-badge {
  position: absolute; top: 10px; left: 10px; pointer-events: none;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(26,18,8,0.5);
  backdrop-filter: blur(6px); border: 1px solid rgba(232,213,176,0.28);
  padding: 4px 10px; border-radius: 50px;
}
.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%; pointer-events: none;
  background: rgba(26,18,8,0.42); backdrop-filter: blur(6px);
  border: 1px solid rgba(253,248,240,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.reel-play svg { width: 17px; height: 17px; fill: #fff; margin-left: 3px; }
.reel:hover .reel-play { background: var(--gold); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.1); }
.reel.playing .reel-play { opacity: 0; }

/* rail (poziomy pas na stronie głównej) */
.reel-rail-wrap { position: relative; margin-top: 44px; }
@media (min-width: 900px) { .reel-rail-wrap { padding: 0 30px; } }
.reel-rail {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 16px; scrollbar-width: none; scroll-behavior: smooth;
}
.reel-rail::-webkit-scrollbar { display: none; }
.reel-rail .reel { flex: 0 0 258px; scroll-snap-align: center; }
.rail-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(253,248,240,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(232,213,176,0.35); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rail-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.rail-btn.prev { left: -8px; }
.rail-btn.next { right: -8px; }
.rail-btn { background: rgba(26,18,8,0.65); }

/* grid (pełna galeria filmów) */
.reel-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

/* lightbox wideo */
.vlb {
  position: fixed; inset: 0; z-index: 900; padding: 24px;
  background: rgba(26,18,8,0.96); backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center;
}
.vlb.open { display: flex; }
.vlb video {
  max-height: 86vh; max-width: min(92vw, 440px);
  border-radius: 10px; background: #000; box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.vlb-close, .vlb-nav {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(253,248,240,0.1); border: 1px solid rgba(253,248,240,0.2);
  color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.vlb-close:hover, .vlb-nav:hover { background: rgba(201,169,110,0.5); }
.vlb-close { top: 24px; right: 24px; }
.vlb-nav { top: 50%; transform: translateY(-50%); }
.vlb-nav.prev { left: 24px; }
.vlb-nav.next { right: 24px; }
.vlb-info {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(253,248,240,0.65); font-size: 12.5px; letter-spacing: 0.04em; text-align: center;
}

@media (max-width: 600px) {
  .reel-rail .reel { flex: 0 0 202px; }
  .reel-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .rail-btn { display: none; }
  .vlb-nav.prev { left: 8px; }
  .vlb-nav.next { right: 8px; }
}

/* ─── BUTTON SHIMMER ON HOVER ─────────────────────────── */
.btn-gold {
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg) translateX(0);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  pointer-events: none;
}
.btn-gold:hover::before { transform: skewX(-20deg) translateX(430%); }

/* ─── PREMIUM SECTION HEADER ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-top: 8px; }

/* ─── REVIEW CARD GLOW ────────────────────────────────── */
.rev-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ─── GALLERY STRIP LOCAL PHOTOS ─────────────────────── */
.gi-local {
  flex: 0 0 280px; height: 380px; border-radius: 6px; overflow: hidden;
  scroll-snap-align: start; position: relative; flex-shrink: 0;
}
.gi-local img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gi-local:hover img { transform: scale(1.06); }

/* ─── STATS BAR PREMIUM ──────────────────────────────── */
.hs-n { transition: color 0.3s; }
.hs-item:hover .hs-n { color: var(--gold-dark); }

/* ─── MOBILE ENHANCEMENTS ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-nav { bottom: 100px; }
}
@media (max-width: 600px) {
  .hero-stats-bar { display: flex; }
  .hs-item:nth-child(n+3) { display: none; }
  .hs-n { font-size: 1.7rem; }
  .hs-l { font-size: 10px; }
  .hero-nav { bottom: 40px; }
  .hero-h1 { font-size: 2.8rem !important; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .scroll-top { bottom: 20px; }
  .scroll-top { bottom: 20px; left: 20px; width: 38px; height: 38px; }
  .section { padding: 56px 4%; }
  .btn { padding: 11px 24px; font-size: 13px; }
}


/* ─── IMAGE LAZY BLUR-UP ──────────────────────────────── */
img[loading="lazy"] {
  transition: filter 0.4s;
}

/* ─── SZEF PRACOWNI / FOUNDER ────────────────────────── */
.founder {
  background: var(--cream-2); padding: 92px 5%;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.founder-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 68px; align-items: center;
}
.founder-media { position: relative; }
.founder-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center;
  border-radius: 4px; box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.founder-frame { position: absolute; inset: 26px -22px -22px 26px; border: 1px solid var(--gold); border-radius: 4px; }
.founder-chip {
  position: absolute; z-index: 2; left: -14px; bottom: 28px;
  background: var(--gold); color: #fff; padding: 10px 18px; border-radius: 50px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.founder-chip.inline { position: static; display: inline-block; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(201,169,110,0.4); }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--brown); line-height: 1.05; margin-bottom: 8px; }
.founder-role { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; }
.founder-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.45rem; line-height: 1.5; color: var(--brown-2);
  margin: 24px 0 18px; padding-left: 22px; border-left: 2px solid var(--gold);
}
.founder p { font-size: 15px; margin-bottom: 10px; }
.founder-facts { display: grid; grid-template-columns: repeat(3, auto); gap: 18px 34px; justify-content: start; margin: 28px 0; }
.founder-fact b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 500; color: var(--gold-dark); line-height: 1; }
.founder-fact span { font-size: 12px; color: var(--brown-4); }
.founder-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 46px; }
  .founder-media { max-width: 300px; margin: 0 auto; }
  .founder-frame { inset: 20px -16px -16px 20px; }
  .founder-quote { font-size: 1.3rem; }
}

/* ─── DROBNE SZLIFY WIZUALNE ─────────────────────────── */
.srv-card { border-top: 2px solid transparent; }
.srv-card:hover { border-top-color: var(--gold); }
.gi, .gi img { border-radius: 6px; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 4px;
}
::selection { background: rgba(201,169,110,0.3); color: var(--brown); }

/* ─── MOBILE NAV CLOSE BTN ────────────────────────────── */
.mobile-nav-close {
  position: absolute; top: 24px; right: 5%;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.25);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown); font-size: 20px; font-weight: 300;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.mobile-nav-close:hover { background: var(--gold); color: white; border-color: var(--gold); }
