:root {
  --ink:    #0A0807;
  --ink-2:  #14110F;
  --bone:   #E8DDC8;
  --bone-2: #BAA98A;
  --dim:    #8A7E66;
  --rule:   rgba(232,221,200,.10);
  --rule-2: rgba(232,221,200,.18);
  --gold:   #C9A96E;
  --blood:  #A03028;
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }

/* ===== Utility ===== */
.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.gold { color: var(--gold); }
.blood { color: var(--blood); }
.dim { color: var(--dim); }

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-tag::before {
  content: ""; width: 36px; height: 1px; background: var(--gold);
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 100;
  display: flex; align-items: center;
  padding: 0 56px;
  background: rgba(10,8,7,0);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(10,8,7,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
}
.nav .logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: .01em;
  color: var(--bone);
  flex: 0 0 auto;
}
.nav .logo sup {
  font-family: var(--mono);
  font-style: normal;
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--gold);
  vertical-align: 14px;
  margin-left: 3px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.nav ul a { position: relative; padding-bottom: 4px; }
.nav ul a:hover { color: var(--bone); }
.nav ul a::after {
  content: "";
  position: absolute; left: 0; right: 100%;
  bottom: 0; height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.nav ul a:hover::after { right: 0; }
.nav .cta {
  margin-left: 48px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bone);
  flex: 0 0 auto;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.nav .cta:hover { background: var(--gold); color: var(--ink); }
.nav .cta .ar { color: var(--gold); transition: color .25s ease; }
.nav .cta:hover .ar { color: var(--ink); }

.nav-toggle { display: none; }

/* Dropdown menu */
.nav ul > li { position: relative; }
.nav ul li.has-drop > a::before {
  content: "+"; margin-right: 6px; color: var(--gold);
  font-family: var(--mono); font-weight: 400;
}
.nav ul li.has-drop:hover .drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop {
  position: absolute; top: 100%; left: -16px;
  min-width: 240px;
  padding: 18px 0 16px;
  background: rgba(10,8,7,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule-2);
  list-style: none;
  display: flex !important; flex-direction: column;
  gap: 0 !important;
  margin-top: 14px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 200;
}
.drop::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.drop li a {
  display: block;
  padding: 10px 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--bone-2);
}
.drop li a::after { display: none; }
.drop li a:hover { color: var(--gold); background: rgba(201,169,110,.05); }

/* Drawer sub-list */
.drawer ul .sub a {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.drawer ul .sub-list { display: flex; flex-direction: column; gap: 14px; padding-left: 8px; margin-top: 12px; list-style: none; }

@media (max-width: 1080px) {
  .nav { padding: 0 24px; height: 64px; }
  .nav ul { display: none; }
  .nav .cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    margin-left: auto; padding: 8px; cursor: pointer; background: none; border: none;
  }
  .nav-toggle span { width: 24px; height: 1px; background: var(--bone); display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 56px 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/img/works/mery.webp');
  background-size: cover;
  background-position: center 32%;
  z-index: 0;
  filter: saturate(.85);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  /* Subtelny gradient tylko od dołu — góra całkowicie odsłonięta */
  background: linear-gradient(180deg, rgba(10,8,7,.0) 35%, rgba(10,8,7,.5) 75%, rgba(10,8,7,.95) 100%);
  pointer-events: none;
}
.hero::after {
  /* film grain */
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.91 0 0 0 0 0.86 0 0 0 0 0.78 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1440px; }

.hero-pretitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 36px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--bone);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero h1 .blood { color: var(--blood); font-style: italic; font-weight: 400; }

.hero-sub {
  margin: 36px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--bone-2);
}

.hero-bottom {
  position: absolute;
  left: 56px; right: 56px; bottom: 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero-bottom b { color: var(--bone); font-weight: 500; }
.hero-bottom .scroll {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 12px;
  color: var(--gold);
}
.hero-bottom .scroll .ar { font-size: 18px; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* Hero meta strip - "now playing" */
.hero-marquee {
  position: absolute;
  top: 96px; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.hero-marquee .live { color: var(--blood); }
.hero-marquee b { color: var(--bone); font-weight: 500; }

@media (max-width: 720px) {
  .hero { padding: 100px 24px 56px; }
  .hero-bottom { left: 24px; right: 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-marquee { gap: 14px; padding: 10px 16px; font-size: 9px; }
}

/* ===== Section base ===== */
section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head .title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.section-head .title em { font-style: italic; color: var(--gold); font-weight: 300; }

/* ===== Manifest ===== */
.manifest .quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6.6vw, 96px);
  line-height: 1.05;
  color: var(--bone);
  letter-spacing: -0.005em;
  max-width: 1240px;
}
.manifest .quote .accent { color: var(--gold); }
.manifest .quote .blood-line { color: var(--blood); }

.manifest-body {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.manifest-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--bone-2);
  max-width: 520px;
}
.manifest-body p + p { margin-top: 18px; }
.manifest-body p strong { color: var(--bone); font-weight: 500; }
.manifest-body .signature {
  display: flex; align-items: center; gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-2);
}
.manifest-body .sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--bone);
}
.manifest-body .sig-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.6;
}

