/* =====================================================
   RUBINOWE GODY — style.css
   paleta: ruby / gold / ivory · eleganckie serify
   ===================================================== */

:root {
  --ruby:        #8B1C32;
  --ruby-deep:   #5C1020;
  --ruby-wine:   #A63A4C;
  --ruby-ink:    #3A0A14;
  --gold:        #C9A961;
  --gold-light:  #E8C87A;
  --gold-soft:   #F1DFAE;
  --ivory:       #F5EFE4;
  --parchment:   #EDE3D0;
  --parchment-d: #E4D7BE;
  --ink:         #2B1B1E;
  --ink-soft:    #4A2E31;
  --shadow-soft: 0 10px 30px rgba(60, 10, 20, .12);
  --shadow-deep: 0 30px 80px rgba(60, 10, 20, .28);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 18px;  /* większy bazowy dla lepszej czytelności */
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}
@media (max-width: 680px) {
  html { font-size: 17px; }
}
img { max-width: 100%; display: block; }
a { color: var(--ruby); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ruby-wine); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ─── SVG ICONS ─── */
.ico {
  display: inline-block;
  width: 1em; height: 1em;
  vertical-align: -0.125em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.ico--sm  { width: .75em; height: .75em; }
.ico--lg  { width: 1.35em; height: 1.35em; vertical-align: -.25em; }
.ico--xl  { width: 2rem;   height: 2rem;   vertical-align: -.25em; }
.ico--xxl { width: 3rem;   height: 3rem; }
.ico--ruby  { color: var(--ruby); }
.ico--gold  { color: var(--gold); }
.ico--green { color: #2a7a2a; }
.ico--red   { color: #8a2020; }
.ico--dark  { color: var(--ruby-deep); }
.ico--ivory { color: var(--ivory); }
/* attr-card icons bigger */
.attr-card__icon .ico { width: 2rem; height: 2rem; }
/* guide tab icons */
.guide-tab .ico { width: 1.15em; height: 1.15em; vertical-align: -.2em; margin-right: .25em; }
/* alert icons */
.alert__icon .ico { width: 1.5rem; height: 1.5rem; vertical-align: -.3rem; }
/* badge icons */
.badge .ico { width: .8em; height: .8em; vertical-align: -.1em; }
/* table status icons */
.dog-table .ico--yes-cell { color: #2a7a2a; }
.dog-table .ico--no-cell  { color: #8a2020; }
/* footer heart */
.footer__heart .ico { width: 2rem; height: 2rem; color: var(--ruby-wine); fill: var(--ruby-wine); stroke: none; }
/* paw — kółka łapy filled */
.ico[href="#ico-paw"] circle,
.ico[href="#ico-paw"] ellipse,
use[href="#ico-paw"] ~ circle { fill: currentColor; stroke: none; }
/* serce w stopce */
.footer__heart .ico { width: 1.8rem; height: 1.8rem; vertical-align: middle; color: var(--ruby-wine); stroke-width: 2.5; }
/* tabela dog — zielone / czerwone */
.dog-table tr.yes td .ico { color: #2a7a2a; }
.dog-table tr.yes td .ico path { stroke: #2a7a2a; }
.dog-table tr.no  td .ico { color: #8a2020; }
.dog-table tr.no  td .ico path { stroke: #8a2020; }
/* serce w toast/romantyczne — rubinowe */
.toast__glasses .ico { color: var(--ruby-wine); }
/* złote gwiazdy w badge */
.badge--stars .ico path { stroke: var(--ruby); }
/* check w gift section */
.gift__check .ico { width: 1.4rem; height: 1.4rem; }
.gift__check .ico path { stroke: var(--gold-light); stroke-width: 2.5; }
/* ikony w timeline (złote) */
.timeline__dot .ico path, .timeline__dot .ico circle, .timeline__dot .ico ellipse { stroke: var(--ruby); }
.timeline__item:hover .timeline__dot .ico path,
.timeline__item:hover .timeline__dot .ico circle { stroke: var(--gold-light); }

/* ----- utilities ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ruby-deep);
  box-shadow: 0 8px 20px rgba(201, 169, 97, .35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(201, 169, 97, .5); color: var(--ruby-deep); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn--outline-gold:hover { background: rgba(201,169,97,.15); transform: translateY(-2px); }
.btn--outline-ruby {
  background: transparent;
  color: var(--ruby);
  border: 1.5px solid var(--ruby);
  box-shadow: none;
}
.btn--outline-ruby:hover { background: rgba(139,28,50,.08); transform: translateY(-2px); }

/* =====================================================
   HOTEL MODAL
   ===================================================== */
.hotel-modal {
  position: fixed; inset: 0;
  z-index: 3000;
  display: grid; place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.hotel-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hotel-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,3,7,.8);
  backdrop-filter: blur(8px);
}
.hotel-modal__box {
  position: relative;
  max-width: 860px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(160deg, #2a0810 0%, #1a0509 100%);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.hotel-modal.is-open .hotel-modal__box {
  transform: translateY(0) scale(1);
}
.hotel-modal__close {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 2rem; line-height: 1;
  color: var(--gold-light);
  opacity: .7;
  transition: opacity .2s, transform .2s;
}
.hotel-modal__close:hover { opacity: 1; transform: rotate(90deg); }
.hotel-modal__eyebrow {
  font-size: .85rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .5rem;
}
.hotel-modal__title {
  font-family: var(--font-serif); font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 500; color: var(--gold-light); margin: 0 0 .4rem; line-height: 1.2;
}
.hotel-modal__address {
  font-size: .95rem; color: rgba(245,239,228,.6); margin: 0 0 2rem;
}
.hotel-modal__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin-bottom: 2rem;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}
.hotel-modal__gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .4s ease, opacity .3s ease;
  cursor: pointer;
}
.hotel-modal__gallery img:hover { transform: scale(1.04); opacity: .9; }
.hotel-modal__gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.hotel-modal__facts {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.hotel-modal__fact {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(245,239,228,.06);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: 10px;
  padding: .8rem 1.4rem;
  min-width: 80px;
}
.hotel-modal__fact strong {
  font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-light); line-height: 1;
}
.hotel-modal__fact span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,239,228,.6); margin-top: .25rem; text-align: center; }
.hotel-modal__desc {
  color: rgba(245,239,228,.85); font-size: 1.05rem; line-height: 1.7;
  margin: 0 0 2rem;
}
.hotel-modal__suite {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(201,169,97,.08);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: var(--radius);
}
.hotel-modal__suite-title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500;
  color: var(--gold-light); margin: 0 0 .6rem;
}
.hotel-modal__suite-title em { font-family: var(--font-script); font-size: 1.7rem; }
.hotel-modal__suite-desc {
  color: rgba(245,239,228,.85); font-size: 1rem; line-height: 1.65; margin: 0 0 1rem;
}
.hotel-modal__suite-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.hotel-modal__suite-gallery img:first-child {
  grid-column: 1 / 3;
}
.hotel-modal__suite-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  transition: transform .4s ease, opacity .3s ease;
}
.hotel-modal__suite-gallery img:hover { transform: scale(1.03); opacity: .9; }
@media (max-width: 480px) {
  .hotel-modal__suite-gallery { grid-template-columns: 1fr 1fr; }
  .hotel-modal__suite-gallery img:first-child { grid-column: 1 / -1; }
}
.hotel-modal__footer {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
@media (max-width: 680px) {
  .hotel-modal__box { padding: 1.5rem; }
  .hotel-modal__gallery { grid-template-columns: repeat(2, 1fr); }
  .hotel-modal__gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .hotel-modal__facts { gap: .8rem; }
  .hotel-modal__footer { flex-direction: column; }
}

/* =====================================================
   KOPERTA — PRELOADER
   ===================================================== */
.envelope {
  position: fixed; inset: 0;
  background: radial-gradient(circle at 50% 40%, #6a1424 0%, #3b0a14 60%, #1a0509 100%);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .8s ease, visibility .8s ease;
}
.envelope.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.envelope__inner {
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.1s ease both;
}
.envelope__seal {
  width: 140px; height: 140px; margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.4));
  animation: pulse 2.5s ease-in-out infinite;
}
.envelope__seal svg { width: 100%; height: 100%; }
.seal-ring { fill: none; stroke: var(--gold); stroke-width: 2; }
.seal-ring--inner { stroke-dasharray: 4 4; }
.seal-text {
  fill: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .08em;
}
.envelope__label {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 0 0 .25rem;
  font-style: italic;
}
.envelope__sub {
  font-family: var(--font-sans);
  color: rgba(255,255,255,.7);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .75rem;
  margin: 0 0 2rem;
}
.envelope__btn {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: .95rem 2.3rem;
  border-radius: 999px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  transition: all .3s ease;
}
.envelope__btn:hover {
  background: var(--gold);
  color: var(--ruby-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(201, 169, 97, .35);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   NAWIGACJA
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem;
  background: rgba(245, 239, 228, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  transition: transform .4s ease, background .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 239, 228, .95);
  border-bottom-color: rgba(201, 169, 97, .3);
  box-shadow: 0 4px 20px rgba(60, 10, 20, .06);
}
.nav__brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-serif);
  color: var(--ruby-deep);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__brand-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--ruby);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: .85rem; letter-spacing: .04em;
  box-shadow: inset 0 0 0 2px var(--gold);
}
.nav__list {
  list-style: none;
  display: flex; gap: 1.6rem;
  margin: 0; padding: 0;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__list a {
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
}
.nav__list a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ruby);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav__list a:hover { color: var(--ruby); }
.nav__list a:hover::after { transform: scaleX(1); }
.nav__toggle { display: none; }

@media (max-width: 860px) {
  .nav__brand-text { display: none; }
  .nav__list {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--ivory);
    border-top: 1px solid rgba(201,169,97,.3);
    transform: translateY(-120%);
    transition: transform .4s ease;
  }
  .nav.is-open .nav__list { transform: translateY(0); }
  .nav__toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    width: 32px;
  }
  .nav__toggle span {
    width: 100%; height: 2px;
    background: var(--ruby-deep);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s 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); }
}

