:root {
  --bg: #fff8f5;
  --bg-soft: #fffdfb;
  --card: rgba(255, 255, 255, 0.86);
  --text: #2b2023;
  --muted: #7b6b70;
  --rose: #b75d69;
  --rose-dark: #8d3443;
  --gold: #d8a95d;
  --border: rgba(183, 93, 105, 0.18);
  --shadow: 0 24px 80px rgba(85, 49, 56, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 220, 226, .85), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(255, 241, 207, .75), transparent 38rem),
    var(--bg);
}
body.modal-open {
  overflow: hidden;
}

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

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .5)),
    url("https://i.postimg.cc/C1NFmgq3/41399d06-8f44-4ff6-8304-c08dec1bf776.jpg") center/cover no-repeat;
  transition: opacity .4s ease, visibility .4s ease;
}
body.modal-open .welcome-modal {
  background:
    linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .76)),
    url("https://i.postimg.cc/C1NFmgq3/41399d06-8f44-4ff6-8304-c08dec1bf776.jpg") center/cover no-repeat;
}
.welcome-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.welcome-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 56px);
  text-align: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.welcome-card h1 { margin: 8px 0 14px; font-size: clamp(34px, 7vw, 68px); line-height: .98; }
.welcome-card p { color: var(--muted); font-size: 18px; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px clamp(18px, 5vw, 72px);
  color: white;

  transition: background .3s ease, backdrop-filter .3s ease;
}

.nav.scrolled {
  background: rgba(43, 32, 35, 0.85);
}
.logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  font-weight: 800;
  letter-spacing: -1px;
  backdrop-filter: blur(10px);
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  font: inherit;
  font-size: 14px;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.nav-contact {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--rose);
  border: 1px solid #6f343b;
  color: white;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-contact:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}
.nav-toggle {
  position: relative;
  z-index: 1001;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 15px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 180px 20px 72px;
  text-align: center;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(42, 24, 28, .35), rgba(42, 24, 28, .72)),
    url("https://i.postimg.cc/C1NFmgq3/41399d06-8f44-4ff6-8304-c08dec1bf776.jpg") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(transparent, var(--bg));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(2px);
}
.hero .eyebrow {
  color: #ffe7bd;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .45);
}
.hero h1 {
  margin: 8px 0;
  font-size: clamp(54px, 11vw, 132px);
  line-height: .88;
  letter-spacing: -5px;
  text-wrap: balance;
}
.hero h1 span { color: #ffdca8; }
.hero-date { font-size: clamp(17px, 2.6vw, 24px); opacity: .92; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(85, 49, 56, .14); }
.btn-primary { background: var(--rose); color: white; border-color: var(--rose); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-ghost { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.42); backdrop-filter: blur(10px); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .23em;
  font-weight: 900;
}
h2 {
  margin: 0 0 34px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -2px;
}
h3 { margin: 0 0 10px; font-size: 24px; }
p { line-height: 1.7; }
.muted { color: var(--muted); }

.place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.place-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.countdown-section {
  width: min(980px, calc(100% - 36px));
  text-align: center;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.countdown div {
  padding: clamp(18px, 4vw, 30px);
  border-radius: 24px;
  background: linear-gradient(180deg, white, #fff3f1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.countdown strong {
  display: block;
  font-size: clamp(34px, 7vw, 62px);
  line-height: 1;
  color: var(--rose-dark);
}
.countdown span { color: var(--muted); font-weight: 700; }
.countdown-note { color: var(--muted); font-weight: 700; }

.place-card { display: grid; grid-template-columns: .92fr 1.08fr; min-height: 360px; }
.place-card img { width: 100%; height: 100%; object-fit: cover; }
.place-content { padding: clamp(22px, 4vw, 36px); }
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.timeline-program {
  text-align: center;
  width: min(860px, calc(100% - 36px));
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 56px);
  color: #ffe8bd;
  background: #3a1d11;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.timeline-program .eyebrow {
  color: #f4c982;
}
.timeline-program h2 {
  color: #fff3d7;
}
.program-timeline {
  --program-icon-column: min(220px, 34vw);
  --program-dot-column: 42px;
  --program-line-offset: 21px;
  position: relative;
  display: grid;
  gap: clamp(34px, 6vw, 54px);
  max-width: 640px;
  margin: 0 auto;
}
.program-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--program-icon-column) + var(--program-line-offset));
  width: 2px;
  background: rgba(255, 255, 255, .9);
  transform: translateX(-50%);
}
.program-step {
  position: relative;
  display: grid;
  grid-template-columns: var(--program-icon-column) var(--program-dot-column) 1fr;
  gap: 0;
  align-items: center;
  min-height: 106px;
  text-align: left;
}
.program-icon {
  display: flex;
  justify-content: center;
  padding-right: clamp(18px, 4vw, 34px);
}
.program-icon img {
  width: clamp(82px, 13vw, 118px);
  height: clamp(82px, 13vw, 118px);
  object-fit: contain;
  filter: sepia(1) saturate(.75) brightness(1.85);
}
.program-dot {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  justify-self: center;
  border-radius: 999px;
  background: white;
}
.program-copy {
  padding-left: clamp(18px, 4vw, 34px);
}
.program-copy time {
  display: block;
  color: #ffe8bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.5vw, 36px);
  font-weight: 700;
  line-height: 1;
}
.program-copy h3 {
  margin: 16px 0 0;
  color: #ffe8bd;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 500;
  line-height: 1.35;
}

