/* ═══════════════════════════════════════════════════════════════
   MAKE & SHAKE — Landing Pages CSS
   Współdzielony plik dla podstron: /wesela, /eventy-korporacyjne, /mobilny-bar
   Dziedziczy design z głównego styles.css, ale dostosowany pod standardowy scroll
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonty (te same co na stronie głównej) ─────────────────────── */
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-1.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-2.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-3.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-4.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-5.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-6.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-7.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-8.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

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

:root {
  --black: #080808;
  --dark1: #101010;
  --dark2: #151515;
  --dark3: #1e1e1e;
  --white: #f5f5f0;
  --gold:  #c9a96e;
  --gold2: #e2c98a;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Noir Pro', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation (uproszczona, zawsze widoczna) ──────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,.95), rgba(8,8,8,.7) 70%, transparent);
  transition: background .3s;
}
.lp-nav.scrolled { background: rgba(8,8,8,.95); backdrop-filter: blur(10px); }
.lp-nav-logo { height: 42px; width: auto; cursor: pointer; }
.lp-nav-home {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); text-decoration: none;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  opacity: .7;
  transition: opacity .2s, color .2s;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.lp-nav-home:hover { opacity: 1; color: var(--gold); }
.lp-nav-home i { font-size: .8rem; }
.lp-nav-left { display: flex; align-items: center; }
.lp-nav-right { display: flex; align-items: center; gap: 24px; }
.lp-nav-phone {
  color: var(--white); text-decoration: none;
  font-size: .85rem; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.lp-nav-phone:hover { color: var(--gold); }
.lp-nav-phone i { color: var(--gold); }
.lp-nav-cta {
  background: var(--gold); color: #000;
  text-decoration: none; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 11px 20px; transition: background .25s, transform .2s;
}
.lp-nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

@media (max-width: 640px) {
  .lp-nav { padding: 14px 16px; }
  .lp-nav-logo { height: 34px; }
  .lp-nav-phone span { display: none; }
  .lp-nav-cta { padding: 9px 14px; font-size: .65rem; }
  .lp-nav-home { margin-left: 12px; padding-left: 12px; font-size: 0; }
  .lp-nav-home i { font-size: .95rem; }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.4) contrast(1.05);
  transform: scale(1.04);
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,.85) 0%, rgba(8,8,8,.55) 60%, rgba(8,8,8,.75) 100%);
}
.lp-hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
}
.lp-tag {
  display: inline-block;
  color: var(--gold);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase;
  padding-bottom: 8px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(201,169,110,.4);
}
.lp-hero h1 {
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
}
.lp-hero h1 em {
  font-style: italic; color: var(--gold); font-weight: 400;
}
.lp-hero-sub {
  margin-top: 28px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  opacity: .85;
  max-width: 640px;
}
.lp-hero-cta-wrap {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 16px;
}
.lp-btn-gold {
  background: var(--gold); color: #000;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Noir Pro', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 32px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background .25s, transform .2s;
}
.lp-btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.lp-btn-lined {
  border: 1px solid rgba(255,255,255,.3); color: var(--white);
  text-decoration: none;
  font-family: 'Noir Pro', sans-serif;
  font-size: .8rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 32px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: border-color .25s, color .25s;
}
.lp-btn-lined:hover { border-color: var(--gold); color: var(--gold); }

.lp-trust {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  font-size: .78rem; opacity: .75;
}
.lp-trust span {
  display: inline-flex; align-items: center; gap: 10px;
}
.lp-trust i { color: var(--gold); font-size: .7rem; }

/* ── Sekcje ────────────────────────────────────────────────────── */
.lp-section {
  padding: 100px 60px;
  position: relative;
}
.lp-section.alt { background: var(--dark1); }
.lp-section.dark2 { background: var(--dark2); }

.lp-section-header {
  max-width: 760px;
  margin-bottom: 60px;
}
.lp-section-label {
  color: var(--gold);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
}
.lp-section-title {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
}
.lp-section-title em {
  font-style: italic; color: var(--gold); font-weight: 400;
}
.lp-section-lead {
  margin-top: 24px;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  opacity: .75;
  max-width: 620px;
}

