/* ==========================================================================
   BODYART BIAŁYSTOK — Tatuaż • Piercing
   ========================================================================== */

:root {
  --ink: #0b0b0b;
  --ink-soft: #101010;
  --graphite: #181816;
  --line: rgba(243, 240, 233, 0.12);
  --line-soft: rgba(243, 240, 233, 0.07);
  --ivory: #f3f0e9;
  --ivory-dim: rgba(243, 240, 233, 0.62);
  --ivory-faint: rgba(243, 240, 233, 0.38);
  --gold: #c6a15b;
  --gold-soft: rgba(198, 161, 91, 0.55);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.no-scroll { overflow: hidden; }

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Typografia ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 1.03;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* ---------- Przyciski ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #171310;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold);
}

.btn-outline {
  border-color: rgba(243, 240, 233, 0.22);
  color: var(--ivory);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 1.05rem 2.8rem;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.35);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* przybliżenie na sygnet, żeby biały krąg czytał się jak pieczęć, nie jak plakietka */
  transform: scale(1.45);
}

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.2rem);
}

.nav-link {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover {
  color: var(--ivory);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn-nav {
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  font-size: 0.72rem;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  z-index: 120;
}

.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 500;
  padding: 0.35rem 0;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.3s;
}

.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-link:nth-child(5) { transition-delay: 0.32s; }

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease) 0.4s, transform 0.45s var(--ease) 0.4s,
    background-color 0.35s, color 0.35s;
}

.mobile-menu.is-open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-foot {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ivory-faint);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  /* pełny pierwszy ekran, ale bez rozciągania na bardzo wysokich monitorach */
  min-height: min(100vh, 920px);
  min-height: min(100svh, 920px);
  display: flex;
  align-items: stretch;
  position: relative;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4.5fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 2.25rem) var(--gutter) 2.5rem;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin-bottom: 2rem;
}

/* editorialowy "schodek" kursywnych wersów */
.hero h1 em:first-of-type {
  padding-left: clamp(1rem, 2.6vw, 2.4rem);
}

.hero h1 em:last-of-type {
  padding-left: clamp(1.9rem, 5vw, 4.6rem);
}

.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: var(--ivory-dim);
  max-width: 40ch;
  margin-bottom: 2.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-media {
  position: relative;
  height: min(74vh, 800px);
  align-self: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
  z-index: -1;
}

.hero-media-caption {
  position: absolute;
  right: 0;
  bottom: -1.9rem;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* Animacje wejścia hero */

.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

.hero-anim-img {
  opacity: 0;
  transform: translateY(16px) scale(1.015);
  animation: heroIn 1.1s var(--ease) 0.25s forwards;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   INTRO / BRAND
   ========================================================================== */

.intro {
  position: relative;
  padding: clamp(3.75rem, 7vw, 6.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.intro-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 21rem);
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 233, 0.05);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.intro-inner {
  position: relative;
  max-width: 1000px;
}

.intro-inner::before {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
  margin-bottom: clamp(1.5rem, 2.8vw, 2.2rem);
}

.intro-statement {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.18;
  max-width: 22ch;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}

.intro-sub {
  color: var(--ivory-dim);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 46ch;
  margin-left: auto;
}

/* ==========================================================================
   SEKCJE — nagłówki
   ========================================================================== */

.section-head {
  margin-bottom: clamp(2rem, 3.8vw, 3rem);
}

.section-sub {
  margin-top: 0.9rem;
  color: var(--ivory-dim);
  font-size: 1rem;
}

/* ==========================================================================
   USŁUGI
   ========================================================================== */

.services {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 4.5vw, 4rem) 0;
  border-top: 1px solid var(--line-soft);
}

.service-row-reverse .service-media { order: 2; }
.service-row-reverse .service-content { order: 1; }

.service-media {
  position: relative;
}

.service-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid rgba(198, 161, 91, 0.2);
  pointer-events: none;
}

.service-row-reverse .service-media::after {
  inset: 12px 12px -12px -12px;
}

.service-media-caption {
  position: absolute;
  left: 0;
  bottom: -1.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.service-content {
  max-width: 560px;
}

.service-index {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.8rem;
}

.service-index::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 42px;
  height: 1px;
  background: var(--gold-soft);
  margin-left: 0.9rem;
}

.service-content h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 1.1rem;
}

.service-desc {
  color: var(--ivory-dim);
  margin-bottom: 2.6rem;
  max-width: 40ch;
}

.price-list {
  list-style: none;
  width: 100%;
  max-width: 460px;
  margin-bottom: 2.2rem;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}

.price-list li span:first-child {
  color: var(--ivory-dim);
}

.price-list .price {
  margin-left: auto;
  font-weight: 500;
  color: var(--ivory);
  white-space: nowrap;
}

.service-tags {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-note {
  font-size: 0.85rem;
  color: var(--ivory-faint);
  margin-bottom: 2rem;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}

.link-cta::after {
  content: "\2192";
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}

.link-cta:hover {
  color: var(--gold);
}

.link-cta:hover::after {
  transform: translateX(6px);
}

.services-foot {
  margin-top: 0.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--ivory-faint);
  text-align: center;
}

/* ==========================================================================
   REALIZACJE — galeria
   ========================================================================== */

