/* ============================================================
   STRONA 125 — Agata & Łukasz
   Paleta: bordo + papier kremowy (z zaproszenia V3)
   ============================================================ */

:root {
  --bordo: #5a0e1a;
  --bordo-deep: #420a13;
  --bordo-soft: #7a1f2b;
  --bordo-glow: rgba(90, 14, 26, 0.16);
  --paper: #fbf6ef;
  --cream: #f5ecdf;
  --paper-warm: #f3ead9;
  --paper-deep: #e9ddca;
  --ink: #1a1416;
  --ink-2: #4a3f42;
  --ink-3: #877b7e;
  --line: rgba(90, 14, 26, 0.16);
  --gold: #c2a878;
  --dark: #0f0c0d;
}

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

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

img, svg, iframe { display: block; max-width: 100%; }
svg { fill: currentColor; }

/* ============================================================
   TYPOGRAPHY UTILS
   ============================================================ */
.caps {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 400;
}
.script {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
}
.mono { font-family: 'Outfit', sans-serif; font-variant-numeric: tabular-nums; letter-spacing: 0.1em; }

.amp {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-style: normal;
  vertical-align: baseline;
  padding: 0 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 820px; }

@media (max-width: 600px) {
  .container { padding: 0 22px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 17px 44px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-cream  { background: var(--cream); color: var(--bordo); border-color: var(--cream); }
.btn-cream:hover  { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-bordo  { background: var(--bordo); color: var(--cream); border-color: var(--bordo); }
.btn-bordo:hover  { background: var(--bordo-deep); border-color: var(--bordo-deep); }
.btn-large  { padding: 18px 56px; font-size: 14px; letter-spacing: 0.32em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(245, 236, 223, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.nav.visible { transform: translateY(0); }
.nav-inner {
  max-width: 1220px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bordo);
  white-space: nowrap;
}
.nav-logo .amp { font-family: 'Outfit', sans-serif; font-style: italic; font-size: 18px; }
.nav-links { display: flex; gap: 24px; align-items: center; margin-left: auto; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--bordo); }
.nav-burger {
  display: none;
  font-size: 24px;
  color: var(--bordo);
  padding: 4px 8px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================================
   LANG SWITCH (PL / EN)
   ============================================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Outfit', sans-serif;
}
.lang-switch button {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.5;
  padding: 0;
  transition: opacity 0.2s;
}
.lang-switch button.active { opacity: 1; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.lang-switch button:hover { opacity: 0.85; }
.lang-sep { opacity: 0.35; font-size: 12px; }

.lang-floating {
  position: fixed;
  top: 22px; right: 26px;
  z-index: 200;
  color: var(--cream);
  background: rgba(74, 13, 23, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border: 1px solid rgba(245, 236, 223, 0.35);
  transition: opacity 0.3s, transform 0.3s;
}
html.scrolled .lang-floating { opacity: 0; pointer-events: none; transform: translateY(-8px); }
.lang-in-nav { color: var(--bordo); }

@media (max-width: 900px) {
  .lang-floating { top: 16px; right: 16px; padding: 6px 11px; }
  .lang-in-nav { margin-left: auto; margin-right: 14px; }
}

/* ============================================================
   PAGE CREDIT (top-left, floating — symetryczne do .lang-floating)
   ============================================================ */
.page-credit {
  position: fixed;
  top: 22px; left: 26px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--cream);
  background: rgba(74, 13, 23, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border: 1px solid rgba(245, 236, 223, 0.35);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}
.page-credit:hover { background: rgba(74, 13, 23, 0.6); }
.page-credit .pc-line {
  font-size: 9px;
  letter-spacing: 0.3em;
  opacity: 0.7;
  font-weight: 400;
}
.page-credit .pc-name {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 400;
}
html.scrolled .page-credit { opacity: 0; pointer-events: none; transform: translateY(-8px); }

@media (max-width: 900px) {
  .page-credit { top: 16px; left: 16px; padding: 6px 11px; }
  .page-credit .pc-line { font-size: 8px; letter-spacing: 0.25em; }
  .page-credit .pc-name { font-size: 11px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bordo) 0%, var(--bordo-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 140px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 18% 28%, var(--paper) 0.5px, transparent 1.5px),
    radial-gradient(circle at 78% 68%, var(--paper) 0.5px, transparent 1.5px),
    radial-gradient(circle at 58% 18%, var(--paper) 0.5px, transparent 1.5px);
  background-size: 100px 100px, 120px 120px, 140px 140px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-heart {
  width: 28px; height: 28px;
  margin: 0 auto 26px;
  color: var(--cream);
  opacity: 0.9;
  animation: heartBeat 2.4s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
/* v=11: "Agata & Łukasz" — Outfit 200 uppercase (taki sam jak "rocznicę"),
   zunifikowane chapter-title look across całej pierwszej strony. */
.hero-names {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 72px;
  line-height: 1.0;
  white-space: nowrap;
  margin: 0 0 14px;
  color: var(--cream);
}
.hero-names .amp {
  font-family: inherit;
  font-weight: 200;
  font-style: normal;
  font-size: 0.85em;
  padding: 0 8px;
  vertical-align: baseline;
  opacity: 0.7;
}

/* nowa duża zaproszenie linia (zastąpiła stary eyebrow) */
.hero-invite {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 40px;
  line-height: 1.15;
  color: var(--cream);
  opacity: 0.95;
  margin: 0 0 30px;
  letter-spacing: 0.02em;
}

/* "rocznicę" — Outfit 200 uppercase (focal point hero — większe niż names) */
.hero-occasion {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 28px;
  color: var(--cream);
  display: inline-block;
}

.hero-formula {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.32em;
  opacity: 0.62;
  margin-bottom: 8px;
}
.hero-divider {
  width: 80px; height: 1px;
  background: var(--cream);
  opacity: 0.35;
  margin: 36px auto;
}
.hero-countdown {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  margin: 28px 0 40px;
}
.cd-block { text-align: center; min-width: 74px; }
.cd-num {
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  line-height: 1;
  font-weight: 200;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 10px;
}
.cd-sep {
  font-size: 32px;
  opacity: 0.35;
  font-weight: 300;
  padding-bottom: 20px;
}
.hero-when { margin: 36px 0 32px; }
.hero-date {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 400;
}
.hero-where {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  opacity: 0.65;
  color: var(--cream);
  animation: scrollBob 2.4s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@media (max-width: 700px) {
  .hero { padding: 80px 22px 100px; }
  .hero-names { font-size: 44px; letter-spacing: 0.04em; }
  .hero-invite { font-size: 28px; }
  .hero-occasion { font-size: 30px; letter-spacing: 0.05em; margin-bottom: 22px; }
  .hero-formula { font-size: 12px; letter-spacing: 0.26em; }
  .cd-num { font-size: 40px; }
  .cd-block { min-width: 52px; }
  .cd-sep { font-size: 22px; padding-bottom: 14px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 430px) {
  .hero-names { font-size: 32px; letter-spacing: 0.03em; }
  .hero-invite { font-size: 22px; }
  .hero-occasion { font-size: 26px; letter-spacing: 0.04em; }
}

/* ============================================================
   SECTIONS — base
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-cream { background: var(--paper); color: var(--ink); }
.section-bordo { background: var(--bordo); color: var(--cream); }

.section-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.5em;
  margin-bottom: 22px;
  opacity: 0.6;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-weight: 200;
}
.section-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 32px;
}
.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  margin: 20px auto 0;
}
.section-bordo .section-eyebrow { color: var(--cream); }

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 32px; letter-spacing: 0.06em; margin-bottom: 24px; }
}

/* ============================================================
   POWITANIE / KOCHANI
   ============================================================ */
.welcome {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.welcome-heart {
  color: var(--bordo);
  font-size: 26px;
  margin-bottom: 20px;
  opacity: 0.85;
}
.welcome-lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 24px;
  color: var(--bordo);
  margin-bottom: 28px;
}
.welcome-text {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.welcome-text:last-child { margin-bottom: 0; }
.met-story-final {
  color: var(--bordo);
  margin-top: 28px;
}
@media (max-width: 700px) {
  .welcome-text { font-size: 16px; line-height: 1.8; }
  .welcome-lead { font-size: 21px; }
}

/* ============================================================
   HISTORIA · MET
   ============================================================ */
.met {
  max-width: 640px;
  margin: 0 auto 88px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--line);
}
.met-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  margin-bottom: 16px;
  color: var(--bordo);
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}
.met-place {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bordo);
  margin-bottom: 22px;
  line-height: 1.15;
}
.met-story {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.met-quote {
  font-size: 30px;
  color: var(--bordo);
  margin-top: 8px;
}
@media (max-width: 800px) {
  .met { padding-bottom: 60px; margin-bottom: 60px; }
  .met-place { font-size: 30px; }
}

/* ============================================================
   HISTORIA · TIMELINE
   ============================================================ */
.timeline-wrap {
  margin-bottom: 88px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.timeline-title {
  text-align: center;
  font-size: 13px;
  margin-bottom: 56px;
  color: var(--bordo);
}
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}
.tl-line {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--bordo);
  opacity: 0.3;
  transform: translateX(-50%);
}
.tl-event {
  position: relative;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: 80px;
}
.tl-event.left  .tl-card { grid-column: 1; text-align: right; }
.tl-event.right .tl-card { grid-column: 2; text-align: left; }
.tl-dot {
  position: absolute;
  left: 50%; top: 22px;
  width: 14px; height: 14px;
  background: var(--paper);
  border: 2px solid var(--bordo);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.tl-dot.tl-dot-heart {
  width: 32px; height: 32px;
  border: none;
  color: var(--bordo);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  top: 12px;
}
.tl-card {
  padding: 18px 22px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(90, 14, 26, 0.1);
}
.tl-card.highlight {
  background: var(--bordo);
  color: var(--cream);
  border-color: var(--bordo);
}
.tl-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--bordo);
}
.tl-card.highlight .tl-year { color: var(--cream); }
.tl-text { font-size: 15px; line-height: 1.6; }
.tl-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
}
.tl-photo span {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bordo);
  opacity: 0.5;
}
img.tl-photo { display: block; aspect-ratio: auto; height: auto; border-style: solid; }
.tl-photos-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
  align-items: start;
}
.tl-photos-2 img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
.tl-card.highlight .tl-photo {
  background: rgba(245, 236, 223, 0.1);
  border-color: rgba(245, 236, 223, 0.4);
}
.tl-card.highlight .tl-photo span { color: var(--cream); opacity: 0.75; }
.tl-inline-link {
  color: var(--bordo);
  border-bottom: 1px solid var(--line);
  font-style: italic;
}
.tl-card.highlight .tl-inline-link { color: var(--cream); border-color: rgba(245, 236, 223, 0.5); }
.tl-inline-link:hover { border-color: var(--bordo); }

@media (max-width: 700px) {
  .tl-line { left: 18px; transform: none; }
  .tl-event { grid-template-columns: 1fr; padding-left: 48px; gap: 0; }
  .tl-event.left .tl-card,
  .tl-event.right .tl-card { grid-column: 1; text-align: left; }
  .tl-dot { left: 18px; transform: translateX(-50%); top: 18px; }
  .tl-dot.tl-dot-heart { top: 8px; left: 18px; }
}

/* ============================================================
   HISTORIA · FAV PHOTOS
   ============================================================ */
.fav-photos { text-align: center; }
.fav-photos h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--bordo);
}
.fav-sub {
  font-size: 28px;
  color: var(--bordo);
  margin-bottom: 44px;
}
.fav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.fav-frame {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 14px;
}
.fav-placeholder {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--bordo);
  opacity: 0.55;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}
