/* Kwiatek Studio Urody, Beauty & Art. Lublin. */

:root {
  --ivory: #FBF7F0;
  --cream: #F5EDE2;
  --sand: #EAD9C6;
  --blush: #E9B8BC;
  --rose: #D89AA0;
  --gold: #C6A15B;
  --gold-deep: #A9853F;
  --gold-text: #8A6A2F;
  --cocoa: #33261F;
  --ink: #241B16;
  --white: #FFFDFA;
  --shadow: 0 24px 60px -24px rgba(51, 38, 31, .22);
  --shadow-soft: 0 12px 34px -16px rgba(51, 38, 31, .16);
  --radius: 22px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--blush); color: var(--ink); }

:focus-visible {
  outline: 2.5px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==================== Preloader ==================== */

.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  transition: opacity .8s var(--ease-out), visibility .8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__logo {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem); color: var(--cocoa);
}
.preloader__logo span { color: var(--gold); }
.preloader__bar {
  width: min(240px, 60vw); height: 2px; background: var(--sand);
  border-radius: 2px; overflow: hidden;
}
.preloader__fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  transition: width .3s ease;
}
.preloader__hint {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}

/* ==================== Nawigacja ==================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.nav.scrolled {
  background: rgba(251, 247, 240, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(51, 38, 31, .25);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__logo {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.5rem; color: var(--cocoa); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav__logo svg { width: 26px; height: 26px; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); list-style: none; }
.nav__links a:not(.btn) {
  text-decoration: none; font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cocoa);
  position: relative; padding: 4px 0;
}
.nav__links .btn { font-size: .78rem; padding: 12px 22px; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .35s var(--ease-out);
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 110;
}
.nav__burger span {
  display: block; width: 24px; height: 2px; background: var(--cocoa);
  margin: 5px auto; transition: transform .35s ease, opacity .35s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== Przyciski ==================== */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(120deg, var(--gold), var(--gold-deep));
  color: var(--white) !important; text-decoration: none;
  font-weight: 700; font-size: .86rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(169, 133, 63, .55);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -14px rgba(169, 133, 63, .65); }
.btn:hover::before { left: 120%; }
.btn--ghost {
  background: transparent; color: var(--cocoa) !important;
  border: 1.5px solid var(--gold); box-shadow: none;
}
.btn--ghost:hover { box-shadow: 0 14px 30px -14px rgba(169, 133, 63, .4); }
.btn--big { padding: 19px 42px; font-size: .95rem; }

/* ==================== Hero scrub ==================== */

.hero { position: relative; height: 520vh; }
.hero--static, .hero--mobile { height: auto; }
.hero__sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: hidden; background: var(--cream);
}
.hero--static .hero__sticky, .hero--mobile .hero__sticky { position: relative; }
.hero__video, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero__poster { z-index: 1; }
.hero__video { z-index: 2; opacity: 0; transition: opacity .6s ease; }
.hero__video.ready { opacity: 1; }
.hero__team {
  position: absolute; inset: 0; z-index: 3;
  opacity: 0; transform: scale(1.06);
  transition: opacity .9s var(--ease-out), transform 1.4s var(--ease-out);
  pointer-events: none;
}
.hero__team.visible { opacity: 1; transform: scale(1); }
.hero__team img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__team::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36, 27, 22, .55) 0%, transparent 45%);
}
.hero__dim {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(ellipse at 28% 55%, rgba(36, 27, 22, .28), transparent 60%);
  opacity: 0; transition: opacity .5s ease;
}
.hero__particles { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.hero__bands { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.hero__band {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(24px, 7vw, 110px);
  opacity: 0; transform: translateY(34px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.hero__band.active { opacity: 1; transform: translateY(0); }
.hero__band--center { align-items: center; text-align: center; }
.hero__band--bottom { justify-content: flex-end; padding-bottom: clamp(60px, 12vh, 130px); }
.hero__eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero__band--center .hero__eyebrow { justify-content: center; }
.hero__eyebrow::before { content: ""; width: 44px; height: 1.5px; background: var(--gold); }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1.04; color: var(--cocoa); max-width: 13ch;
  text-shadow: 0 2px 30px rgba(251, 247, 240, .6);
}
.hero__band--center .hero__title { max-width: none; }
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__sub {
  margin-top: 22px; font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600; color: var(--cocoa); max-width: 44ch; opacity: .92;
}
.hero__band--light .hero__title,
.hero__band--light .hero__sub { color: var(--white); text-shadow: 0 2px 26px rgba(36, 27, 22, .5); }
.hero__band--light .hero__eyebrow { color: var(--blush); }
.hero__band--light .hero__eyebrow::before { background: var(--blush); }
.hero__scrollhint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 7; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cocoa); opacity: .75; transition: opacity .5s ease;
}
.hero__scrollhint.hidden { opacity: 0; }
.hero__scrollhint span { display: block; }
.hero__mouse {
  width: 24px; height: 38px; border: 2px solid var(--cocoa); border-radius: 14px;
  position: relative;
}
.hero__mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 7px; border-radius: 3px; background: var(--gold-deep);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
}
.hero__loading {
  position: absolute; top: 88px; right: 28px; z-index: 8;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(251, 247, 240, .8); border-radius: 999px; padding: 8px 16px;
  opacity: 0; transition: opacity .4s ease;
}
.hero__loading.visible { opacity: 1; }

