/* ============================================================
   CZYSTE HORYZONTY — premium B2B website
   Sage green · Roboto · ample whitespace · documentary feel
   ============================================================ */

:root {
  /* Sage palette (from Figma scrape) */
  --sage-50:  #f0f7f3;
  --sage-100: #d6e6dd;
  --sage-200: #96c8af;
  --sage-300: #879990;
  --sage-500: #619c7f;
  --sage-700: #5f8874;
  --sage-900: #325c48;

  /* Neutrals */
  --ink:        #131613;
  --ink-2:      #2a2d2a;
  --ink-muted:  #5a615b;
  --ink-subtle: #8a918b;
  --line:       #dfe3df;
  --line-soft:  #eef0ec;
  --paper:      #ffffff;
  --paper-warm: #faf8f3;
  --paper-tint: #f4f7f4;
  --night:      #0d0f0d;
  --night-2:    #14171a;

  /* Type */
  --font-display: "Roboto", system-ui, -apple-system, sans-serif;
  --font-mono:    "Roboto Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif:   "Newsreader", ui-serif, Georgia, serif;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Hero choreography (tweakable) */
  --hero-logo-delay: 3000ms;
  --hero-tagline-delay: 5000ms;
  --hero-logo-duration: 1600ms;
  --hero-tagline-duration: 1400ms;

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ── Skip link ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1000;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ── Containers ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ── Type primitives ───────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage-700);
}
.eyebrow--inverse {
  color: rgba(255, 255, 255, 0.7);
}
.eyebrow--inverse::before {
  background: rgba(255, 255, 255, 0.5);
}

.display-1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 1.8rem + 3.2vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: balance;
}
.display-1--inverse { color: var(--paper); }

.display-2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.5rem + 2.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 22ch;
}
.display-2--inverse { color: var(--paper); }

.lead {
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 48px;
  max-width: 56ch;
  text-wrap: pretty;
}
.lead--inverse { color: rgba(255, 255, 255, 0.78); }

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: all 240ms var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--sage-700);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 6px 0 8px;
}
.btn--ghost:hover {
  color: var(--sage-700);
  border-color: var(--sage-700);
}
.btn--large { padding: 20px 36px; font-size: 16px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 8px;
}

/* ── Sticky header ─────────────────────────────────────── */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 18, 16, 0.88);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-100%);
  transition: transform 420ms var(--ease-out);
}
.hdr[data-state="visible"] { transform: translateY(0); }

.hdr__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.hdr__brand { display: block; }
.hdr__logo { height: 42px; width: auto; display: block; }

.hdr__nav {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.hdr__nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease-out);
}
.hdr__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sage-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease-out);
}
.hdr__nav a:hover { color: #ffffff; }
.hdr__nav a:hover::after { transform: scaleX(1); }

.hdr__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  padding: 11px 22px;
  border: 1px solid var(--sage-500);
  border-radius: 2px;
  background: transparent;
  transition: all 200ms var(--ease-out);
}
.hdr__cta:hover,
.hdr__cta:focus-visible {
  color: #ffffff;
  background: var(--sage-700);
  border-color: var(--sage-500);
}

.hdr__menu { display: none; }