.fav-caption {
  margin-top: 14px;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bordo);
}
@media (max-width: 700px) {
  .fav-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   SZCZEGÓŁY (bordo)
   ============================================================ */
.section-bordo .section-title { color: var(--cream); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.info-card {
  background: rgba(245, 236, 223, 0.06);
  border: 1px solid rgba(245, 236, 223, 0.22);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.info-card:hover { background: rgba(245, 236, 223, 0.1); transform: translateY(-2px); }
.info-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.85;
}
.info-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  opacity: 0.6;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}
.info-big {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.info-detail {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(245, 236, 223, 0.72);
  line-height: 1.55;
}
.info-card em.info-note { color: #fff; opacity: 1; font-weight: 400; }
@media (max-width: 800px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .info-grid { grid-template-columns: 1fr; } }

.map-wrap {
  margin-bottom: 72px;
  text-align: center;
}
.map-label {
  font-size: 13px;
  letter-spacing: 0.4em;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}
.map-frame {
  width: 100%;
  height: 380px;
  border: 1px solid rgba(245, 236, 223, 0.3);
  filter: sepia(0.25) hue-rotate(-10deg);
}
.map-coords {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  opacity: 0.7;
}
.map-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 236, 223, 0.4);
  padding-bottom: 4px;
}
.map-link:hover { border-color: var(--cream); }

.venue { margin-bottom: 56px; text-align: center; }
.venue-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(245, 236, 223, 0.18);
  margin-top: 22px;
}
.venue-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.venue-row img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(245, 236, 223, 0.18);
  transition: transform 0.4s;
}
.venue-row img:hover { transform: scale(1.03); }
@media (max-width: 700px) {
  .venue-row { grid-template-columns: 1fr; }
}
.map-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .venue-photos { grid-template-columns: 1fr; }
  .venue-figure img { height: 240px; }
}