/* ==================== Wspólne sekcje ==================== */

.section { position: relative; padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 72px); }
.section--cream { background: var(--cream); }
.section__inner { max-width: 1180px; margin: 0 auto; position: relative; }
.section__eyebrow {
  font-size: .76rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section__eyebrow::before { content: ""; width: 40px; height: 1.5px; background: var(--gold); }
.section__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; color: var(--cocoa);
  max-width: 20ch;
}
.section__title em { font-style: italic; color: var(--gold-deep); }
.section__lead { margin-top: 20px; max-width: 62ch; font-size: 1.04rem; color: var(--ink); opacity: .88; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(46px); }
.reveal.in {
  opacity: 1; transform: translateY(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal[data-delay="1"].in { transition-delay: .12s; }
.reveal[data-delay="2"].in { transition-delay: .24s; }
.reveal[data-delay="3"].in { transition-delay: .36s; }
.reveal[data-delay="4"].in { transition-delay: .48s; }

/* Pływające ozdoby */
.float-deco {
  position: absolute; pointer-events: none; z-index: 0; opacity: .5;
  animation: floaty 7s ease-in-out infinite;
}
.float-deco--slow { animation-duration: 11s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(6deg); }
}

/* ==================== Pasek zaufania ==================== */

.trust { background: var(--cocoa); color: var(--ivory); padding: clamp(46px, 7vw, 80px) clamp(20px, 6vw, 72px); }
.trust__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px);
}
.trust__item { text-align: center; position: relative; }
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: calc(-1 * clamp(12px, 2vw, 30px)); top: 12%;
  height: 76%; width: 1px; background: rgba(251, 247, 240, .18);
}
.trust__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--blush); line-height: 1;
}
.trust__num .gold { color: var(--gold); }
.trust__stars { color: var(--gold); font-size: 1rem; letter-spacing: .2em; margin-top: 8px; }
.trust__label {
  margin-top: 10px; font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; opacity: .78;
}

/* ==================== Zespół ==================== */

.team__grid {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.team__photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.team__photo img { transition: transform 1.2s var(--ease-out); }
.team__photo:hover img { transform: scale(1.045); }
.team__photo::after {
  content: ""; position: absolute; inset: 0;
  border: 1.5px solid rgba(198, 161, 91, .5); border-radius: var(--radius);
  margin: 14px; pointer-events: none;
}
.team__badge {
  position: absolute; left: 26px; bottom: 26px;
  background: rgba(251, 247, 240, .92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 20px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cocoa); box-shadow: var(--shadow-soft);
}
.team__badge span { color: var(--gold-deep); }
.team__cards { display: flex; flex-direction: column; gap: 22px; }
.person {
  background: var(--white); border-radius: var(--radius); padding: 28px 30px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(234, 217, 198, .8);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.person__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.person__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--cocoa);
}
.person__role {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
}
.person__desc { font-size: .95rem; opacity: .88; }
.person__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.person__tags span {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  background: var(--cream); border: 1px solid var(--sand);
  border-radius: 999px; padding: 5px 13px; color: var(--cocoa);
}

/* ==================== Galeria ==================== */

