/* ===== Klapuch Studio — V2 — playful, colorful, broken hero ===== */

:root {
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-script: "Caveat", cursive;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --paper: #f4f1ea;
  --paper-2: #ece8df;
  --ink: #0a0a0a;
  --ink-2: rgba(10,10,10,0.62);
  --ink-3: rgba(10,10,10,0.38);
  --line: rgba(10,10,10,0.14);

  --lime: #c9ff3d;
  --pink: #ff3d6e;
  --blue: #3d8bff;
  --orange: #ffb648;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
::selection { background: var(--lime); color: #0a0a0a; }

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Header ===== */
.hdr2 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px;
  background: color-mix(in oklab, #f3f1ea 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(10,10,10,0.10);
  color: #0a0a0a;
}
.brand2 {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-sans);
  font-weight: 500; font-size: 22px;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #0a0a0a;
}
.brand2-slash { color: #ff527a; }
@keyframes morph {
  0%, 100% { border-radius: 60% 40% 50% 70%; transform: rotate(0deg); }
  50% { border-radius: 40% 70% 60% 50%; transform: rotate(180deg); }
}

.hdr2-nav {
  display: flex; gap: 22px; margin-left: auto; margin-right: auto;
  font-size: 14px; color: rgba(10,10,10,0.62);
}
.hdr2-nav a { position: relative; padding: 4px 2px; transition: color 200ms; }
.hdr2-nav a:hover { color: #0a0a0a; }
.hdr2-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--lime); transform-origin: left; transform: scaleX(0);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.hdr2-nav a:hover::after { transform: scaleX(1); }

.hdr2-right { display: flex; align-items: center; gap: 12px; }
.cta2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: #0a0a0a;
  padding: 10px 16px 10px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid #0a0a0a;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 3px 3px 0 #0a0a0a;
}
.cta2:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #0a0a0a; }
.cta2-dot {
  width: 8px; height: 8px; border-radius: 999px; background: #0a0a0a;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.burger2 {
  display: none; flex-direction: column; gap: 5px;
  padding: 10px; background: transparent; border: 0; cursor: pointer;
}
.burger2 span {
  display: block; width: 24px; height: 2px;
  background: #0a0a0a; border-radius: 2px;
  transform-origin: center;
  transition: transform 340ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.burger2.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger2.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger2.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu2 {
  display: none;
  position: fixed; inset: 0; z-index: 45;
  background-color: #f5f1ea;
  flex-direction: column; gap: 4px;
  padding: 96px 24px 32px;
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 360ms;
}
.mob-menu2.is-open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(.2,.7,.2,1), visibility 0s;
}
.mob-menu2 a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(10,10,10,0.10);
  opacity: 0; transform: translateX(-16px);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(.2,.7,.2,1);
}
.mob-menu2.is-open a { opacity: 1; transform: translateX(0); }
.mob-menu2.is-open a:nth-child(1) { transition-delay: 100ms; }
.mob-menu2.is-open a:nth-child(2) { transition-delay: 150ms; }
.mob-menu2.is-open a:nth-child(3) { transition-delay: 200ms; }
.mob-menu2.is-open a:nth-child(4) { transition-delay: 250ms; }
.mob-menu2.is-open a:nth-child(5) { transition-delay: 300ms; }
.mob-menu2.is-open a:nth-child(6) { transition-delay: 350ms; }
.mob-cta2 {
  color: #ff527a; margin-top: 8px;
  font-family: var(--font-display); font-style: italic;
}
body.no-scroll { overflow: hidden; }

/* ===== Hero ===== */
.hero2 {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding-top: 76px;
}

