/* ════════════════════════════════════════════════════════════
   AURORA · NOIR — Dark Editorial Hair Studio
   Paleta: bg #0A0A0A / panel #1A1A1A / ivory #F4EFE6 / chrome #C0C0C0
   Filozofia: czerń jako scena, kość słoniowa jako światło, chrome jako akcent
   ════════════════════════════════════════════════════════════ */

:root {
  --bg:          #0A0A0A;
  --bg-2:        #131313;
  --panel:       #1A1A1A;
  --panel-2:     #242424;
  --deep:        #000000;
  --ivory:       #F4EFE6;
  --ivory-2:     #E8E2D6;
  --grey:        #8A847B;
  --grey-2:      #5A554F;
  --grey-3:      #3A3733;
  --chrome:      #C0C0C0;
  --chrome-deep: #9A9A9A;
  --chrome-glow: rgba(192, 192, 192, .12);
  --line:        rgba(244, 239, 230, .08);
  --line-strong: rgba(244, 239, 230, .18);

  --f-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max:    1320px;
  --gutter: max(24px, 5vw);

  --ease:      cubic-bezier(.16, .84, .24, 1);
  --ease-slow: cubic-bezier(.22, 1, .26, 1);
  --t-fast: .25s var(--ease);
  --t-mid:  .5s var(--ease);
  --t-slow: .9s var(--ease-slow);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ivory);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--chrome); }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  margin: 0;
  line-height: 1.02;
  letter-spacing: -.01em;
}
h1 em, h2 em, h3 em, h4 em { font-style: italic; font-weight: 400; color: var(--chrome); }

::selection { background: var(--chrome); color: var(--bg); }

/* ─── UTILITY ─── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}
.eyebrow--chrome { color: var(--chrome); }

/* ═══════════════════════════════════════════
   BUTTONS — outline rectangles, chrome accent
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px 13px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  border-radius: 0;
  transition: background var(--t-mid), color var(--t-mid), border-color var(--t-mid), transform var(--t-fast);
}
.btn > i { font-style: normal; font-size: 13px; letter-spacing: 0; transition: transform var(--t-mid); }
.btn:hover { background: var(--ivory); color: var(--bg); }
.btn:hover > i { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }

.btn--chrome { background: var(--chrome); color: var(--bg); border-color: var(--chrome); }
.btn--chrome:hover { background: var(--ivory); color: var(--bg); border-color: var(--ivory); }

.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ivory); }
.btn--ghost:hover { background: var(--ivory); color: var(--bg); border-color: var(--ivory); }

.btn--dark { background: var(--bg); color: var(--ivory); border-color: var(--bg); }
.btn--dark:hover { background: var(--chrome); color: var(--bg); border-color: var(--chrome); }

.btn--block { width: 100%; justify-content: space-between; }
.btn--small { padding: 11px 18px 10px; font-size: 10px; }

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--gutter);
  background: rgba(10, 10, 10, 0);
  transition: background var(--t-mid), padding var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom-color: var(--line);
  padding: 14px var(--gutter);
}

.nav__logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-serif);
  font-size: 22px; font-weight: 400;
  color: var(--ivory);
  letter-spacing: .04em;
}
.nav__logo:hover { color: var(--chrome); }
.nav__logo-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--chrome);
  border-radius: 50%;
}
.nav__logo-text em { font-style: italic; color: var(--chrome); margin: 0 4px; }

.nav__links {
  display: flex; gap: 32px;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
}
.nav__links a {
  color: var(--grey);
  position: relative; padding-bottom: 4px;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--chrome);
  transition: right var(--t-mid);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { right: 0; }

.nav__cta { justify-self: end; }

.nav__burger {
  display: none;
  justify-self: end;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  position: relative;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 1px; background: var(--ivory);
  transition: transform var(--t-mid), top var(--t-mid);
}
.nav__burger span:first-child { top: 15px; }
.nav__burger span:last-child  { top: 23px; }
.nav.is-open .nav__burger span:first-child { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:last-child  { top: 19px; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(130px, 18vh, 200px) var(--gutter) 100px;
  display: flex; align-items: center;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -10%; top: 20%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at center, rgba(192,192,192,.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.hero__title {
  font-size: clamp(56px, 9vw, 132px);
  line-height: .98;
  margin: 0 0 32px;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ivory);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--chrome); }

.hero__lede {
  max-width: 480px;
  font-size: 15px; line-height: 1.75;
  color: var(--grey);
  margin: 0 0 36px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__meta {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey);
}
.hero__meta span:first-child { color: var(--chrome); }
.hero__meta i {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--grey-2);
}

/* hero portrait */
.portrait {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 3/4;
  margin: 0 0 0 auto;
  background:
    linear-gradient(160deg, var(--panel) 0%, var(--bg) 50%, var(--panel-2) 100%);
  border: 1px solid var(--line-strong);
}
.portrait__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 36px;
  text-align: center;
}
.portrait__big {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(140px, 22vw, 260px);
  line-height: 1;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -.02em;
  text-shadow: 0 0 80px rgba(192, 192, 192, .15);
}
.portrait__cap {
  position: absolute; top: 18px; left: 22px;
  font-family: var(--f-sans);
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
}
.portrait__sig {
  position: absolute; bottom: 22px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--chrome);
  letter-spacing: .1em;
}

