/* RDK Serwis Kowalczyk — design tokens & base */
:root {
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --cream-3: #EAE3D4;
  --brass: #B8960C;
  --brass-deep: #8B7009;
  --graphite: #1C1C1C;
  --graphite-soft: #2A2A2A;
  --ink-muted: #4A4641;
  --rule: rgba(28,28,28,0.12);
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
}
img { display: block; max-width: 100%; }
svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-deep);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--brass); color: #fff;
  border-color: var(--brass);
}
.btn-primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--graphite); color: var(--cream);
  border-color: var(--graphite);
}
.btn-dark:hover { background: #000; }
.btn-link {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  color: var(--brass-deep); font-weight: 500;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--graphite); }
.btn-link .arrow {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
  opacity: 0.6;
}
.btn-link .arrow::after { content: none; }
.btn-link:hover .arrow { width: 40px; opacity: 1; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  padding: 24px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.2s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.nav.scrolled {
  padding: 14px 0;
  background: var(--cream);
  border-bottom-color: rgba(28, 28, 28, 0.08);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

/* Default (transparent / on dark hero) — light text */
.logo-text .name { color: #fff; }
.logo-text .sub { color: rgba(255,255,255,0.6); }
.nav-links a { color: rgba(255,255,255,0.9); }
.nav-links a:hover { color: var(--brass); }
.nav-phone {
  border-color: var(--brass);
  background: transparent;
  color: var(--brass);
}
.nav-phone:hover { background: var(--brass); color: var(--graphite); }
.nav-phone .dot { background: var(--brass); }

/* Scrolled — dark text on cream */
.nav.scrolled .logo-text .name { color: var(--graphite); }
.nav.scrolled .logo-text .sub { color: rgba(28, 28, 28, 0.55); }
.nav.scrolled .nav-links a { color: rgba(28, 28, 28, 0.78); }
.nav.scrolled .nav-links a:hover { color: var(--brass); }
.nav.scrolled .logo-mark { border-color: var(--brass); color: var(--brass); }
.nav.scrolled .nav-phone {
  border-color: var(--brass);
  background: transparent;
  color: var(--brass);
}
.nav.scrolled .nav-phone:hover { background: var(--brass); color: #fff; }
.nav.scrolled .nav-phone .dot { background: var(--brass); }
.nav.scrolled .nav-phone:hover .dot { background: #fff; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .name {
  font-family: var(--font-serif); font-size: 18px;
}
.logo-text .sub {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; padding: 0; margin: 0;
}
.nav-links a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brass); }
.nav-phone {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--brass);
  font-family: var(--font-serif); font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: all 0.2s;
}
.nav-phone .dot { width: 6px; height: 6px; border-radius: 50%; transition: background 0.2s; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { padding: 7px 12px; font-size: 16px; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  color: #fff;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/naprawa-puzonu-lubon-poznan.jpg');
  background-size: cover;
  background-position: center 25%;
  filter: grayscale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: 180px;
  padding-bottom: 120px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 84px);
  max-width: 14ch;
  margin: 24px 0 28px;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic; color: var(--brass);
}
.hero-sub {
  font-size: 17px; max-width: 52ch;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 48px; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-left: 32px; padding-right: 32px;
}
@media (max-width: 720px) {
  .hero-meta { padding-left: 20px; padding-right: 20px; }
}
.hero-meta .line { width: 80px; height: 1px; background: var(--brass); margin-top: 12px; }
.hero-since {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255,255,255,0.7);
}

/* TRUST BAR */
.trust {
  background: var(--graphite);
  color: var(--cream);
  padding: 36px 0;
  border-top: 1px solid rgba(184,150,12,0.25);
  border-bottom: 1px solid rgba(184,150,12,0.25);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--brass);
  line-height: 1;
  font-weight: 500;
}
.trust-txt {
  font-size: 13px; line-height: 1.4; color: rgba(250,247,242,0.85);
}
.trust-txt strong { font-weight: 500; color: #fff; display: block; font-family: var(--font-serif); font-size: 15px; margin-bottom: 2px; }
@media (max-width: 900px) {
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-item { border-right: none; padding: 0 12px; }
}
@media (max-width: 560px) {
  .trust-inner { grid-template-columns: 1fr; }
}

/* Section scaffolding */
section.block { padding: 120px 0; position: relative; }
section.block.alt { background: var(--cream-2); }
section.block.dark { background: var(--graphite); color: var(--cream); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 72px;
}
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  max-width: 18ch;
  font-weight: 400;
}
.section-head h2 em { font-style: italic; color: var(--brass-deep); }
.section-head .note {
  max-width: 38ch; font-size: 15px; color: var(--ink-muted); line-height: 1.65;
}

