/* =========================================================
   MARTIN MÍČA · CINEMATIC PERSONAL BRAND
   Design system — dark editorial, Thai gold accent
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Colors */
  --bg:           #0a0a0a;
  --bg-2:         #121110;
  --bg-3:         #1a1815;
  --line:         rgba(255, 248, 230, 0.08);
  --line-strong:  rgba(255, 248, 230, 0.18);

  --text:         #f5f1e8;
  --text-soft:    #c8c2b4;
  --text-muted:   #7a766c;
  --text-dim:     #4a4740;

  --gold:         #c9a961;
  --gold-bright:  #e0c179;
  --gold-deep:    #8a6f33;
  --gold-glow:    rgba(201, 169, 97, 0.18);

  --red:          #7a1a1a;
  --red-bright:   #b62525;

  /* Type */
  --ff-display:   'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --ff-impact:    'Bebas Neue', 'Oswald', Impact, sans-serif;
  --ff-body:      'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono:      'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --gutter:       clamp(1.25rem, 4vw, 4rem);
  --section-py:   clamp(5rem, 12vh, 10rem);

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

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--bg); }

/* Background film grain texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ---------- TYPOGRAPHY ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.impact {
  font-family: var(--ff-impact);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  margin-right: 0.85rem;
  vertical-align: middle;
  transform: translateY(-2px);
}

.lead {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.85rem);
  line-height: 1.45;
  font-weight: 300;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}

p { color: var(--text-soft); font-size: clamp(0.98rem, 0.4vw + 0.85rem, 1.08rem); }

/* ---------- LAYOUT WRAPPERS ---------- */
.wrap {
  width: 100%;
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-fluid {
  width: 100%;
  padding-inline: var(--gutter);
}

section { position: relative; }
section[data-section] { padding-block: var(--section-py); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__brand .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-impact);
  font-size: 1.25rem;
  letter-spacing: 0;
  transform: rotate(-2deg);
}
.nav__menu { display: flex; gap: 2.4rem; }
.nav__menu a {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.3s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__menu a:hover { color: var(--gold); }
.nav__menu a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: var(--text);
  transition: transform 0.4s, opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .nav__menu.is-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem var(--gutter);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .nav.is-open .nav__menu.is-mobile {
    opacity: 1;
    pointer-events: auto;
  }
  .nav.is-open .nav__menu.is-mobile a {
    font-family: var(--ff-display);
    font-size: 2rem;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--text);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease-in-out), transform 8s linear;
  filter: grayscale(0.15) contrast(1.05) brightness(0.78);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.3) 30%, rgba(10,10,10,0.85) 90%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.hero__title {
  font-family: var(--ff-impact);
  font-size: clamp(4.5rem, 17vw, 17rem);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-block: 0 0.5rem;
}
.hero__title .name {
  display: block;
  -webkit-text-stroke: 1px var(--gold);
  color: transparent;
  font-style: italic;
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 0.42em;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-transform: none;
}
.hero__title .nick {
  display: block;
  position: relative;
}
.hero__title .nick::after {
  content: "";
  position: absolute;
  bottom: 0.18em; left: 0;
  width: 0.18em; height: 0.18em;
  background: var(--gold);
  border-radius: 50%;
}