.hero__credit {
  display: block;
  margin-top: 14px;
  text-align: right;
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey-2);
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--grey);
}
.hero__scroll > i {
  display: inline-block; width: 36px; height: 1px;
  background: var(--grey); position: relative; overflow: hidden;
}
.hero__scroll > i::after {
  content: ''; position: absolute; inset: 0;
  background: var(--chrome);
  transform: translateX(-100%);
  animation: scroll-tick 2.6s var(--ease) infinite;
}
@keyframes scroll-tick {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════ */
.manifesto {
  padding: 140px var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.manifesto__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto__title {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 56px;
  letter-spacing: -.015em;
}
.manifesto__title em { font-style: italic; color: var(--chrome); }
.manifesto__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory-2);
}
.manifesto__cols p { margin: 0; }
.manifesto__cols em { color: var(--chrome); font-style: italic; }
.manifesto__credit {
  display: block;
  margin-top: 48px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--grey);
  text-align: right;
}

/* ═══════════════════════════════════════════
   SECTION HEAD
   ═══════════════════════════════════════════ */
.section-head {
  max-width: var(--max);
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
  text-align: center;
}
.section-head__title {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ivory);
}
.section-head__title em { font-style: italic; color: var(--chrome); }
.section-head__lede {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}
.section-head--dark .section-head__title { color: var(--bg); }
.section-head--dark .section-head__title em { color: var(--grey-2); }
.section-head--dark .eyebrow { color: var(--grey-2); }
.section-head--dark .section-head__lede { color: var(--grey-2); }

/* ═══════════════════════════════════════════
   SERVICES — 6 kart 2x3, gold/chrome separator
   ═══════════════════════════════════════════ */
.services {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: svcnum;
}
.svc {
  position: relative;
  padding: 48px 36px 40px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background var(--t-mid);
  outline: none;
}
.svc:nth-child(odd)  { border-right: 1px solid var(--line); }
.svc:hover, .svc:focus { background: var(--bg-2); }
.svc::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--chrome);
  transition: width var(--t-mid);
}
.svc:hover::before, .svc:focus::before { width: 100%; }

.svc__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: var(--chrome);
  line-height: 1;
  margin-bottom: 24px;
  transition: font-size var(--t-mid);
}
.svc:hover .svc__num, .svc:focus .svc__num { font-size: 48px; }

.svc__name {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -.005em;
}

.svc__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
  margin: 0 0 28px;
  max-width: 460px;
}

.svc__foot {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ivory);
}
.svc__sep { color: var(--grey-2); }
.svc__price { color: var(--chrome); }
.svc__arrow {
  margin-left: auto;
  font-size: 16px;
  color: var(--grey);
  transition: transform var(--t-mid), color var(--t-mid);
}
.svc:hover .svc__arrow, .svc:focus .svc__arrow { color: var(--chrome); transform: translateX(6px); }

/* ═══════════════════════════════════════════
   ATELIER — JASNY BREAK
   ═══════════════════════════════════════════ */
.atelier {
  padding: 130px 0;
  background: var(--ivory);
  color: var(--bg);
}