/* Background layer — shapes live here, never overlap content directly */
.hero2-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.shape {
  position: absolute; pointer-events: none;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.shape-circle {
  width: clamp(220px, 26vw, 360px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--lime);
  top: -8%; right: -7%;
  opacity: 0.85;
}
.shape-pill {
  width: clamp(260px, 30vw, 420px);
  height: clamp(60px, 7vw, 92px);
  border-radius: 999px;
  background: var(--pink);
  top: 58%; left: -6%;
  transform: rotate(-14deg);
  opacity: 0.9;
}
.shape-blob {
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 1;
  background: var(--blue); border-radius: 60% 40% 70% 30%;
  bottom: 22%; right: 4%;
  animation: morph 9s ease-in-out infinite;
  opacity: 0.85;
}
.shape-star {
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 1;
  color: var(--orange);
  top: 14%; right: 18%;
  opacity: 0.95;
  filter: drop-shadow(0 6px 30px color-mix(in oklab, var(--orange) 40%, transparent));
}

/* Content wrapper — keeps text aligned and constrained on big screens */
.hero2-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 56px) clamp(20px, 4vw, 56px) clamp(40px, 6vh, 80px);
  flex: 1;
  display: flex; flex-direction: column;
  gap: clamp(40px, 8vh, 96px);
}

.hero2-title {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(54px, 12vw, 200px);
  line-height: 0.92; letter-spacing: -0.045em;
  margin: 0;
}
.hero2-row {
  display: flex; align-items: baseline;
  gap: 0.16em; flex-wrap: wrap;
}
.hero2-row-2 { margin-top: 0.06em; }

.hero2-word { display: inline-block; }
.w-make { color: var(--ink); }
.w-bracket {
  color: var(--lime);
  font-family: var(--font-display); font-style: italic;
  transform: translateY(-0.04em);
}
.w-fun {
  color: #0a0a0a; background: var(--lime);
  padding: 0 0.16em; border-radius: 18px;
  transform: rotate(-2deg);
  display: inline-block;
  box-shadow: 4px 4px 0 #0a0a0a;
}
.w-co { font-family: var(--font-display); font-style: italic; color: var(--ink); }
.w-script {
  font-family: var(--font-display); font-style: italic;
  color: var(--pink);
}
.w-flat { color: var(--ink); }

.hero2-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-top: auto;
}
.hero2-lede {
  font-size: clamp(15px, 1.2vw, 19px);
  color: var(--ink-2); max-width: 48ch; line-height: 1.55;
}
.hero2-cta {
  display: flex; gap: 12px;
  justify-content: flex-end; flex-wrap: wrap;
}

.big-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 500;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  transition: transform 200ms, box-shadow 200ms, gap 200ms;
  box-shadow: 4px 4px 0 var(--lime);
}
.big-btn:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--lime); gap: 16px; }
.big-btn.ghost { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 var(--pink); }
.big-btn.ghost:hover { box-shadow: 7px 7px 0 var(--pink); }
.big-btn-arrow { transition: transform 200ms; }
.big-btn:hover .big-btn-arrow { transform: translateX(3px); }

/* Marquee */
.marq2 {
  position: relative; z-index: 2;
  margin: 0; padding: 22px 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--lime);
  overflow: hidden;
}
.marq2-track {
  display: flex; gap: 48px; width: max-content;
  animation: marq2 38s linear infinite;
}
.marq2-set { display: flex; gap: 48px; padding-right: 48px; align-items: center; }
.marq2 span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(28px, 4.5vw, 64px); white-space: nowrap;
  color: #0a0a0a;
}
.marq2-star { color: #0a0a0a; font-family: var(--font-sans) !important; font-style: normal !important; font-size: clamp(20px, 3vw, 40px) !important; }
@keyframes marq2 { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }

/* ===== Mini services strip ===== */
.sec2-mini { padding: 80px 24px 0; border-top: 0; }
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1300px; margin: 0 auto;
}
.mini-card {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 28px 24px 32px;
  border: 1px solid var(--ink); border-radius: 22px;
  background: var(--paper-2);
  box-shadow: 4px 4px 0 var(--c);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
  min-height: 200px;
}
.mini-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--c); }
.mini-num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--ink-2);
}
.mini-title {
  font-weight: 500; font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em; margin-top: 4px;
}
.mini-body {
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
  margin-top: 4px;
}
.mini-arrow {
  position: absolute; right: 22px; bottom: 22px;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--ink); display: grid; place-items: center;
  background: var(--c); color: var(--ink);
  transition: transform 200ms;
}
.mini-card:hover .mini-arrow { transform: translate(2px, -2px); }