/* BEFORE / AFTER SLIDERS */
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba {
  background: var(--graphite);
}
.ba-figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-drag: none;
  background: #111;
}
.ba-figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-after-wrap {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 50%; overflow: hidden;
  will-change: width;
}
.ba-after-wrap img {
  width: calc(100% / var(--w, 0.5));
  min-width: 100%;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: var(--brass);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.ba-handle::before {
  content: "‹ ›";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff; font-size: 18px; letter-spacing: 2px; font-weight: 700;
  font-family: var(--font-sans);
}
.ba-label {
  position: absolute; top: 16px;
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; color: var(--brass); background: rgba(0,0,0,0.6); }
.ba-caption {
  padding: 20px 24px 24px;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(184,150,12,0.2);
}
.ba-caption .t {
  font-family: var(--font-serif); font-size: 20px;
  font-style: italic;
}
.ba-caption .n {
  font-size: 11px; letter-spacing: 0.2em; color: var(--brass);
}
@media (max-width: 860px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* SERVICES */
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--cream-3);
  border: 1px solid var(--cream-3);
}
.service-card {
  background: var(--cream);
  padding: 0;
  display: grid; grid-template-columns: 280px 1fr;
  align-items: stretch;
  min-height: 280px;
}
.service-card .img {
  background-size: cover; background-position: center;
  position: relative;
}
.service-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.1), rgba(28,28,28,0.4));
}
.service-body {
  padding: 36px 36px 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.service-num {
  font-family: var(--font-serif); font-size: 14px; font-style: italic;
  color: var(--brass-deep);
  margin-bottom: 12px;
}
.service-body h3 {
  font-size: 26px;
  margin-bottom: 14px;
  max-width: 18ch;
  font-weight: 500;
}
.service-body p {
  color: var(--ink-muted); font-size: 14px; line-height: 1.6;
  margin: 0 0 24px; max-width: 36ch;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; min-height: 0; }
  .service-card .img { height: 220px; }
}

/* AUTHORIZATIONS */
.auth {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--graphite);
  color: var(--cream);
}
.auth-bg {
  position: absolute; inset: 0;
  background-image: url('assets/reczna-naprawa-instrumentow-detych.jpg');
  background-size: cover; background-position: center;
  filter: grayscale(1) blur(8px);
  opacity: 0.18;
  transform: scale(1.1);
}
.auth-inner { position: relative; z-index: 2; text-align: center; }
.auth-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); font-weight: 500; margin-bottom: 20px;
}
.auth h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  margin-bottom: 56px; font-weight: 400;
}
.auth h2 em { font-style: italic; color: var(--brass); }
.auth-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.auth-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  color: rgba(250,247,242,0.7);
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 14px;
}
.auth-logo::after {
  content: "AUTORYZACJA";
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--brass);
}
@media (max-width: 700px) {
  .auth-logos { gap: 40px; }
  .auth-logo { font-size: 22px; }
}

/* TESTIMONIALS / ARTYŚCI */
.artists-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 72px;
}
.artist {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}
.artist img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.5s, transform 0.8s;
}
.artist:hover img { filter: grayscale(0); transform: scale(1.04); }
.artist .name-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.artist .name-bar .n {
  font-family: var(--font-serif); font-size: 18px; margin-bottom: 4px;
}
.artist .name-bar .e {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
}
@media (max-width: 760px) { .artists-grid { grid-template-columns: 1fr 1fr; } }