@media (max-width: 880px) {
  .hdr__nav, .hdr__cta { display: none; }
  .hdr__inner { grid-template-columns: auto 1fr; }
  .hdr__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    justify-self: end;
  }
  .hdr__menu span {
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.92);
    background: var(--ink);
    transition: all 240ms var(--ease-out);
  }
  .hdr__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hdr__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .hdr__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hdr__mobile[hidden] { display: none !important; }
  .hdr__mobile {
    background: rgba(15, 18, 16, 0.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
    padding: 24px var(--gutter) 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .hdr__mobile a { font-size: 15px; color: rgba(255,255,255,0.92); }
  .hdr__cta--mobile { display: inline-flex; align-self: flex-start; }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--night);
}
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  /* Always visible underneath — keeps the seam between still and video invisible */
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  /* Hidden until JS confirms playback is running from frame 0; then fade in. */
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
}
.hero__video.is-running {
  opacity: 1;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13,15,13,0) 0%, rgba(13,15,13,0) 60%, rgba(13,15,13,0.55) 100%),
    linear-gradient(180deg, rgba(13,15,13,0.25) 0%, rgba(13,15,13,0) 30%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero__logo {
  width: clamp(360px, 46vw, 624px);
  height: auto;
  opacity: 0;
  /* Left-to-right reveal (no slide-in; logo materialises in place) */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  animation: heroLogoReveal var(--hero-logo-duration) var(--ease-out) forwards;
  animation-delay: var(--hero-logo-delay);
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.32)) drop-shadow(0 0 1px rgba(255,255,255,0.18));
}
.hero__tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  animation: heroTaglineIn var(--hero-tagline-duration) var(--ease-out) forwards;
  animation-delay: var(--hero-tagline-delay);
}
@keyframes heroLogoReveal {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); -webkit-clip-path: inset(0 100% 0 0); }
  15%  { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
}
@keyframes heroLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroTaglineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__doc-tag {
  position: absolute;
  top: 28px;
  left: var(--gutter);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) forwards;
  animation-delay: 1500ms;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero__cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroCueIn 1.4s var(--ease-out) forwards;
  animation-delay: 6500ms;
  pointer-events: auto;
  transition: color 200ms var(--ease-out);
}
.hero__cue:hover { color: var(--paper); }
.hero__cue svg {
  animation: cueBob 2.6s ease-in-out infinite;
  animation-delay: 8000ms;
}
@keyframes heroCueIn {
  to { opacity: 0.85; transform: translateX(-50%) translateY(0); }
  from { transform: translateX(-50%) translateY(8px); }
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ── INTRO ─────────────────────────────────────────────── */
.intro {
  padding: clamp(96px, 12vw, 168px) 0 0;
  background: var(--paper);
}
.intro .container--narrow {
  padding-bottom: clamp(96px, 12vw, 144px);
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--paper);
}
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  font-size: 13px;
  color: var(--ink-muted);
}
.trust__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 400;
}
.trust__list .mono {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--sage-700);
}
@media (max-width: 880px) {
  .trust__list { grid-template-columns: 1fr 1fr; gap: 16px 24px; }
}
@media (max-width: 520px) {
  .trust__list { grid-template-columns: 1fr; }
}

/* ── BENEFITS ─────────────────────────────────────────── */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.benefits__media {
  position: relative;
  min-height: 520px;
  background: var(--night);
  overflow: hidden;
}
.benefits__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits__media-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(13, 15, 13, 0.5);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.benefits__content {
  padding: clamp(64px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
  margin-top: 32px;
}
.benefits__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.benefits__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage-700);
}
.benefits__item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.benefits__item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

@media (max-width: 1100px) {
  .benefits { grid-template-columns: 1fr; }
  .benefits__media { min-height: 320px; aspect-ratio: 16/10; }
}
@media (max-width: 720px) {
  .benefits__list { grid-template-columns: 1fr; gap: 36px; }
}

/* ── PROCESS ──────────────────────────────────────────── */
.process {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.process__head {
  max-width: 720px;
  margin-bottom: 96px;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.timeline__step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  position: relative;
  transition: background 300ms var(--ease-out);
}
.timeline__step:hover {
  background: var(--paper-tint);
  margin-inline: -32px;
  padding-inline: 32px;
}
.timeline__num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--sage-500);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.timeline__body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw + 0.6rem, 26px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.012em;
}
.timeline__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 12px;
  max-width: 60ch;
}
.timeline__meta {
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-700) !important;
  margin-top: 16px !important;
}
@media (max-width: 720px) {
  .timeline__step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .timeline__num { font-size: 32px; }
}

/* ── KPI (dark, with orbit video) ─────────────────────── */
.kpi {
  position: relative;
  padding: clamp(120px, 14vw, 192px) 0;
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}
.kpi__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  z-index: -1;
}
.kpi__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 60%, rgba(13,15,13,0.62) 0%, rgba(13,15,13,0.18) 60%, rgba(13,15,13,0) 100%),
    linear-gradient(180deg, rgba(13,15,13,0.18) 0%, rgba(13,15,13,0.05) 50%, rgba(13,15,13,0.45) 100%);
  z-index: -1;
}
.kpi__video { opacity: 0.62; }
.kpi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 64px;
}
.kpi__cell {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kpi__num {
  font-family: var(--font-mono);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  font-feature-settings: "tnum" 1;
}
.kpi__label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 24ch;
}
@media (max-width: 880px) {
  .kpi__grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
}
@media (max-width: 520px) {
  .kpi__grid { grid-template-columns: 1fr; }
}