/* ============================================================
   HARMONOGRAM
   ============================================================ */
.schedule {
  position: relative;
  padding: 20px 0;
}
.sch-line {
  position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 1px;
  background: var(--bordo);
  opacity: 0.3;
}
.sch-item {
  display: grid;
  grid-template-columns: 100px 28px 1fr;
  gap: 22px;
  align-items: start;
  padding: 18px 0;
}
.sch-time {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--bordo);
  text-align: right;
  padding-top: 4px;
  padding-right: 12px;
  font-variant-numeric: tabular-nums;
}
.sch-dot {
  width: 14px; height: 14px;
  background: var(--paper);
  border: 2px solid var(--bordo);
  border-radius: 50%;
  margin-left: 7px;
  margin-top: 14px;
  z-index: 1;
  position: relative;
}
.sch-dot.heart {
  width: 28px; height: 28px;
  border: none;
  font-size: 18px;
  color: var(--bordo);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  margin-left: 0;
  margin-top: 6px;
}
.sch-content { padding-bottom: 10px; }
.sch-item.highlight .sch-content {
  background: rgba(90, 14, 26, 0.06);
  padding: 16px 20px;
  border-left: 2px solid var(--bordo);
}
.sch-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--bordo);
}
.sch-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.sch-link {
  display: inline-block;
  margin-top: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordo);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  transition: border-color 0.2s;
}
.sch-link:hover { border-color: var(--bordo); }
.sch-item.end .sch-dot { opacity: 0.5; }