.quote {
  max-width: 900px; margin: 0 auto;
  padding: 56px 48px;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  text-align: center;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute; top: -24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif); font-size: 80px;
  background: var(--cream);
  color: var(--brass);
  padding: 0 18px;
  line-height: 1;
}
.block.alt .quote::before { background: var(--cream-2); }
.quote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 28px;
  color: var(--graphite);
  font-weight: 400;
}
.quote cite {
  font-style: normal; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass-deep);
}
.artists-more {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 17px;
  margin: 24px 0 40px;
}

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 80px; align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
}
.about-photo .main {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}
.about-photo .inset {
  position: absolute; right: -40px; bottom: -40px;
  width: 45%; aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--cream);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  filter: grayscale(0.2);
}
.about-photo .frame {
  position: absolute; inset: -14px -14px 14px 14px;
  border: 1px solid var(--brass);
  z-index: -1;
}
.about-body h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-bottom: 28px;
  font-weight: 400;
}
.about-body h2 em { font-style: italic; color: var(--brass-deep); }
.about-body p {
  font-size: 16px; color: var(--ink-muted); line-height: 1.75;
  margin: 0 0 18px;
  max-width: 46ch;
}
.about-body p.lead {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--graphite); line-height: 1.5;
  margin-bottom: 28px;
}
.about-stats {
  display: flex; flex-wrap: wrap; gap: 56px; margin: 40px 0 40px;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
}
.about-stats .s .n {
  font-family: var(--font-serif); font-size: 42px;
  color: var(--brass-deep); line-height: 1;
}
.about-stats .s .l {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: 8px;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-grid > * { min-width: 0; }
  .about-photo .inset { right: 0; bottom: -24px; }
}
@media (max-width: 540px) {
  .about-stats { gap: 28px 32px; }
}

/* CONTACT */
.contact {
  background: var(--graphite);
  color: var(--cream);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact h2 {
  font-size: clamp(34px, 4.2vw, 52px);
  margin-bottom: 24px; font-weight: 400;
}
.contact h2 em { font-style: italic; color: var(--brass); }
.contact .lead {
  font-size: 16px; color: rgba(250,247,242,0.7); line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 40px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,247,242,0.22);
  color: var(--cream);
  padding: 10px 0 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass);
}
.field select option { background: var(--graphite); color: var(--cream); }

.contact-info {
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,150,12,0.2);
}
.contact-info h3 {
  font-size: 22px; margin-bottom: 24px;
}
.info-row {
  display: flex; gap: 18px; padding: 20px 0;
  border-top: 1px solid rgba(250,247,242,0.08);
}
.info-row:first-of-type { border-top: none; padding-top: 4px; }
.info-row .k {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); min-width: 100px;
  padding-top: 4px;
}
.info-row .v {
  color: var(--cream); font-size: 15px; line-height: 1.6;
}
.info-row .v .big {
  font-family: var(--font-serif); font-size: 22px; display: block;
}
.map-placeholder {
  margin-top: 24px;
  height: 200px;
  background:
    repeating-linear-gradient(45deg, rgba(184,150,12,0.06) 0 10px, transparent 10px 20px),
    rgba(250,247,242,0.03);
  border: 1px solid rgba(184,150,12,0.2);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-style: italic;
  color: rgba(250,247,242,0.5);
  font-size: 14px;
  position: relative;
}
.map-placeholder::before {
  content: "Luboń · ul. Jaśminowa 18";
  font-size: 13px; letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
  background: #000; color: rgba(250,247,242,0.6);
  padding: 48px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer .brand {
  font-family: var(--font-serif); color: var(--cream); font-size: 16px;
}
.footer .brand em { color: var(--brass); font-style: italic; }

/* TWEAKS */
#tweaks-panel {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--graphite);
  color: var(--cream);
  border: 1px solid var(--brass);
  padding: 20px 22px;
  z-index: 999;
  width: 280px;
  font-family: var(--font-sans);
  font-size: 13px;
  display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
#tweaks-panel.on { display: block; }
#tweaks-panel h4 {
  font-family: var(--font-serif); font-size: 18px; margin-bottom: 16px;
  color: var(--brass); font-style: italic;
}
#tweaks-panel .row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
#tweaks-panel label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,242,0.7); }
#tweaks-panel input[type=color] { width: 100%; height: 32px; border: 1px solid rgba(250,247,242,0.2); background: transparent; cursor: pointer; }
#tweaks-panel input[type=range] { width: 100%; }
#tweaks-panel select {
  background: #000; color: var(--cream); border: 1px solid rgba(250,247,242,0.2);
  padding: 6px 8px; font-family: var(--font-sans); font-size: 13px;
}