/* ── Oferta — karty usług ──────────────────────────────────────── */
.lp-offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,.05);
}
.lp-offer-card {
  background: var(--dark1);
  padding: 44px 32px;
  transition: background .3s, transform .3s;
}
.lp-offer-card:hover { background: var(--dark3); transform: translateY(-4px); }
.lp-offer-num {
  color: var(--gold);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em;
  margin-bottom: 20px;
}
.lp-offer-icon {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.lp-offer-title {
  font-size: 1.2rem; font-weight: 500;
  margin-bottom: 14px;
}
.lp-offer-text {
  font-size: .92rem; font-weight: 300;
  line-height: 1.7; opacity: .7;
}

/* ── Proces / kroki ────────────────────────────────────────────── */
.lp-steps {
  display: grid;
  gap: 0;
  max-width: 860px;
}
.lp-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lp-step-num {
  color: var(--gold);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .2em;
  padding-top: 6px;
}
.lp-step-title {
  font-size: 1.1rem; font-weight: 500;
  margin-bottom: 8px;
}
.lp-step-desc {
  font-size: .92rem; font-weight: 300;
  line-height: 1.7; opacity: .7;
}

/* ── Ceny ──────────────────────────────────────────────────────── */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.lp-price-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 34px 28px;
  background: var(--dark1);
  transition: border-color .25s;
}
.lp-price-card:hover { border-color: var(--gold); }
.lp-price-card.featured { border-color: var(--gold); background: var(--dark2); }
.lp-price-label {
  color: var(--gold);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 16px;
}
.lp-price-value {
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 6px;
}
.lp-price-value span { color: var(--gold); font-style: italic; }
.lp-price-unit {
  font-size: .75rem; opacity: .55;
  margin-bottom: 22px;
}
.lp-price-incl {
  list-style: none;
  font-size: .88rem; font-weight: 300;
  line-height: 1.9; opacity: .8;
}
.lp-price-incl li {
  padding-left: 22px;
  position: relative;
}
.lp-price-incl li::before {
  content: '◆';
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .6rem;
}
.lp-price-note {
  margin-top: 36px;
  padding: 22px 26px;
  background: rgba(201,169,110,.06);
  border-left: 2px solid var(--gold);
  font-size: .85rem; font-weight: 300;
  line-height: 1.7; opacity: .85;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.lp-faq {
  max-width: 860px;
}
.lp-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lp-faq-q {
  padding: 24px 0;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-size: 1.02rem; font-weight: 400;
  list-style: none;
  transition: color .2s;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-q::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem; font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
}
.lp-faq-item[open] .lp-faq-q { color: var(--gold); }
.lp-faq-item[open] .lp-faq-q::after { content: '−'; transform: rotate(0deg); }
.lp-faq-a {
  padding: 0 0 24px;
  font-size: .92rem; font-weight: 300;
  line-height: 1.75; opacity: .78;
  max-width: 760px;
}

/* ── Opinie ────────────────────────────────────────────────────── */
.lp-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.lp-review {
  background: var(--dark1);
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,.05);
}
.lp-review-stars { color: var(--gold); margin-bottom: 16px; font-size: .8rem; letter-spacing: .1em; }
.lp-review-text {
  font-size: .95rem; font-weight: 300; font-style: italic;
  line-height: 1.75; opacity: .9;
  margin-bottom: 22px;
}
.lp-review-author { font-size: .82rem; font-weight: 500; }
.lp-review-meta { font-size: .72rem; opacity: .5; margin-top: 4px; }

/* ── Formularz ─────────────────────────────────────────────────── */
.lp-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.lp-contact-info { padding-right: 20px; }
.lp-contact-line {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
}
.lp-contact-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem; flex-shrink: 0;
}
.lp-contact-label {
  font-size: .62rem; letter-spacing: .22em;
  text-transform: uppercase; opacity: .45;
}
.lp-contact-value { font-size: .98rem; margin-top: 3px; }
.lp-contact-value a { color: var(--white); text-decoration: none; }
.lp-contact-value a:hover { color: var(--gold); }

.lp-form { display: grid; gap: 16px; }
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lp-form-group label {
  display: block;
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; opacity: .5;
  margin-bottom: 8px;
}
.lp-form-group label .req { color: var(--gold); }
.lp-form-group input,
.lp-form-group select,
.lp-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: 'Noir Pro', sans-serif;
  font-size: .92rem; font-weight: 300;
  padding: 12px 14px;
  transition: border-color .2s;
  outline: none;
}
.lp-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.lp-form-group textarea { resize: vertical; min-height: 110px; }
.lp-form-group input:focus,
.lp-form-group select:focus,
.lp-form-group textarea:focus { border-color: var(--gold); }
.lp-form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .78rem; font-weight: 300;
  line-height: 1.6; opacity: .75;
}
.lp-form-check input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; accent-color: var(--gold); }
.lp-form-check a { color: var(--gold); text-decoration: underline; }

/* ── Sticky mobile CTA ─────────────────────────────────────────── */
.lp-sticky {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px;
}
.lp-sticky-inner { display: flex; gap: 10px; }
.lp-sticky a {
  flex: 1;
  padding: 13px 16px;
  text-decoration: none; text-align: center;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-sticky-phone { border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.lp-sticky-phone i { color: var(--gold); }
.lp-sticky-cta { background: var(--gold); color: #000; }

/* ── Footer ────────────────────────────────────────────────────── */
.lp-footer {
  padding: 48px 60px 30px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.lp-footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.lp-footer-nav a {
  color: var(--white); text-decoration: none;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: .6;
  transition: opacity .2s, color .2s;
}
.lp-footer-nav a:hover { opacity: 1; color: var(--gold); }
.lp-footer-meta {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; opacity: .3;
}

/* ── Fade-up on view (reuse z głównej strony) ──────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-contact { grid-template-columns: 1fr; gap: 40px; }
  .lp-contact-info { padding-right: 0; }
  .lp-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-hero { padding: 110px 24px 60px; min-height: auto; }
  .lp-section { padding: 70px 24px; }
  .lp-footer { padding: 40px 24px 100px; }
  .lp-sticky { display: block; }
  body { padding-bottom: 64px; }
  .lp-step { grid-template-columns: 48px 1fr; gap: 16px; padding: 22px 0; }
  .lp-trust { gap: 16px 24px; font-size: .72rem; }
  .lp-hero-cta-wrap { gap: 12px; }
  .lp-btn-gold, .lp-btn-lined { padding: 14px 22px; font-size: .72rem; }
  .lp-offer-card { padding: 34px 24px; }
  .lp-price-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .lp-hero { padding: 100px 18px 50px; }
  .lp-section { padding: 60px 18px; }
  .lp-hero h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .lp-hero-sub { font-size: .92rem; margin-top: 20px; }
  .lp-btn-gold, .lp-btn-lined { width: 100%; justify-content: center; }
  .lp-offer { grid-template-columns: 1fr; }
}
