/* ============================================================
   JORDANÓWKA - centrum przyjęć i wydarzeń, Legnica
   Autorski arkusz stylów.

   System wizualny: papeteria / bilecik zaproszeniowy.
   - monochromatyczna paleta kości słoniowej i taupe wprost z logotypu
   - motyw pierścienia (okrąg z monogramu) jako element powtarzalny
   - typografia niesie kompozycję: Cormorant Garamond + Jost
   - jedna ciemna sekcja (scena) robi kontrast zamiast fotografii
   ============================================================ */

/* ---------- Reset / bazowe ---------- */
*, *::before, *::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto } }
body { margin: 0 }
img, svg { max-width: 100%; display: block }
button, input, select, textarea { font: inherit; color: inherit }
a { color: inherit }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0 }
ul, ol { margin: 0; padding: 0; list-style: none }

:root {
  /* Paleta z brandbooka klienta (2026-08-26) - wartości zmierzone
     w źródłowym PDF-ie i w jordanowka_ci_pattern.jpg, nie dobierane. */
  --cream:       #FBF6F3;   /* tło z CI pattern */
  --cream-deep:  #F4ECE6;
  --paper:       #FFFFFF;
  --ink:         #333232;   /* sygnatura logotypu */
  --ink-soft:    #726A64;
  --ink-faint:   #9E958E;
  --taupe:       #937E6D;   /* monogram logotypu */
  --taupe-deep:  #6F5D4F;
  --taupe-soft:  #B7A395;
  --espresso:    #2B2A29;   /* ciemne tło - o ton głębsze niż --ink */
  --espresso-2:  #383635;

  --line:        rgba(147,126,109,.26);
  --line-soft:   rgba(147,126,109,.14);
  --line-dark:   rgba(230,214,200,.18);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1140px;
  --pad:  clamp(20px, 5vw, 60px);

  /* Ziarno papieru - subtelna tekstura zamiast płaskiego tła */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  font-size: clamp(15.5px, .55vw + 14px, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden }

/* ziarno na całej stronie, pod treścią */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: .028;
  pointer-events: none;
  z-index: 1;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad) }
.wrap-narrow { max-width: 820px; margin-inline: auto; padding-inline: var(--pad) }

/* ---------- Typografia ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: .002em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem) }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem) }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); font-weight: 400; line-height: 1.3 }
h4 { font-family: var(--sans); font-size: .78rem; font-weight: 500;
     letter-spacing: .18em; text-transform: uppercase; color: var(--taupe) }

.lede {
  font-size: clamp(1.02rem, .5vw + .9rem, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.72;
  font-weight: 300;
}

/* nadtytuł sekcji - wersaliki z szerokim światłem */
.eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* pierścień - sygnet marki użyty jako przerywnik */
.ring-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--taupe-soft);
}
.ring-rule::before, .ring-rule::after {
  content: "";
  height: 1px;
  width: min(120px, 18vw);
  background: linear-gradient(90deg, transparent, var(--line));
}
.ring-rule::after { background: linear-gradient(90deg, var(--line), transparent) }
.ring-rule i {
  width: 9px; height: 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.section { padding-block: clamp(64px, 9vw, 118px); position: relative; z-index: 2 }
.section-head { max-width: 660px }
.section-head.center { margin-inline: auto; text-align: center }
.section-head h2 { margin-top: .85rem }
.section-head p { margin-top: 1.1rem }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: .92em 1.7em;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  background: var(--taupe-deep);
  border: 1px solid var(--taupe-deep);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover { background: var(--espresso); border-color: var(--espresso); transform: translateY(-1px) }
.btn svg { width: 15px; height: 15px; flex: none }

.btn-ghost { color: var(--taupe-deep); background: transparent; border-color: var(--line) }
.btn-ghost:hover { color: var(--espresso); background: transparent; border-color: var(--taupe) }

.btn-light { color: var(--espresso); background: var(--cream); border-color: var(--cream) }
.btn-light:hover { background: #fff; border-color: #fff; color: var(--espresso) }

.btn-outline-light { color: var(--cream); background: transparent; border-color: var(--line-dark) }
.btn-outline-light:hover { background: rgba(251,246,243,.08); border-color: rgba(251,246,243,.5); color: var(--cream) }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: default; transform: none }

/* link tekstowy z podkreśleniem rysowanym */
.link-underline {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .3s;
}
.link-underline:hover { background-size: 0 1px; background-position: 100% 100% }

/* ============================================================
   NAGŁÓWEK
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  /* wyżej niż panel mobilny (80) - inaczej panel zasłania przycisk zamykania */
  z-index: 90;
  background: rgba(251,246,243,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); background: rgba(251,246,243,.94) }