/* ── CASE STUDIES ─────────────────────────────────────── */
.cases {
  padding: clamp(96px, 12vw, 168px) 0;
  background: var(--paper);
}
.cases__head {
  max-width: 760px;
  margin-bottom: 80px;
}
.cases__note {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-top: 24px;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.case {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.case__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--paper-tint);
  overflow: hidden;
}
.case__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--sage-700);
  font-size: 10px;
  letter-spacing: 0.24em;
  background: var(--paper-tint);
}
.case__placeholder[data-pattern="a"] {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(95,136,116,0.08) 14px 15px),
    linear-gradient(180deg, var(--paper-tint), #e7eeea);
}
.case__placeholder[data-pattern="b"] {
  background:
    radial-gradient(circle at 30% 30%, rgba(95,136,116,0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(50,92,72,0.12) 0%, transparent 55%),
    var(--paper-tint);
}
.case__placeholder[data-pattern="c"] {
  background:
    linear-gradient(180deg, #d6e6dd 0%, var(--paper-tint) 60%, #f4f0e6 100%);
}
.case__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 6px 12px;
}
.case__loc {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-700);
}
.case__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 8px 0 12px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.case__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.case__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-wrap: pretty;
}
.case__attrib {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
@media (max-width: 1100px) {
  .cases__grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
}
@media (max-width: 720px) {
  .cases__grid { grid-template-columns: 1fr; }
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  padding: clamp(96px, 12vw, 168px) 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.faq__head {
  max-width: 720px;
  margin-bottom: 64px;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ease-out);
}
.faq__item details > summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--font-display);
  font-size: clamp(17px, 1vw + 0.5rem, 20px);
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.faq__icon {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-out);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 1px; }
.faq__icon::after { width: 1px; height: 14px; transition: transform 320ms var(--ease-out); }
.faq__item details[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item details[open] .faq__q { color: var(--sage-700); }
.faq__a {
  padding: 0 0 32px;
  max-width: 64ch;
}
.faq__a p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  padding: clamp(96px, 12vw, 168px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 80px;
}
.testi {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.testi:first-child { padding-top: 0; border-top: 0; }
.testi__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 1.6vw + 0.8rem, 32px);
  line-height: 1.32;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
  grid-column: 2;
}
.testi__sig {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.testi__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testi__role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.testi::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sage-700);
  margin-top: 18px;
}
@media (max-width: 720px) {
  .testi { grid-template-columns: 1fr; gap: 12px; }
  .testi::before { margin: 0; }
  .testi__quote, .testi__sig { grid-column: 1; }
}

/* ── CLOSING (form) ───────────────────────────────────── */
.closing {
  position: relative;
  padding: clamp(120px, 14vw, 192px) 0;
  background: var(--night);
  overflow: hidden;
  isolation: isolate;
}
.closing__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: -1;
}
.closing__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 75%, rgba(13,15,13,0.62) 0%, rgba(13,15,13,0.22) 55%, rgba(13,15,13,0) 100%),
    linear-gradient(180deg, rgba(13,15,13,0.05) 0%, rgba(13,15,13,0.20) 60%, rgba(13,15,13,0.50) 100%);
  z-index: -1;
}
.closing__video { opacity: 0.78; }
.closing__head {
  max-width: 720px;
  margin-bottom: 80px;
}

