/* ═══════════════════════════════════════════════════
   Szlachta Beauty Studio — Editorial Luxury
   krem · espresso · burgund
   ═══════════════════════════════════════════════════ */

:root {
  --cream: oklch(97.5% 0.008 85);        /* ciepła kość słoniowa */
  --cream-deep: oklch(94.5% 0.012 80);
  --ink: oklch(20% 0.012 60);            /* espresso, nie #000 */
  --ink-soft: oklch(38% 0.015 60);
  --muted: oklch(52% 0.02 70);
  --wine: oklch(38% 0.14 20);            /* burgund ze wstążki */
  --wine-deep: oklch(30% 0.12 18);
  --line: oklch(20% 0.012 60 / 0.14);
  --serif: "Bodoni Moda", "Didot", serif;
  --sans: "Instrument Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h2 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); letter-spacing: -0.01em; }
h2 em, h2 i { font-style: italic; }

::selection { background: var(--wine); color: var(--cream); }

/* ─────────── utilities ─────────── */
.eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--wine);
  border: 1px solid oklch(38% 0.14 20 / 0.35);
  border-radius: 999px;
  padding: 7px 16px 6px;
  margin-bottom: 28px;
}
.eyebrow--light { color: var(--cream); border-color: oklch(97.5% 0.008 85 / 0.4); }
.eyebrow--wine { color: var(--wine); }

.muted { color: var(--muted); font-size: 0.92em; }

.link-underline {
  position: relative;
  font-weight: 500;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 0.6s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0.25); transform-origin: left; }

/* buttons — pill z orbitą */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 8px 8px 8px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn__orb {
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: 15px;
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn__orb { transform: translate(2px, -2px) scale(1.06); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: oklch(26% 0.014 60); }
.btn--ink .btn__orb { background: oklch(97.5% 0.008 85 / 0.14); }

.btn--wine { background: var(--wine); color: var(--cream); box-shadow: 0 18px 40px -18px oklch(38% 0.14 20 / 0.55); }
.btn--wine:hover { background: var(--wine-deep); }
.btn--wine .btn__orb { background: oklch(97.5% 0.008 85 / 0.16); }

.btn--xl { font-size: 17px; padding: 12px 12px 12px 34px; }
.btn--xl .btn__orb { width: 44px; height: 44px; }

.price { font-family: var(--serif); font-size: 1.15em; font-weight: 600; white-space: nowrap; }
.time { color: var(--muted); font-size: 13px; }

/* frame — podwójna oprawa zdjęć */
.frame {
  background: oklch(20% 0.012 60 / 0.05);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: 0.55rem;
}
.frame img {
  border-radius: calc(1.6rem - 0.55rem);
  width: 100%; height: 100%;
  object-fit: cover;
}
.frame--cream { background: oklch(97.5% 0.008 85 / 0.55); }

/* ─────────── preloader ─────────── */
.preloader {
  position: fixed; inset: 0;
  z-index: 1000;
  background: var(--cream);
  display: grid; place-items: center;
}
.preloader__inner { display: grid; justify-items: center; gap: 28px; }
.preloader__mark { width: clamp(90px, 12vw, 130px); animation: mark-in 1.1s var(--ease-out) both; }
@keyframes mark-in {
  from { opacity: 0; transform: scale(0.92) rotate(-4deg); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}
.preloader__line { width: 140px; height: 1px; background: var(--line); overflow: hidden; }
.preloader__line span { display: block; width: 100%; height: 100%; background: var(--wine); transform: scaleX(0); transform-origin: left; animation: line-fill 1.4s 0.2s var(--ease) both; }
@keyframes line-fill { to { transform: scaleX(1); } }
.preloader.is-done { pointer-events: none; }

/* ─────────── nav ─────────── */
.nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: oklch(97.5% 0.008 85 / 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid oklch(20% 0.012 60 / 0.08);
  box-shadow: 0 20px 50px -25px oklch(20% 0.012 60 / 0.35);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.nav.is-hidden { transform: translate(-50%, -140%); }
.nav__mark { width: 34px; height: 34px; object-fit: contain; transition: transform 0.6s var(--ease); }
.nav__brand:hover .nav__mark { transform: rotate(8deg); }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: color 0.4s var(--ease);
}
.nav__links a:hover { color: var(--wine); }
.nav__cta { font-size: 13.5px; padding: 6px 6px 6px 18px; }
.nav__cta .btn__orb { width: 30px; height: 30px; font-size: 13px; }
.nav__burger { display: none; }

/* mobile menu */
.menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: oklch(97.5% 0.008 85 / 0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: grid;
  place-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links { display: grid; gap: 6px; text-align: center; }
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.4s;
}
.menu__links a:hover { color: var(--wine); }
.menu__links a em { font-size: 0.35em; vertical-align: super; color: var(--wine); font-style: normal; letter-spacing: 0.1em; margin-right: 8px; }
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: 0.10s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.16s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.22s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.28s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.34s; }
.menu__cta { justify-self: center; opacity: 0; transform: translateY(20px); transition: opacity 0.7s 0.4s var(--ease), transform 0.7s 0.4s var(--ease); }
.menu.is-open .menu__cta { opacity: 1; transform: none; }

/* ─────────── hero ─────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 60px;
  position: relative;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.hero__wordmark { width: min(860px, 92vw); margin-bottom: 48px; }
.hero__wordmark img { width: 100%; }

.hero__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  width: 100%;
  max-width: 1240px;
}
.hero__photo {
  width: clamp(150px, 17vw, 230px);
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 1.4rem 1.4rem; /* łuk katedralny */
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0.45rem;
  background: oklch(20% 0.012 60 / 0.04);
  flex-shrink: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.hero__photo--a { transform: rotate(-3deg); }
.hero__photo--b { transform: rotate(3deg); }

.hero__center { max-width: 480px; }
.hero__lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-soft); margin-bottom: 30px; }
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__rating { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13.5px; color: var(--muted); }
.hero__stars { color: var(--wine); letter-spacing: 0.18em; font-size: 15px; }
.hero__rating strong { color: var(--ink); font-family: var(--serif); font-size: 1.2em; }