.gallery__grid {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.2vw, 26px);
}
.tile {
  position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-soft); aspect-ratio: 4 / 5;
  transform-style: preserve-3d; will-change: transform;
  border: none; padding: 0; background: var(--sand);
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.tile:hover img { transform: scale(1.07); }
.tile__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(36, 27, 22, .68), transparent);
  color: var(--ivory); font-size: .84rem; font-weight: 600; letter-spacing: .08em;
  text-align: left;
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.tile:hover .tile__label,
.tile:focus-visible .tile__label { opacity: 1; transform: translateY(0); }
.tile__zoom {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(251, 247, 240, .88); color: var(--cocoa);
  display: grid; place-items: center; font-size: 1rem;
  opacity: 0; transform: scale(.6); transition: opacity .4s ease, transform .4s var(--ease-out);
}
.tile:hover .tile__zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(36, 27, 22, .9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 4vw;
  opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 900px); max-height: 84vh; object-fit: contain;
  border-radius: 16px; box-shadow: 0 40px 120px -30px rgba(0, 0, 0, .6);
  transform: scale(.92); transition: transform .45s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 26px; right: 30px;
  background: none; border: none; color: var(--ivory); font-size: 2rem; cursor: pointer;
  transition: transform .3s ease;
}
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(251, 247, 240, .14); border: 1px solid rgba(251, 247, 240, .3);
  color: var(--ivory); width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; display: grid; place-items: center;
  transition: background .3s ease;
}
.lightbox__nav:hover { background: rgba(251, 247, 240, .3); }
.lightbox__nav--prev { left: 26px; }
.lightbox__nav--next { right: 26px; }
.lightbox__caption {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--ivory); font-size: .9rem; font-weight: 600; letter-spacing: .1em;
}

/* ==================== Cennik ==================== */

.price__cols {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 50px);
  align-items: start;
}
.price-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(234, 217, 198, .9);
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card__head {
  padding: 26px 30px 20px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--cream);
}
.price-card__head svg { width: 34px; height: 34px; flex-shrink: 0; }
.price-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--cocoa); }
.price-card__group {
  padding: 10px 30px 4px; font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-text);
}
.price-card ul { list-style: none; padding: 4px 30px 22px; }
.price-card li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0; font-size: .94rem;
}
.price-card li .dots {
  flex: 1; border-bottom: 1.5px dotted var(--sand); transform: translateY(-4px);
}
.price-card li .price { font-weight: 700; color: var(--cocoa); white-space: nowrap; }
.price-card li .price .old {
  font-weight: 400; text-decoration: line-through; opacity: .5; margin-right: 8px; font-size: .84rem;
}
.price__note { margin-top: 26px; font-size: .85rem; opacity: .7; max-width: 70ch; }

/* ==================== Opinie ==================== */

.reviews { overflow: hidden; }
.reviews__track {
  margin-top: clamp(40px, 6vw, 70px);
  display: flex; gap: 26px;
  transition: transform .8s var(--ease-out);
}
.review {
  flex: 0 0 min(420px, 86vw);
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(234, 217, 198, .9);
  box-shadow: var(--shadow-soft);
  padding: 30px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.review__stars { color: var(--gold); letter-spacing: .2em; font-size: .95rem; }
.review__text { font-size: .96rem; opacity: .9; font-style: italic; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--gold));
  color: var(--white); font-weight: 700; display: grid; place-items: center; font-size: .95rem;
}
.review__name { font-weight: 700; font-size: .9rem; color: var(--cocoa); }
.review__src { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.reviews__ctrl { display: flex; gap: 12px; margin-top: 30px; }
.reviews__btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: transparent; color: var(--cocoa);
  font-size: 1.1rem; cursor: pointer; display: grid; place-items: center;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.reviews__btn:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* ==================== CTA rezerwacji ==================== */

.book {
  position: relative; overflow: hidden;
  background: linear-gradient(130deg, var(--cocoa), #4A382D 60%, #5A4433);
  color: var(--ivory); text-align: center;
  padding: clamp(90px, 13vw, 170px) clamp(20px, 6vw, 72px);
}
.book__particles { position: absolute; inset: 0; pointer-events: none; }
.book__inner { position: relative; max-width: 760px; margin: 0 auto; }
.book__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 3.8rem); line-height: 1.1;
}
.book__title em { font-style: italic; color: var(--blush); }
.book__sub { margin-top: 20px; font-size: 1.05rem; opacity: .85; }
.book__actions {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}
.book__phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ivory) !important; text-decoration: none; font-weight: 700; font-size: 1.05rem;
  padding: 17px 34px; border-radius: 999px; border: 1.5px solid rgba(251, 247, 240, .4);
  transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.book__phone:hover { border-color: var(--blush); background: rgba(233, 184, 188, .12); transform: translateY(-3px); }

/* ==================== Kontakt ==================== */

.contact__grid {
  margin-top: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 30px);
}
.contact-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(234, 217, 198, .9); box-shadow: var(--shadow-soft);
  padding: 32px 30px; text-align: center;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card__icon {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--sand));
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 8px;
}
.contact-card__value { font-weight: 600; font-size: 1rem; color: var(--cocoa); }
.contact-card__value a { text-decoration: none; transition: color .3s ease; }
.contact-card__value a:hover { color: var(--gold-deep); }
.contact-card__hint { margin-top: 6px; font-size: .82rem; opacity: .65; }