.form {
  display: grid;
  gap: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(32px, 4vw, 56px);
  backdrop-filter: blur(8px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; gap: 32px; }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.form__field input,
.form__field textarea {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 0 12px;
  outline: none;
  transition: border-color 200ms var(--ease-out);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--sage-200);
}
.form__field textarea { resize: vertical; min-height: 80px; }
.form__consent {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.form__consent a {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form__check input { margin-top: 4px; accent-color: var(--sage-500); }
.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.form__actions .btn--primary {
  background: var(--paper);
  color: var(--ink);
}
.form__actions .btn--primary:hover {
  background: var(--sage-200);
}
.form__note {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--night-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__col--wide { grid-column: span 1; }
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__logo { height: 56px; width: auto; max-width: 280px; }
.footer__tag {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 32ch;
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}
.footer__col a {
  transition: color 200ms var(--ease-out);
}
.footer__col a:hover { color: var(--sage-200); }
.footer__col .mono { font-size: 11px; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.06em; }
.footer__base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer__base p { margin: 0; }
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px 32px; }
  .footer__col--wide { grid-column: span 3; }
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__col--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--wide { grid-column: span 1; }
}

/* ── NOT-FOR (świadome ograniczenia) ─────────────────── */
.notfor {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.notfor__list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.notfor__row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.4fr;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.notfor__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage-700);
}
.notfor__what {
  font-family: var(--font-display);
  font-size: clamp(17px, 1vw + 0.5rem, 21px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.notfor__why {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .notfor__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
}

/* ── COMMIT (Pierwsze 30 dni) ─────────────────────────── */
.commit {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.commit__row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.commit__row:last-child { border-right: 0; }
.commit__day {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--sage-200);
}
.commit__body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--paper);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.commit__body p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 720px) {
  .commit { grid-template-columns: 1fr; }
  .commit__row { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .commit__row:last-child { border-bottom: 0; }
}

/* ── NEWSLETTER (in footer) ───────────────────────────── */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.newsletter__copy {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.newsletter__form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  margin-top: 8px;
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 10px 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 14px;
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.newsletter__form button {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-200);
  padding: 10px 12px;
  transition: color 200ms var(--ease-out);
}
.newsletter__form button:hover { color: var(--paper); }
.newsletter__form input:focus { /* line color handled on parent */ }
.newsletter__form:focus-within { border-color: var(--sage-200); }
.newsletter__meta {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
}

/* ── Cursor — removed custom cursor; always use system default ── */

/* ── CASE hover — slow zoom ───────────────────────────── */
.case__media .case__placeholder {
  transition: transform 1200ms var(--ease-out);
  transform-origin: center;
}
.case:hover .case__media .case__placeholder { transform: scale(1.04); }

/* ── PRINT styles ─────────────────────────────────────── */
@media print {
  .hdr, .hero__cue, .hero__doc-tag, #tweaks-mount,
  .closing__video, .kpi__video, .benefits__video, .hero__video,
  .closing__scrim, .kpi__scrim, .hero__scrim,
  .hdr__menu, .hdr__mobile, .hdr__cta {
    display: none !important;
  }
  .hero {
    height: auto;
    min-height: auto;
    background: var(--paper);
    padding: 64px 0;
    page-break-after: always;
  }
  .hero__overlay { position: relative; padding: 64px 0; }
  .hero__logo { filter: none !important; }
  .hero__logo, .hero__tagline { animation: none !important; opacity: 1 !important; transform: none !important; }
  .kpi, .closing, .footer {
    background: var(--paper) !important;
    color: var(--ink) !important;
  }
  .kpi__num, .kpi__label, .display-1--inverse, .display-2--inverse, .lead--inverse,
  .closing__head *, .footer * {
    color: var(--ink) !important;
  }
  .footer__col h4 { color: var(--ink-muted) !important; }
  body { font-size: 11pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .display-1, .display-2 { page-break-after: avoid; }
  section { page-break-inside: avoid; }
  a { color: var(--ink) !important; text-decoration: none; }
  a[href^="http"]::after, a[href^="mailto"]::after, a[href^="tel"]::after {
    content: " (" attr(href) ")";
    font-family: var(--font-mono);
    font-size: 9pt;
    color: var(--ink-muted);
  }
}

/* ── REVEAL ON SCROLL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger via ordering when group of reveals hits at once */
section .reveal:nth-child(1) { transition-delay: 0ms; }
section .reveal:nth-child(2) { transition-delay: 80ms; }
section .reveal:nth-child(3) { transition-delay: 160ms; }
section .reveal:nth-child(4) { transition-delay: 240ms; }
section .reveal:nth-child(5) { transition-delay: 320ms; }


/* ============================================================
   ADDITIONS — owner-feedback round (May 2026)
   ============================================================ */

/* Case studies — real images replace placeholders */
.case__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out);
  transform-origin: center;
}
.case:hover .case__img { transform: scale(1.04); }

/* Benefits intro — mission/values block */
.benefits__intro {
  margin-top: 24px;
  margin-bottom: 48px;
  max-width: 56ch;
  color: var(--ink);
}
.benefits__intro-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 28px 0;
  color: var(--ink);
}
.benefits__intro-h {
  font-family: var(--font-display, var(--font-body));
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 28px 0 12px 0;
  color: var(--ink);
}
.benefits__intro p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0 0 16px 0;
  color: var(--ink-2, var(--ink));
}
.benefits__atuty {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits__atuty li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-2, var(--ink));
}
.benefits__atuty li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage, #5f8874);
  font-weight: 500;
}

/* Closing split — booking + reference image two-up */
.closing__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 56px 0 48px 0;
}
@media (max-width: 880px) {
  .closing__split { grid-template-columns: 1fr; gap: 20px; }
}