@media (max-width: 600px) {
  .sch-line { left: 60px; }
  .sch-item { grid-template-columns: 60px 20px 1fr; gap: 14px; padding: 14px 0; }
  .sch-time { font-size: 18px; padding-right: 6px; }
  .sch-dot { margin-left: 3px; margin-top: 8px; }
  .sch-dot.heart { width: 22px; height: 22px; font-size: 13px; margin-top: 4px; }
  .sch-title { font-size: 17px; }
}

/* ============================================================
   ŻYCZENIA
   ============================================================ */
.wish-form {
  max-width: 700px;
  margin: 0 auto 80px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 40px;
}
.wish-form input,
.wish-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--ink);
  resize: vertical;
}
.wish-form input:focus,
.wish-form textarea:focus {
  outline: none;
  border-color: var(--bordo);
  background: var(--paper);
}
.wish-photo-wrap {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wish-photo-label {
  padding: 10px 18px;
  border: 1px solid var(--bordo);
  cursor: pointer;
  font-size: 11px;
  color: var(--bordo);
  transition: all 0.3s;
}
.wish-photo-label:hover {
  background: var(--bordo);
  color: var(--cream);
}
.wish-photo-name {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.wish-form .btn { width: 100%; }
.wish-note {
  text-align: center;
  margin-top: 16px;
  font-size: 22px;
  color: var(--bordo);
}

.wishes-wall {
  columns: 3;
  column-gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .wishes-wall { columns: 2; } }
@media (max-width: 600px) { .wishes-wall { columns: 1; } }

.wish-card {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  width: 100%;
}
.wish-card::before {
  content: "\201C";
  position: absolute;
  top: 4px; left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  color: var(--bordo);
  opacity: 0.18;
  line-height: 1;
}
.wish-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
}
.wish-card-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  font-style: normal;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.wish-card-author {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bordo);
  font-family: 'Outfit', sans-serif;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-upload {
  max-width: 700px;
  margin: 0 auto 24px;
  border: 2px dashed var(--bordo);
  background: var(--paper-warm);
  padding: 52px 24px;
  text-align: center;
  transition: all 0.3s;
}
.gallery-upload.dragover {
  background: rgba(90, 14, 26, 0.08);
  border-style: solid;
  transform: scale(1.01);
}
.gallery-upload-label { cursor: pointer; display: block; }
.gu-text {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--bordo);
}
.gu-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  opacity: 0.7;
}
.gallery-stats {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(42, 20, 24, 0.88));
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* ============================================================
   MUZYKA / SPOTIFY
   ============================================================ */
