/* =========================================================
   BigStories — cinematic editorial wedding site
   Bespoke CSS (independent of any CDN) — premium & resilient
   ========================================================= */

:root {
  --ink-900: #0e0c0b;
  --ink-850: #131010;
  --ink-800: #181412;
  --ink-700: #211c18;
  --ink-600: #2c2620;
  --cream:   #f4efe7;
  --cream-dim: #cdc4b5;
  --taupe:   #9a8e7c;
  --gold:    #c2a878;
  --gold-soft: #dac39b;
  --line:    rgba(244, 239, 231, 0.12);
  --line-strong: rgba(244, 239, 231, 0.22);

  --ff-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ff-sans:  "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-script: "Pinyon Script", "Cormorant Garamond", cursive;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  background: var(--ink-900);
  color: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 400; line-height: 1.05; }
.serif { font-family: var(--ff-serif); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  letter-spacing: -0.01em;
}
.lead {
  color: var(--cream-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 56ch;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: clamp(5rem, 11vw, 9.5rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }
.bg-850 { background: var(--ink-850); }
.bg-800 { background: var(--ink-800); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 1rem; height: 1rem; transition: transform .35s var(--ease); }
.btn-gold { background: var(--gold); color: var(--ink-900); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--ink-900); color: var(--cream); }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-2px); }

.link-underline {
  position: relative; color: var(--cream);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding-bottom: 4px;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad-x);
  transition: background .5s var(--ease), padding .5s var(--ease),
              border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 12, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--ff-script); font-size: 2.1rem; letter-spacing: 0.01em;
  color: var(--cream); line-height: 1; padding-top: 3px;
}
.brand .accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim); position: relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; }
.nav-toggle, .nav-close { display: none; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; }
.nav-toggle svg, .nav-close svg { width: 1.6rem; height: 1.6rem; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ink-900);
  display: flex; flex-direction: column;
  padding: 2rem var(--pad-x) 3rem;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu nav { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu nav a {
  font-family: var(--ff-serif); font-size: clamp(2rem, 9vw, 3rem);
  color: var(--cream); padding: 0.4rem 0; transition: color .3s var(--ease);
}
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--gold); }
.mobile-menu .mm-foot { display: flex; gap: 1.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.mobile-menu .mm-foot a { color: var(--cream-dim); }
.mobile-menu .mm-foot a:hover { color: var(--gold); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media img { animation: kenburns 22s var(--ease) both; }
@keyframes kenburns {
  from { transform: scale(1.12) translateY(1.5%); }
  to   { transform: scale(1) translateY(0); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(14,12,11,0.92) 0%, rgba(14,12,11,0.30) 42%, rgba(14,12,11,0.55) 100%),
    radial-gradient(120% 80% at 50% 120%, rgba(14,12,11,0.7), transparent 60%);
}
.hero-content {
  position: relative; width: 100%;
  max-width: var(--container); margin-inline: auto;
  padding: 0 var(--pad-x) clamp(3.5rem, 9vh, 7rem);
}
.hero-title {
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.92; letter-spacing: -0.015em;
  margin: 1.6rem 0 1.4rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; }
.hero-title .italic { color: var(--gold-soft); }
.hero-sub {
  color: var(--cream-dim); font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 46ch; font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-meta {
  position: absolute; right: var(--pad-x); bottom: clamp(3.5rem, 9vh, 7rem);
  text-align: right; display: flex; flex-direction: column; gap: 0.4rem;
}
.hero-meta .k { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); }
.hero-meta .v { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--cream); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: var(--cream-dim); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--cream); animation: scrolldot 2.2s var(--ease) infinite;
}
@keyframes scrolldot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* hero entrance (CSS-only, no JS needed) */
.hero [data-anim] { opacity: 0; transform: translateY(28px); }
.hero.loaded [data-anim] {
  animation: fadeUp 1.1s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   MANIFESTO / INTRO
   ========================================================= */
.manifesto { text-align: center; }
.manifesto .big {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.18; letter-spacing: -0.01em;
  max-width: 22ch; margin: 1.8rem auto 0;
}
.manifesto .big em { color: var(--gold-soft); font-style: italic; }
.manifesto p.lead { margin: 1.8rem auto 0; text-align: center; }

/* marquee */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden; padding-block: 1.4rem; white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 38s linear infinite; }
.marquee-track span {
  font-family: var(--ff-serif); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--taupe);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   DUET / O NAS
   ========================================================= */