.btn-line {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bone);
  transition: color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn-line .ar { color: var(--gold); transition: transform .3s ease; }
.btn-line:hover { color: var(--gold); border-color: var(--gold); }
.btn-line:hover .ar { transform: translateX(8px); }

.manifest-body .right-col { display: flex; flex-direction: column; align-items: flex-start; }
.manifest-body .right-col .btn-line { margin-top: 24px; }

@media (max-width: 880px) {
  .manifest-body { grid-template-columns: 1fr; gap: 32px; }
  .manifest-body .signature { margin-top: 24px; }
}

/* ===== Showreel ===== */
.reel {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.reel-frame {
  position: relative;
  width: 100%;
  height: 64vh;
  min-height: 480px;
  border: 1px solid rgba(201,169,110,.22);
  background-image:
    linear-gradient(180deg, rgba(10,8,7,.0) 30%, rgba(10,8,7,.5) 75%, rgba(10,8,7,.95) 100%),
    url('assets/img/hero/showreel.jpg');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .35s ease, background-size .6s cubic-bezier(.2,.8,.2,1);
  /* button reset */
  font: inherit;
  color: inherit;
  padding: 0;
}
.reel-frame:hover {
  background-size: 103%;
  border-color: var(--gold);
}
.reel-frame:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ===== Video lightbox ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,8,7,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 500;
  display: none;
  align-items: center; justify-content: center;
  padding: 56px;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox .frame {
  position: relative;
  width: 100%; max-width: 1280px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid rgba(201,169,110,.24);
}
.lightbox iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  z-index: 10;
  transition: background .25s, color .25s;
}
.lightbox .close:hover { background: var(--gold); color: var(--ink); }
.lightbox .corner-meta {
  position: absolute; left: 24px; bottom: -32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bone-2);
}
@media (max-width: 720px) {
  .lightbox { padding: 24px 16px; }
  .lightbox .close { padding: 10px 16px; font-size: 10px; top: 16px; right: 16px;}
  .lightbox .corner-meta { display: none; }
}
.reel-frame:hover { border-color: var(--gold); }
.reel-frame .corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--bone-2);
  text-transform: uppercase;
}
.reel-frame .corner.tl { top: 20px; left: 24px; }
.reel-frame .corner.tr { top: 20px; right: 24px; color: var(--blood); }
.reel-frame .corner.bl { bottom: 20px; left: 24px; }
.reel-frame .corner.br { bottom: 20px; right: 24px; color: var(--gold); }

.play-btn {
  width: 140px; height: 140px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.play-btn::after {
  content: "";
  border-style: solid;
  border-width: 22px 0 22px 36px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 10px;
  transition: border-color .3s ease;
}
.reel-frame:hover .play-btn { transform: scale(1.1); background: rgba(201,169,110,.05); }

.reel-thumbs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.reel-thumb {
  position: relative;
  height: 180px;
  border: 1px solid var(--rule);
  padding: 18px;
  cursor: pointer;
  transition: border-color .3s ease, transform .3s ease;
  overflow: hidden;
}
.reel-thumb:hover { border-color: var(--gold); }
.reel-thumb .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
}
.reel-thumb .ttl {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
}
.reel-thumb .yr {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--dim);
}
.reel-thumb {
  background-size: cover; background-position: center;
  /* button reset */
  font: inherit; color: inherit; border: 1px solid var(--rule); padding: 18px;
  width: 100%; text-align: left;
}
.reel-thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.reel-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,.25) 0%, rgba(10,8,7,.85) 80%);
  z-index: 0;
  transition: opacity .3s ease;
}
.reel-thumb:hover::after { opacity: .7; }
.reel-thumb > * { position: relative; z-index: 1; }
.reel-thumb.t1 { background-image: url('assets/img/works/mery.webp'); }
.reel-thumb.t2 { background-image: url('assets/img/works/testament.webp'); }
.reel-thumb.t3 { background-image: url('assets/img/works/wish.jpg'); }
.reel-thumb.t4 { background-image: url('assets/img/works/oblitus.jpg'); }

@media (max-width: 880px) {
  .reel-frame { height: 50vh; min-height: 320px; }
  .play-btn { width: 100px; height: 100px; }
  .play-btn::after { border-width: 16px 0 16px 26px; }
  .reel-thumbs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .reel-thumb { height: 140px; padding: 14px; }
}