.hero__scrollhint {
  position: absolute;
  bottom: 26px; left: 50%;
  width: 1px; height: 56px;
  background: var(--line);
  overflow: hidden;
}
.hero__scrollhint span {
  position: absolute; inset: 0;
  background: var(--wine);
  animation: scroll-drip 2.2s var(--ease) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ─────────── marquee ─────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--cream-deep);
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: italic;
  white-space: nowrap;
  color: var(--ink-soft);
  padding-right: 12px;
}
.marquee__track i { color: var(--wine); font-style: normal; padding: 0 14px; font-size: 0.75em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────── about ─────────── */
.about {
  position: relative;
  padding: clamp(110px, 14vw, 190px) clamp(24px, 6vw, 80px);
  overflow: hidden;
}
.about__watermark {
  position: absolute;
  right: -8%; top: 4%;
  width: min(560px, 55vw);
  opacity: 0.05;
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 7vw, 110px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}
.about__text h2 { margin-bottom: 30px; max-width: 13ch; }
.about__text p { max-width: 56ch; color: var(--ink-soft); margin-bottom: 20px; }
.about__text strong { color: var(--ink); }
.about__facts {
  list-style: none;
  display: flex;
  gap: clamp(28px, 4vw, 60px);
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.about__facts li { display: grid; gap: 2px; }
.about__facts strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 600;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
}
.about__facts span { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.about__photo { position: relative; }
.about__photo .frame { aspect-ratio: 4 / 5; }
.about__photo figcaption {
  margin-top: 14px;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}

/* ─────────── signature ─────────── */
.signature { padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 80px) 40px; }
.signature__head { max-width: 1240px; margin: 0 auto clamp(50px, 7vw, 90px); }
.signature__head h2 { max-width: 14ch; }
.signature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.sig-card--offset { margin-top: clamp(30px, 5vw, 80px); }
.sig-card .frame--tall { aspect-ratio: 3 / 3.6; overflow: hidden; }
.sig-card .frame--tall img { transition: transform 1.2s var(--ease); }
.sig-card:hover .frame--tall img { transform: scale(1.045); }
.sig-card__meta { padding: 22px 8px 0; }
.sig-card__meta h3 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); margin-bottom: 10px; }
.sig-card__meta p { color: var(--ink-soft); font-size: 14.5px; max-width: 40ch; }
.sig-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.sig-card__row .price { color: var(--wine); }