.duet { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.duet-media { position: relative; }
.duet-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; filter: grayscale(0.1); }
.duet-media .frame {
  position: absolute; inset: -14px; border: 1px solid var(--line); border-radius: 2px; z-index: -1;
}
.duet-names { display: flex; gap: 2rem; margin: 1.6rem 0; flex-wrap: wrap; }
.duet-names .who .role { font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.duet-names .who .name { font-family: var(--ff-serif); font-size: 1.8rem; }
.signature { font-family: var(--ff-serif); font-style: italic; font-size: 1.6rem; color: var(--gold-soft); margin-top: 1.4rem; }

/* =========================================================
   CINEMATIC PARALLAX BANDS
   ========================================================= */
.band {
  position: relative; min-height: clamp(520px, 88vh, 880px);
  display: flex; align-items: center; overflow: hidden; isolation: isolate;
}
.band-media { position: absolute; inset: -12% 0; z-index: -2; }
.band-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.band-veil { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(14,12,11,0.85), rgba(14,12,11,0.35) 60%, rgba(14,12,11,0.6)); }
.band-veil.center { background: linear-gradient(rgba(14,12,11,0.55), rgba(14,12,11,0.7)); }
.band .container { width: 100%; }

.play-btn {
  width: clamp(76px, 9vw, 110px); height: clamp(76px, 9vw, 110px); border-radius: 999px;
  border: 1px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream); background: rgba(244,239,231,0.04); backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  position: relative;
}
.play-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; border: 1px solid var(--gold);
  animation: pulse 2.6s var(--ease) infinite; opacity: 0;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }
.play-btn svg { width: 1.8rem; height: 1.8rem; margin-left: 4px; }
.play-btn:hover { background: var(--gold); color: var(--ink-900); border-color: var(--gold); transform: scale(1.06); }

.band-quote {
  font-family: var(--ff-serif); font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.22; max-width: 20ch; letter-spacing: -0.01em; text-align: center; margin-inline: auto;
}
.band-quote em { color: var(--gold-soft); font-style: italic; }

/* film section with embedded playlist */
.film-section { position: relative; overflow: hidden; isolation: isolate; }
.film-inner { width: 100%; max-width: 1000px; margin-inline: auto; text-align: center; }
.film-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line-strong); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); background: #000;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film-more { margin-top: 1.6rem; }

/* films page (filmy.html) — lazy facade cards */
.films-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 1.6rem 1.4rem; }
.film-card { display: flex; flex-direction: column; }
.film-media { position: relative; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden; background: #000; border: 1px solid var(--line); }
.film-media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.film-thumb { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; display: block; background: #000; }
.film-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .4s var(--ease); }
.film-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,11,0.55), transparent 55%); opacity: .75; transition: opacity .4s var(--ease); }
.film-thumb:hover img { transform: scale(1.05); }
.film-thumb:hover::after { opacity: .4; }
.film-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: clamp(58px, 7vw, 74px); height: clamp(58px, 7vw, 74px); border-radius: 999px;
  background: rgba(14,12,11,0.5); backdrop-filter: blur(4px); border: 1px solid var(--line-strong);
  display: grid; place-items: center; transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.film-thumb:hover .film-play { background: var(--gold); border-color: var(--gold); transform: translate(-50%, -50%) scale(1.08); }