.atelier__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.member {
  position: relative;
  background: var(--ivory-2);
  padding: 32px 24px 28px;
  text-align: left;
  transition: transform var(--t-mid);
}
.member:hover { transform: translateY(-4px); }
.member__num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--f-sans);
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
}
.member__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  background: linear-gradient(165deg, var(--member-tone, var(--chrome)) 0%, var(--bg) 180%);
  display: flex; align-items: center; justify-content: center;
}
.member__init {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 72px;
  color: var(--bg);
  letter-spacing: -.02em;
  opacity: .85;
  mix-blend-mode: multiply;
}
.member__name {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 4px;
}
.member__role {
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey-2);
  margin: 0 0 20px;
}

.member:nth-child(1) .member__portrait { background: linear-gradient(165deg, #F4EFE6 0%, #5A554F 180%); }
.member:nth-child(2) .member__portrait { background: linear-gradient(165deg, #C0C0C0 0%, #2A2A2A 180%); }
.member:nth-child(3) .member__portrait { background: linear-gradient(165deg, #8A847B 0%, #0A0A0A 180%); }
.member:nth-child(4) .member__portrait { background: linear-gradient(165deg, #5A554F 0%, #0A0A0A 180%); }

/* ═══════════════════════════════════════════
   GALLERY — B&W editorial bento
   ═══════════════════════════════════════════ */
.gallery {
  padding: 130px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gallery__loading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery__loading span {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, var(--panel) 0%, var(--bg-2) 50%, var(--panel) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gphoto {
  position: relative;
  background: var(--panel);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.gphoto img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform .9s var(--ease-slow), filter var(--t-slow);
}
.gphoto:hover img { transform: scale(1.04); filter: grayscale(.85) contrast(1.1); }
.gphoto::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5) 100%);
  opacity: 0; transition: opacity var(--t-mid);
}
.gphoto:hover::after { opacity: 1; }

.gphoto__num {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--chrome);
  z-index: 2;
}
.gphoto__cap {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ivory);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-mid), transform var(--t-mid);
}
.gphoto:hover .gphoto__cap { opacity: 1; transform: none; }
.gphoto--placeholder .gphoto__cap { opacity: 1; transform: none; }
.gphoto--placeholder::after { opacity: 1; }

/* bento spans */
.gphoto:nth-child(6n+1) { grid-column: span 6; grid-row: span 2; }
.gphoto:nth-child(6n+2) { grid-column: span 3; }
.gphoto:nth-child(6n+3) { grid-column: span 3; }
.gphoto:nth-child(6n+4) { grid-column: span 4; }
.gphoto:nth-child(6n+5) { grid-column: span 4; }
.gphoto:nth-child(6n)   { grid-column: span 4; }

.gphoto__dot, .gphoto__year { display: none; }

/* press quote pod gallery */
.press {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  position: relative;
}
.press__mark {
  position: absolute;
  top: -24px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 84px;
  line-height: 1;
  color: var(--chrome);
  opacity: .6;
}
.press p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 0 18px;
}
.press cite {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey);
}
.press cite strong { color: var(--chrome); font-weight: 500; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0, 0, 0, .96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-mid);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; max-width: 80vw; max-height: 86vh; display: flex; flex-direction: column; gap: 16px; }
.lightbox img { max-width: 80vw; max-height: 78vh; object-fit: contain; filter: grayscale(1); }
.lightbox figcaption {
  font-family: var(--f-serif); font-style: italic;
  color: var(--ivory); text-align: center; font-size: 18px;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  font-size: 26px; line-height: 1;
  background: transparent;
  transition: background var(--t-mid), color var(--t-mid);
}
.lightbox__close { top: 32px; right: 32px; }
.lightbox__nav--prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--chrome); color: var(--bg); border-color: var(--chrome); }

/* ═══════════════════════════════════════════
   VOICES — infinite scroll marquee dark
   ═══════════════════════════════════════════ */
.voices {
  padding: 130px 0;
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.voices__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.voices__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: voices-scroll 90s linear infinite;
  padding: 4px 10px;
}
.voices__marquee:hover .voices__track { animation-play-state: paused; }
@keyframes voices-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.vcard {
  flex: 0 0 auto;
  width: 380px;
  margin: 0;
  background: var(--panel);
  border-left: 2px solid var(--chrome);
  padding: 32px 28px 26px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--t-mid), background var(--t-mid);
}
.vcard:hover {
  transform: translateY(-4px);
  background: var(--panel-2);
}

.vcard__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-sans);
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--chrome);
}

.vcard__text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ivory);
  margin: 12px 0 0;
  padding: 0;
  border: none;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 142px;
}