/* Smooth scroll */
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

/* Subpage shell */
.subpage-hero {
  padding: 200px 0 100px;
  background: var(--graphite);
  color: var(--cream);
  position: relative;
}
.subpage-hero h1 {
  font-family: var(--font-serif); font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 400; max-width: 18ch; margin: 18px 0 16px;
}
.subpage-hero h1 em { font-style: italic; color: var(--brass); }
.subpage-hero p { color: rgba(250,247,242,0.7); max-width: 60ch; font-size: 17px; }
.subpage-body { padding: 100px 0; }
.subpage-body .placeholder {
  border: 1px dashed rgba(28,28,28,0.25);
  padding: 80px 40px;
  text-align: center;
  font-family: var(--font-serif); font-style: italic;
  color: var(--ink-muted);
  font-size: 18px;
}

/* === CONTACT SECTION v2 === */
.contact { background: var(--graphite); color: var(--cream); padding: 120px 0; }
.contact-head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.contact-head h2 {
  font-family: var(--font-serif); font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 400; line-height: 1.1; margin: 18px 0 20px; color: var(--cream);
}
.contact-head h2 em { font-style: italic; color: var(--brass); }
.contact-lead {
  font-size: 17px; line-height: 1.6; color: rgba(250,247,242,0.7);
  max-width: 56ch; margin: 0 auto;
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px; margin: 0 auto;
}

/* LEFT: actions */
.contact-actions { display: flex; flex-direction: column; }

/* Primary WhatsApp CTA */
.cta-wa {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  border: none;
  position: relative;
  overflow: hidden;
}
.cta-wa:hover { background: #1faa50; transform: translateY(-2px); }
.cta-wa-badge {
  width: 48px; height: 48px; flex: 0 0 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-wa-badge svg { width: 22px !important; height: 22px !important; flex: none; }
.cta-wa-content { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cta-wa-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  letter-spacing: 0.005em; line-height: 1.2;
}
.cta-wa-sub {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.cta-wa-arrow {
  font-family: var(--font-serif); font-style: normal; font-size: 38px;
  font-weight: 300;
  flex: 0 0 auto;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.25s, opacity 0.25s;
}
.cta-wa:hover .cta-wa-arrow { transform: translateX(4px); opacity: 1; }

/* Divider */
.alt-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 36px 0 24px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,247,242,0.4);
}
.alt-divider::before, .alt-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(250,247,242,0.12);
}

/* Alternative channels — text-only cards */
.alt-channels { display: flex; flex-direction: column; gap: 12px; }
.alt-ch {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 24px;
  border: 1px solid rgba(250,247,242,0.1);
  background: rgba(250,247,242,0.02);
  color: var(--cream);
  text-decoration: none;
  transition: all 0.2s;
}
.alt-ch:hover { border-color: var(--brass); background: rgba(184,150,12,0.06); }
.alt-ch-label {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass);
}
.alt-ch-value {
  font-family: var(--font-serif); font-size: 22px; color: #fff;
  letter-spacing: 0.005em;
  word-break: break-word;
}
.alt-ch-meta {
  font-size: 12px; color: rgba(250,247,242,0.55);
  margin-top: 2px;
}

/* RIGHT: how it works */
.contact-howto {
  padding: 44px;
  background: rgba(250,247,242,0.025);
  border: 1px solid rgba(250,247,242,0.08);
  border-left: 2px solid var(--brass);
}
.howto-h {
  font-family: var(--font-serif); font-size: 32px; font-weight: 400;
  margin: 14px 0 36px; color: var(--cream);
  line-height: 1.15;
}
.howto-h em { font-style: italic; color: var(--brass); }

.steps-v2 { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 0; }
.steps-v2 li {
  display: flex; gap: 24px; padding: 22px 0;
  border-top: 1px solid rgba(250,247,242,0.08);
}
.steps-v2 li:first-child { border-top: none; padding-top: 0; }
.steps-v2 li:last-child { padding-bottom: 0; }
.sv2-num {
  font-family: var(--font-serif); font-size: 32px; line-height: 1;
  color: var(--brass);
  flex: 0 0 56px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.sv2-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sv2-title {
  font-family: var(--font-serif); font-size: 18px; color: var(--cream);
  font-weight: 500; line-height: 1.3;
}
.sv2-desc { font-size: 14px; color: rgba(250,247,242,0.6); line-height: 1.55; }

.howto-foot-v2 {
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(184,150,12,0.25);
  display: flex; flex-direction: column; gap: 14px;
}
.hf2-row { display: flex; gap: 18px; align-items: flex-start; }
.hf2-k {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--brass);
  flex: 0 0 110px; padding-top: 3px;
}
.hf2-v { color: var(--cream); flex: 1; font-size: 14px; line-height: 1.5; }