/* =====================================================
   PŁATKI TŁA
   ===================================================== */
.petals {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -40px;
  width: 16px; height: 18px;
  background: radial-gradient(ellipse at 30% 20%, var(--ruby-wine) 0%, var(--ruby) 45%, var(--ruby-deep) 100%);
  border-radius: 100% 0% 50% 50% / 60% 0% 100% 40%;
  opacity: .7;
  animation: petal-fall linear infinite;
  will-change: transform;
  box-shadow: inset -1px -1px 3px rgba(60,10,20,.4);
}
.petal--gold {
  background: radial-gradient(ellipse at 30% 20%, var(--gold-light), var(--gold));
  opacity: .5;
}
.petal--deep {
  background: radial-gradient(ellipse at 30% 20%, var(--ruby-deep), #3a0a14);
  opacity: .8;
}
@keyframes petal-fall {
  0%   { transform: translate(0, -40px) rotate(0deg); }
  50%  { transform: translate(40px, 50vh) rotate(180deg); }
  100% { transform: translate(-20px, 105vh) rotate(360deg); }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid; place-items: center;
  text-align: center;
  color: var(--ivory);
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(201,169,97,.15), transparent 70%),
    radial-gradient(ellipse at bottom, rgba(166,58,76,.35), transparent 60%),
    linear-gradient(180deg, var(--ruby-deep) 0%, #3a0a14 60%, #260509 100%);
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(201,169,97,.04) 20px 21px),
    repeating-linear-gradient(-45deg, transparent 0 20px, rgba(201,169,97,.04) 20px 21px);
  pointer-events: none;
}
.hero__ornament {
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  opacity: .55;
}
.hero__ornament::before,
.hero__ornament::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.hero__ornament::before { width: 12px; height: 1px; }
.hero__ornament::after { width: 1px; height: 12px; }
.hero__ornament--tl { top: 2rem; left: 2rem; border-right: 0; border-bottom: 0; }
.hero__ornament--tl::before { top: 4px; left: 4px; } .hero__ornament--tl::after { top: 4px; left: 4px; }
.hero__ornament--tr { top: 2rem; right: 2rem; border-left: 0; border-bottom: 0; }
.hero__ornament--tr::before { top: 4px; right: 4px; } .hero__ornament--tr::after { top: 4px; right: 4px; }
.hero__ornament--bl { bottom: 2rem; left: 2rem; border-right: 0; border-top: 0; }
.hero__ornament--bl::before { bottom: 4px; left: 4px; } .hero__ornament--bl::after { bottom: 4px; left: 4px; }
.hero__ornament--br { bottom: 2rem; right: 2rem; border-left: 0; border-top: 0; }
.hero__ornament--br::before { bottom: 4px; right: 4px; } .hero__ornament--br::after { bottom: 4px; right: 4px; }

