/* ============================================================
   Emilia i Łukasz — Oprawa muzyczna ślubu
   ============================================================ */

:root {
  --cream:   #f7f3ec;
  --ivory:   #fffdf9;
  --charcoal:#1c1a17;
  --ink:     #2b2823;
  --muted:   #6f6a61;
  --gold:    #b08a4f;
  --gold-dk: #97743c;
  --line:    #e6ddcf;
  --shadow:  0 18px 50px rgba(40, 33, 22, .10);
  --radius:  14px;
  --maxw:    1140px;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', system-ui, sans-serif;
  --script:  'Great Vibes', cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: #e4c98f; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: .01em;
}
.section-title.center { text-align: center; }
.section-title.light { color: #fffaf0; }

.section-lead {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-lead.light { color: rgba(255,255,255,.78); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 34px;
  border-radius: 50px;
  transition: all .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 138, 79, .32);
}
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(176, 138, 79, .4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 8px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 249, .96);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
  transition: color .35s ease;
}
.brand span { color: var(--gold); font-style: italic; }
.scrolled .brand { color: var(--charcoal); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-weight: 400;
  position: relative;
  transition: color .25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }
.scrolled .nav-links a { color: var(--ink); }
.scrolled .nav-links a.active { color: var(--gold-dk); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.5);
  padding: 8px 20px !important;
  border-radius: 50px;
}
.nav-cta::after { display: none; }
.scrolled .nav-cta { border-color: var(--gold); color: var(--gold-dk) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all .3s ease; }
.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/nowe_tlo.jpg') 68% 38% / cover no-repeat;
  background-image: image-set(url('../images/nowe_tlo.webp') type('image/webp'), url('../images/nowe_tlo.jpg') type('image/jpeg'));
  background-position: 68% 38%; background-size: cover; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.45) 0%, rgba(20,16,12,.30) 40%, rgba(20,16,12,.6) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 24px; color: #fff; max-width: 820px; }
.hero-eyebrow {
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  color: #f0e3c9; margin-bottom: 22px; font-weight: 400;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.hero-title .amp { font-family: var(--script); color: var(--gold); font-size: .8em; padding: 0 .12em; }
.hero-sub {
  margin: 26px auto 38px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,.92);
  max-width: 620px;
}
.hero-locations {
  margin: 26px auto 0;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 50% { opacity: 1; } 100% { opacity: 0; top: 22px; } }

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: 110px 0; }
.section-alt { background: var(--cream); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   O NAS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow); position: relative; z-index: 2;
  width: 100%; height: 100%; aspect-ratio: 2 / 3; object-fit: cover;
}
.photo-frame {
  position: absolute; inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold); border-radius: var(--radius); z-index: 1;
}
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text .section-title { margin-bottom: 24px; }
.about-people { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 30px 0 24px; }
.person h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.person p { font-size: .95rem; margin: 0; }
.about-note {
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 22px;
  font-size: .98rem;
  color: var(--ink) !important;
}
.about-note strong { color: var(--gold-dk); font-weight: 600; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.section-proof { padding: 90px 0; text-align: center; }
.proof-wrap { display: flex; justify-content: center; margin-top: 40px; }

/* ============================================================
   OFERTA
   ============================================================ */
.offer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer-card--accent {
  background: linear-gradient(160deg, #fffdf9, #f6efe2);
  border-color: var(--gold);
}
.offer-badge {
  display: inline-block;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600;
  background: rgba(176,138,79,.1); padding: 6px 14px; border-radius: 50px; margin-bottom: 18px;
}
.offer-card h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--charcoal); margin-bottom: 14px; line-height: 1.2; }
.offer-card p { color: var(--muted); font-size: .98rem; margin-bottom: 12px; }
.offer-card strong { color: var(--gold-dk); font-weight: 600; }
.offer-list { list-style: none; margin: 14px 0; }
.offer-list li { padding: 8px 0 8px 26px; position: relative; font-size: .96rem; color: var(--ink); border-bottom: 1px dashed var(--line); }
.offer-list li::before { content: '♪'; position: absolute; left: 0; color: var(--gold); }
.offer-list em { color: var(--muted); font-style: italic; }
.offer-small { font-size: .88rem !important; font-style: italic; }