.vcard__by {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.vcard__stars {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--chrome);
}
.vcard__by strong {
  font-family: var(--f-sans);
  font-weight: 500; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory);
}
.vcard__date {
  font-family: var(--f-sans);
  font-size: 10px;
  color: var(--grey);
  margin-left: auto;
  letter-spacing: .1em;
}

.voices__google {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 48px 0 0;
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
}
.voices__google span:first-child {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--chrome);
  letter-spacing: .04em;
  text-transform: none;
}
.voices__google i {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--grey-2);
}

/* ═══════════════════════════════════════════
   CONTACT — split half-half dark+light
   ═══════════════════════════════════════════ */
.contact { background: var(--bg); }

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact__dark {
  padding: 100px var(--gutter) 100px max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  background: var(--bg);
  color: var(--ivory);
}
.contact__light {
  padding: 100px max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))) 100px var(--gutter);
  background: var(--ivory);
  color: var(--bg);
}

.contact__title {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 48px;
  font-weight: 400;
}
.contact__title em { font-style: italic; color: var(--chrome); }

.contact__rows { display: flex; flex-direction: column; gap: 0; margin: 0; }
.contact__rows > div {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact__rows > div:last-child { border-bottom: none; }
.contact__rows dt {
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
  padding-top: 3px;
}
.contact__rows dd {
  font-family: var(--f-serif);
  font-size: 18px;
  margin: 0; color: var(--ivory);
  font-style: italic;
}
.contact__rows dd a {
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
.contact__rows dd a:hover { color: var(--chrome); border-bottom-color: var(--chrome); }

.contact__actions { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }

.contact__hours-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--bg);
}
.contact__hours-title em { font-style: italic; color: var(--grey-2); }
.contact__light .eyebrow { color: var(--grey-2); }
.contact__light table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-sans);
  font-size: 13px;
}
.contact__light td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 10, .08);
  color: var(--grey-2);
}
.contact__light td:first-child { color: var(--bg); }
.contact__light td:last-child {
  text-align: right;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--grey-2);
}
.contact__light tr.is-today td:first-child {
  color: var(--bg); font-weight: 500;
  position: relative; padding-left: 14px;
}
.contact__light tr.is-today td:first-child::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--bg);
  transform: translateY(-50%);
}
.contact__light tr.is-today td:last-child { color: var(--bg); }

.contact__note {
  margin-top: 32px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--grey-2);
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, .08);
}

/* ═══════════════════════════════════════════
   FOOTER — czarny minimalny
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  padding: 80px 0 28px;
  border-top: 1px solid var(--line);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 0 var(--gutter);
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer__logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-serif);
  font-size: 22px; color: var(--ivory);
}
.footer__logo-mark {
  display: inline-block; width: 10px; height: 10px;
  background: var(--chrome); border-radius: 50%;
}
.footer__brand p {
  font-size: 12px; color: var(--grey);
  line-height: 1.7;
  margin: 0;
  letter-spacing: .04em;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__col-label {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer__cols ul li { padding: 6px 0; }
.footer__cols ul a {
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ivory);
  transition: color var(--t-mid);
  letter-spacing: .02em;
}
.footer__cols ul a:hover { color: var(--chrome); }

.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  max-width: var(--max); margin: 0 auto;
  padding: 28px var(--gutter) 0;
  border-top: 1px solid var(--line);
  font-family: var(--f-sans);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey-2);
}
.footer__bottom a { color: var(--ivory); border-bottom: 1px solid var(--grey-2); padding-bottom: 1px; }
.footer__bottom a:hover { color: var(--chrome); border-bottom-color: var(--chrome); }

/* ═══════════════════════════════════════════
   FLOATING CTA — outline chrome
   ═══════════════════════════════════════════ */
.float-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  background: var(--chrome); color: var(--bg);
  border: 1px solid var(--chrome);
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  box-shadow: 0 18px 40px -12px rgba(192,192,192,.3);
  transition: background var(--t-mid), transform var(--t-mid);
}
.float-cta i { font-style: normal; font-size: 13px; transition: transform var(--t-mid); }
.float-cta:hover { background: var(--ivory); color: var(--bg); border-color: var(--ivory); transform: translateY(-2px); }
.float-cta:hover i { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   BOOKING DRAWER — dark panel
   ═══════════════════════════════════════════ */
.drawer { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--t-mid);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(540px, 100%);
  background: var(--panel);
  border-left: 1px solid var(--chrome);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  color: var(--ivory);
}
.drawer.is-open { pointer-events: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }

.drawer__head { padding: 28px 32px 22px; border-bottom: 1px solid var(--line); }
.drawer__head-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.drawer__eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 8px;
}
.drawer__title { font-size: 32px; font-weight: 400; color: var(--ivory); }
.drawer__title em { font-style: italic; color: var(--chrome); }

.drawer__close {
  position: relative;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  flex: 0 0 40px;
  transition: background var(--t-mid), border-color var(--t-mid);
}
.drawer__close span {
  position: absolute; left: 11px; right: 11px; top: 19px;
  height: 1px; background: var(--ivory);
}
.drawer__close span:first-child { transform: rotate(45deg); }
.drawer__close span:last-child  { transform: rotate(-45deg); }
.drawer__close:hover { background: var(--chrome); border-color: var(--chrome); }
.drawer__close:hover span { background: var(--bg); }

.drawer__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
}
.drawer__steps span {
  position: relative;
  padding: 12px 0 0;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line);
  transition: border-color var(--t-mid);
}
.drawer__steps span.is-active { border-top-color: var(--chrome); }
.drawer__steps span.is-done   { border-top-color: var(--ivory); }
.drawer__steps i {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: 9px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
}
.drawer__steps span.is-active i { color: var(--chrome); }
.drawer__steps em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
}

.drawer__body {
  position: relative;
  overflow-y: auto;
  padding: 24px 32px 12px;
}

.step { display: none; animation: stepIn .5s var(--ease); }
.step.is-active { display: block; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: none; }
}
.step__sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--grey);
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.opt-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); }
.opt {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  text-align: left;
  background: var(--panel);
  border: none;
  transition: background var(--t-mid), padding var(--t-mid);
}
.opt:hover { background: var(--panel-2); padding-left: 26px; }
.opt.is-picked { background: var(--bg); border-left: 2px solid var(--chrome); padding-left: 24px; }

.opt__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--chrome);
}

.opt__body { display: flex; flex-direction: column; gap: 3px; }
.opt__title {
  font-family: var(--f-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ivory);
}
.opt__meta {
  font-family: var(--f-sans);
  font-size: 11px; letter-spacing: .12em;
  color: var(--grey);
}
.opt__arrow {
  font-size: 16px; color: var(--grey);
  transition: transform var(--t-mid), color var(--t-mid);
}
.opt:hover .opt__arrow, .opt.is-picked .opt__arrow { color: var(--chrome); transform: translateX(4px); }

.datebar {
  display: flex; gap: 1px; background: var(--line);
  overflow-x: auto;
  border: 1px solid var(--line);
  scrollbar-width: thin;
  scrollbar-color: var(--grey-2) transparent;
}
.datebar::-webkit-scrollbar { height: 4px; }
.datebar::-webkit-scrollbar-thumb { background: var(--grey-2); }
.datebar__d {
  flex: 0 0 auto;
  min-width: 64px;
  padding: 14px 12px;
  text-align: center;
  background: var(--panel);
  border: none;
  cursor: pointer;
  transition: background var(--t-mid), color var(--t-mid);
}
.datebar__d:hover { background: var(--panel-2); }
.datebar__d.is-picked { background: var(--chrome); color: var(--bg); }
.datebar__d.is-disabled { opacity: .35; cursor: not-allowed; }
.datebar__dow {
  display: block;
  font-family: var(--f-sans);
  font-size: 9px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--grey);
}
.datebar__d.is-picked .datebar__dow { color: var(--bg); opacity: .8; }
.datebar__day {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  margin: 2px 0;
  color: var(--ivory);
}
.datebar__d.is-picked .datebar__day { color: var(--bg); }
.datebar__mon {
  display: block;
  font-family: var(--f-sans);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--grey);
}
.datebar__d.is-picked .datebar__mon { color: var(--bg); opacity: .8; }

.slots { margin-top: 18px; }
.slots__hint {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--grey);
  margin: 6px 0;
}
.slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.slot {
  background: var(--panel);
  padding: 12px 8px;
  text-align: center;
  font-family: var(--f-sans);
  font-size: 13px;
  color: var(--ivory);
  border: none;
  cursor: pointer;
  transition: background var(--t-mid), color var(--t-mid);
}
.slot:hover:not(.is-taken) { background: var(--panel-2); }
.slot.is-picked { background: var(--chrome); color: var(--bg); }
.slot.is-taken { opacity: .25; cursor: not-allowed; text-decoration: line-through; }
.slots__empty {
  padding: 22px 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--grey);
  text-align: center;
}