.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); min-height: 78px }

.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto }
.brand img { height: 36px; width: auto; transition: opacity .35s, transform .35s }
/* dopóki logo w sekcji powitalnej jest widoczne, w pasku go nie powtarzamy */
.site-header.hero-visible .brand img { opacity: 0; transform: translateY(-4px); pointer-events: none }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px) }
.nav-links a {
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: 4px;
  border-bottom: 1px solid transparent;
  transition: color .22s, border-color .22s;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--taupe) }

.nav-cta { display: flex; align-items: center; gap: 14px }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .84rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--taupe-deep);
  white-space: nowrap;
}
.nav-phone svg { width: 15px; height: 15px }
.nav-phone:hover { color: var(--espresso) }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 15px; height: 1px; background: var(--ink); transition: transform .3s, opacity .2s;
}
.nav-toggle span::before { transform: translateY(-5px) }
.nav-toggle span::after  { transform: translateY(4px) }
.nav-open .nav-toggle span { background: transparent }
.nav-open .nav-toggle span::before { transform: rotate(45deg) }
.nav-open .nav-toggle span::after  { transform: rotate(-45deg) translateY(-1px) }

/* panel mobilny */
.scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(43,42,41,.42);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.nav-open .scrim { opacity: 1; visibility: visible }

.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 80;
  width: min(330px, 86vw);
  padding: 96px var(--pad) 40px;
  background: var(--cream);
  border-left: 1px solid var(--line-soft);
  transform: translateX(102%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.nav-open .mobile-panel { transform: none }
.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid var(--line-soft);
}
.mp-foot { margin-top: 32px; font-size: .9rem; color: var(--ink-soft); line-height: 1.9 }
.mp-foot a { display: inline; padding: 0; border: 0; font-family: var(--sans); font-size: 1rem; color: var(--taupe-deep) }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 8vw, 96px) clamp(60px, 9vw, 110px);
  text-align: center;
  overflow: hidden;
}
/* duży pierścień w tle - powiększony sygnet marki */
.hero::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: min(780px, 128vw);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  pointer-events: none;
}
.hero .wrap { position: relative }

.hero-logo { width: min(420px, 74vw); margin: 0 auto clamp(28px, 4vw, 44px) }

.hero h1 {
  max-width: 15ch;
  margin: 0 auto;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.14;
}
.hero h1 em { font-style: italic; color: var(--taupe-deep) }

.hero .lede { max-width: 60ch; margin: clamp(20px, 2.6vw, 30px) auto 0 }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: clamp(28px, 3.4vw, 40px);
}

.hero-meta {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 52px); justify-content: center;
  margin-top: clamp(40px, 5vw, 62px);
  padding-top: clamp(26px, 3vw, 34px);
  border-top: 1px solid var(--line-soft);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.hero-meta strong {
  display: block;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: .35em;
}
.hero-meta a { text-decoration: none; color: var(--ink) }
.hero-meta a:hover { color: var(--taupe-deep) }

/* ============================================================
   PRZYJĘCIA - siatka okazji
   ============================================================ */
.band-sand { background: var(--cream-deep) }