.music { max-width: 720px; margin: 0 auto; text-align: center; }
.music-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto 36px;
}
.spotify-frame {
  margin: 0 auto 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-warm);
}
.spotify-frame iframe { display: block; width: 100%; border: 0; }

/* ============================================================
   MENU
   ============================================================ */
.menu { max-width: 720px; margin: 0 auto; }
.menu-intro {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
}
.menu-group { margin-top: 52px; text-align: center; }
.menu-group-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 15px;
  letter-spacing: 0.34em;
  color: var(--bordo);
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.menu-group-label::before,
.menu-group-label::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--line);
}
.menu-dishes { list-style: none; }
.menu-dishes li {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.menu-dishes li:last-child { border-bottom: none; }
.menu-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--line);
  opacity: 0.55;
  vertical-align: middle;
  margin-left: 8px;
  white-space: nowrap;
}
.menu-diet { text-align: center; font-size: 18px; color: var(--bordo); margin-top: 44px; }

/* menu + gallery on bordo background */
.section-bordo .menu-intro { color: var(--cream); opacity: 0.82; }
.section-bordo .menu-group-label { color: #fff; }
.section-bordo .menu-group-label::before,
.section-bordo .menu-group-label::after { background: rgba(245, 236, 223, 0.4); }
.section-bordo .menu-dishes li { color: var(--cream); border-bottom-color: rgba(245, 236, 223, 0.16); }
.section-bordo .menu-tag { border-color: rgba(245, 236, 223, 0.45); opacity: 0.7; }
.section-bordo .menu-diet { color: var(--cream); opacity: 0.82; }
.section-bordo .gallery-upload { border-color: rgba(245, 236, 223, 0.4); background: rgba(245, 236, 223, 0.06); }
.section-bordo .gallery-upload.dragover { background: rgba(245, 236, 223, 0.12); }
.section-bordo .gu-text { color: var(--cream); }
.section-bordo .gallery-stats { color: var(--cream); opacity: 0.7; }
.section-bordo .gallery-item { background: rgba(245, 236, 223, 0.06); }
@media (max-width: 600px) {
  .menu-group-label::before, .menu-group-label::after { width: 24px; }
  .menu-dishes li { font-size: 16px; padding: 11px 0; }
}

/* ============================================================
   PREZENTY
   ============================================================ */
.gift { max-width: 620px; margin: 0 auto; text-align: center; }
.gift-lead {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 22px;
}
.gift-text {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0.95;
}
.gift-account {
  border: 1px solid rgba(245, 236, 223, 0.3);
  padding: 28px 24px;
}
.gift-account-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  opacity: 0.8;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}
.gift-account-num { font-size: 17px; letter-spacing: 0.08em; opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 88px 24px 56px;
  text-align: center;
}
.footer-heart {
  width: 40px; height: 40px;
  color: var(--bordo-soft);
  margin: 0 auto 28px;
  display: block;
}
.footer-names {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 200;
}
.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 32px;
}
.footer-contact {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 28px;
  opacity: 0.8;
}
.footer-contact a {
  font-style: normal;
  white-space: nowrap;
  border-bottom: 1px solid rgba(245, 236, 223, 0.3);
  transition: opacity 0.2s, border-color 0.2s;
}
.footer-contact a:hover { border-color: var(--cream); }
.footer-credit {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.62;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.footer-credit a {
  border-bottom: 1px solid rgba(245, 236, 223, 0.35);
  transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 1; }
.footer-mini {
  font-size: 10px;
  letter-spacing: 0.4em;
  opacity: 0.4;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bordo);
  color: var(--cream);
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  max-width: 92vw;
  text-align: center;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   DODATKI v=14: page-credit już wyżej.
   Tu: sch-no-time, schedule-cta, info-link, menu-drinks,
       gift-groups, gift-account-phone, wish-year-input, wish-card-met.
   ============================================================ */

/* Harmonogram: punkty bez godziny — zachowują grid, ukrywają liczbę */
.sch-no-time .sch-time { visibility: hidden; }
@media (max-width: 600px) {
  .sch-no-time .sch-time { display: none; }
  .sch-no-time { grid-template-columns: 20px 1fr; }
}

/* CTA pod harmonogramem (księga gości) */
.schedule-cta {
  text-align: center;
  margin-top: 56px;
  font-size: 22px;
  color: var(--bordo);
  line-height: 1.45;
}
.schedule-cta a {
  border-bottom: 1px solid var(--line);
  font-style: italic;
  transition: border-color 0.2s;
}
.schedule-cta a:hover { border-color: var(--bordo); }

/* Link wewnątrz info-card (Szczegóły 04 → Menu) */
.info-link {
  display: inline-block;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 236, 223, 0.5);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding-bottom: 3px;
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  transition: border-color 0.2s, opacity 0.2s;
}
.info-link:hover { border-color: var(--cream); opacity: 1; }
.info-card em {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 300;
  opacity: 0.85;
}