.form { display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; }
.form label > span {
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
}
.form input {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  outline: none;
  transition: border-color var(--t-mid);
}
.form input::placeholder { color: var(--grey-2); }
.form input:focus { border-bottom-color: var(--chrome); }

.form__summary {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--grey);
  line-height: 1.7;
}
.form__summary strong {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--ivory);
}

.form__error {
  font-family: var(--f-sans);
  font-size: 12px;
  color: #d77272;
  background: rgba(215, 114, 114, .08);
  border: 1px solid rgba(215, 114, 114, .25);
  padding: 10px 14px;
  margin: 0;
}
.form__legal {
  font-family: var(--f-sans);
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--grey);
  margin: 0;
  text-align: center;
}
.form__legal a { color: var(--chrome); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }

.verify { padding: 12px 0; }
.verify__title { font-size: 24px; font-weight: 400; margin-bottom: 8px; color: var(--ivory); }
.verify__intro {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--grey);
  margin: 0 0 22px;
}
.verify__intro strong { color: var(--chrome); }
.verify__inputs { display: flex; gap: 10px; margin-bottom: 18px; justify-content: center; }
.verify__inputs input {
  width: 56px; height: 64px;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ivory);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  outline: none;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.verify__inputs input:focus { border-color: var(--chrome); background: var(--panel); }

.success { padding: 40px 0; text-align: center; }
.success__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--chrome);
  color: var(--bg);
  font-size: 36px;
  margin-bottom: 22px;
  animation: pop .7s var(--ease-slow);
}
@keyframes pop {
  0%   { transform: scale(.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
.success h3 { font-size: 28px; font-weight: 400; color: var(--ivory); margin-bottom: 8px; }
.success h3 em { font-style: italic; color: var(--chrome); }
.success p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--grey);
  margin: 0 0 26px;
}

.drawer__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 16px 32px 22px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.drawer__back {
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--grey);
  padding: 10px 0;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color var(--t-mid);
}
.drawer__back:hover { color: var(--ivory); }
.drawer__back i { font-style: normal; transition: transform var(--t-mid); }
.drawer__back:hover i { transform: translateX(-4px); }

.drawer__next:disabled {
  opacity: .35; cursor: not-allowed;
  background: var(--panel); color: var(--grey);
  border-color: var(--line-strong);
}
.drawer__next:disabled:hover {
  background: var(--panel); color: var(--grey);
  border-color: var(--line-strong);
}

/* ═══════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { display: flex; flex-direction: column; align-items: center; }
  .portrait { margin: 0 auto; }
  .hero__credit { text-align: center; }

  .manifesto__cols { grid-template-columns: 1fr; gap: 24px; }

  .services__grid { grid-template-columns: 1fr; }
  .svc:nth-child(odd) { border-right: none; }

  .atelier__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__split { grid-template-columns: 1fr; }
  .contact__dark, .contact__light {
    padding: 60px var(--gutter);
  }

  .footer__main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .nav { grid-template-columns: 1fr auto; }
  .nav__links {
    position: fixed; inset: 60px 0 auto;
    flex-direction: column; gap: 0;
    background: var(--bg);
    padding: 24px var(--gutter) 32px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform var(--t-mid);
    z-index: 95;
  }
  .nav__links a { padding: 14px 0; font-size: 12px; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: none; }
  .nav.is-open .nav__links { transform: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-block; }

  .hero { padding-top: 110px; min-height: auto; padding-bottom: 60px; }
  .hero__title { font-size: clamp(48px, 13vw, 80px); }

  .manifesto { padding: 80px var(--gutter); }
  .services, .atelier, .gallery, .voices, .contact { padding: 80px 0; }

  .atelier__grid { grid-template-columns: 1fr; gap: 16px; }

  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }

  .float-cta { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 9px; }

  .drawer__panel { width: 100%; }
  .drawer__head, .drawer__body, .drawer__foot { padding-left: 20px; padding-right: 20px; }
  .drawer__title { font-size: 26px; }
  .verify__inputs input { width: 50px; height: 60px; font-size: 22px; }
}