.hero__content {
  position: relative;
  max-width: 880px;
  animation: heroIn 1.4s cubic-bezier(.2,.8,.2,1) .4s both;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 2.2rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '· · ·';
  margin: 0 .7rem;
  opacity: .6;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 6.6vw, 5.6rem);
  line-height: 1.08;
  margin: 0 0 2.5rem;
  letter-spacing: .01em;
}
.hero__title-line { display: block; }
.hero__title-line--script {
  font-style: italic;
  color: var(--gold-light);
  margin-top: .4rem;
}
.hero__counter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 2rem;
  padding: 1.4rem 2.4rem;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 6px;
  background: rgba(0,0,0,.2);
}
.hero__counter-num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 6.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201,169,97,.4);
}
.hero__counter-label {
  margin-top: .8rem;
  font-size: .95rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,.9);
  margin: 0 0 2.2rem;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.05rem 2.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 999px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all .3s ease;
}
.hero__cta:hover {
  background: var(--gold);
  color: var(--ruby-deep);
  transform: translateY(-3px);
}
.hero__cta span {
  transition: transform .3s ease;
}
.hero__cta:hover span { transform: translateY(3px); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* =====================================================
   SECTION — ogólne
   ===================================================== */
.section {
  position: relative;
  padding: 7rem 1.5rem;
  z-index: 2;
}
@media (max-width: 680px) {
  .section { padding: 4rem 1.2rem; }
}
.section--ivory { background: var(--ivory); }
.section--parchment {
  background: var(--parchment);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(201,169,97,.08), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(166,58,76,.06), transparent 40%);
}
.section--dark {
  background: linear-gradient(180deg, #3a0a14 0%, var(--ruby-deep) 100%);
  color: var(--ivory);
}
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(201,169,97,.2), transparent 50%);
  pointer-events: none;
}
.section__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}
.section__eyebrow {
  font-size: .92rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}
.section--dark .section__eyebrow { color: var(--gold-light); }
.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin: 0 0 2rem;
  color: var(--ruby-deep);
  letter-spacing: .005em;
}
.section__title em {
  font-family: var(--font-script);
  color: var(--ruby);
  font-size: 1.1em;
  letter-spacing: normal;
}
.section__title--light { color: var(--ivory); }
.section__lead {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--ink-soft);
  margin: 0 0 3rem;
  max-width: 760px;
  line-height: 1.55;
}

/* reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================
   LIST od córek
   ===================================================== */
.letter {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 3rem 3rem 4rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--ink);
}
.letter::before,
.letter::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  opacity: .6;
}
.letter::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.letter::after  { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
.letter__drop::first-letter {
  font-size: 3.8rem;
  font-weight: 600;
  float: left;
  line-height: 1;
  padding: .2rem .75rem 0 0;
  color: var(--ruby);
  font-family: var(--font-serif);
}
.letter p { margin: 0 0 1.2rem; }
.letter__seal {
  position: absolute;
  right: -30px; bottom: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--ruby-wine), var(--ruby-deep) 70%);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: var(--shadow-soft), inset 0 0 0 2px var(--gold);
  transition: transform .3s ease;
  user-select: none;
}
.letter__seal:hover { transform: scale(1.08) rotate(-6deg); }
.letter__seal span:first-child { margin-right: .05em; }

/* callbacks (Madera, Karlowe Vary, Ołomuniec) */
.callbacks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}
.callback {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.callback:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.callback__stamp {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  border: 1px dashed var(--ruby);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(139, 28, 50, .04);
}
.callback__stamp svg { width: 70%; height: 70%; }
.stamp-sun { fill: none; stroke: var(--ruby); stroke-width: 2; }
.stamp-rays { fill: var(--gold); }
.stamp-cup { fill: none; stroke: var(--ruby); stroke-width: 2; }
.stamp-steam { fill: none; stroke: var(--ruby-wine); stroke-width: 1.5; stroke-dasharray: 3 2; }
.stamp-rose { fill: var(--ruby); }
.callback h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--ruby-deep);
  margin: 0 0 .6rem;
}
.callback p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.callback__year {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
}
.callback--next {
  background: linear-gradient(180deg, #FBF7EF 0%, rgba(201,169,97,.15) 100%);
  border-color: var(--gold);
}
.callback--next::after {
  content: '→';
  position: absolute;
  top: 10px; right: 14px;
  color: var(--gold);
  font-size: 1.3rem;
}

@media (max-width: 860px) {
  .callbacks { grid-template-columns: 1fr; }
  .letter { padding: 2rem 1.5rem 2.5rem; font-size: 1.05rem; }
  .letter__seal { right: 10px; bottom: -40px; width: 74px; height: 74px; font-size: 1.4rem; }
}

/* =====================================================
   CITY · Ołomuniec
   ===================================================== */
.city {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.city__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
  transform: rotate(-1deg);
  transition: transform .4s ease;
}
.city__image:hover { transform: rotate(0); }
.city__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.city__image figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ivory);
  font-size: 1.1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent);
}
.city__text p {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.65;
  margin: 0 0 1.4rem;
  color: rgba(245,239,228,.95);
}
.city__list {
  list-style: none;
  padding: 0; margin: 0;
}
.city__list li {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(201,169,97,.2);
  font-size: 1.15rem;
  color: rgba(245,239,228,.9);
  display: flex;
  gap: .9rem;
  line-height: 1.5;
}
.city__list li:last-child { border-bottom: 0; }
.city__list li span { color: var(--gold); flex-shrink: 0; font-size: 1.2rem; }
.city__list li em {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
}
@media (max-width: 860px) {
  .city { grid-template-columns: 1fr; gap: 2rem; }
}

/* =====================================================
   DIESELEK
   ===================================================== */