.gallery {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.filter-btn {
  position: relative;
  padding: 0.55rem 0.2rem;
  min-height: 44px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  transition: color 0.3s var(--ease);
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.filter-btn:hover { color: var(--ivory); }

.filter-btn.is-active {
  color: var(--gold);
}

.filter-btn.is-active::after {
  transform: scaleX(1);
}

.masonry {
  columns: 3;
  column-gap: clamp(1.4rem, 2.6vw, 2.4rem);
}

.masonry-item {
  position: relative;
  margin-bottom: clamp(1.8rem, 3.2vw, 3rem);
  break-inside: avoid;
  cursor: pointer;
}

.masonry-item.is-hidden {
  display: none;
}

.masonry-media {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
}

.masonry-media img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}

.masonry-item:hover .masonry-media img {
  transform: scale(1.035);
}

.masonry-tag {
  display: block;
  padding: 0.75rem 2px 0;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  transition: color 0.35s var(--ease);
}

.masonry-item:hover .masonry-tag {
  color: var(--gold);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.55), rgba(11, 11, 11, 0) 45%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ==========================================================================
   PIERCING FEATURE
   ========================================================================== */

.piercing-feature {
  padding: clamp(3.75rem, 6.5vw, 6rem) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.piercing-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.piercing-media {
  position: relative;
}

.piercing-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
}

.piercing-media::after {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(198, 161, 91, 0.22);
  pointer-events: none;
}

.piercing-content h2 {
  margin-bottom: 1.4rem;
}

.piercing-lead {
  color: var(--ivory-dim);
  max-width: 44ch;
  margin-bottom: 2.2rem;
}

.feature-list {
  list-style: none;
  counter-reset: feat;
  margin-bottom: 2.6rem;
}

.feature-list li {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  counter-increment: feat;
  content: "0" counter(feat);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   ARTYŚCI
   ========================================================================== */

.artists {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.artists-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  align-items: start;
  gap: clamp(1.5rem, 4.5vw, 5rem);
}

.artist-offset {
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.artist-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--graphite);
}

.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.25);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.artist:hover .artist-media img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.artist-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 1.4rem;
}

.artist-meta h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.2rem;
}

.artist-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1;
}

.artist-meta p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  padding: clamp(4.25rem, 7.5vw, 7rem) 0;
  background: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-line {
  display: block;
  width: 1px;
  height: 52px;
  background: var(--gold);
  opacity: 0.65;
  margin-bottom: 1.8rem;
}

.final-cta h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 2.6rem;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */

.contact {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.contact-head {
  margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.contact-value {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.4;
}

.contact-value a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-soft);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  background: var(--ink-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: clamp(1.8rem, 3.5vw, 2.5rem);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.3);
  flex-shrink: 0;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

.footer-name {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  margin-bottom: 0.25rem;
}

.footer-tag {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.footer-info {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--ivory-dim);
}

.footer-info a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-info a:hover { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-dim);
  padding: 0.6rem 0;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.75rem;
  color: var(--ivory-faint);
}

.footer-concept {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  max-width: min(88vw, 1200px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: calc(86vh - 3rem);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-counter {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ivory-faint);
}

.lightbox-close {
  position: absolute;
  top: max(0.8rem, env(safe-area-inset-top));
  right: 1rem;
  width: 52px;
  height: 52px;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory-dim);
  transition: color 0.3s;
  z-index: 2;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--ivory-dim);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  transition: color 0.3s, border-color 0.3s;
  z-index: 2;
}

.lightbox-arrow:hover {
  color: var(--gold);
  border-color: var(--gold-soft);
}

.lightbox-prev { left: clamp(0.6rem, 2.5vw, 2.5rem); }
.lightbox-next { right: clamp(0.6rem, 2.5vw, 2.5rem); }

/* ==========================================================================
   REVEAL — IntersectionObserver
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSYWNOŚĆ
   ========================================================================== */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .masonry { columns: 3; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero-content { max-width: 100%; }

  .hero-media {
    height: auto;
    max-height: none;
    order: 2;
  }

  .hero-media img {
    height: auto;
    max-height: 72vh;
    object-position: center 25%;
  }

  .masonry { columns: 2; }

  .service-row {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .service-row-reverse .service-media { order: 0; }
  .service-row-reverse .service-content { order: 0; }

  .service-media::after,
  .service-row-reverse .service-media::after {
    inset: 10px -10px -10px 10px;
  }

  .service-content { max-width: 100%; }

  .piercing-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .piercing-media {
    max-width: 520px;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}

@media (max-width: 700px) {
  .artists-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .artist-offset { margin-top: 0; }
}

@media (max-width: 560px) {
  .masonry { columns: 1; }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .hero-media::before { inset: 10px -10px -10px 10px; }

  .brand-sub { display: none; }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: max(1.2rem, env(safe-area-inset-bottom));
    transform: none;
  }

  .lightbox-stage {
    max-width: 94vw;
    max-height: 78vh;
  }

  .lightbox-stage img {
    max-height: calc(78vh - 3rem);
  }

  .footer-links { gap: 1.2rem; }
}

/* ==========================================================================
   PREFERS-REDUCED-MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }

  .hero-anim,
  .hero-anim-img {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