/* ─────────── pricing ─────────── */
.pricing { padding: clamp(90px, 12vw, 160px) clamp(24px, 6vw, 80px); }
.pricing__head { max-width: 860px; margin: 0 auto clamp(44px, 6vw, 70px); text-align: center; }
.pricing__note { color: var(--muted); margin-top: 18px; }
.pricing__list { max-width: 860px; margin: 0 auto; }

.acc { border-top: 1px solid var(--line); }
.acc:last-of-type { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 6px;
  transition: padding 0.5s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { padding-left: 14px; }
.acc__num { font-size: 11px; letter-spacing: 0.2em; color: var(--wine); font-weight: 600; }
.acc summary h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 500; flex: 1; }
.acc__icon {
  position: relative;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-shrink: 0;
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease);
}
.acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc[open] .acc__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc__items { list-style: none; padding: 4px 6px 30px 58px; display: grid; gap: 13px; }
.acc__items li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.acc__items li i { flex: 1; border-bottom: 1px dotted oklch(20% 0.012 60 / 0.25); transform: translateY(-4px); }
.acc__items .price { font-size: 1em; color: var(--ink); }
.pricing__cta { text-align: center; margin-top: 54px; }

/* ─────────── gallery ─────────── */
.gallery { padding: clamp(90px, 12vw, 160px) clamp(24px, 6vw, 80px); background: var(--cream-deep); }
.gallery__head { max-width: 1240px; margin: 0 auto clamp(50px, 7vw, 90px); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.4vw, 32px);
  max-width: 1240px;
  margin: 0 auto;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  grid-column: span 4;
  aspect-ratio: 1 / 1.15;
}
.g-item--lg { grid-column: span 8; aspect-ratio: auto; }
.g-item:nth-child(5), .g-item:nth-child(6) { grid-column: span 6; aspect-ratio: 1 / 0.82; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
  will-change: transform;
}
.g-item:hover img { transform: scale(1.05); }
.g-item figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: oklch(97.5% 0.008 85 / 0.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: none; }