@media (max-width: 960px) {
  .contact { padding: 80px 0; }
  .contact-head { margin-bottom: 48px; }
  .contact-grid-v2 { grid-template-columns: 1fr; gap: 40px; }
  .contact-howto { padding: 32px 24px; }
  .cta-wa { padding: 20px 22px; gap: 16px; }
  .cta-wa-badge { width: 42px; height: 42px; flex-basis: 42px; }
  .cta-wa-title { font-size: 19px; }
  .alt-ch { padding: 18px 20px; }
  .alt-ch-value { font-size: 18px; }
  .hf2-row { flex-direction: column; gap: 4px; }
  .hf2-k { flex-basis: auto; }
  .sv2-num { flex: 0 0 44px; font-size: 26px; }
  .howto-h { font-size: 26px; }
}


/* === DESIGN POLISH PASS === */

/* Trust bar — tighter, more editorial */
.trust { padding: 44px 0; }
.trust-item { gap: 24px; padding: 0 32px; align-items: flex-start; }
.trust-num {
  font-size: 44px; font-weight: 400;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  min-width: 60px;
}
.trust-txt strong {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass); font-family: var(--font-sans); font-weight: 600;
  margin-bottom: 6px;
}
.trust-txt {
  font-size: 13px; color: rgba(250,247,242,0.7); line-height: 1.55;
}

/* Hero meta — refined */
.hero-since {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-style: normal; font-family: var(--font-sans);
  color: rgba(255,255,255,0.55);
}

/* Section eyebrows — remove the noisy "· DYPTYKI" feel by making the dot lighter */
.eyebrow { color: var(--brass); }

/* Authorizations — sophisticated wordmark styling with hairline rules */
.auth-logos {
  gap: 0;
  border-top: 1px solid rgba(184,150,12,0.25);
  border-bottom: 1px solid rgba(184,150,12,0.25);
  margin-top: 16px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.auth-logo {
  font-size: 26px;
  letter-spacing: 0.06em;
  padding: 30px 24px 20px;
  border-bottom: none;
  border-right: 1px solid rgba(184,150,12,0.18);
  color: rgba(250,247,242,0.85);
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.auth-logo:last-child { border-right: none; }
.auth-name {
  font-family: var(--font-serif);
  font-size: 26px; letter-spacing: 0.06em;
}
.auth-sub {
  font-family: var(--font-sans);
  font-size: 9px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(184,150,12,0.85);
  font-weight: 500;
}
.auth-logo::after { content: none; }
@media (max-width: 700px) {
  .auth-logos { grid-template-columns: 1fr 1fr; }
  .auth-logo:nth-child(2) { border-right: none; }
  .auth-logo:nth-child(1), .auth-logo:nth-child(2) { border-bottom: 1px solid rgba(184,150,12,0.18); }
  .auth-logo { font-size: 22px; padding: 28px 16px 36px; }
}

/* Quote — refined editorial */
.quote {
  padding: 64px 48px 48px;
  border: 1px solid var(--rule);
  background: transparent;
}
.quote::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--brass);
  top: -1px;
  transform: translateX(-50%);
  position: absolute; left: 50%;
  font-size: 0;
}
.quote p {
  font-size: clamp(20px, 2vw, 26px);
  font-style: normal;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 32px;
  color: var(--ink);
}
.quote cite {
  display: block;
  text-align: center;
  position: relative;
  padding-top: 16px;
  font-size: 11px; letter-spacing: 0.24em;
  color: var(--brass-deep);
}
.quote cite::before {
  content: "";
  display: block;
  width: 24px; height: 1px;
  background: var(--brass);
  margin: 0 auto 16px;
}