.dizelek {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}
.dizelek__photo {
  position: relative;
  cursor: pointer;
  outline: none;
}
.dizelek__frame {
  width: 280px; height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #FBF7EF;
  box-shadow: var(--shadow-deep), 0 0 0 2px var(--gold);
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.dizelek__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dizelek__photo:hover .dizelek__frame { transform: rotate(-3deg) scale(1.02); }
.dizelek__photo:hover .dizelek__frame img { transform: scale(1.07); }
.dizelek__paw {
  position: absolute;
  top: -10px; right: -10px;
  width: 54px; height: 54px;
  background: var(--ruby);
  color: var(--gold-light);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(15deg);
  animation: wiggle 3s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(15deg); }
  50% { transform: rotate(-8deg); }
}
.dizelek__hint {
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  padding: .3rem .8rem;
  background: var(--ruby-deep);
  color: var(--gold-light);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .3s ease;
}
.dizelek__photo:hover .dizelek__hint { opacity: 1; }

.dizelek__tags {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.5rem;
}
.tag {
  padding: .6rem 1.2rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: 999px;
  font-size: 1rem;
  color: var(--ink-soft);
  transition: all .25s ease;
}
.tag:hover {
  border-color: var(--ruby);
  color: var(--ruby);
  transform: translateY(-2px);
}
@media (max-width: 860px) {
  .dizelek { grid-template-columns: 1fr; text-align: center; }
  .dizelek__frame { width: 220px; height: 220px; margin: 0 auto; }
  .dizelek__tags { justify-content: center; }
}

/* =====================================================
   MODAL
   ===================================================== */
.modal {
  position: fixed; inset: 0;
  display: none;
  place-items: center;
  z-index: 1000;
}
.modal.is-open { display: grid; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(30, 5, 10, .7);
  backdrop-filter: blur(6px);
  animation: fadeIn .3s ease;
}
.modal__box {
  position: relative;
  max-width: 520px; width: 90vw;
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-deep);
  text-align: center;
  animation: modalIn .4s cubic-bezier(.2,.8,.2,1);
}
.modal__box img {
  width: 100%;
  border-radius: 10px;
  max-height: 60vh;
  object-fit: cover;
}
.modal__caption {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 1rem 0 0;
}
.modal__close {
  position: absolute;
  top: 10px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--gold-light);
  font-size: 1.6rem;
  line-height: 1;
  display: grid; place-items: center;
}
.modal__close:hover { background: var(--ruby-deep); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =====================================================
   TABS + DNI
   ===================================================== */
.tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 2rem 0 2.5rem;
  padding: .4rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: 999px;
  width: fit-content;
}
.tab {
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-soft);
  transition: all .3s ease;
}
.tab:hover { color: var(--ruby); }
.tab.is-active {
  background: var(--ruby);
  color: var(--gold-light);
  box-shadow: 0 6px 14px rgba(139, 28, 50, .3);
}

.day { display: none; animation: fadeIn .5s ease; }
.day.is-active { display: block; }
.day__header {
  display: flex; align-items: center; gap: 1.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,97,.3);
}
.day__number {
  display: inline-grid; place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-deep) 100%);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft), inset 0 0 0 2px var(--gold);
  flex-shrink: 0;
}
.day__header h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ruby-deep);
  margin: 0 0 .3rem;
  font-weight: 500;
}
.day__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.25rem;
}

/* TIMELINE */
.timeline {
  list-style: none;
  padding: 0; margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 31px; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.timeline__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  align-items: start;
  position: relative;
}
.timeline__dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #FBF7EF;
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(60,10,20,.1);
  transition: transform .3s ease, background .3s ease;
}
/* timeline dot icon rendered via JS (SVG use element) */
.timeline__item:hover .timeline__dot {
  transform: scale(1.12);
  background: var(--ruby);
}
.timeline__card {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, border-color .3s ease;
}
.timeline__item:hover .timeline__card {
  transform: translateX(6px);
  border-color: var(--gold);
}
.timeline__card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ruby-deep);
  margin: 0 0 .4rem;
}
.timeline__card p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; }

/* DZIEŃ 2 */
.day2-hero {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  transform: translateY(0);
  transition: transform .4s ease;
}
.day2-hero img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/8;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}
.feature {
  padding: 1.8rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  transition: transform .35s ease, border-color .35s ease;
}
.feature:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.feature h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ruby-deep);
  margin: 0 0 .8rem;
}
.feature p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.65; }

/* TOAST — punkt kulminacyjny */
.toast {
  position: relative;
  padding: 3rem 2.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,169,97,.15), transparent 50%),
    linear-gradient(135deg, #FBF7EF 0%, #F3E9D2 100%);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  text-align: center;
  box-shadow: var(--shadow-deep);
}
.toast__wax {
  position: absolute;
  top: -35px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--ruby-wine), var(--ruby-deep) 70%);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .08em;
  box-shadow: 0 6px 16px rgba(60,10,20,.3), inset 0 0 0 2px var(--gold);
}
.toast__eyebrow {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ruby);
  margin: .6rem 0 .3rem;
}
.toast h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ruby-deep);
  margin: 0 0 1rem;
  font-weight: 500;
}
.toast p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 auto .8rem;
  line-height: 1.6;
}
.toast__note {
  font-style: italic;
  color: var(--ruby);
}
.toast__glasses {
  margin-top: 1.5rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: clink 3s ease-in-out infinite;
}
@keyframes clink {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* DZIEŃ 3 */
.day3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.day3__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.day3__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.day3__callouts {
  display: flex; flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.callout {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  transition: transform .3s ease;
}
.callout:hover { transform: translateX(6px); border-color: var(--gold); }
.callout__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
}
.callout p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; }

@media (max-width: 860px) {
  .grid2, .day3 { grid-template-columns: 1fr; }
  .day__header { flex-direction: column; text-align: center; gap: 1rem; }
  .timeline__item { gap: .8rem; grid-template-columns: 54px 1fr; }
  .timeline__dot { width: 54px; height: 54px; font-size: 1.3rem; }
  .timeline::before { left: 26px; }
}

/* =====================================================
   HOTEL
   ===================================================== */