/* ─────────── reviews (drenched wine) ─────────── */
.reviews {
  background: var(--wine-deep);
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) 0;
  overflow: hidden;
}
.reviews__head { max-width: 1240px; margin: 0 auto clamp(50px, 6vw, 80px); padding: 0 clamp(24px, 6vw, 80px); }
.reviews__head h2 { max-width: 16ch; }
.reviews__sub { color: oklch(97.5% 0.008 85 / 0.6); margin-top: 18px; }
.reviews__rail {
  display: flex;
  gap: clamp(20px, 2.6vw, 36px);
  padding: 0 clamp(24px, 6vw, 80px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
}
.reviews__rail.is-dragging { cursor: grabbing; }
.reviews__rail.is-dragging .review { pointer-events: none; }
.reviews__rail::-webkit-scrollbar { display: none; }

/* ─── reviews nav (strzałki + kropki) ─── */
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(40px, 5vw, 60px);
  padding: 0 clamp(24px, 6vw, 80px);
}
.reviews__arrow {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid oklch(97.5% 0.008 85 / 0.24);
  background: oklch(97.5% 0.008 85 / 0.04);
  color: oklch(97.5% 0.008 85 / 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.reviews__arrow svg { width: 20px; height: 20px; }
.reviews__arrow:hover { background: oklch(97.5% 0.008 85 / 0.12); border-color: oklch(97.5% 0.008 85 / 0.4); }
.reviews__arrow:active { transform: scale(0.94); }
.reviews__arrow:disabled { opacity: 0.28; cursor: default; }
.reviews__dots { display: flex; align-items: center; gap: 10px; }
.reviews__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: oklch(97.5% 0.008 85 / 0.28);
  cursor: pointer;
  transition: width 0.5s var(--ease), background 0.5s var(--ease);
}
.reviews__dots button.is-active { width: 26px; background: oklch(97.5% 0.008 85 / 0.85); }
.review {
  flex: 0 0 clamp(300px, 32vw, 420px);
  background: oklch(97.5% 0.008 85 / 0.06);
  border: 1px solid oklch(97.5% 0.008 85 / 0.14);
  border-radius: 1.6rem;
  padding: 34px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  box-shadow: inset 0 1px 1px oklch(97.5% 0.008 85 / 0.08);
}
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
}
.review footer { display: grid; gap: 2px; }
.review footer strong { font-family: var(--serif); font-size: 1.05rem; }
.review footer span { font-size: 12.5px; color: oklch(97.5% 0.008 85 / 0.55); letter-spacing: 0.04em; }

/* ─────────── voucher ─────────── */
.voucher { padding: clamp(100px, 13vw, 180px) clamp(24px, 6vw, 80px); }
.voucher__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}
.voucher__photo .frame { aspect-ratio: 1; transform: rotate(-2deg); }
.voucher__text h2 { margin-bottom: 26px; max-width: 14ch; }
.voucher__text p { max-width: 52ch; color: var(--ink-soft); margin-bottom: 34px; }

/* ─────────── contact ─────────── */
.contact {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  padding: clamp(100px, 13vw, 180px) clamp(24px, 6vw, 80px);
}
.contact__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.contact__inner h2 { max-width: 15ch; margin: 0 auto; }
.contact__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 70px);
  margin: clamp(50px, 7vw, 80px) 0;
  text-align: left;
}
.contact__block h3 {
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
.contact__block p { color: var(--ink-soft); margin-bottom: 12px; }
.contact__phone {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.contact__phone:hover { color: var(--wine); }

/* ─────────── footer ─────────── */
.footer {
  background: var(--ink);
  padding: clamp(70px, 9vw, 120px) clamp(24px, 6vw, 80px) 36px;
  overflow: hidden;
}
.footer__wordmark {
  width: min(900px, 94%);
  margin: 0 auto clamp(50px, 8vw, 90px);
  filter: invert(1) brightness(1.05);
  opacity: 0.92;
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid oklch(97.5% 0.008 85 / 0.14);
  color: oklch(97.5% 0.008 85 / 0.55);
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* ─────────── reveal (JS nadaje transformacje) ─────────── */
.reveal, .reveal-hero { will-change: transform, opacity; }

/* ─────────── responsive ─────────── */
@media (max-width: 980px) {
  .about__grid, .voucher__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 440px; }
  .signature__grid { grid-template-columns: 1fr; max-width: 480px; }
  .sig-card--offset { margin-top: 0; }
  .contact__cols { grid-template-columns: 1fr; }
  .voucher__photo { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .nav { gap: 0; width: calc(100% - 32px); justify-content: space-between; padding: 10px 14px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: grid;
    gap: 6px;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
  }
  .nav__burger span {
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: transform 0.5s var(--ease);
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

  .hero { padding-top: 110px; }
  .hero__row { flex-direction: column; }
  .hero__photo { display: none; }
  .hero__wordmark { margin-bottom: 36px; }

  .g-item, .g-item--lg { grid-column: span 12; aspect-ratio: 1 / 1.05; }
  .acc__items { padding-left: 6px; }
  .review { flex-basis: min(85vw, 360px); }
}

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