/* Booking slot — calendar placeholder w/ background photo */
.booking-slot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 480px;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.12);
}
.booking-slot__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.booking-slot__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,28,24,0.55) 0%, rgba(20,28,24,0.85) 100%);
  z-index: 1;
}
.booking-slot__inner {
  position: relative;
  z-index: 2;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  color: #fff;
}
.booking-slot__tag {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: #ffd87a;
  text-transform: uppercase;
}
.booking-slot__title {
  font-family: var(--font-display, var(--font-body));
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}
.booking-slot__cal {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.booking-slot__cal-head {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.booking-slot__cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.booking-slot__cal-grid > span {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
}
.booking-slot__day {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: inherit;
  font-size: 0.875rem;
  padding: 10px 0;
  border-radius: 6px;
  cursor: not-allowed;
  transition: all 200ms var(--ease-out);
}
.booking-slot__day--avail {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.booking-slot__day--avail:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
}
.booking-slot__day--sel {
  background: var(--sage, #5f8874);
  border-color: var(--sage, #5f8874);
  color: #fff;
  font-weight: 500;
}
.booking-slot__hours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking-slot__hours span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}
.booking-slot__hour--sel {
  background: var(--sage, #5f8874);
  border-color: var(--sage, #5f8874) !important;
  color: #fff !important;
}
.booking-slot__note {
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(255, 216, 122, 0.16);
  border: 1px dashed rgba(255, 216, 122, 0.5);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #ffd87a;
  letter-spacing: 0.02em;
}

/* Reference slot — sketch of how we present on-site */
.reference-slot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 480px;
  background: linear-gradient(180deg, #f6f4ef 0%, #ece9df 100%);
  border: 1px solid rgba(0,0,0,0.08);
  color: #1a2620;
}
.reference-slot__inner {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.reference-slot__tag {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--sage, #5f8874);
  text-transform: uppercase;
  font-weight: 500;
}
.reference-slot__sketch {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 1fr auto auto;
  gap: 14px;
  padding: 18px;
  background:
    repeating-linear-gradient(45deg, transparent 0 10px, rgba(95,136,116,0.04) 10px 11px),
    rgba(255,255,255,0.6);
  border: 1.5px dashed rgba(95,136,116,0.4);
  border-radius: 10px;
  min-height: 320px;
}
.reference-slot__rollup {
  grid-row: 1 / 2;
  background: var(--sage, #5f8874);
  color: #fff;
  border-radius: 4px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-align: center;
  gap: 8px;
  min-height: 180px;
}
.reference-slot__rollup--l { grid-column: 1 / 2; }
.reference-slot__rollup--r { grid-column: 3 / 4; }
.reference-slot__rollup span:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.reference-slot__table {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  align-self: end;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 80px;
  text-align: center;
}
.reference-slot__table span:first-child {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--sage, #5f8874);
  font-weight: 500;
}
.reference-slot__table span:last-child {
  font-size: 0.6875rem;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.reference-slot__floor {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.45);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.reference-slot__caption {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  text-align: center;
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(0,0,0,0.7);
  letter-spacing: 0;
  font-family: var(--font-display, var(--font-body));
}
.reference-slot__note {
  margin-top: auto;
  padding: 10px 14px;
  background: rgba(95,136,116,0.1);
  border: 1px dashed rgba(95,136,116,0.5);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--sage, #5f8874);
  letter-spacing: 0.02em;
}

/* Footer — placeholder note for social links */
.footer__placeholder {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}


/* ──────────────────────────────────────────────────────────
   ROUND-1 ADDITIONS · 2026-05-14
   New sections and placeholders for the redesign.
   ────────────────────────────────────────────────────────── */

/* ── Loading screen — poster-based, replaces black/logo splash ── */
.ch-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #0d0f0d center/cover no-repeat url('photos/hero-poster.jpg');
  opacity: 1;
  transition: opacity 700ms var(--ease-out);
}
.ch-loading.is-gone {
  opacity: 0;
}
.ch-loading::after {
  /* extremely subtle dark vignette so the hero scrim continuity is preserved */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,15,13,0.15) 0%, rgba(13,15,13,0) 30%, rgba(13,15,13,0) 60%, rgba(13,15,13,0.45) 100%);
}

/* ── O NAS — section ─────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.about__media {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, var(--paper-tint, #eef2ef) 0%, #e2ebe6 100%);
  overflow: hidden;
}
.about__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 40px;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(95,136,116,0.06) 18px 19px),
    linear-gradient(180deg, #e8efe9 0%, #d5e2d8 100%);
}
.about__placeholder-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sage-700);
  text-transform: uppercase;
  background: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border: 1px solid rgba(95,136,116,0.35);
  border-radius: 2px;
}
.about__placeholder-note {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  max-width: 32ch;
  line-height: 1.7;
}
.about__content {
  padding: clamp(64px, 8vw, 120px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about__copy {
  max-width: 60ch;
}
@media (max-width: 1100px) {
  .about { grid-template-columns: 1fr; min-height: auto; }
  .about__media { min-height: 360px; aspect-ratio: 4/3; }
}

/* ── DLACZEGO MY — 3 benefit cards ──────────────────────── */
.benefits {
  display: block;
  padding: clamp(96px, 12vw, 168px) 0;
  background: var(--paper-warm, var(--paper));
  border-top: 1px solid var(--line);
}
.benefits__head {
  max-width: 760px;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.benefits__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 1280px) {
  .benefits__cards { grid-template-columns: repeat(2, 1fr); }
  .bcard:nth-child(2n) { border-right: 0; }
}
.bcard {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bcard:last-child { border-right: 0; }
.bcard__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
@media (max-width: 1100px) {
  .benefits__cards { grid-template-columns: 1fr; }
  .bcard { border-right: 0; }
}

/* ── Copy placeholders ──────────────────────────────────── */
.copy-placeholder {
  display: block;
  position: relative;
  padding: 18px 20px 20px;
  border: 1px dashed rgba(95,136,116,0.45);
  background: rgba(95,136,116,0.06);
  border-radius: 4px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
}
.copy-placeholder p {
  margin: 0;
  font-size: inherit;
  color: inherit;
  font-family: var(--font-body, var(--font-display));
}
.copy-placeholder__tag {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--sage-700);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(95,136,116,0.35);
  border-radius: 2px;
}
.copy-placeholder__body {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.copy-placeholder--card {
  flex: 1;
}
.copy-placeholder--lead p {
  font-size: 16px;
  line-height: 1.65;
}
.copy-placeholder--inverse {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}
.copy-placeholder--inverse .copy-placeholder__tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.3);
}
.copy-placeholder--inverse .copy-placeholder__body {
  color: #ffffff;
}

/* ── Process placeholder step ───────────────────────────── */
.timeline__step--placeholder .timeline__num {
  color: rgba(95,136,116,0.5);
}
.timeline__step--placeholder h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sage-700);
  text-transform: uppercase;
  font-weight: 500;
}
.timeline__step--placeholder p {
  color: var(--ink-muted);
}

/* ── KPI placeholder cell ───────────────────────────────── */
.kpi__cell--placeholder .kpi__num {
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.kpi__cell--placeholder .kpi__label {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kpi__note {
  margin-top: 64px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── REALIZACJE — clean gallery grid ─────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-tint, #eef2ef);
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms var(--ease-out);
}
.gallery__item:hover .gallery__img {
  transform: scale(1.02);
}
.gallery__item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(95,136,116,0.08) 14px 15px),
    linear-gradient(180deg, #e8efe9 0%, #d5e2d8 100%);
}
.gallery__placeholder-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--sage-700);
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(95,136,116,0.35);
  border-radius: 2px;
}
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── KONTAKT — contact card ──────────────────────────────── */
.ccard {
  margin: 0 auto;
  max-width: 720px;
  background: rgba(13,15,13,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 4vw, 56px);
  text-align: center;
}
.ccard__logo {
  height: 72px;
  width: auto;
  max-width: 80%;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.ccard__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin: 0;
}
.ccard__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.ccard__row dt {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin: 0;
}
.ccard__row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}
.ccard__row dd a {
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out);
}
.ccard__row dd a:hover,
.ccard__row dd a:focus-visible {
  color: var(--sage-200, #c3dccf);
  border-bottom-color: var(--sage-200, #c3dccf);
}
@media (max-width: 720px) {
  .ccard__list { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Mobile sticky bottom CTA ───────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 80;
  padding: 14px 22px;
  background: var(--ink, #131613);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 2px;
  border: 1px solid var(--sage-500, #619c7f);
  box-shadow: 0 4px 24px rgba(0,0,0,0.32);
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}
.mobile-cta:hover { background: var(--sage-700, #5f8874); }
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* ── Footer logo bump for mobile too ───────────────────── */
@media (max-width: 720px) {
  .footer__logo { height: 44px; }
}