.hero__meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero__meta-item .label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__meta-item .value {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1vw + 0.7rem, 1.25rem);
  color: var(--text);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 3rem;
  align-items: end;
}
.hero__claim {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 0.8vw + 0.85rem, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 38ch;
  letter-spacing: -0.005em;
}
.hero__claim em {
  font-style: italic;
  color: var(--gold);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.6rem;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-family: serif;
  font-size: 1rem;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn:hover::after { transform: translateX(5px); }

.btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--bg);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero__scroll .line::after {
  content: "";
  position: absolute;
  top: -50%; left: 0;
  width: 1px; height: 50%;
  background: var(--gold);
  animation: scrollLine 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scrollLine {
  0%   { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 760px) {
  .hero__bottom { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__meta { gap: 1.5rem; }
  .hero__scroll { display: none; }
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 2rem 4rem;
  margin-bottom: clamp(2.5rem, 6vh, 5rem);
  align-items: end;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}
.section-head__num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.section-head__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw + 0.5rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 18ch;
}
.section-head__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

/* ---------- O MNĚ / STORY ---------- */
.story {
  background: var(--bg);
  position: relative;
}
.story::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; }
}

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
.story__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 1.4s var(--ease-out), filter 1s;
}
.story__media:hover img { transform: scale(1.04); filter: grayscale(0); }
.story__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  pointer-events: none;
  z-index: 2;
}
.story__caption {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.story__text > * + * { margin-top: 1.5rem; }
.story__text .lead { margin-bottom: 0.5rem; }

.story__pulls {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.story__pull {
  background: var(--bg);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.story__pull .num {
  font-family: var(--ff-impact);
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  color: var(--gold);
  line-height: 1;
}
.story__pull .desc {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 700px) {
  .story__pulls { grid-template-columns: 1fr 1fr; }
}

/* ---------- ČINNOST / WHAT I DO ---------- */
.activities {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.activities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 800px) {
  .activities__grid { grid-template-columns: 1fr; }
}

.activity {
  background: var(--bg-2);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  transition: background 0.6s;
}
.activity::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: grayscale(0.4) contrast(1.1) brightness(0.5);
  transition: opacity 0.8s var(--ease-out), transform 8s ease;
  z-index: 0;
}
.activity:hover::before { opacity: 1; transform: scale(1.05); }
.activity::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,17,16,0.4), rgba(18,17,16,0.95));
  opacity: 0;
  transition: opacity 0.6s;
  z-index: 1;
}
.activity:hover::after { opacity: 1; }
.activity > * { position: relative; z-index: 2; }

.activity__num {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.activity__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 2.5vw + 0.5rem, 3.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.activity__title em { font-style: italic; color: var(--gold); }

.activity__desc {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 36ch;
  margin-bottom: auto;
}
.activity__tag {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  align-self: flex-start;
}
.activity__tag::before {
  content: ""; width: 1.5rem; height: 1px; background: var(--gold);
}

/* ---------- TIMELINE / MILNÍKY ---------- */
.timeline { background: var(--bg); }

.timeline__rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.timeline__item {
  display: grid;
  grid-template-columns: 9rem 1fr 14rem;
  gap: 2.5rem;
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.4s, padding 0.4s;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease-out);
}
.timeline__item:hover::before { width: 4rem; }
.timeline__item:hover { background: rgba(201, 169, 97, 0.03); }

.timeline__year {
  font-family: var(--ff-impact);
  font-size: clamp(1.8rem, 2vw + 1rem, 2.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
}
.timeline__title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.timeline__desc {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 56ch;
}
.timeline__tag {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-block: 2rem;
  }
  .timeline__tag { text-align: left; }
}

/* ---------- GALERIE ---------- */
.gallery {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 14rem;
  gap: 0.5rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.04);
  transition: transform 1.2s var(--ease-out), filter 0.6s;
}
.gallery__item:hover img {
  transform: scale(1.07);
  filter: grayscale(0);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.7));
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem;
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery__item:hover .gallery__caption {
  opacity: 1; transform: translateY(0);
}

/* spans */
.gi-1 { grid-column: span 4; grid-row: span 2; }
.gi-2 { grid-column: span 4; grid-row: span 1; }
.gi-3 { grid-column: span 4; grid-row: span 2; }
.gi-4 { grid-column: span 4; grid-row: span 1; }
.gi-5 { grid-column: span 6; grid-row: span 2; }
.gi-6 { grid-column: span 6; grid-row: span 2; }
.gi-7 { grid-column: span 4; grid-row: span 1; }
.gi-8 { grid-column: span 4; grid-row: span 2; }
.gi-9 { grid-column: span 4; grid-row: span 1; }
.gi-10 { grid-column: span 8; grid-row: span 2; }
.gi-11 { grid-column: span 4; grid-row: span 2; }