/* "oraz 21 innych..." — proper editorial framing */
.artists-more {
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  position: relative;
  padding: 24px 0;
  max-width: 480px;
  border-top: 1px solid var(--rule);
}

/* About stats — tighter, more editorial rhythm */
.about-stats {
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.about-stats .s .n {
  font-size: 38px;
  font-weight: 400;
  color: var(--brass-deep);
  letter-spacing: -0.01em;
}
.about-stats .s .l {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* Before/after captions — cleaner */
.ba-caption {
  padding: 24px 28px;
}
.ba-caption .t { font-size: 19px; }
.ba-caption .n {
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--brass);
  font-family: var(--font-sans);
}

/* B/A labels — more refined */
.ba-label {
  font-size: 10px; letter-spacing: 0.24em;
  padding: 7px 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

/* Logo monogram — slight refinement */
.logo-mark {
  letter-spacing: 0.04em;
}

/* Section heads — better breathing room */
.section-head { margin-bottom: 80px; }

/* Auth eyebrow */
.auth-eyebrow {
  letter-spacing: 0.28em;
  font-size: 10px;
  margin-bottom: 24px;
}
.auth h2 { margin-bottom: 12px; }


/* Service card → clickable link wrapper */
a.service-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.service-card .service-cta { pointer-events: none; }
a.service-card:hover .service-cta::after,
a.service-card:hover .service-cta .arrow { opacity: 1; }

/* Centered section head + lede */
.section-head--centered {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 56px;
}
.section-head--centered h2 {
  max-width: 22ch;
}
.section-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0;
}

/* Slider hint — editorial caption-bar */
.ba-hint {
  display: flex; align-items: center; gap: 20px;
  margin: 0 auto 40px;
  max-width: 760px;
  color: var(--ink-muted);
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
}
.ba-hint-line {
  flex: 1; height: 1px;
  background: var(--rule);
}
.ba-hint-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  flex-shrink: 0;
}
.ba-hint-text {
  white-space: normal;
  text-align: center;
  flex-shrink: 1;
  letter-spacing: 0.14em;
  color: var(--ink);
  font-weight: 500;
  max-width: 48ch;
}
@media (max-width: 760px) {
  .ba-hint { gap: 14px; padding: 0 16px; }
  .ba-hint-line { display: none; }
  .ba-hint-text { font-size: 11px; }
}


/* ─── BLOK 4.5 · MID CTA · editorial light band ─── */
.mid-cta {
  position: relative;
  padding: 110px 0 120px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.mid-cta-bg { display: none; }
.mid-cta::before {
  content: '';
  position: absolute;
  top: 56px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 32px;
  background: var(--brass);
  opacity: 0.6;
}
.mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: start;
  position: relative;
}

/* head */
.mid-cta-head {
  position: relative;
  padding-top: 8px;
}
.mid-cta-marker {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass);
  margin-bottom: 28px;
}
.mid-cta-marker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--brass);
}
.mid-cta-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--graphite);
}
.mid-cta-head h2 em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

/* body */
.mid-cta-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* WhatsApp — primary, green */
.mid-wa {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: #25D366;
  color: #0E1A0E;
  text-decoration: none;
  border: 1px solid #25D366;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.mid-wa:hover {
  background: #1FB755;
  border-color: #1FB755;
  transform: translateY(-1px);
}
.mid-wa-step {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: rgba(14, 26, 14, 0.55);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mid-wa-content {
  display: flex; flex-direction: column;
  gap: 8px;
}
.mid-wa-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: #0E1A0E;
}
.mid-wa-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14, 26, 14, 0.65);
}
.mid-wa-meta svg { color: #0E1A0E; flex-shrink: 0; }
.mid-wa-arrow {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: #0E1A0E;
  transition: transform 0.25s;
}
.mid-wa:hover .mid-wa-arrow {
  transform: translateX(6px);
}

/* "albo" divider */
.mid-cta-or {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 56px;
}
.mid-cta-or::before, .mid-cta-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.mid-cta-or span {
  padding: 0 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* Telephone — ghost on cream */
.mid-tel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  border: 1px solid var(--brass);
  color: var(--graphite);
  text-decoration: none;
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.mid-tel:hover {
  background: var(--graphite);
  color: var(--cream);
  border-color: var(--graphite);
}
.mid-tel:hover .mid-tel-label,
.mid-tel:hover .mid-tel-num,
.mid-tel:hover .mid-tel-hours { color: inherit; }
.mid-tel:hover .mid-tel-label { color: rgba(250, 247, 242, 0.6); }
.mid-tel:hover .mid-tel-hours { color: rgba(250, 247, 242, 0.5); }
.mid-tel-step {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mid-tel-content {
  display: flex; flex-direction: column;
  gap: 6px;
}
.mid-tel-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}
.mid-tel-num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--graphite);
}
.mid-tel-hours {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  text-align: right;
  line-height: 1.5;
  opacity: 0.7;
}