.hotel {
  position: relative;
  margin-top: 2rem;
}
.hotel__badge {
  position: absolute;
  top: -45px; right: 10px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ruby-deep);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-deep);
  transform: rotate(-12deg);
  z-index: 2;
}
.hotel__badge span { display: block; font-size: 1.6rem; font-weight: 700; line-height: 1; }
.hotel__badge small { font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .6rem 0; line-height: 1.2; }
.hotel__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.hotel__feature {
  padding: 1.8rem;
  background: rgba(245,239,228,.06);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: var(--radius);
  transition: background .3s ease, transform .3s ease;
}
.hotel__feature:hover {
  background: rgba(245,239,228,.12);
  transform: translateY(-4px);
}
.hotel__feature--suite {
  border-color: rgba(201,169,97,.6);
  background: rgba(201,169,97,.1);
}
.hotel__feature h4 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--gold-light);
  margin: 0 0 .6rem;
}
.hotel__feature p { margin: 0; color: rgba(245,239,228,.88); font-size: 1.1rem; line-height: 1.6; }
.hotel__actions {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap;
  gap: 1.4rem; align-items: center;
  justify-content: space-between;
}
.hotel__dates {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
}
@media (max-width: 860px) {
  .hotel__grid { grid-template-columns: 1fr; }
  .hotel__badge { position: static; margin: 0 auto 1.5rem; transform: rotate(0); }
}

/* =====================================================
   PREZENT — checklist
   ===================================================== */
.gift {
  list-style: none;
  padding: 0; margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.gift__item {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  animation: giftIn .7s ease both;
  animation-delay: var(--d);
  opacity: 0;
}
.gift__item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(60,10,20,.14);
}
.reveal.is-visible .gift__item { opacity: 1; }
.gift__check {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 2px var(--gold);
}
.gift__item h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ruby-deep);
  margin: 0 0 .4rem;
}
.gift__item p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; }
@keyframes giftIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) {
  .gift { grid-template-columns: 1fr; }
}

/* =====================================================
   PODPIS — polaroidy
   ===================================================== */
.polaroids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  perspective: 1200px;
}
.polaroid {
  margin: 0;
  background: #FBF7EF;
  padding: 1rem 1rem 1.8rem;
  box-shadow: var(--shadow-deep);
  transition: transform .5s ease;
  text-align: center;
}
.polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid:nth-child(2) { transform: rotate(1.5deg) translateY(-10px); }
.polaroid:nth-child(3) { transform: rotate(-1.5deg); }
.polaroid:hover { transform: rotate(0) translateY(-12px) scale(1.04); z-index: 2; }
.polaroid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #ddd;
}
/* Landscape photo — np. Karolka z Klarą */
.polaroid--landscape img {
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}
.polaroid figcaption {
  margin-top: 1rem;
  font-family: var(--font-script);
  font-size: 1.95rem;
  color: var(--ruby);
}
.polaroid figcaption span { color: var(--gold); margin: 0 .2rem; }

.sign {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink-soft);
  margin: 2rem 0 0;
}
.sign--big {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--ruby);
  margin: .3rem 0 0;
  line-height: 1;
}

.family {
  margin: 4rem auto 0;
  max-width: 780px;
}
.family figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.family img { width: 100%; }
.family figcaption {
  padding: 1.4rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ruby-deep);
  background: #FBF7EF;
}

@media (max-width: 860px) {
  .polaroids { grid-template-columns: 1fr; gap: 1.2rem; }
  .polaroid:nth-child(n) { transform: rotate(0); }
}

/* =====================================================
   PRZEWODNIK — guide section
   ===================================================== */

/* ALERTY */
.guide-alerts { display: grid; gap: .9rem; margin-bottom: 2.5rem; }
.alert {
  display: flex;
  gap: 1.1rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  line-height: 1.6;
  align-items: flex-start;
}
.alert--warn { background: rgba(201,169,97,.18); border: 1px solid var(--gold); color: var(--ink); }
.alert--dog  { background: rgba(74,107,74,.12); border: 1px solid rgba(74,107,74,.4); color: var(--ink); }
.alert__icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; }

/* GUIDE TABS */
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  padding: .4rem;
  background: rgba(201,169,97,.1);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: 999px;
  width: fit-content;
}
.guide-tab {
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .3s ease;
  white-space: nowrap;
}
.guide-tab:hover { color: var(--ruby); }
.guide-tab.is-active {
  background: var(--ruby);
  color: var(--gold-light);
  box-shadow: 0 6px 14px rgba(139,28,50,.3);
}

/* PANELS */
.guide-panel { display: none; animation: fadeIn .4s ease; }
.guide-panel.is-active { display: block; }
.guide-intro {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(201,169,97,.3);
}

/* ATTRACTION CARDS */
.attr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.attr-card {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.attr-card:hover { box-shadow: var(--shadow-soft); border-color: rgba(201,169,97,.5); }
.attr-card--tip { border-color: rgba(139,28,50,.25); background: rgba(139,28,50,.04); }
.attr-card__header {
  display: flex;
  gap: 1rem;
  padding: 1.4rem 1.4rem 0;
  align-items: flex-start;
}
.attr-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.attr-card__header h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: .2rem 0 .4rem;
}
.attr-card__meta {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0;
}
.attr-card__body {
  padding: 1rem 1.4rem;
  display: none;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
}
.attr-card.is-expanded .attr-card__body { display: block; animation: fadeIn .3s ease; }
.attr-card__body p { margin: 0 0 .7rem; }
.attr-card__body p:last-child { margin-bottom: 0; }
.attr-card__tip {
  background: rgba(201,169,97,.12);
  border-left: 3px solid var(--gold);
  padding: .6rem .9rem;
  border-radius: 0 6px 6px 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--ink-soft) !important;
}
.attr-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  margin-right: .8rem;
  font-size: .9rem;
  color: var(--ruby);
  text-decoration: underline;
}
.attr-list {
  padding-left: 1.5rem;
  margin: 0;
  line-height: 1.7;
}
.attr-card__toggle {
  width: 100%;
  padding: .7rem 1.4rem;
  text-align: left;
  font-size: .9rem;
  color: var(--ruby);
  font-weight: 500;
  background: rgba(139,28,50,.04);
  border-top: 1px solid var(--parchment-d);
  transition: background .25s ease;
  letter-spacing: .02em;
}
.attr-card__toggle:hover { background: rgba(139,28,50,.08); }
.attr-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .4rem;
}