@media (max-width: 980px) {
  .sec2-mini { padding: 60px 16px 0; }
  .mini-grid { grid-template-columns: 1fr; }
}

/* ===== Sections ===== */
.sec2 {
  padding: 140px 24px;
  position: relative;
  border-top: 1px solid var(--line);
}
.sec2-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
  margin-bottom: 80px;
}
.sec2-head-2 { grid-template-columns: 1fr 1fr; align-items: start; gap: 60px; }
.badge2 {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0a0a0a;
  background: var(--lime); padding: 6px 12px; border-radius: 999px;
  border: 1px solid #0a0a0a;
  margin-bottom: 28px;
}
.badge2-on-dark { color: var(--lime); background: transparent; border-color: var(--lime); }
.sec2-eyebrow.center { display: flex; justify-content: center; }
.sec2-title {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.95; letter-spacing: -0.04em;
  max-width: 14ch;
}
.sec2-title em { color: var(--pink); }
.sec2-lede {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-2); max-width: 48ch; line-height: 1.45;
  align-self: end;
}
.ghost-link {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: color 200ms, border-color 200ms;
}
.ghost-link:hover { color: var(--ink); border-color: var(--pink); }

/* ===== Projects ===== */
.proj2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 60px 32px;
}
.proj2-wrap-0 { grid-column: span 4; }
.proj2-wrap-1 { grid-column: span 2; }
.proj2-wrap-2 { grid-column: span 3; }
.proj2-wrap-0:nth-of-type(4) { grid-column: span 3; }

.proj2-wrap { min-width: 0; }
.proj2-wrap > .proj2-card { display: block; }
.proj2-card {
  cursor: pointer;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}
.proj2-card:hover { transform: translateY(-4px); }

.proj2-thumb {
  position: relative; aspect-ratio: 4/3;
  border-radius: 22px; overflow: hidden;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: box-shadow 350ms, transform 350ms;
}
.proj2-card:hover .proj2-thumb { box-shadow: 10px 10px 0 var(--ink); }
.thumb2 { position: absolute; inset: 0; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.thumb2 svg { width: 100%; height: 100%; display: block; }
.proj2-card:hover .thumb2 { transform: scale(1.04); }
.proj2-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 11px;
  background: rgba(255,255,255,0.18); color: inherit;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 6px 10px; border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.proj2-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 4px 0;
  font-size: clamp(20px, 2vw, 28px); font-weight: 500; letter-spacing: -0.02em;
}
.proj2-arrow { color: var(--pink); transition: transform 200ms; }
.proj2-card:hover .proj2-arrow { transform: translate(2px, -2px); }
.proj2-sub {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-2); letter-spacing: 0.04em;
  padding: 4px 4px 0;
}