.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 5vw, 58px);
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.occasion {
  position: relative;
  padding: clamp(30px, 3.4vw, 42px) clamp(24px, 2.6vw, 34px) clamp(34px, 3.6vw, 44px);
  background: var(--cream);
  transition: background .3s;
}
.band-sand .occasion { background: var(--cream-deep) }
.occasion:hover, .band-sand .occasion:hover { background: var(--paper) }

.occasion-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--taupe);
}
.occasion h3 { margin-bottom: .6rem }
.occasion p { color: var(--ink-soft); font-size: .93rem; font-weight: 300 }

/* ============================================================
   KONSOLACJE - blok stonowany
   ============================================================ */
.consolation {
  position: relative;
  padding: clamp(38px, 5vw, 64px) clamp(26px, 4vw, 62px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  text-align: center;
}
.consolation .eyebrow { color: var(--ink-faint) }
.consolation h2 { margin-top: .9rem; color: var(--ink) }
.consolation p { max-width: 62ch; margin: 1.15rem auto 0; color: var(--ink-soft); font-weight: 300 }
.consolation .btn { margin-top: clamp(26px, 3vw, 34px) }

/* ============================================================
   SCENA - ciemna sekcja
   ============================================================ */
.stage {
  position: relative;
  background: var(--espresso);
  color: #E9E1D9;
  overflow: hidden;
}
/* światło reflektora zamiast zdjęcia */
.stage::before {
  content: "";
  position: absolute;
  top: -18%; left: 50%;
  width: min(1000px, 150vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 40%, rgba(179,156,140,.20), rgba(179,156,140,0) 62%);
  pointer-events: none;
}
.stage::after {
  content: "";
  position: absolute;
  bottom: -34%; left: 50%;
  width: min(620px, 110vw);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 1px solid rgba(230,214,200,.11);
  border-radius: 50%;
  pointer-events: none;
}
.stage .wrap { position: relative; z-index: 1 }
.stage h2, .stage h3 { color: #F5EFE8 }
.stage .eyebrow { color: var(--taupe-soft) }
.stage .lede, .stage p { color: #C9BEB4 }
.stage .ring-rule { color: rgba(230,214,200,.4) }
.stage .ring-rule::before { background: linear-gradient(90deg, transparent, var(--line-dark)) }
.stage .ring-rule::after  { background: linear-gradient(90deg, var(--line-dark), transparent) }

.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: clamp(38px, 5vw, 56px);
}
.stage-item { padding-top: 22px; border-top: 1px solid var(--line-dark) }
.stage-item h3 { font-size: 1.16rem; margin-bottom: .5rem }
.stage-item p { font-size: .92rem; font-weight: 300 }

.stage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 34px;
  margin-top: clamp(30px, 3.6vw, 42px);
}
.stage-list li {
  display: flex; align-items: baseline; gap: .8em;
  font-size: .94rem; font-weight: 300; color: #C9BEB4;
}
.stage-list li::before {
  content: ""; flex: none;
  width: 6px; height: 6px;
  border: 1px solid var(--taupe-soft);
  border-radius: 50%;
  transform: translateY(-1px);
}

.stage-note {
  margin-top: clamp(34px, 4vw, 48px);
  padding: 22px 26px;
  border: 1px solid var(--line-dark);
  font-size: .9rem;
  font-weight: 300;
  color: #BFB4AA;
}
.stage-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(30px, 3.6vw, 42px) }

/* ============================================================
   ORGANIZACJA - kroki
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(28px, 3.4vw, 44px);
  margin-top: clamp(40px, 5vw, 62px);
  counter-reset: step;
}
.step { position: relative; padding-top: 30px; border-top: 1px solid var(--line-soft) }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -12px; left: 0;
  padding-right: 12px;
  background: var(--cream);
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--taupe);
  line-height: 1;
}
.band-sand .step::before { background: var(--cream-deep) }
.step h3 { font-size: 1.14rem; margin-bottom: .5rem }
.step p { font-size: .93rem; font-weight: 300; color: var(--ink-soft) }

/* ============================================================
   MIEJSCE - dwukolumnowy blok
   ============================================================ */