/* ===== Selected Works ===== */
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work {
  position: relative;
  height: 460px;
  padding: 28px;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.work:hover { transform: scale(1.03); }
.work .hash {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.work .ttl {
  position: absolute;
  bottom: 78px; left: 28px; right: 28px;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.95;
  color: var(--bone);
  font-weight: 400;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.work:hover .ttl { transform: translateY(-4px); }
.work .ttl em { font-style: italic; color: var(--gold); }
.work .meta {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.work .meta .watch { color: var(--bone); transition: color .25s ease; }
.work:hover .meta .watch { color: var(--gold); }
.work {
  background-size: cover;
  background-position: center;
}
.work::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,.25) 0%, rgba(10,8,7,.55) 50%, rgba(10,8,7,.92) 100%);
  z-index: 0;
  transition: opacity .35s ease;
}
.work:hover::before { background: linear-gradient(180deg, rgba(10,8,7,.15) 0%, rgba(10,8,7,.45) 50%, rgba(10,8,7,.88) 100%); }
.work > * { position: relative; z-index: 1; }
.work.w1 { background-image: url('assets/img/works/mery.webp'); }
.work.w2 { background-image: url('assets/img/works/testament.webp'); }
.work.w3 { background-image: url('assets/img/works/wish.jpg'); }
.work.w4 { background-image: url('assets/img/works/oblitus.jpg'); }

@media (max-width: 880px) {
  .works-grid { grid-template-columns: 1fr; }
  .work { height: 360px; padding: 22px; }
  .work .ttl { font-size: 44px; bottom: 68px; left: 22px; right: 22px;}
  .work .meta { left: 22px; right: 22px; bottom: 22px;}
}

/* ===== Clients ===== */
.clients { background: var(--ink-2); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  margin-bottom: 80px;
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif);
  font-size: 92px;
  line-height: 1;
  color: var(--bone);
  font-weight: 400;
}
.stat .num em { font-style: italic; color: var(--gold); }
.stat .lab {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
}

.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.logo-cell {
  height: 140px;
  background: #F3ECDD;
  border-bottom: 1px solid rgba(10,8,7,.08);
  border-right: 1px solid rgba(10,8,7,.08);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  position: relative;
  transition: background .3s ease;
}
.logo-cell:hover { background: #FFF8E8; }
.logo-cell img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .3s ease;
}
.logo-cell:hover img { transform: scale(1.04); }

@media (max-width: 980px) {
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 40px 22px; }
  .stat .num { font-size: 64px; }
  .logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logo-cell { height: 90px; font-size: 14px; }
  .logo-cell.serif { font-size: 18px; }
}

/* ===== Oferta ===== */
.oferta-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.oferta-grid .left .desc {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--bone-2);
}
.oferta-grid .left .bigno {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: 240px;
  line-height: 0.85;
  color: var(--bone);
  font-weight: 300;
  position: relative;
  display: inline-block;
}
.oferta-grid .left .bigno em { color: var(--blood); font-style: italic;}
.oferta-grid .left .bigno-lab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.oferta-list {
  border-top: 1px solid var(--rule-2);
}
.svc {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 28px;
  align-items: baseline;
  cursor: pointer;
  transition: padding-left .3s ease;
}
.svc:hover { padding-left: 12px; }
.svc:hover .nm em { letter-spacing: .01em; }
.svc .no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
}
.svc .nm {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
}
.svc .nm em { font-style: italic; color: var(--gold); transition: letter-spacing .3s ease; }
.svc .ds {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim);
}

@media (max-width: 980px) {
  .oferta-grid { grid-template-columns: 1fr; gap: 48px;}
  .oferta-grid .left .bigno { font-size: 180px;}
  .svc { grid-template-columns: 40px 1fr; }
  .svc .ds { grid-column: 1 / -1; padding-left: 68px; }
  .svc .nm { font-size: 30px; }
}

/* ===== Testimoniale ===== */
.testimonials {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(110,18,18,.10), rgba(10,8,7,0) 65%),
    var(--ink);
}
.test-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 16px;
  margin: 0 -56px;
  padding-left: 56px; padding-right: 56px;
}
.test-track::-webkit-scrollbar { display: none; }
.test-card {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 360px;
  scroll-snap-align: start;
  padding: 40px 36px;
  border: 1px solid var(--rule);
  position: relative;
  transition: border-color .3s ease, transform .3s ease;
}
.test-card:hover { border-color: var(--gold); }
.test-card .qmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--blood);
  height: 36px;
  margin-bottom: 8px;
}
.test-card .text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.4;
  color: var(--bone);
  font-weight: 300;
  min-height: 220px;
}
.test-card .attr {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 4px;
}
.test-card .attr .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone);
}
.test-card .attr .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
}
.test-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 32px;
}