.film-play svg { width: 1.6rem; height: 1.6rem; color: var(--cream); margin-left: 4px; transition: color .4s var(--ease); }
.film-thumb:hover .film-play svg { color: var(--ink-900); }
.film-meta { padding-top: 1rem; }
.film-tag { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.film-title { font-family: var(--ff-serif); font-size: 1.5rem; margin-top: 0.2rem; }
@media (max-width: 480px) { .films-grid { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY (FOTOGRAFIA)
   ========================================================= */
.gallery {
  columns: 3; column-gap: 1rem;
}
.gallery figure {
  position: relative; margin: 0 0 1rem; break-inside: avoid; overflow: hidden; border-radius: 2px;
  cursor: pointer;
}
.gallery figure img { width: 100%; transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,11,0.78), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery figcaption {
  position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2;
  font-family: var(--ff-serif); font-size: 1.3rem; color: var(--cream);
  transform: translateY(12px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.gallery figcaption .tag {
  display: block; font-family: var(--ff-sans); font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem;
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }
.gallery figure:hover figcaption { transform: translateY(0); opacity: 1; }

/* gallery groups (galeria.html) */
.gallery-group { padding-block: clamp(2.5rem, 5vw, 4rem); }
.gallery-group:first-of-type { padding-top: 0; }
.group-head { text-align: center; margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.group-head .eyebrow { margin-bottom: 0.6rem; }
.group-title { font-family: var(--ff-serif); font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.01em; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80; background: rgba(8,7,6,0.96);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1300px); max-height: 86vh; object-fit: contain; border-radius: 2px; }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; color: var(--cream); width: 2.6rem; height: 2.6rem; }
.lightbox .lb-close svg { width: 1.8rem; height: 1.8rem; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); width: 3rem; height: 3rem; opacity: .7; transition: opacity .3s; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 1rem; } .lightbox .lb-next { right: 1rem; }
.lightbox .lb-nav svg { width: 2rem; height: 2rem; }

/* =========================================================
   OFERTA
   ========================================================= */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.offer {
  border: 1px solid var(--line); border-radius: 3px; padding: 2.4rem 2rem;
  display: flex; flex-direction: column; background: var(--ink-850);
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.offer:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.offer.featured { background: var(--ink-800); border-color: var(--gold); position: relative; }
.offer.featured::before {
  content: "Sztandarowy pakiet"; position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink-900); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 999px; white-space: nowrap;
}
.offer .o-name { font-family: var(--ff-serif); font-size: 2rem; }
.offer .o-tag { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.offer .o-list { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.4rem 0 2rem; }
.offer .o-list li { display: flex; gap: 0.7rem; color: var(--cream-dim); font-size: 0.95rem; }
.offer .o-list svg { width: 1.05rem; height: 1.05rem; color: var(--gold); flex: none; margin-top: 0.28rem; }
.offer .o-price { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--cream); margin-bottom: 1.4rem; }
.offer .o-price span { color: var(--taupe); font-size: 0.85rem; }
.offer .btn { margin-top: auto; justify-content: center; }

/* =========================================================
   Q&A
   ========================================================= */
.qa { max-width: 820px; margin-inline: auto; }
.qa-item { border-bottom: 1px solid var(--line); }
.qa-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--ff-serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--cream);
  transition: color .3s var(--ease);
}
.qa-q:hover { color: var(--gold-soft); }
.qa-q .ic { width: 1.4rem; height: 1.4rem; flex: none; transition: transform .4s var(--ease); color: var(--gold); }
.qa-item.open .qa-q .ic { transform: rotate(45deg); }
.qa-a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.qa-a p { color: var(--cream-dim); padding-bottom: 1.5rem; max-width: 64ch; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-info .ci-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.contact-info .ci-item svg { width: 1.3rem; height: 1.3rem; color: var(--gold); flex: none; }
.contact-info .ci-item .k { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--taupe); }
.contact-info .ci-item .v { font-size: 1.05rem; color: var(--cream); }
.socials { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.socials a {
  width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream-dim);
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 1.2rem; height: 1.2rem; }

.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.field input, .field textarea {
  background: var(--ink-800); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.85rem 1rem; color: var(--cream); font-family: var(--ff-sans); font-size: 0.95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--gold); background: var(--ink-700); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { justify-content: center; margin-top: 0.4rem; }
.form-note { font-size: 0.78rem; color: var(--taupe); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer .brand { font-size: 3rem; }
.footer-nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-nav a { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-dim); transition: color .3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-size: 0.74rem; color: var(--taupe); letter-spacing: 0.04em; }

/* =========================================================
   GRAIN OVERLAY (cinematic)
   ========================================================= */
.grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* =========================================================
   FILM band crop fix (reveal couple at bottom of frame)
   ========================================================= */
#film .band-media img { object-position: 50% 82%; }

/* =========================================================
   STORY NARRATIVE — "Co od nas otrzymacie"
   ========================================================= */
.story { max-width: 760px; margin-inline: auto; text-align: center; }
.story .body { text-align: left; margin-top: 2rem; }
.story .body p { color: var(--cream-dim); font-size: clamp(1rem, 1.3vw, 1.12rem); margin-top: 1.15rem; }
.story .body p.intro::first-letter {
  font-family: var(--ff-serif); float: left; font-size: 4.4rem; line-height: 0.72;
  padding: 0.5rem 0.7rem 0 0; color: var(--gold-soft);
}
.story .pull {
  font-family: var(--ff-serif); font-style: italic; color: var(--gold-soft);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem); text-align: center; line-height: 1.3;
  margin: 2.4rem auto; max-width: 22ch;
}