@media (max-width: 980px) {
  .mid-cta { padding: 72px 0 80px; }
  .mid-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .mid-cta-head h2 { font-size: 28px; }
  .mid-wa, .mid-tel { padding: 22px; gap: 18px; }
  .mid-wa-title, .mid-tel-num { font-size: 18px; }
  .mid-tel-hours { display: none; }
}



/* === LOGO IMAGE (replaces text logo) === */
.logo { display: flex; align-items: center; height: 64px; text-decoration: none; }
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  /* Default (transparent header on dark hero) — invert to white */
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
/* When header has scrolled (cream background) — original colors */
.nav.scrolled .logo-img,
.nav.nav--solid .logo-img {
  filter: none;
}
/* Compact slightly when scrolled */
.nav.scrolled .logo,
.nav.nav--solid .logo {
  height: 52px;
}
.nav.scrolled .logo-img,
.nav.nav--solid .logo-img {
  height: 52px;
}
@media (max-width: 760px) {
  .logo, .logo-img { height: 50px; }
  .nav.scrolled .logo, .nav.scrolled .logo-img,
  .nav.nav--solid .logo, .nav.nav--solid .logo-img { height: 44px; }
}


/* ============================================
   HAMBURGER MENU + MOBILE DRAWER
   ============================================ */

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: #fff;
  transition: transform 0.25s, opacity 0.2s, background 0.2s;
  transform-origin: center;
}
.nav.scrolled .nav-burger,
.nav.nav--solid .nav-burger {
  border-color: rgba(28,28,28,0.25);
}
.nav.scrolled .nav-burger span,
.nav.nav--solid .nav-burger span {
  background: var(--graphite);
}
.nav-burger:hover { border-color: var(--brass); }
.nav-burger:hover span { background: var(--brass); }