@media (max-width: 980px) {
  .test-card { flex: 0 0 calc(100% - 32px); min-width: 0; }
}

/* ===== Blog ===== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post {
  border-top: 1px solid var(--rule-2);
  padding-top: 24px;
  cursor: pointer;
  transition: transform .3s ease;
}
.post:hover { transform: translateY(-4px); }
.post .img {
  height: 240px;
  margin-bottom: 24px;
  border: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.92);
}
.post:hover .img { filter: saturate(1.05); }
.post.p1 .img { background-image: linear-gradient(180deg, rgba(10,8,7,.0), rgba(10,8,7,.45)), url('assets/img/blog/instruktaz.webp'); }
.post.p2 .img { background-image: linear-gradient(180deg, rgba(10,8,7,.0), rgba(10,8,7,.45)), url('assets/img/blog/loye.webp'); }
.post.p3 .img { background-image: linear-gradient(180deg, rgba(10,8,7,.0), rgba(10,8,7,.45)), url('assets/img/blog/social-media.webp'); }
.post .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post .meta .dim { color: var(--dim); margin-left: 12px; }
.post h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 14px;
}
.post:hover h3 { color: var(--gold); }
.post .lead {
  font-size: 14px; line-height: 1.6; color: var(--dim);
  margin-bottom: 20px;
}
.post .read {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-flex; gap: 10px;
}
.post .read .ar { color: var(--gold); transition: transform .3s ease; }
.post:hover .read .ar { transform: translateX(6px); }

@media (max-width: 880px) {
  .posts { grid-template-columns: 1fr; }
}

/* ===== Kontakt ===== */
.kontakt {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(110,18,18,.18), rgba(10,8,7,0) 60%),
    radial-gradient(ellipse at 20% 20%, rgba(201,169,110,.10), rgba(10,8,7,0) 55%),
    var(--ink);
  padding: 140px 0 60px;
  text-align: center;
}
.kontakt .pre {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.kontakt h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.95;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.kontakt h2 em { font-style: italic; color: var(--gold); }
.kontakt .sub {
  margin: 32px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--bone-2);
  max-width: 720px;
  line-height: 1.35;
}

.kontakt .cta-row {
  margin-top: 56px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 36px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary .ar { color: var(--ink); }
.btn-primary:hover { background: var(--bone); border-color: var(--bone); }
.btn-secondary { background: transparent; color: var(--bone); }
.btn-secondary .ar { color: var(--gold); }
.btn-secondary:hover { background: var(--bone); color: var(--ink); border-color: var(--bone);}
.btn-secondary:hover .ar { color: var(--ink); }

.kontakt .cities {
  margin-top: 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 2;
}
.kontakt .cities b { color: var(--bone); font-weight: 500; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--rule-2);
  padding: 56px 0 32px;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-grid p, .footer-grid a {
  font-size: 14px;
  color: var(--bone-2);
  line-height: 1.7;
}
.footer-grid a:hover { color: var(--gold); }
.footer-grid ul { list-style: none; }
.footer-grid .brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--bone);
  margin-bottom: 12px;
}
.footer-grid .brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bone-2);
  max-width: 320px;
  line-height: 1.4;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: var(--bone-2); }
.footer-bottom a:hover { color: var(--gold);}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ===== Cookie bar ===== */
.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 200;
  max-width: 720px; margin: 0 auto;
  background: rgba(20,17,15,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule-2);
  padding: 18px 22px;
  display: flex; gap: 22px; align-items: center; flex-wrap: wrap;
  font-size: 13px;
  color: var(--bone-2);
  line-height: 1.5;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie.hide { opacity: 0; pointer-events: none; transform: translateY(40px); }
.cookie a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.cookie .accept {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--bone);
  cursor: pointer;
  background: transparent;
  transition: background .25s ease, color .25s ease;
}
.cookie .accept:hover { background: var(--gold); color: var(--ink); }

/* ===== Mobile menu drawer ===== */
.drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 150;
  display: none;
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.drawer.open { transform: translateX(0); display: flex; }
.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 32px; }
.drawer ul a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--bone);
}
.drawer-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .26em;
  color: var(--bone);
}

/* === Adaptive hero backgrounds (video / image) === */
.hero .hero-bg-image {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 32%;
  filter: saturate(.85);
  pointer-events: none;
}
.hero .hero-bg-video {
  position: absolute; inset: 0;
  z-index: 1;  /* video sits on top of image — image acts as poster/fallback */
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.hero .hero-bg-video.ready { opacity: 1; }
.hero-overlay { z-index: 2; }
.hero > .hero-marquee,
.hero > .hero-inner,
.hero > .hero-bottom { z-index: 3; }
.hero::before { display: none !important; }