/* =========================================================
   FACTS — "Poza kadrem"
   ========================================================= */
.facts { margin-top: clamp(2.8rem, 6vw, 4.5rem); border-top: 1px solid var(--line); padding-top: clamp(2.2rem, 4vw, 3.2rem); }
.facts .eyebrow { margin-bottom: 1rem; }
.facts h3 { font-family: var(--ff-serif); font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.1rem 2.6rem; margin-top: 1.8rem; }
.fact { position: relative; padding-left: 1.6rem; color: var(--cream-dim); font-size: 0.99rem; line-height: 1.55; }
.fact::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 7px; height: 7px; border-radius: 999px; background: var(--gold); }
.fact strong { color: var(--cream); font-weight: 400; }

/* =========================================================
   REVIEWS / OPINIE
   ========================================================= */
.reviews-head { text-align: center; margin-bottom: 3rem; }
.g-rating { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.2rem; color: var(--cream); font-size: 0.95rem; }
.g-rating .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.g-rating .stars svg { width: 1.1rem; height: 1.1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.review-card {
  border: 1px solid var(--line); border-radius: 3px; padding: 2rem 1.9rem; background: var(--ink-850);
  display: flex; flex-direction: column; gap: 1.1rem; transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.review-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.review-card .stars { display: flex; gap: 2px; color: var(--gold); }
.review-card .stars svg { width: 1rem; height: 1rem; }
.review-card p { color: var(--cream); font-family: var(--ff-serif); font-style: italic; font-size: 1.2rem; line-height: 1.5; }
.review-card .who { margin-top: auto; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.review-card.placeholder p { color: var(--taupe); }
.reviews-cta { text-align: center; margin-top: 2.8rem; }
.reviews-widget { min-height: 160px; }
.reviews-pending {
  color: var(--taupe); font-size: 0.95rem; text-align: center; max-width: 50ch;
  margin: 0 auto; padding: 2.6rem; border: 1px dashed var(--line); border-radius: 3px;
}

/* =========================================================
   FOOTER PARTNER badge
   ========================================================= */
.footer-partner { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-partner .k { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.footer-partner img { width: 64px; height: 64px; opacity: 0.85; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.footer-partner a:hover img { opacity: 1; transform: translateY(-3px); }

/* contact info as link */
a.ci-item { transition: color .3s var(--ease); }
a.ci-item:hover .v { color: var(--gold); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .gallery { columns: 2; }
  .offers { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .offer.featured { order: -1; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle, .nav-close { display: inline-flex; }
  .duet { grid-template-columns: 1fr; }
  .duet-media { order: -1; }
  .contact { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
}
@media (max-width: 560px) {
  .gallery { columns: 1; }
  .form .row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .footer-grid { flex-direction: column; }
  .scroll-cue { display: none; }
  .hero-content { padding-bottom: 3rem; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .hero-media img { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero [data-anim] { opacity: 1; transform: none; }
}