.menu {
  text-align: center;
}
.menu-list {
  display: grid;
  gap: 18px;
  width: min(920px, 100%);
  margin: 0 auto;
}
.menu-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.menu-card time {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 22px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.menu-card h3 {
  margin-bottom: 12px;
  color: var(--rose-dark);
}
.menu-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}
.menu-card li::marker {
  color: var(--gold);
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(20, 12, 14, .58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.contact-card {
  position: relative;
  width: min(460px, 100%);
  padding: clamp(28px, 6vw, 42px);
  text-align: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(20, 12, 14, .26);
}
.contact-card h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 6vw, 48px);
}
.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--rose-dark);
  background: #fff4f2;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--text);
  background: #fff8f5;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.contact-list span {
  color: var(--muted);
  font-weight: 800;
}
.contact-list strong {
  color: var(--rose-dark);
  font-size: 20px;
}

.invitation { text-align: center; }
.invitation img {
  width: min(450px, 100%);
  margin: 0 auto;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.thanks {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.thanks img { border-radius: var(--radius); box-shadow: var(--shadow); }
.thanks p:last-child { color: var(--muted); font-size: 18px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 48px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.footer a { color: var(--rose-dark); font-weight: 900; }

@media (max-width: 900px) {
  .nav { align-items: center; }
  .nav-links { gap: 8px; }
  .place-grid, .thanks { grid-template-columns: 1fr; }
  .place-card { grid-template-columns: 1fr; }
  .place-card img { aspect-ratio: 16/10; height: auto; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .program-timeline {
    --program-icon-column: min(190px, 34vw);
    --program-dot-column: 36px;
    --program-line-offset: 18px;
  }
  .menu-card { grid-template-columns: 120px 1fr; }
  .hero h1 { letter-spacing: -3px; }
}

@media (max-width: 560px) {
  .nav {
    position: fixed;
    align-items: center;
    padding: 18px;
  }
  .nav-toggle {
    display: flex;
  }
.nav-links {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: rgba(20, 12, 14, .82);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }
  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a,
  .nav-contact {
    justify-content: center;
    width: min(280px, 100%);
    padding: 16px 14px;
    font-size: 17px;
  }
  .hero { padding-top: 96px; }
  .hero-content { padding: 28px 18px; }
  .hero h1 { font-size: 52px; letter-spacing: -2px; }
  .timeline-program { width: min(100% - 24px, 520px); padding-inline: 18px; }
  .program-timeline {
    --program-icon-column: 70px;
    --program-dot-column: 36px;
    --program-line-offset: 18px;
    gap: 30px;
  }
  .program-step {
    min-height: 88px;
  }
  .program-icon { justify-content: flex-start; padding-right: 12px; }
  .program-icon img { width: 62px; height: 62px; }
  .program-copy { padding-left: 14px; }
  .menu-card { grid-template-columns: 1fr; gap: 18px; }
  .menu-card time { width: 132px; min-height: 64px; }
  .thanks img { order: 2; }
  .thanks div { order: 1; }
  .countdown { gap: 10px; }
  .countdown div { padding: 18px 12px; }
}

.images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1460px) {
  #zaproszenie .images {
    grid-template-columns: repeat(2, 1fr);
  }

  #zaproszenie .images img {
    width: 80%;
    height: auto;
    justify-self: center;
  }
}



.menu-locked {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.menu-locked-text {
  margin: 0 0 14px;
  font-size: 18px;
}
.menu-locked-text.muted {
  color: var(--muted);
  font-size: 15px;
}
.menu-password-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.menu-password-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 15px;
}
.menu-locked-error {
  margin: 14px 0 0;
  min-height: 20px;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 14px;
}
[hidden] {
  display: none !important;
}




.seat-finder {
  text-align: center;
}
.seat-finder-box {
  max-width: 560px;
  margin: 0 auto;
}
.seat-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.seat-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 15px;
}
.seat-error {
  margin: 14px 0 0;
  min-height: 20px;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 14px;
}

.seat-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(20, 12, 14, .58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.seat-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.seat-modal-card {
  position: relative;
  width: min(420px, 100%);
  padding: clamp(28px, 6vw, 42px);
  text-align: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(20, 12, 14, .26);
}
.seat-modal-table {
  margin: 8px 0 0;
  color: var(--rose-dark);
  font-size: clamp(28px, 5vw, 40px);
}


.info-notes {
  text-align: center;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}
.info-card {
  padding: clamp(22px, 4vw, 30px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card h3 {
  color: var(--rose-dark);
}
.info-card p {
  margin: 0;
  color: var(--muted);
}
.info-card:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-card:last-child { grid-column: auto; }
}

.calendar-btn {
  margin-top: 18px;
}


.calendar-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn-ghost-light {
  background: transparent;
  color: var(--rose-dark);
  border-color: var(--rose-dark);
}
.btn-ghost-light:hover {
  background: rgba(183, 93, 105, .08);
}



.song-requests {
  text-align: center;
}
.song-requests-intro {
  max-width: 480px;
  margin: 0 auto 24px;
}
.song-form {
  display: grid;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.song-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font: inherit;
  font-size: 15px;
}
.song-form-message {
  margin: 14px 0 0;
  min-height: 20px;
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 14px;
}



.vendor-locked-screen {
  max-width: 480px;
  margin: 100px auto;
}
.vendor-header {
  text-align: center;
  padding: 60px 20px 20px;
}
.vendor-section {
  max-width: 760px;
}
.vendor-timeline {
  display: grid;
  gap: 8px;
  max-width: 480px;
}
.vendor-timeline-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.vendor-timeline-row time {
  font-weight: 900;
  color: var(--rose-dark);
}
.vendor-song-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.vendor-song-item {
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.vendor-song-item h4 {
  margin: 0 0 4px;
  color: var(--rose-dark);
}
.vendor-song-item p {
  margin: 0;
}