/* BADGES */
.badge {
  font-size: .72rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  text-transform: uppercase;
}
.badge--unesco { background: rgba(201,169,97,.25); color: #7a5c1e; border: 1px solid var(--gold); }
.badge--stars { background: rgba(139,28,50,.1); color: var(--ruby); border: 1px solid rgba(139,28,50,.25); }
.badge--dog { background: rgba(74,107,74,.15); color: #3a5a3a; border: 1px solid rgba(74,107,74,.35); }
.badge--nodog { background: rgba(180,50,50,.1); color: #8a2020; border: 1px solid rgba(180,50,50,.3); }
.badge--romantic { background: rgba(201,169,97,.15); color: var(--ruby); border: 1px solid rgba(201,169,97,.3); }
.badge--local { background: rgba(139,28,50,.08); color: var(--ruby-deep); border: 1px solid rgba(139,28,50,.2); }
.badge--warn { background: rgba(201,100,30,.15); color: #8a4a10; border: 1px solid rgba(201,100,30,.35); }
.badge--gold { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--ruby-deep); }
.badge--michelin { background: #C11B1B; color: #fff; }

/* DISTANCE BAR */
.distances {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 2rem;
}
.distances__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: 0 0 1.2rem;
}
.distances__list { list-style: none; padding: 0; margin: 0; }
.distances__list li {
  display: grid;
  grid-template-columns: 200px 1fr 130px;
  align-items: center;
  gap: 1rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(201,169,97,.15);
  font-size: .92rem;
}
.distances__list li:last-child { border-bottom: 0; }
.dist__name { color: var(--ink); font-weight: 500; }
.dist__bar {
  height: 6px;
  background: rgba(201,169,97,.2);
  border-radius: 999px;
  overflow: hidden;
}
.dist__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--ruby), var(--ruby-wine)); border-radius: 999px; min-width: 4px; }
.dist__val { color: var(--ink-soft); font-size: .85rem; white-space: nowrap; }

/* ROUTE BOX */
.route-box {
  background: rgba(92,16,32,.06);
  border: 1px solid rgba(139,28,50,.2);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-top: 1.5rem;
}
.route-box h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: 0 0 .8rem;
}
.route-box p { margin: 0 0 .6rem; font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft); }
.route-box p:last-child { margin-bottom: 0; }

/* RESTAURANT CARDS */
.resto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.resto-card {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.resto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); border-color: var(--gold); }
.resto-card__top {
  padding: 1.4rem 1.4rem .8rem;
  border-bottom: 1px solid var(--parchment-d);
  background: linear-gradient(180deg, rgba(139,28,50,.04), transparent);
}
.resto-card__top h4 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--ruby-deep);
  margin: .5rem 0 .2rem;
}
.resto-card__cuisine { font-size: .92rem; color: var(--ink-soft); margin: 0; font-style: italic; }
.resto-card__body { padding: 1.2rem 1.4rem; flex: 1; font-size: 1rem; color: var(--ink-soft); line-height: 1.65; }
.resto-card__body p { margin: 0 0 .8rem; }
.resto-card__details { margin-top: .8rem; display: grid; gap: .3rem; }
.resto-card__details div { font-size: .9rem; color: var(--ink-soft); }
.resto-card__details a { color: var(--ruby); text-decoration: underline; }
.resto-card__warn { background: rgba(201,100,30,.1); border-left: 3px solid #c8622a; padding: .5rem .8rem; border-radius: 0 4px 4px 0; font-size: .9rem; font-style: italic; }
.resto-card__footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--parchment-d);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  background: rgba(201,169,97,.06);
}
.resto-specials { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.btn--ruby {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.2rem;
  background: var(--ruby);
  color: var(--gold-light) !important;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .25s ease;
}
.btn--ruby:hover { background: var(--ruby-deep); transform: translateY(-1px); }

/* MAIL TEMPLATE */
.mail-template {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-top: 1rem;
}
.mail-template h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: 0 0 1rem;
}
.mail-template__body {
  background: rgba(201,169,97,.08);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 1.4rem;
  margin-bottom: 1rem;
}
.mail-template__body p {
  margin: 0 0 .7rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.mail-template__body p:last-child { margin-bottom: 0; }
.mail-template__trans { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* DOG TABLE */
.dog-table-wrap { overflow-x: auto; margin-bottom: 2rem; }
.dog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #FBF7EF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.dog-table th {
  background: var(--ruby);
  color: var(--gold-light);
  padding: .85rem 1.2rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.dog-table td { padding: .75rem 1.2rem; border-bottom: 1px solid var(--parchment-d); line-height: 1.5; }
.dog-table tr.yes td:nth-child(2) { color: #2a7a2a; font-weight: 600; }
.dog-table tr.no td:nth-child(2) { color: #8a2020; font-weight: 600; }
.dog-table tr:last-child td { border-bottom: 0; }
.dog-table tr:hover td { background: rgba(201,169,97,.08); }

/* DOG TIPS GRID */
.dog-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.dog-tip {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.dog-tip h5 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ruby-deep);
  margin: 0 0 .6rem;
}
.dog-tip p { margin: 0; font-size: .97rem; color: var(--ink-soft); line-height: 1.6; }

/* DOG PHRASES */
.dog-phrases { background: #FBF7EF; border: 1px solid var(--parchment-d); border-radius: var(--radius); padding: 1.8rem; }
.dog-phrases h4 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ruby-deep); margin: 0 0 1.2rem; }
.phrase-list { display: grid; gap: .5rem; }
.phrase-row {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: .8rem;
  padding: .65rem .9rem;
  background: rgba(201,169,97,.08);
  border-radius: 6px;
  font-size: .95rem;
  align-items: center;
}
.phrase-pl { color: var(--ink); font-weight: 500; }
.phrase-cs { color: var(--ruby-deep); font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.05rem; }
.phrase-how { color: var(--ink-soft); font-size: .85rem; }

/* PRACTICAL CARDS */
.pract-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.pract-card {
  background: #FBF7EF;
  border: 1px solid var(--parchment-d);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .3s ease;
}
.pract-card:hover { transform: translateY(-3px); border-color: rgba(201,169,97,.5); }
.pract-card__icon { font-size: 2rem; margin-bottom: .7rem; }
.pract-card h5 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: 0 0 .8rem;
}
.pract-card p { margin: 0 0 .6rem; font-size: .97rem; color: var(--ink-soft); line-height: 1.6; }
.pract-card a { color: var(--ruby); text-decoration: underline; }

/* FLIP CARDS */
.flip-section { margin-bottom: 2.5rem; }
.flip-section h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ruby-deep);
  margin: 0 0 1.2rem;
}
.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .8rem;
}
.flip-card {
  height: 90px;
  perspective: 800px;
  cursor: pointer;
}
.flip-card__inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.4,.2,.2,1);
  border-radius: 10px;
}
.flip-card.is-flipped .flip-card__inner { transform: rotateY(180deg); }
.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .7rem;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-card__front {
  background: linear-gradient(135deg, var(--ruby) 0%, var(--ruby-deep) 100%);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  border: 1px solid rgba(201,169,97,.35);
  box-shadow: var(--shadow-soft);
}
.flip-card__back {
  background: linear-gradient(135deg, #FBF7EF 0%, var(--parchment) 100%);
  color: var(--ruby-deep);
  transform: rotateY(180deg);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.flip-card__back span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}
.flip-card__back small {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: .3rem;
  font-style: italic;
}

/* CHECKLIST */
.checklist-section { background: #FBF7EF; border: 1px solid var(--parchment-d); border-radius: var(--radius); padding: 1.8rem; }
.checklist-section h4 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ruby-deep); margin: 0 0 1.4rem; }
.checklist-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.checklist-cat { font-family: var(--font-serif); font-size: 1.15rem; color: var(--ruby); margin: 0 0 .8rem; font-weight: 600; }
.check-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .5rem .2rem;
  border-bottom: 1px solid rgba(201,169,97,.12);
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.4;
  transition: color .2s ease;
}
.check-item:last-child { border-bottom: 0; }
.check-item:hover { color: var(--ruby-deep); }
.check-item input { margin-top: .15rem; accent-color: var(--ruby); transform: scale(1.3); flex-shrink: 0; }
.check-item:has(input:checked) { color: rgba(0,0,0,.35); text-decoration: line-through; }