/* Burger active (when drawer open) — turn into × */
body.drawer-open .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.drawer-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
body.drawer-open .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--cream);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 36px 40px;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  visibility: hidden;
}
body.drawer-open .mobile-drawer {
  transform: translateX(0);
  visibility: visible;
}
.mobile-drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(28,28,28,0.15);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: var(--graphite);
  cursor: pointer;
  font-family: var(--font-serif);
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-drawer-close:hover { border-color: var(--brass); color: var(--brass); }

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}
.mobile-drawer-nav a {
  display: block;
  padding: 18px 4px;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--graphite);
  border-bottom: 1px solid rgba(28,28,28,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer-nav a:hover {
  color: var(--brass);
  padding-left: 8px;
}
.mobile-drawer-phone {
  margin-top: 24px;
  border: 1px solid var(--brass) !important;
  border-radius: 999px !important;
  text-align: center;
  font-family: var(--font-sans) !important;
  font-size: 18px !important;
  letter-spacing: 0.06em;
  color: var(--brass) !important;
  padding: 14px 20px !important;
  border-bottom: 1px solid var(--brass) !important;
}
.mobile-drawer-phone:hover {
  background: var(--brass);
  color: #fff !important;
  padding-left: 20px !important;
}

.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
body.drawer-open .mobile-drawer-backdrop {
  opacity: 1;
  visibility: visible;
}
body.drawer-open { overflow: hidden; }

/* Show burger / hide nav-links on tablet & mobile (telefon zostaje) */
@media (max-width: 980px) {
  .nav nav { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 540px) {
  /* Na małym telefonie kompaktujemy nav-phone */
  .nav-phone { padding: 8px 14px !important; font-size: 14px !important; letter-spacing: 0.04em; }
}
@media (max-width: 380px) {
  /* Na bardzo wąskich ukrywamy nav-phone — można zadzwonić z drawera */
  .nav-phone .dot { display: none; }
}

/* Hide drawer entirely on desktop to be safe */
@media (min-width: 981px) {
  .mobile-drawer, .mobile-drawer-backdrop { display: none !important; }
}

/* ============================================
   RESPONSIVE TIGHTENING (homepage)
   ============================================ */

@media (max-width: 980px) {
  /* Hero */
  .hero h1 { font-size: clamp(40px, 8vw, 64px); }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-inner { padding-top: 120px; padding-bottom: 60px; }
  .hero-meta { display: none; }
  .hero-ctas { flex-wrap: wrap; gap: 12px; }
  .hero-ctas .btn { flex: 1 1 auto; min-width: 0; }
}

@media (max-width: 720px) {
  /* General section padding */
  section { scroll-margin-top: 60px; }
  .container { padding: 0 20px; }
  .hero h1 { font-size: clamp(36px, 9vw, 52px); line-height: 1.05; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 20px; font-size: 14px; }
}

@media (max-width: 980px) {
  /* Service cards: stack image + body vertically */
  .services-grid { gap: 24px; }
  .service-card .img { aspect-ratio: 16 / 9; width: 100%; height: auto; min-height: 0; }
  .service-card { min-height: 0 !important; }
}

@media (max-width: 720px) {
  /* Trust bar */
  .trust { padding: 40px 0; }
  .trust-num { font-size: 36px; }
  .trust-txt strong { font-size: 14px; }
  .trust-txt { font-size: 12px; }
  .trust-inner { gap: 28px 16px; }
}

@media (max-width: 720px) {
  /* Before/after sliders */
  .ba-grid { gap: 32px; }
  .ba-row .ba-num { font-size: 56px; }
  .ba-row h3 { font-size: 22px; }
}

/* Mid-CTA (between services and gallery) — already handled at 980 */
@media (max-width: 720px) {
  .mid-cta-num { font-size: 80px; }
  .mid-cta h2 { font-size: 32px; }
}

/* Authorizations */
@media (max-width: 720px) {
  .auth { padding: 80px 0; }
  .auth h2 { font-size: 32px; }
  .auth-logos { gap: 32px; }
  .auth-logo { font-size: 20px; padding: 12px 0; }
}

/* Artists */
@media (max-width: 540px) {
  .artists-grid { grid-template-columns: 1fr; }
}

/* About */
@media (max-width: 720px) {
  .about { padding: 80px 0; }
  .about h2 { font-size: 32px; }
  .about-photo { max-width: 100%; }
  .about-photo .inset { display: none; }
}

/* Contact */
@media (max-width: 720px) {
  .contact { padding: 80px 0 !important; }
  .contact h2 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr !important; gap: 16px !important; }
  .hf2-row { flex-direction: column; gap: 4px; align-items: flex-start; padding: 14px 0; }
  .hf2-k { font-size: 11px; min-width: 0; }
  .hf2-v { font-size: 14px; }
}

/* Footer */
@media (max-width: 760px) {
  footer .container > div:first-child { grid-template-columns: 1fr !important; gap: 32px !important; }
  footer .container > div:last-child { flex-direction: column; gap: 12px; text-align: center; }
}

/* Quote / pull-quote */
@media (max-width: 720px) {
  .quote { padding: 60px 0; }
  .quote blockquote { font-size: 24px !important; line-height: 1.4; }
}

/* Eyebrow size on mobile */
@media (max-width: 720px) {
  .eyebrow { font-size: 10px; letter-spacing: 0.18em; }
  h2 { font-size: clamp(28px, 6vw, 40px) !important; }
}

/* Section headers (numbered) */
@media (max-width: 720px) {
  .ba-section-head, .services-head, .auth-head { padding: 0 !important; }
  .roman-num { font-size: 48px !important; }
}


/* === MOBILE: lekkie marginesy boczne (nie full-bleed) === */
@media (max-width: 720px) {
  .container { padding-left: 24px !important; padding-right: 24px !important; }
  .hero-ctas .btn { width: auto !important; align-self: stretch; }
  /* Buttons: nie pełna szerokość, tylko padding rozsądny */
  .hero-ctas { padding: 0 4px; }
}
@media (max-width: 480px) {
  .container { padding-left: 20px !important; padding-right: 20px !important; }
}