.offer-note {
  margin-top: 50px; text-align: center;
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.offer-note p { color: var(--muted); margin-bottom: 24px; }
.offer-note strong { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   REPERTUAR
   ============================================================ */
.rep-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
.rep-block {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 38px;
}
.rep-block--secular { background: linear-gradient(160deg, #fffdf9, #f6efe2); border-color: var(--gold); }
.rep-title {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.rep-tag {
  font-family: var(--sans); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: 4px 12px; border-radius: 50px; font-weight: 600;
}
.rep-intro { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.rep-subtitle {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--gold-dk);
  margin: 26px 0 12px;
}
.rep-subtitle:first-of-type { margin-top: 4px; }
.song-list { list-style: none; columns: 2; column-gap: 30px; }
.rep-block--secular .song-list { columns: 1; }
.song-list li {
  break-inside: avoid; padding: 7px 0 7px 22px; position: relative;
  font-size: .94rem; color: var(--ink); border-bottom: 1px solid rgba(230,221,207,.6);
}
.song-list li::before { content: '♪'; position: absolute; left: 0; color: var(--gold); font-size: .85em; }

/* ============================================================
   NAGRANIA
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.video-card { background: var(--ivory); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s ease; }
.video-card:hover { transform: translateY(-5px); }
.video-frame { position: relative; padding-bottom: 56.25%; height: 0; background: #111; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card figcaption {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal);
  padding: 18px 24px; text-align: center;
}
.video-card figcaption span { font-family: var(--sans); font-size: .82rem; font-weight: 300; color: var(--muted); font-style: italic; }
.video-card--featured { grid-column: 1 / -1; border: 1px solid var(--gold); }
.video-card--featured .video-frame { padding-bottom: 42%; }
.video-more { text-align: center; margin-top: 34px; color: var(--muted); font-size: .96rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.section-contact {
  position: relative;
  background:
    linear-gradient(rgba(20,16,12,.86), rgba(20,16,12,.92)),
    url('../images/nowe_tlo.jpg') center / cover fixed no-repeat;
  color: #fff;
}
.contact-form {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 44px;
  backdrop-filter: blur(6px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; display: flex; flex-direction: column; }
.form-group label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #e4c98f; margin-bottom: 8px; font-weight: 500;
}
.form-group input, .form-group textarea {
  font-family: var(--sans); font-size: .95rem; font-weight: 300;
  background: rgba(255,255,255,.95); color: var(--ink);
  border: 1px solid transparent; border-radius: 8px; padding: 13px 16px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,138,79,.3);
}
.form-group textarea { resize: vertical; }
.hidden-field { display: none; }
#data { cursor: pointer; }

/* flatpickr — dopasowanie do motywu (złoto) */
.flatpickr-calendar { font-family: var(--sans); box-shadow: var(--shadow); border-radius: 10px; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange { background: var(--gold); border-color: var(--gold); }
.flatpickr-day:hover { background: var(--cream); }
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day.today:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday { color: var(--charcoal); }
span.flatpickr-weekday { color: var(--gold-dk); }
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg { fill: var(--gold); }

.contact-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  max-width: 720px; margin: 44px auto 0; text-align: center;
}
.contact-item .contact-label {
  display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.contact-item p { color: rgba(255,255,255,.9); font-size: .98rem; line-height: 1.8; }
.contact-item a:hover { color: #e4c98f; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 56px 0 34px; text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: #fff; }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-tag { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 6px; }
.footer-social { display: flex; gap: 16px; justify-content: center; margin: 26px 0; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease; }
.footer-social a:hover { background: rgba(176,138,79,.3); transform: translateY(-3px); }
.footer-social img { width: 20px; height: 20px; filter: invert(1) brightness(1.6); }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 12px; }

/* ============================================================
   WSPÓŁPRACA (steps)
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  display: inline-block; font-family: var(--serif); font-size: 2.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: 14px;
}
.step-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   GALERIA + LIGHTBOX
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-item {
  padding: 0; border: 0; cursor: pointer; background: none;
  border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after {
  content: '＋'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; background: rgba(20,16,12,.35); opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,12,9,.94); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 0; cursor: pointer;
  border-radius: 50%; width: 50px; height: 50px; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .25s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   FORM CONSENT (RODO)
   ============================================================ */
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.form-consent input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); cursor: pointer;
}
.form-consent label { font-size: .82rem; color: rgba(255,255,255,.78); font-weight: 300; line-height: 1.5; letter-spacing: 0; text-transform: none; margin: 0; }
.form-consent a { color: #e4c98f; text-decoration: underline; }
.form-consent .req { color: var(--gold); }
.form-note { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 14px; text-align: center; }

/* ============================================================
   FLOATING CALL BUTTON (mobile)
   ============================================================ */
.call-fab {
  display: none; position: fixed; bottom: 18px; right: 18px; z-index: 200;
  align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 14px 20px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(176,138,79,.5);
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse { 0%,100% { box-shadow: 0 8px 24px rgba(176,138,79,.5); } 50% { box-shadow: 0 8px 30px rgba(176,138,79,.85); } }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 300;
  max-width: 760px; margin: 0 auto;
  background: rgba(28,26,23,.97); color: rgba(255,255,255,.85);
  border: 1px solid rgba(176,138,79,.4); border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  padding: 20px 24px;
  display: none; align-items: center; gap: 22px;
  backdrop-filter: blur(6px);
  transform: translateY(20px); opacity: 0; transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.show { display: flex; transform: translateY(0); opacity: 1; }
.cookie-text p { font-size: .88rem; font-weight: 300; line-height: 1.6; margin: 0; }
.cookie-text a { color: #e4c98f; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 24px; font-size: .72rem; }
.btn-ghost-dark { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.35); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.1); border-color: #fff; }

@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 14px; text-align: center; bottom: 0; left: 0; right: 0; border-radius: var(--radius) var(--radius) 0 0; }
  .cookie-actions { justify-content: center; }
  .cookie-actions .btn { flex: 1; }
}

/* footer links */
.footer-links { margin-top: 10px; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 60px 24px 28px;
  position: relative;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-dk); }
.faq-item summary::after {
  content: '';
  position: absolute; right: 28px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-answer { padding: 0 28px 26px; }
.faq-answer p { color: var(--muted); font-size: 1rem; margin: 0; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(20,16,12,.78), rgba(20,16,12,.86)),
    url('../images/nowe_tlo.jpg') center / cover no-repeat;
  color: #fff; padding: 60px 24px;
}
.thankyou-content { position: relative; z-index: 2; max-width: 620px; }
.thankyou-icon {
  width: 96px; height: 96px; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(176,138,79,.12); border: 1px solid rgba(176,138,79,.4);
  animation: popIn .5s ease both;
}
@keyframes popIn { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thankyou-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 4.2rem); line-height: 1; margin: 8px 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.thankyou-text { color: rgba(255,255,255,.9); font-size: 1.08rem; font-weight: 300; margin-bottom: 36px; }
.thankyou-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.thankyou-signature {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #fff; margin-top: 44px;
}
.thankyou-signature span { font-family: var(--script); color: var(--gold); padding: 0 .12em; }

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal { padding: 140px 0 90px; }
.legal .section-title { margin: 8px 0 20px; }
.legal-intro { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--charcoal); margin: 30px 0 10px; }
.legal p { color: var(--ink); margin-bottom: 12px; }
.legal a { color: var(--gold-dk); text-decoration: underline; }
.legal-back { margin-top: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: .72rem; letter-spacing: .08em; }
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 480px; margin: 0 auto; }
  .offer-cards { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .rep-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links { gap: 0; }
  .call-fab { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,253,249,.99);
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav-links.open { max-height: calc(100vh - 70px); overflow-y: auto; padding: 10px 0; }
  .nav-links a { color: var(--ink); padding: 14px 24px; width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { border: 0; margin: 6px 24px; background: var(--gold); color: #fff !important; text-align: center; }

  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; gap: 24px; }
  .about-people { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .section-contact { background-attachment: scroll; }
  .song-list { columns: 1; }
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
  .offer-card, .rep-block { padding: 30px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