/* Menu — sekcja Napoje (zachowuje styl menu-dishes, lekko mniejsze i wycentrowane) */
.menu-drinks li {
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
  padding: 14px 18px;
}

/* Prezenty — grupy „1. SZTUKA / 2. PODRÓŻ MARZEŃ" */
.gift-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 28px 0 36px;
}
.gift-group {
  background: rgba(245, 236, 223, 0.06);
  border: 1px solid rgba(245, 236, 223, 0.22);
  padding: 26px 20px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.gift-group:hover { background: rgba(245, 236, 223, 0.1); transform: translateY(-2px); }
.gift-group-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.65;
}
.gift-group-name {
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.gift-group-resp {
  font-size: 16px;
  opacity: 0.78;
}
.gift-group-link {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 236, 223, 0.45);
  padding-bottom: 3px;
  transition: opacity 0.2s ease;
}
.gift-group-link:hover { opacity: 0.72; }

/* ============================================================
   MUZYKA · ZESPÓŁ NA ŻYWO
   ============================================================ */
.music-band {
  text-align: center;
  margin-bottom: 44px;
}
.music-band-lead {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.music-band-names {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--bordo);
}
@media (max-width: 700px) {
  .music-band-names { font-size: 17px; }
}
@media (max-width: 480px) {
  .gift-groups { grid-template-columns: 1fr; }
}