@media (max-width: 860px) {
  .guide-tabs { border-radius: var(--radius); padding: .5rem; }
  .guide-tab { padding: .6rem 1rem; font-size: .9rem; }
  .attr-grid, .resto-grid { grid-template-columns: 1fr; }
  .distances__list li { grid-template-columns: 1fr 60px; }
  .dist__bar { display: none; }
  .phrase-row { grid-template-columns: 1fr 1fr; }
  .phrase-how { display: none; }
  .checklist-cols { grid-template-columns: 1fr; }
  .flip-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
  .pract-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   MOTYWY KWIATOWE — DIVIDERS, BOUQUETS, GEMS
   ===================================================== */
.rose-divider {
  display: flex;
  justify-content: center;
  margin: 0 auto 3rem;
  max-width: 380px;
}
.rose-divider__svg {
  width: 100%;
  height: 40px;
  display: block;
}
.rose-divider--dark .rose-divider__svg path[stroke="#C9A961"] {
  stroke: #E8C87A;
  opacity: .9;
}

/* HERO — bouquet corners + rose */
.hero__bouquet {
  position: absolute;
  width: 180px; height: 200px;
  pointer-events: none;
  opacity: .85;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.4));
  z-index: 1;
}
.hero__bouquet svg { width: 100%; height: 100%; }
.hero__bouquet--l {
  bottom: -30px;
  left: -30px;
  transform: rotate(15deg);
}
.hero__bouquet--r {
  bottom: -30px;
  right: -30px;
  transform: scaleX(-1) rotate(15deg);
}
@media (max-width: 860px) {
  .hero__bouquet { width: 120px; height: 140px; opacity: .5; }
  .hero__bouquet--l { bottom: -20px; left: -25px; }
  .hero__bouquet--r { bottom: -20px; right: -25px; }
}

.hero__rose {
  width: 70px; height: 85px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(139,28,50,.4));
  animation: roseSway 5s ease-in-out infinite;
}
.hero__rose svg { width: 100%; height: 100%; }
@keyframes roseSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* TOAST — rubinowe gemy po bokach */
.toast__gem {
  position: absolute;
  top: 20px;
  filter: drop-shadow(0 4px 8px rgba(139,28,50,.3));
  animation: gemTwinkle 3s ease-in-out infinite;
}
.toast__gem--l { left: 24px; }
.toast__gem--r { right: 24px; animation-delay: 1.5s; }
@keyframes gemTwinkle {
  0%, 100% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* =====================================================
   SLIDER PREZENTACJI
   ===================================================== */
.slider {
  margin-top: 2rem;
  --slider-bg: rgba(0,0,0,.35);
}
.slider__stage {
  position: relative;
  background: var(--slider-bg);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-deep);
}
.slider__track {
  position: relative;
  width: 100%; height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
  cursor: zoom-in;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #1a0509;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(245,239,228,.1);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
  z-index: 3;
}
.slider__arrow:hover { background: var(--ruby); transform: translateY(-50%) scale(1.08); }
.slider__arrow:disabled { opacity: .3; cursor: not-allowed; }
.slider__arrow--prev { left: 16px; }
.slider__arrow--next { right: 16px; }

.slider__fs {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.1rem;
  z-index: 3;
  transition: background .25s ease;
}
.slider__fs:hover { background: var(--ruby); }

.slider__counter {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  padding: .35rem 1rem;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: .9rem;
  color: var(--gold-light);
  letter-spacing: .1em;
  z-index: 2;
}

.slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin: 1.2rem 0 .8rem;
}
.slider__dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201,169,97,.3);
  border: 1px solid rgba(201,169,97,.5);
  transition: all .25s ease;
}
.slider__dots button:hover { background: var(--gold); }
.slider__dots button.is-active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(201,169,97,.2);
}

.slider__thumbs {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: .45rem;
  margin: 0 0 1rem;
}
.slider__thumbs button {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  opacity: .55;
  transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
  padding: 0;
  background: #1a0509;
}
.slider__thumbs button img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slider__thumbs button:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.slider__thumbs button.is-active {
  opacity: 1;
  border-color: var(--gold);
}

.slider__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,97,.2);
}
.slider__play {
  padding: .6rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  background: transparent;
  font-size: .85rem;
  letter-spacing: .08em;
  transition: all .25s ease;
}
.slider__play:hover { background: var(--gold); color: var(--ruby-deep); }
.slider__play.is-playing { background: var(--ruby); color: var(--gold-light); border-color: var(--ruby-wine); }
.slider__hint {
  font-size: .8rem;
  color: rgba(245,239,228,.55);
  letter-spacing: .05em;
}