/* ==================== Stopka ==================== */

.footer {
  background: var(--cocoa); color: var(--ivory);
  padding: 54px clamp(20px, 6vw, 72px) 40px;
}
.footer__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
}
.footer__logo { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.4rem; }
.footer__logo span { color: var(--gold); }
.footer__meta { font-size: .82rem; opacity: .65; }
.footer__links { display: flex; gap: 20px; list-style: none; }
.footer__links a {
  color: var(--ivory); text-decoration: none; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; opacity: .8; transition: opacity .3s ease, color .3s ease;
}
.footer__links a:hover { opacity: 1; color: var(--blush); }

/* ==================== Pas usług ==================== */

.marquee {
  overflow: hidden; background: var(--cocoa);
  border-top: 1px solid rgba(198, 161, 91, .35);
  border-bottom: 1px solid rgba(198, 161, 91, .35);
  padding: 14px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 1.05rem; color: var(--sand); white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .85rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== Pasek postępu ==================== */

.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  z-index: 120; pointer-events: none;
  box-shadow: 0 0 12px rgba(198, 161, 91, .6);
}

/* ==================== Poświata kursora ==================== */

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 340px; height: 340px;
  margin: -170px 0 0 -170px; pointer-events: none; z-index: 90;
  background: radial-gradient(circle, rgba(198, 161, 91, .16), transparent 65%);
  opacity: 0; transition: opacity .5s ease;
  will-change: transform;
}
.cursor-glow.on { opacity: 1; }

/* ==================== Ozdobne separatory ==================== */

.divider { width: 150px; height: 22px; margin: 4px 0 14px; overflow: visible; }
.divider path {
  fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 320; stroke-dashoffset: 320;
}
.divider circle { fill: var(--blush); opacity: 0; }
.divider.in path { animation: draw 1.6s var(--ease-out) forwards .2s; }
.divider.in circle { animation: bloomdot .8s ease forwards 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes bloomdot { to { opacity: 1; } }

/* ==================== Pazurek ==================== */

.pazurek {
  position: fixed; left: 18px; bottom: 16px; z-index: 110;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.pazurek.hidden { display: none; }
.pazurek__body {
  background: none; border: none; padding: 0; cursor: pointer;
  width: clamp(84px, 10vw, 130px);
  filter: drop-shadow(0 14px 22px rgba(51, 38, 31, .28));
  animation: pazurek-bob 3.6s ease-in-out infinite;
  transition: transform .35s var(--ease-out);
  transform-origin: 50% 90%;
}
.pazurek__body:hover { transform: scale(1.07) rotate(-3deg); }
.pazurek__body img { width: 100%; display: block; }
@keyframes pazurek-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}
.pazurek.walking .pazurek__body { animation: pazurek-walk .5s ease-in-out infinite; }
@keyframes pazurek-walk {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}
.pazurek__bubble {
  max-width: min(250px, 62vw);
  background: var(--white); color: var(--ink);
  border: 1.5px solid var(--sand); border-radius: 16px 16px 16px 4px;
  padding: 12px 16px; font-size: .84rem; font-weight: 600; line-height: 1.45;
  box-shadow: var(--shadow-soft);
  transform-origin: 12px 100%;
  animation: bubble-pop .5s var(--ease-out);
}
.pazurek__bubble.pop { animation: bubble-pop .5s var(--ease-out); }
@keyframes bubble-pop {
  0% { transform: scale(.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.pazurek__close {
  position: absolute; top: -8px; right: -8px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--sand); background: var(--white); color: var(--cocoa);
  font-size: .95rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, color .3s ease;
}
.pazurek__close:hover { transform: rotate(90deg); color: var(--rose); }

@media (max-width: 860px) {
  .pazurek { left: 10px; bottom: 10px; }
  .pazurek__bubble { font-size: .78rem; padding: 10px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .pazurek__body, .pazurek.walking .pazurek__body { animation: none; }
}

/* ==================== Responsywność ==================== */

@media (max-width: 980px) {
  .team__grid, .price__cols { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; gap: 34px; }
  .trust__item + .trust__item::before { display: none; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 0; z-index: 105;
    background: rgba(251, 247, 240, .97);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
  }
  .nav__links.open { opacity: 1; visibility: visible; }
  .nav__links a:not(.btn) { font-size: 1.05rem; }
  .nav__links .btn { font-size: .9rem; padding: 16px 32px; }
  .nav__burger { display: block; }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 4 / 4.6; }
}

/* Ograniczony ruch */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