/* ===== Services ===== */
.serv2-list { border-top: 2px solid var(--ink); }
.serv2 {
  border-bottom: 1px solid var(--line);
  padding: 28px 0; cursor: pointer;
  transition: background 250ms ease;
}
.serv2:hover { background: color-mix(in oklab, var(--dot) 10%, transparent); }
.serv2-head {
  display: grid; grid-template-columns: auto auto 1fr auto;
  align-items: center; gap: 18px;
}
.serv2-num { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); letter-spacing: 0.06em; }
.serv2-dot { width: 18px; height: 18px; border-radius: 999px; background: var(--dot); border: 1px solid #0a0a0a; }
.serv2-title { font-weight: 500; font-size: clamp(28px, 4.5vw, 60px); letter-spacing: -0.03em; transition: transform 350ms; }
.serv2:hover .serv2-title { transform: translateX(8px); }
.serv2-toggle {
  width: 44px; height: 44px; border: 1px solid var(--ink);
  border-radius: 999px; display: grid; place-items: center;
  font-size: 22px; transition: background 200ms, color 200ms, transform 350ms;
}
.serv2-open .serv2-toggle { background: var(--ink); color: var(--paper); transform: rotate(180deg); }
.serv2-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 400ms cubic-bezier(.2,.7,.2,1);
}
.serv2-open .serv2-body { grid-template-rows: 1fr; }
.serv2-body-inner {
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.serv2-open .serv2-body-inner { padding-top: 24px; padding-left: 60px; }
.serv2-body-inner p { color: var(--ink-2); font-size: 17px; line-height: 1.5; max-width: 50ch; }
.serv2-tags { display: flex; flex-wrap: wrap; gap: 8px; align-self: start; }
.serv2-tags span {
  font-family: var(--font-mono); font-size: 11px;
  padding: 6px 12px; border: 1px solid var(--ink); border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  background: var(--paper-2);
}

/* ===== About ===== */
.about2-grid { max-width: 1100px; margin: 0 auto; }
.about2-title {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1; letter-spacing: -0.035em;
  margin: 24px 0 56px;
  text-wrap: pretty;
}
.about2-title em { color: var(--ink); }
.hl {
  display: inline-block; padding: 0 0.18em;
  border-radius: 12px; transform: rotate(-1deg);
  border: 1px solid #0a0a0a;
}
.hl-lime { background: var(--lime); color: #0a0a0a; }
.hl-pink { background: var(--pink); color: #fff; transform: rotate(2deg); }
.hl-blue { background: var(--blue); color: #fff; transform: rotate(-1.5deg); }

.about2-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  padding-top: 32px; gap: 20px;
}
.about2-stats > div { display: flex; flex-direction: column; gap: 8px; }
.about2-stats strong { font-weight: 500; font-size: clamp(36px, 4vw, 56px); letter-spacing: -0.03em; }
.about2-stats span { font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); letter-spacing: 0.06em; text-transform: uppercase; }

/* ===== Process ===== */
.proc2-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.proc2 {
  padding: 24px;
  border: 1px solid var(--ink); border-radius: 22px;
  background: var(--paper-2);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1), box-shadow 350ms;
  box-shadow: 4px 4px 0 var(--dot);
}
.proc2:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--dot); }
.proc2-top { display: flex; justify-content: space-between; align-items: center; }
.proc2-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-2); }
.proc2-dot { width: 18px; height: 18px; border-radius: 999px; background: var(--dot); border: 1px solid var(--ink); }
.proc2-title { font-weight: 500; font-size: 22px; letter-spacing: -0.02em; }
.proc2-body { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ===== Clients ===== */
.sec2-klienti { padding: 80px 0; text-align: center; }
.sec2-klienti .sec2-eyebrow { padding: 0 24px 24px; }
.cli2-marq { overflow: hidden; }
.cli2-track {
  display: flex; gap: 64px; width: max-content;
  animation: marq2 50s linear infinite;
}
.cli2-set { display: flex; gap: 64px; padding-right: 64px; align-items: center; }
.cli2-name {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 400; font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.02em;
  color: var(--ink); white-space: nowrap;
}
.cli2-bullet { width: 14px; height: 14px; border-radius: 999px; flex-shrink: 0; border: 1px solid var(--ink); }

/* ===== Contact ===== */
.sec2-kontakt {
  position: relative;
  background: #0a0a0a;
  color: #f4f1ea;
  text-align: center;
  border-top: 0;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.sec2-kontakt .sec2-title em { color: var(--lime); }
.kont2-shape {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in oklab, var(--lime) 30%, transparent) 0%, transparent 60%);
  top: -200px; right: -200px; pointer-events: none;
  filter: blur(20px);
}
.kont2-title {
  font-weight: 500; font-size: clamp(56px, 11vw, 180px);
  line-height: 0.92; letter-spacing: -0.045em;
  margin: 16px 0 56px;
}
.kont2-title em { color: var(--lime); }
.kont2-mail {
  display: inline-flex; align-items: center; gap: 24px;
  background: var(--lime); border: 1px solid var(--lime);
  padding: 22px 32px; border-radius: 999px;
  font-family: var(--font-mono); font-size: clamp(16px, 1.6vw, 22px);
  color: #0a0a0a; cursor: pointer;
  margin-bottom: 80px;
  box-shadow: 5px 5px 0 var(--pink);
  transition: transform 250ms, box-shadow 250ms;
}
.kont2-mail:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--pink); }
.kont2-copy { font-size: 11px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; background: #0a0a0a; color: var(--lime); border-radius: 999px; }

.kont2-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
  text-align: left;
}
.kont2-card {
  border: 1px solid rgba(243,239,230,0.2); border-radius: 18px;
  padding: 28px;
  background: rgba(243,239,230,0.03);
  transition: transform 280ms, border-color 280ms, background 280ms;
}
.kont2-card:hover { transform: translateY(-4px); border-color: var(--c); background: color-mix(in oklab, var(--c) 8%, transparent); }
.kont2-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c); margin-bottom: 12px;
}
.kont2-card p { font-size: 15px; line-height: 1.6; color: #f4f1ea; }
.kont2-card a { border-bottom: 1px solid rgba(243,239,230,0.2); transition: border-color 200ms; }
.kont2-card a:hover { border-color: var(--c); }

/* ===== Footer ===== */
.foot2 {
  border-top: 0;
  padding: 0 24px 32px;
  background: #0a0a0a; color: #f4f1ea;
}
.foot2-big {
  font-weight: 500;
  font-size: clamp(64px, 15vw, 240px);
  letter-spacing: -0.06em; line-height: 0.9;
  text-align: center; padding: 60px 0 40px;
  display: flex; justify-content: center; align-items: baseline;
  user-select: none;
  overflow: hidden;
  white-space: nowrap;
}
.foot2-slash { color: var(--lime); }
.foot2-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(243,239,230,0.6); flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(243,239,230,0.14); padding-top: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hdr2 { padding: 12px 16px; }
  .hdr2-nav { display: none; }
  .hdr2-right { margin-left: auto; }
  .burger2 { display: flex; }
  .cta2 { display: none; }
  .mob-menu2 { display: flex; }

  .hero2 { padding-top: 68px; min-height: 100svh; }
  .hero2-inner { padding: 28px 16px 40px; gap: 36px; }
  .hero2-title { font-size: clamp(48px, 14vw, 96px); letter-spacing: -0.035em; }
  .hero2-row { gap: 0.18em; }
  .w-fun { box-shadow: 3px 3px 0 #0a0a0a; }
  .hero2-bottom { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .hero2-cta { justify-content: flex-start; width: 100%; }
  .hero2-cta .big-btn { flex: 1 1 auto; justify-content: center; }
  .marq2 { padding: 14px 0; }

  .shape-circle { width: 200px; top: -40px; right: -80px; }
  .shape-pill { width: 220px; height: 56px; top: 62%; left: -90px; }
  .shape-blob { width: 130px; bottom: 26%; right: -30px; }
  .shape-star { width: 200px; top: 18%; right: -40px; opacity: 0.6; }

  .sec2 { padding: 100px 16px; }
  .sec2-head, .sec2-head-2 { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .ghost-link { justify-self: start; }

  .proj2-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj2-wrap-0, .proj2-wrap-1, .proj2-wrap-2 { grid-column: span 1; }

  .serv2-head { grid-template-columns: auto auto 1fr auto; gap: 12px; }
  .serv2-body-inner { grid-template-columns: 1fr; gap: 16px; }
  .serv2-open .serv2-body-inner { padding-left: 0; }

  .about2-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proc2-list { grid-template-columns: 1fr; }

  .kont2-grid { grid-template-columns: 1fr; }
  .kont2-mail { padding: 16px 22px; gap: 12px; flex-direction: column; }
  .foot2-row { flex-direction: column; gap: 6px; }
}

@media (max-width: 520px) {
  .big-btn { padding: 14px 20px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