.place-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.place-list { margin-top: clamp(24px, 3vw, 34px) }
.place-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.place-list li:first-child { border-top: 1px solid var(--line-soft) }
.place-list b { display: block; font-weight: 500; color: var(--ink); font-size: .96rem }
.place-list .dot {
  width: 9px; height: 9px; margin-top: .55em;
  border: 1px solid var(--taupe-soft); border-radius: 50%;
}

/* karta z pieczęcią - wyróżnik obok listy */
.seal-card {
  position: relative;
  padding: clamp(34px, 4vw, 48px) clamp(26px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  text-align: center;
}
.seal-card .mark { width: 74px; margin: 0 auto 22px; opacity: .9 }
.seal-card h3 { margin-bottom: .7rem }
.seal-card p { font-size: .94rem; font-weight: 300; color: var(--ink-soft) }
.seal-card .btn { margin-top: 26px }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: clamp(36px, 4.5vw, 54px); border-top: 1px solid var(--line-soft) }
.faq-item { border-bottom: 1px solid var(--line-soft) }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none; border: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq-q:hover { color: var(--taupe-deep) }
.faq-icon { position: relative; flex: none; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50% }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1px; background: var(--taupe);
  transform: translate(-50%, -50%);
  transition: transform .28s;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0) }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .34s ease }
.faq-a p { padding-bottom: 22px; max-width: 68ch; font-size: .95rem; font-weight: 300; color: var(--ink-soft) }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 3.4vw, 52px);
  margin-top: clamp(38px, 5vw, 58px);
  align-items: start;
}

.info-card {
  padding: clamp(30px, 3.4vw, 42px) clamp(24px, 2.8vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.info-card h3 { margin-bottom: 26px }
.info-row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding-block: 15px; border-top: 1px solid var(--line-soft) }
.info-row:first-of-type { border-top: 0; padding-top: 0 }
.info-row .ic {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--taupe);
}
.info-row .ic svg { width: 15px; height: 15px }
.info-row .lbl { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--taupe) }
.info-row .val { margin-top: .3em; font-size: 1.02rem }
.info-row .val a { text-decoration: none }
.info-row .val a:hover { color: var(--taupe-deep) }
.info-row .val small { display: block; font-size: .86rem; color: var(--ink-soft) }

/* formularz */
.form-card { padding: clamp(30px, 3.4vw, 44px) clamp(24px, 2.8vw, 38px); background: var(--paper); border: 1px solid var(--line-soft) }
.form-card h3 { margin-bottom: .5rem }
.form-intro { font-size: .93rem; font-weight: 300; color: var(--ink-soft); margin-bottom: 26px }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.field { margin-bottom: 16px }
.field label {
  display: block; margin-bottom: 7px;
  font-size: .69rem; font-weight: 500; letter-spacing: .19em; text-transform: uppercase;
  color: var(--taupe);
}
.field .req { color: var(--taupe-soft) }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  font-size: .96rem;
  transition: border-color .22s, background .22s;
}
.field textarea { min-height: 124px; resize: vertical; line-height: 1.6 }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--taupe); background: #fff;
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7466' stroke-width='1.6'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px;
}
.form-note { font-size: .84rem; font-weight: 300; color: var(--ink-faint); margin-bottom: 16px }

/* pole-pułapka na boty */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }

.consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin-top: 6px; font-size: .86rem; font-weight: 300; color: var(--ink-soft); line-height: 1.6 }
.consent input { width: 17px; height: 17px; margin-top: .25em; accent-color: var(--taupe-deep) }
.consent a { color: var(--taupe-deep) }

.spinner {
  width: 14px; height: 14px;
  border: 1.5px solid rgba(251,246,243,.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg) } }