/* FULLSCREEN */
.slider.is-fullscreen {
  position: fixed;
  inset: 0;
  margin: 0;
  z-index: 2000;
  background: #0a0305;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.slider.is-fullscreen .slider__stage {
  flex: 1 1 0;
  height: 0;
  aspect-ratio: unset;
  min-height: 0;
  border-radius: 0;
  background: #000;
  overflow: hidden;
}
.slider.is-fullscreen .slider__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.slider.is-fullscreen .slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.slider.is-fullscreen .slider__thumbs { display: none; }
.slider.is-fullscreen .slider__dots { display: none; }

@media (max-width: 860px) {
  .slider__thumbs { grid-template-columns: repeat(7, 1fr); }
  .slider__arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .slider__arrow--prev { left: 8px; } .slider__arrow--next { right: 8px; }
  .slider__bar { flex-direction: column; text-align: center; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: linear-gradient(180deg, var(--ruby-deep) 0%, #1a0509 100%);
  color: var(--ivory);
  padding: 4rem 1.5rem;
  text-align: center;
}
.footer__inner {
  max-width: 680px;
  margin: 0 auto;
}
.footer__heart {
  font-size: 2rem;
  color: var(--ruby-wine);
  margin: 0 0 1rem;
  animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.15); }
  20% { transform: scale(1); }
  30% { transform: scale(1.12); }
  40% { transform: scale(1); }
}
.footer p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  color: rgba(245,239,228,.9);
}
.footer__small {
  font-size: .85rem !important;
  letter-spacing: .1em;
  color: rgba(245,239,228,.55) !important;
}

/* =====================================================
   EASTER EGG
   ===================================================== */
.easter {
  position: fixed; inset: 0;
  display: none;
  place-items: center;
  z-index: 1001;
  background: rgba(30, 5, 10, .85);
  backdrop-filter: blur(10px);
  animation: fadeIn .4s ease;
}
.easter.is-open { display: grid; }
.easter__box {
  max-width: 520px;
  width: 90vw;
  padding: 3rem 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #FBF7EF 0%, #F3E9D2 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--font-serif);
  color: var(--ruby-deep);
  box-shadow: 0 30px 80px rgba(60,10,20,.5);
  animation: modalIn .5s cubic-bezier(.2,.8,.2,1);
}
.easter__title {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--ruby);
  margin: 0 0 1rem;
}
.easter__box p {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
[data-lb] {
  cursor: zoom-in;
  transition: filter .3s ease;
}
[data-lb]:hover { filter: brightness(1.04); }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}
.lightbox.is-open { display: block; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(92,16,32,.92) 0%, rgba(10,3,5,.98) 80%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn .4s ease;
  cursor: zoom-out;
}
.lightbox__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 5.5rem 3rem;
  pointer-events: none;
}
.lightbox__frame {
  position: relative;
  max-width: 100%;
  padding: 14px;
  background: #FBF7EF;
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.7),
    0 0 0 1px rgba(201,169,97,.3),
    0 0 60px rgba(201,169,97,.15);
  pointer-events: auto;
  animation: lbIn .5s cubic-bezier(.2,.8,.2,1);
}
.lightbox__frame img {
  display: block;
  max-width: 82vw;
  max-height: 68vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 2px;
}
/* Złote narożniki ornamentalne */
.lightbox__corner {
  position: absolute;
  width: 26px; height: 26px;
  pointer-events: none;
}
.lightbox__corner::before,
.lightbox__corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
}
.lightbox__corner--tl { top: -10px; left: -10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.lightbox__corner--tr { top: -10px; right: -10px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.lightbox__corner--bl { bottom: -10px; left: -10px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.lightbox__corner--br { bottom: -10px; right: -10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.lightbox__corner::before {
  width: 6px; height: 6px; border-radius: 50%;
  top: -4px; left: -4px;
  box-shadow: 0 0 8px var(--gold-light);
}
.lightbox__corner--tr::before { left: auto; right: -4px; }
.lightbox__corner--bl::before { top: auto; bottom: -4px; }
.lightbox__corner--br::before { top: auto; left: auto; bottom: -4px; right: -4px; }

.lightbox__caption-wrap {
  margin-top: 1.8rem;
  text-align: center;
  pointer-events: auto;
  max-width: 720px;
  animation: lbIn .7s cubic-bezier(.2,.8,.2,1) .15s both;
}
.lightbox__flourish {
  display: block;
  margin: 0 auto .8rem;
  opacity: .8;
}
.lightbox__flourish path[stroke="#C9A961"] { stroke: var(--gold-light); }
.lightbox__caption {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.lightbox__counter {
  margin-top: .8rem;
  color: rgba(201,169,97,.55);
  font-size: .85rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--gold-light);
  font-size: 2.1rem;
  line-height: 1;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 0 0 2px rgba(201,169,97,.3);
  z-index: 10;
  transition: all .3s ease;
}
.lightbox__close:hover {
  background: var(--ruby-deep);
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 10px 30px rgba(139,28,50,.5), inset 0 0 0 2px var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(139,28,50,.35);
  color: var(--gold-light);
  font-size: 2.2rem;
  line-height: 1;
  border: 1px solid rgba(201,169,97,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 5;
  transition: all .3s ease;
}
.lightbox__nav:hover {
  background: var(--ruby);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(201,169,97,.3);
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__nav:disabled { opacity: 0; pointer-events: none; }

@keyframes lbIn {
  from { opacity: 0; transform: scale(.92) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 680px) {
  .lightbox__content { padding: 4rem 1.5rem 2rem; }
  .lightbox__frame img { max-width: 92vw; max-height: 58vh; }
  .lightbox__close { width: 44px; height: 44px; font-size: 1.7rem; top: .8rem; right: .8rem; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.7rem; }
  .lightbox__nav--prev { left: .5rem; } .lightbox__nav--next { right: .5rem; }
  .lightbox__caption { font-size: 1.1rem; }
}

/* =====================================================
   TO TOP
   ===================================================== */
.to-top {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ruby);
  color: var(--gold-light);
  font-size: 1.3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  box-shadow: var(--shadow-deep);
  z-index: 50;
  pointer-events: none;
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--ruby-deep); transform: translateY(-3px); }

/* ===== PRINT ===== */
@media print {
  .envelope, .nav, .petals, .to-top, .modal, .easter { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .petals { display: none; }
}