/* Telefon Tomka w bloku konta */
.gift-account-phone {
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  opacity: 0.88;
}
.gift-account-phone a {
  border-bottom: 1px solid rgba(245, 236, 223, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.gift-account-phone a:hover { border-color: var(--cream); }

/* Krótka stopka kontaktu pod kontem */
.gift-contact {
  text-align: center;
  margin-top: 28px;
  font-size: 20px;
  opacity: 0.78;
}

/* Wspomnienia — pole „rok poznania" (input number, krótszy placeholder italic) */
.wish-year-input::placeholder {
  font-style: italic;
  opacity: 0.55;
}
.wish-year-input {
  -moz-appearance: textfield;
  appearance: textfield;
}
.wish-year-input::-webkit-outer-spin-button,
.wish-year-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Wspomnienia — display roku poznania na karcie życzeń */
.wish-card-met {
  display: block;
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordo);
  opacity: 0.7;
}

/* ============================================================
   ANIM — entry fade-up
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .section-title,
  .info-card,
  .tl-card,
  .sch-item,
  .wish-card,
  .hotel-card {
    animation: fadeUp 0.8s ease-out backwards;
  }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   POV — wspólny album (galeria)
   ============================================================ */
.pov-lead {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.92;
}
.pov-steps {
  max-width: 600px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pov-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
.pov-step-num {
  flex: none;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245, 236, 223, 0.5);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--cream);
}
.pov-step-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.9;
}
.pov-step-text strong { font-weight: 500; opacity: 1; }
.pov-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.pov-note {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.75;
  max-width: 420px;
  text-align: center;
}
.pov-note a { text-decoration: underline; opacity: 0.95; }
.pov-qr {
  width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  border: 1px dashed rgba(245, 236, 223, 0.45);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
}

/* ============================================================
   GATE — hasło 125
   ============================================================ */
.gate {
  position: fixed; inset: 0;
  z-index: 100000;
  background: var(--bordo);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  text-align: center;
  color: var(--cream);
}
.gate-inner { max-width: 420px; width: 100%; }
.gate-lang { position: absolute; top: 20px; right: 20px; }
.gate-lang button { color: var(--cream); }
.gate-heart { width: 30px; height: 30px; color: var(--cream); margin: 0 auto 22px; opacity: 0.8; }
.gate-eyebrow { font-size: 11px; letter-spacing: 0.32em; color: var(--cream); opacity: 0.65; margin-bottom: 16px; }
.gate-title {
  font-family: 'Outfit', sans-serif; font-weight: 200;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 26px; color: #fff; margin-bottom: 26px; line-height: 1.2;
}
.gate-title .amp { font-family: inherit; font-style: italic; font-weight: 200; opacity: 0.8; }
.gate-prompt { font-weight: 300; font-size: 15px; opacity: 0.85; margin-bottom: 24px; }
.gate-form { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }
.gate-input {
  font-family: 'Outfit', sans-serif; font-size: 18px; text-align: center;
  padding: 14px 18px; letter-spacing: 0.3em;
  background: rgba(245, 236, 223, 0.08);
  border: 1px solid rgba(245, 236, 223, 0.4);
  color: #fff;
}
.gate-input:focus { outline: none; border-color: var(--cream); background: rgba(245, 236, 223, 0.14); }
.gate-input::placeholder { color: rgba(245, 236, 223, 0.5); letter-spacing: 0.2em; }
.gate-form .btn { align-self: center; }
.gate-error { color: #ffd2d2; font-size: 13px; margin-top: 18px; }
.gate-inner.gate-shake { animation: gateShake 0.4s; }
@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}
@media (max-width: 430px) {
  .gate-title { font-size: 21px; }
  .pov-qr { width: 130px; height: 130px; }
}