.form-msg {
  display: none;
  margin-top: 16px; padding: 13px 16px;
  border: 1px solid var(--line-soft);
  font-size: .9rem; font-weight: 300;
}
.form-msg.show { display: block }
.form-msg.ok  { border-color: rgba(111,93,79,.35); background: rgba(147,126,109,.07); color: var(--taupe-deep) }
.form-msg.err { border-color: rgba(150,60,50,.3); background: rgba(150,60,50,.05); color: #8A3B33 }

/* ============================================================
   STOPKA
   ============================================================ */
.site-footer { position: relative; z-index: 2; background: var(--espresso); color: #C9BEB4; padding-block: clamp(52px, 6vw, 76px) 0 }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .9fr; gap: clamp(30px, 4vw, 60px) }
.footer-brand img { width: 210px; margin-bottom: 18px }
.footer-brand p { font-size: .92rem; font-weight: 300; max-width: 38ch }
.footer-col h4 { color: var(--taupe-soft); margin-bottom: 16px }
.footer-col a, .footer-col p { display: block; font-size: .92rem; font-weight: 300; text-decoration: none; color: #C9BEB4; padding-block: 5px }
.footer-col a:hover { color: #F5EFE8 }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  margin-top: clamp(40px, 5vw, 60px);
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem; font-weight: 300; color: #9A8F86;
}
.footer-bottom a { color: #9A8F86 }
.footer-bottom a:hover { color: #E9E1D9 }

/* ============================================================
   MODAL - polityka prywatności
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px;
         opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s }
.modal.open { opacity: 1; visibility: visible }
.modal-scrim { position: absolute; inset: 0; background: rgba(43,42,41,.55) }
.modal-card {
  position: relative;
  width: min(660px, 100%);
  max-height: 84vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 44px);
  background: var(--cream);
  border: 1px solid var(--line-soft);
  transform: translateY(10px);
  transition: transform .28s;
}
.modal.open .modal-card { transform: none }
.modal-card h3 { margin: .6rem 0 1.1rem }
.modal-card h4 { margin: 1.5rem 0 .5rem }
.modal-card p { font-size: .93rem; font-weight: 300; color: var(--ink-soft) }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 50%;
  color: var(--taupe); cursor: pointer;
}
.modal-close svg { width: 14px; height: 14px }
.modal-close:hover { color: var(--ink); border-color: var(--taupe) }

/* ============================================================
   ANIMACJE WEJŚCIA
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1) }
[data-reveal].in { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none }
  .btn, .brand img { transition: none }
}

/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */
@media (max-width: 980px) {
  .place-grid { grid-template-columns: 1fr }
  .contact-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px }
  .footer-brand { grid-column: 1 / -1 }
}

@media (max-width: 820px) {
  .nav-links { display: none }
  .nav-toggle { display: flex }
  .nav-phone span { display: none }
  .nav { min-height: 68px }
  .brand img { height: 30px }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0 }
  .hero-meta { gap: 24px; flex-direction: column }
  .footer-grid { grid-template-columns: 1fr }
  .occasions { grid-template-columns: 1fr }
}

/* ============================================================
   DRUK - klienci drukują sobie dane kontaktowe
   ============================================================ */
@media print {
  .site-header, .mobile-panel, .scrim, .modal, .hero-actions, .stage-actions,
  .form-card, .nav-toggle, [data-reveal] { }
  .site-header, .mobile-panel, .scrim, .modal, .form-card { display: none !important }
  body { background: #fff; color: #000; font-size: 11pt }
  body::before { display: none }
  [data-reveal] { opacity: 1; transform: none }
  .stage { background: #fff; color: #000 }
  .stage h2, .stage h3 { color: #000 }
  .stage .lede, .stage p, .stage-list li { color: #333 }
  .site-footer { background: #fff; color: #000 }
  .section { padding-block: 18pt }
}