@media (max-width: 1100px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 11rem; }
  .gi-1, .gi-3, .gi-8, .gi-11 { grid-column: span 3; grid-row: span 2; }
  .gi-2, .gi-4, .gi-7, .gi-9 { grid-column: span 3; grid-row: span 1; }
  .gi-5, .gi-6, .gi-10 { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 11rem; gap: 0.4rem; }
  .gallery__grid > * { grid-column: span 2; grid-row: span 1; }
  .gallery__grid > *:nth-child(odd) { grid-column: span 1; }
  .gallery__grid > *:nth-child(even) { grid-column: span 1; }
  .gallery__grid > *:nth-child(5n) { grid-column: span 2; grid-row: span 2; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  cursor: default;
}
.lightbox__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--ff-mono);
  font-size: 1.2rem;
  display: grid; place-items: center;
  transition: all 0.3s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  display: grid; place-items: center;
  font-family: serif;
  font-size: 1.5rem;
  background: rgba(0,0,0,0.4);
  transition: all 0.3s;
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(0,0,0,0.7); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__caption {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  max-width: 90vw;
}

/* ---------- KLIENTI / CELEBRITIES ---------- */
.clients {
  background: var(--bg);
  position: relative;
}

.clients__marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-strong);
  padding-block: 1.5rem;
  margin-bottom: 4rem;
  background: var(--bg-2);
}
.clients__track {
  display: flex;
  gap: 4rem;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.clients__track span {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.clients__track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.8em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.clients__marquee:hover .clients__track { animation-play-state: paused; }

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .clients__grid { grid-template-columns: repeat(2, 1fr); } }

.client {
  background: var(--bg);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.client img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.1) brightness(0.85);
  transition: filter 0.8s, transform 1.2s var(--ease-out);
}
.client:hover img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.04);
}
.client::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  z-index: 1;
}
.client__info {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  z-index: 2;
}
.client__name {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.4rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.client__role {
  font-family: var(--ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- MÉDIA / PRESS ---------- */
.press {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 800px) { .press__grid { grid-template-columns: 1fr; } }

.press__item {
  background: var(--bg-2);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background 0.4s;
  text-decoration: none;
  color: inherit;
}
.press__item:hover { background: var(--bg-3); }
.press__item::after {
  content: "↗";
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  font-family: var(--ff-mono);
  color: var(--gold);
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.press__item:hover::after { opacity: 1; transform: translate(0, 0); }

.press__source {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.press__source::before {
  content: ""; width: 1.2rem; height: 1px; background: var(--gold);
}
.press__title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1vw + 0.85rem, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.press__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-soft);
  padding-left: 1.2rem;
  border-left: 1px solid var(--gold);
}

/* ---------- KONTAKT ---------- */
.contact {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center top, var(--gold-glow), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.contact__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw + 0.5rem, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  font-weight: 300;
}
.contact__title em {
  font-style: italic;
  color: var(--gold);
}
.contact__lead {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.5vw + 0.8rem, 1.7rem);
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 38ch;
  margin: 0 auto 3rem;
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.contact__method {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  align-items: center;
  text-align: left;
  transition: padding 0.4s;
  text-decoration: none;
  color: inherit;
}
.contact__method:first-child { border-top: 0; }
.contact__method:hover { padding-inline: 1rem; background: rgba(201, 169, 97, 0.04); }
.contact__method-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact__method-value {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.4rem);
  color: var(--text);
}
.contact__method-arrow {
  color: var(--gold);
  font-family: serif;
  font-size: 1.4rem;
  transition: transform 0.4s var(--ease-out);
}
.contact__method:hover .contact__method-arrow { transform: translateX(6px); }

@media (max-width: 600px) {
  .contact__method { grid-template-columns: 1fr; gap: 0.3rem; }
  .contact__method-arrow { display: none; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  padding: 3rem var(--gutter) 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer__inner {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer__logo {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}
.footer__center { text-align: center; }
.footer__right { text-align: right; display: flex; gap: 1.4rem; justify-content: flex-end; }
.footer__right a { color: var(--text-muted); transition: color 0.3s; }
.footer__right a:hover { color: var(--gold); }
@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__right { justify-content: center; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].is-revealed { transform: translateX(0); }

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