/* =============================================================
   ZD-foto — Design System & Full Stylesheet
   Dark · Fine-ART · Olive · Animated
   ============================================================= */

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  /*
   * Paleta inspirována ateliérovým pozadím fotografa:
   * temná, organická, s muted olivově-hnědými podtóny
   */

  /* Tmavé pozadí — téměř černé s teplým nádechem */
  --c-bg:          #090a08;
  --c-bg-2:        #0d0e0b;
  --c-surface:     #121410;

  /* Olivová — tmavší než v ateliéru, muted vojenský tón */
  --c-olive:       #3d4c22;
  --c-olive-light: #516030;   /* akcent pro text, hover, linky */
  --c-olive-dim:   #1e2611;   /* velmi tmavá olivová — border, linky */
  --c-olive-glow:  rgba(81,96,48,.12); /* jemná záře pro hover efekty */

  /* Zlatá — teplejší, zemitá */
  --c-gold:        #b8914e;

  /* Texty */
  --c-text:        #dedad2;
  --c-text-muted:  #6e6b62;
  --c-text-dim:    #3e3c36;
  --c-white:       #f0ede6;

  /* Linky / separátory */
  --c-line:        rgba(81,96,48,.15);

  /* Typography */
  --f-serif:  'DM Serif Display', Georgia, serif;
  --f-sans:   'DM Sans', system-ui, sans-serif; /* body text */

  /* Spacing scale — kondenzovaný */
  --s-xs:   .4rem;
  --s-sm:   .75rem;
  --s-md:   1.5rem;
  --s-lg:   2.5rem;
  --s-xl:   5rem;
  --s-2xl:  8rem;

  /* Transitions */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in:  cubic-bezier(.7,0,.84,0);
  --ease-io:  cubic-bezier(.65,0,.35,1);
  --dur:      .7s;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-sans);
  font-size: clamp(.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/*
 * ── Filmový grain / šum ─────────────────────────────────────
 * SVG feTurbulence noise overlay — evokuje fotografický film
 * a ateliérovou texturu tmavého pozadí
 */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .042;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
}

img, video { display: block; max-width: 100%; height: auto; }
img { -webkit-user-drag: none; user-select: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }

/* ── CUSTOM CURSOR — viewfinder style ────────────────────── */
.cursor {
  position: fixed;
  top: -200px; left: -200px;  /* startuje mimo obrazovku, nikdy opacity 0 */
  pointer-events: none;
  z-index: 999999;             /* nad vším vč. WP admin baru */
}

/* Centre dot */
.cursor__dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: var(--c-olive-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out),
              height .3s var(--ease-out),
              background .3s;
}

/* Outer viewfinder frame */
.cursor__frame {
  width: 36px; height: 36px;
  position: relative;
  transition: width .45s var(--ease-out), height .45s var(--ease-out);
}

/* Corner marks — top-left, top-right, bottom-left, bottom-right */
.cursor__corner {
  position: absolute;
  width: 8px; height: 8px;
  transition: width .45s var(--ease-out),
              height .45s var(--ease-out),
              border-color .3s;
}

.cursor__corner--tl {
  top: 0; left: 0;
  border-top: 1px solid rgba(245,243,238,.7);
  border-left: 1px solid rgba(245,243,238,.7);
}
.cursor__corner--tr {
  top: 0; right: 0;
  border-top: 1px solid rgba(245,243,238,.7);
  border-right: 1px solid rgba(245,243,238,.7);
}
.cursor__corner--bl {
  bottom: 0; left: 0;
  border-bottom: 1px solid rgba(245,243,238,.7);
  border-left: 1px solid rgba(245,243,238,.7);
}
.cursor__corner--br {
  bottom: 0; right: 0;
  border-bottom: 1px solid rgba(245,243,238,.7);
  border-right: 1px solid rgba(245,243,238,.7);
}

/* ── Hover state ── frame enlarges, corners go olive ── */
.cursor.is-hover .cursor__frame {
  width: 52px; height: 52px;
}

.cursor.is-hover .cursor__corner {
  width: 12px; height: 12px;
  border-color: var(--c-olive-light);
}

.cursor.is-hover .cursor__dot {
  width: 5px; height: 5px;
  background: var(--c-olive-light);
}

/* ── Drag state ── frame contracts, corners go dimmer ── */
.cursor.is-drag .cursor__frame {
  width: 24px; height: 24px;
}
.cursor.is-drag .cursor__corner {
  border-color: rgba(245,243,238,.35);
}
.cursor.is-drag .cursor__dot {
  background: rgba(245,243,238,.5);
}

/* opacity pri opusteni okna resi GSAP v main.js */

/* ── PRELOADER ────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.preloader__logo {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--c-white);
  overflow: hidden;
}

.preloader__logo span {
  display: inline-block;
  transform: translateY(110%);
}

.preloader__logo-img {
  height: clamp(56px, 8vw, 110px);
  width: auto;
  max-width: 280px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(.92);
}

.preloader__bar {
  width: 120px;
  height: 1px;
  background: var(--c-text-dim);
  position: relative;
  overflow: hidden;
}

.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-olive-light);
  transform: scaleX(0);
  transform-origin: left;
}

.preloader__count {
  font-family: var(--f-sans);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--c-text-muted);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.t-display {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01em;
}

.t-headline {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
}

.t-subhead {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}

.t-label {
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-olive-light);
}

.t-body {
  font-family: var(--f-sans);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text-muted);
}

em, .t-italic {
  font-style: italic;
  color: var(--c-olive-light);
}

/* ── UTILITY ──────────────────────────────────────────────── */
.u-overflow { overflow: hidden; display: block; }
.u-line {
  display: block;
  width: 1px;
  background: var(--c-line);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 2rem var(--s-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  will-change: transform;
  transition: background .5s, padding .5s var(--ease-out);
}

.site-nav.is-scrolled {
  background: rgba(13,14,12,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.nav__logo {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--c-white);
  transition: opacity .3s;
  display: flex;
  align-items: center;
}

.nav__logo img {
  max-width: 180px;
  width: auto;
}

.nav__logo:hover { opacity: .65; }

.nav__links {
  display: flex;
  gap: 0;
  align-items: center;
  margin-left: auto;
}

/* Tečka jako oddělovač mezi nav položkami */
.nav__links li {
  display: flex;
  align-items: center;
}

.nav__links li + li::before {
  content: '';
  display: block;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--c-olive-dim);
  margin: 0 1.75rem;
  flex-shrink: 0;
}

.nav__link {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  position: relative;
  transition: color .3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-olive-light);
  transition: width .4s var(--ease-out);
}

.nav__link:hover {
  color: var(--c-white);
}
.nav__link:hover::after { width: 100%; }

/* ── LANGUAGE SWITCHER ────────────────────────────────────── */
.nav__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.lang-switch__btn {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,237,230,.55);
  transition: color .3s;
  line-height: 1;
}

.lang-switch__btn:hover {
  color: var(--c-white);
}

.lang-switch__btn.is-active {
  color: var(--c-olive-light);
  pointer-events: none;
}

.lang-switch__sep {
  font-size: .6rem;
  color: rgba(240,237,230,.35);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--s-lg) var(--s-md);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* spodní tma — text musí být čitelný */
    linear-gradient(
      to top,
      rgba(9,10,8,.97)   0%,
      rgba(9,10,8,.72)  35%,
      rgba(9,10,8,.28)  65%,
      rgba(9,10,8,.08) 100%
    ),
    /* levý roh — táhne oči doprava ke tváři */
    linear-gradient(
      105deg,
      rgba(9,10,8,.55)   0%,
      transparent        45%
    ),
    /* jemný olivový nádech shora */
    linear-gradient(
      180deg,
      rgba(30,38,17,.28) 0%,
      transparent        50%
    );
  z-index: 1;
}

/* Atmosferický glow — difuzní světlo za subjektem */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 65% 55% at 62% 36%,
    rgba(81,96,48,.22)   0%,
    rgba(81,96,48,.08)  45%,
    transparent         70%
  );
  animation: heroGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0%   { opacity: .6;  transform: scale(1);    }
  100% { opacity: 1;   transform: scale(1.06); }
}

/* Light-leak — tenký filmový proužek nahoře */
.hero__light-leak {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(81,96,48,.0)    10%,
    rgba(150,170,90,.55) 35%,
    rgba(210,190,120,.4) 50%,
    rgba(150,170,90,.55) 65%,
    rgba(81,96,48,.0)    90%,
    transparent          100%
  );
  z-index: 3;
  animation: lightLeak 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lightLeak {
  0%, 100% { opacity: .35; transform: scaleX(.85); }
  50%       { opacity: .9;  transform: scaleX(1);   }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 2rem;
}

.hero__text {}

/* ── Hero tagline & name ──────────────────────────────────── */

.hero__tagline {
  font-family: var(--f-sans);
  font-size: clamp(.75rem, 1vw, .95rem);
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}

/* Tenká čárka před tagline — kontext hned za ní */
.hero__tagline::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--c-olive-light);
  opacity: .7;
  flex-shrink: 0;
}

/* Jméno — editoriální, čitelné, ne billboard */
.hero__name {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .04em;
  color: var(--c-white);
  overflow: hidden;
  margin-bottom: 1rem;
}

.hero__name span { display: block; }

/* 4. Tituly */
.hero__name-titles {
  display: flex;
  align-items: center;
  gap: .75rem;
  overflow: hidden;
}

.hero__name-titles-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--c-olive-dim);
  flex-shrink: 0;
}

.hero__name-titles-text {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-olive-light);
}

/* Pravý sloupec — scroll */
.hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2rem;
  padding-bottom: .5rem;
}

/* Meta info — absolutně vpravo nahoře pod navem */
.hero__top-meta {
  position: absolute;
  top: calc(var(--nav-h, 80px) + 1.5rem);
  right: var(--s-md);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
}

.hero__top-meta-line {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  display: block;
  text-align: right;
}

.hero__top-meta-line--accent {
  color: var(--c-olive-light);
}

.hero__top-meta-sep {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--c-olive-dim);
  margin: .3rem 0;
  margin-left: auto;
}

/* Sociální sítě v hero */
.hero__social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.hero__social-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  text-decoration: none;
  transition: color .3s;
}

.hero__social-link:hover {
  color: var(--c-olive-light);
}

/* Krátký poetic descriptor */
.hero__descriptor {
  font-family: var(--f-serif);
  font-size: clamp(.8rem, 1.1vw, 1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-text-muted);
  letter-spacing: .02em;
  line-height: 1.6;
  margin-top: 1.6rem;
  opacity: 0; /* animuje GSAP */
}

/* Right column — scroll indicator */
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.hero__scroll-text {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 40%;
  background: var(--c-olive-light);
  animation: scrollLine 2s var(--ease-io) infinite;
}

@keyframes scrollLine {
  0%   { top: -40%; }
  100% { top: 140%; }
}

.hero__year {
  position: absolute;
  top: var(--s-lg);
  right: var(--s-md);
  z-index: 2;
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--c-text-dim);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Krátká čárka před rokem */
.hero__year::before {
  content: '';
  display: block;
  width: 12px; height: 1px;
  background: var(--c-olive-dim);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about {
  padding: var(--s-2xl) var(--s-md);
  max-width: 1440px;
  margin: 0 auto;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: start;
}

.about__left {}

.about__label { margin-bottom: 1.75rem; }

.about__headline {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--c-white);
  margin-bottom: 1.75rem;
}

.about__lead {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.about__text-2 {
  max-width: 52ch;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}

/* ── WYSIWYG / entry-content typography ──────────────── */
.about__text p,
.entry-content p {
  margin-bottom: 1.2em;
  color: var(--c-text-muted);
}

.about__text p:last-child,
.entry-content p:last-child { margin-bottom: 0; }

.about__text strong,
.entry-content strong {
  font-weight: 500;
  color: var(--c-text);
}

.about__text em,
.entry-content em {
  font-style: italic;
  color: var(--c-olive-light);
}

.about__text a,
.entry-content a {
  color: var(--c-olive-light);
  border-bottom: 1px solid var(--c-olive-dim);
  transition: border-color .3s;
}
.about__text a:hover,
.entry-content a:hover { border-color: var(--c-olive-light); }

.about__text ul,
.entry-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2em;
}

.about__text ul li,
.entry-content ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .4em;
  color: var(--c-text-muted);
}

.about__text ul li::before,
.entry-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--c-olive-light);
}

.about__signature {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-olive-light);
  letter-spacing: .01em;
}

.about__right {
  position: relative;
}

.about__image-wrap {
  position: relative;
  overflow: hidden;
}

.about__image-wrap img {
  width: 100%;
  height: auto;        /* přirozené proporce — fotka celá, žádné oříznutí */
  display: block;
  will-change: transform;
}

.about__image-deco {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--c-olive-dim);
  pointer-events: none;
  z-index: -1;
}

.about__titles-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-olive-dim);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.about__titles-badge .t-label { margin-bottom: .25rem; }

.about__title-row {
  font-family: var(--f-serif);
  font-size: .95rem;
  font-weight: 400;
  color: var(--c-gold);
  letter-spacing: .02em;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery {
  padding: var(--s-xl) 0;
  overflow: hidden;
}

.gallery__header {
  padding: 0 var(--s-md);
  max-width: 1440px;
  margin: 0 auto var(--s-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.gallery__headline {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--c-white);
  line-height: 1.1;
}

.gallery__count {
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--c-text-dim);
  padding-bottom: .5rem;
}

/* Horizontal scroll track */
/* ── Gallery belt animace ─────────────────────────────── */
@keyframes gallery-belt {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% = jeden set (2× duplikát) */
}

.gallery__track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  /* fade hrany vlevo a vpravo */
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.gallery__track-wrap:active { cursor: grabbing; }

.gallery__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;   /* track roste podle obsahu */
  will-change: transform;
}

/* Animace spustí JS třídou is-ready — dokud se nenačtou fotky, nestartuje */
.gallery__track.is-ready {
  animation: gallery-belt 40s linear infinite;
}

.gallery__track.is-ready:hover {
  animation-play-state: paused;
}

.gallery__item {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  --h: clamp(260px, 35vw, 440px);
  height: var(--h);
  /* šířka se neřeší tady — určí ji img níže */
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: box-shadow .4s;
}

.gallery__item:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,.7);
}

.gallery__item img {
  height: 100%;
  width: auto;           /* přirozená šířka — portrait užší, landscape širší */
  display: block;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(13,14,12,.85));
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery__item:hover .gallery__item-caption { transform: translateY(0); }

.gallery__item-title {
  font-family: var(--f-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--c-white);
}

.gallery__item-year {
  font-size: .62rem;
  letter-spacing: .15em;
  color: var(--c-olive-light);
}

/* Drag hint */
.gallery__drag-hint {
  padding: 2rem var(--s-md) 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery__drag-hint span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.gallery__drag-arrow {
  width: 40px; height: 1px;
  background: var(--c-text-dim);
  position: relative;
}
.gallery__drag-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid var(--c-text-dim);
  border-top: 1px solid var(--c-text-dim);
  transform: rotate(45deg);
}

/* ── AWARDS ───────────────────────────────────────────────── */
.awards {
  padding: var(--s-2xl) var(--s-md);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--c-bg);
}

.awards__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: var(--s-xl);
}

.awards__headline {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--c-white);
  line-height: 1.1;
}

.awards__intro {
  max-width: 44ch;
}

.awards__intro-text {
  font-family: var(--f-sans);
  font-size: clamp(.85rem, 1.1vw, .95rem);
  font-weight: 300;
  color: var(--c-text-muted);
  line-height: 1.65;
  letter-spacing: .01em;
}

/* ── Awards accordion ─────────────────────────────────────── */
.awards__accordion {
  display: flex;
  flex-direction: column;
}

.award-item {
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}

.award-item:first-child {
  border-top: 1px solid var(--c-line);
}

/* gold highlight odstraněn záměrně */

.award-item__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}

.award-item__header:hover { background: var(--c-olive-glow); }

.award-item__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 44px;
  border: 1px solid var(--c-olive-dim);
  line-height: 0;
  overflow: hidden;
}

.award-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .65;
  transition: opacity .3s;
}

.award-item__header:hover .award-item__thumb img { opacity: 1; }

.awards__cat-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-sans);
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 2px;
  border: 1px solid var(--c-olive-dim);
  color: var(--c-olive-light);
  flex-shrink: 0;
  line-height: 1.5;
  white-space: nowrap;
}

.awards__cat-badge--media     { color: #8fa8c8; border-color: rgba(143,168,200,.3); }
.awards__cat-badge--publikace { color: #a89a6e; border-color: rgba(168,154,110,.3); }
.awards__cat-badge--vystava   { color: #8faa8c; border-color: rgba(143,170,140,.3); }

.award-item__name {
  flex: 1;
  font-family: var(--f-sans);
  font-size: clamp(.82rem, 1vw, .95rem);
  color: var(--c-text);
  font-weight: 400;
  line-height: 1.3;
}

.award-item__year {
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--c-olive-light);
  border: 1px solid var(--c-olive-dim);
  padding: .15rem .55rem;
  border-radius: 2px;
  flex-shrink: 0;
  font-family: var(--f-sans);
}

.award-item__arrow {
  flex-shrink: 0;
  color: var(--c-text-dim);
  display: flex;
  align-items: center;
  transition: transform .35s var(--ease-out), color .2s;
}

.award-item__header[aria-expanded="true"] .award-item__arrow {
  transform: rotate(180deg);
  color: var(--c-olive-light);
}

.award-item__body {
  overflow: hidden;
  height: 0;
}

.award-item__details {
  display: flex;
  gap: 2rem;
  padding: 0 0 1.5rem 3.5rem;
}

.award-item__thumb-lg {
  flex-shrink: 0;
  border: 1px solid var(--c-olive-dim);
  line-height: 0;
}

.award-item__thumb-lg img {
  display: block;
  height: 120px;
  width: auto;
  max-width: 220px;
}

.award-item__meta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.award-item__meta-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.award-item__meta-label {
  font-family: var(--f-sans);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  min-width: 100px;
  flex-shrink: 0;
}

.award-item__meta-value {
  font-family: var(--f-sans);
  font-size: .85rem;
  color: var(--c-text-muted);
}

@media (max-width: 640px) {
  .award-item__details { flex-direction: column; padding-left: 0; gap: 1rem; }
  .awards__cat-badge { display: none; }
}

/* ── AMBASSADORS ──────────────────────────────────────────── */
.ambassadors {
  padding: var(--s-xl) var(--s-md);
  max-width: 100%;
  text-align: center;
  background: var(--c-surface);
  border-top: 1px solid var(--c-olive-dim);
  border-bottom: 1px solid var(--c-olive-dim);
}

.ambassadors__header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.ambassadors__headline-wrap {
  display: inline-block;
  position: relative;
  text-align: left;
  padding: .5rem 1rem 1rem;
}

/* rohové zarážky — vlevo dole */
.ambassadors__headline-wrap::before {
  content: '';
  position: absolute;
  bottom: -4px; left: -4px;
  width: 18px; height: 18px;
  border-left: 1px solid rgba(81,96,48,.5);
  border-bottom: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

/* rohové zarážky — vpravo nahoře */
.ambassadors__headline-wrap::after {
  content: '';
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  border-right: 1px solid rgba(81,96,48,.5);
  border-top: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

.ambassadors__label { margin-bottom: 1.5rem; }

.ambassadors__headline {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--c-white);
  line-height: 1.1;
}

.ambassadors__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  flex-wrap: wrap;
}

.ambassadors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: opacity .4s;
}

.ambassadors__logo {
  height: 48px;
  width: auto;
}

.ambassadors__name {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* Fallback — zobrazí se pokud logo ještě není nahráno */
.ambassadors__name-fallback {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  letter-spacing: .25em;
  color: var(--c-text-muted);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  position: relative;
  padding: var(--s-2xl) var(--s-md);
  overflow: hidden;
  background: var(--c-bg-2);
}

/* ── Dvousloupcový layout ──────────────────────────────────── */
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

/* Levý sloupec */
.contact__left {}

.contact__label { margin-bottom: 2rem; }

.contact__headline {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.contact__text {
  max-width: 42ch;
  margin-bottom: 2.5rem;
  color: var(--c-text-muted);
}

/* Sociální sítě */
.contact__social {
  display: flex;
  gap: 1.75rem;
}

.contact__social-link {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: color .3s;
}

.contact__social-link:hover { color: var(--c-olive-light); }

.contact__social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Pravý sloupec — kontaktní karta */
.contact__card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

/* rohový detail — levý horní */
.contact__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 20px; height: 20px;
  border-left: 1px solid rgba(81,96,48,.6);
  border-top: 1px solid rgba(81,96,48,.6);
}

/* rohový detail — pravý dolní */
.contact__card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 20px; height: 20px;
  border-right: 1px solid rgba(81,96,48,.6);
  border-bottom: 1px solid rgba(81,96,48,.6);
}

/* Badge — dostupnost */
.contact__availability {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-sans);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-olive-light);
  margin-bottom: 2rem;
  padding: .35rem .75rem;
  border: 1px solid rgba(81,96,48,.3);
  border-radius: 2px;
}

.contact__availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-olive-light);
  flex-shrink: 0;
  animation: availPulse 2.5s ease-in-out infinite;
}

@keyframes availPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* Řádky karty */
.contact__card-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__card-row {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.contact__card-row:last-child { border-bottom: none; }

.contact__card-label {
  font-family: var(--f-sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.contact__card-value {
  font-family: var(--f-serif);
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: var(--c-text);
  letter-spacing: .02em;
  line-height: 1.3;
}

.contact__card-value--link {
  position: relative;
  transition: color .3s;
  display: inline-block;
}

.contact__card-value--link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--c-olive-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}

.contact__card-value--link:hover { color: var(--c-olive-light); }
.contact__card-value--link:hover::after { transform: scaleX(1); }

/* Deko text */
.contact__deco-text {
  position: absolute;
  right: var(--s-md);
  bottom: var(--s-lg);
  font-family: var(--f-serif);
  font-size: clamp(6rem, 14vw, 18rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(61,76,34,.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

/* ── PHILOSOPHY / PŘÍSTUP ────────────────────────────────── */
/*
   Sekce má jiné pozadí než About — jasně oddělená, ne sloučená.
   Subtilní olivový tint + gradient linky nahoře/dole.
*/
.philosophy {
  padding: var(--s-2xl) var(--s-md);
  overflow: hidden;
  text-align: center;
  background: rgba(22,28,13,.55);   /* tmavý olivový tint — odliší od čistého bg */
  position: relative;
  isolation: isolate;
}

/* Gradient linka dole — horní přechod zajišťuje .section-divider */
.philosophy::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(81,96,48,.45), transparent);
}

.philosophy__inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

/* Label řádek — label · čára */
.philosophy__label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.philosophy__hr {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(81,96,48,.6));
}

.philosophy__hr:last-child {
  background: linear-gradient(to left, transparent, rgba(81,96,48,.6));
}

/* Hlavní citát — velký, kurzíva */
.philosophy__quote {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.5vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-white);
  margin-bottom: 2.5rem;
  /* Jednotlivá slova jsou animovaná JS (SplitText) */
}

.philosophy__quote .word {
  display: inline-block;
  will-change: transform, opacity;
}

/* Doplňující text pod citátem */
.philosophy__text {
  max-width: 52ch;
  margin: 0 auto;
  text-align: left;
}

.philosophy__text p {
  margin-bottom: 1.2em;
  color: var(--c-text-muted);
  font-size: clamp(.85rem, 1.05vw, .98rem);
}

.philosophy__text p:last-child { margin-bottom: 0; }

/* ── SITE FOOTER ──────────────────────────────────────────── */
.site-footer {
  padding: 2.5rem var(--s-md);
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  letter-spacing: .2em;
  color: var(--c-text-muted);
  font-weight: 300;
}

.footer__copy {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--c-text-dim);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  text-align: center;
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .6rem;
  letter-spacing: .1em;
  color: rgba(240,237,230,.18);
}

.footer__credits-sep {
  opacity: .4;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  transition: color .3s;
}

.footer__social a:hover { color: var(--c-olive-light); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* Liquid glass */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  color: rgba(240, 237, 230, 0.45);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s, transform .5s, bottom .2s, background .3s, color .3s, box-shadow .3s;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(81, 96, 48, 0.18);
  border-color: rgba(81, 96, 48, 0.35);
  color: rgba(240, 237, 230, 0.9);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ══════════════════════════════════════════════════════════
   HLOUBKA & PROSTOROVÝ POCIT
   ══════════════════════════════════════════════════════════ */


/* Sekce musí mít position relative pro ghost text */
.about, .gallery, .awards, .philosophy, .ambassadors, .contact {
  position: relative;
  overflow: hidden;
}

/* Postranní vigneta — táhne oči do středu, iluze hloubky */
.about::before,
.awards::before,
.philosophy::before,
.ambassadors::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(9,10,8,.22)  0%,
      transparent       22%,
      transparent       78%,
      rgba(9,10,8,.22) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Přechod mezi sekcemi — horní hrana každé sekce tmavší */
.about::after,
.gallery::after,
.awards::after,
.philosophy::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient( to bottom, rgba(9,10,8,.6), transparent );
  pointer-events: none;
  z-index: 1;
}

/* About fotka — plovoucí stín, iluze hloubky */
.about__image-wrap {
  box-shadow:
    0 40px 80px rgba(0,0,0,.65),
    0 8px 24px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

/* Awards items — plovoucí karty */
.award-item {
  box-shadow:
    0 2px 12px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.025) inset;
  transition: box-shadow .35s, background .35s;
}

.award-item:hover {
  box-shadow:
    0 8px 32px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

/* Gallery items — hloubka při hoveru */
.gallery__item {
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: box-shadow .4s;
}

.gallery__item:hover {
  box-shadow: 0 16px 56px rgba(0,0,0,.7);
}

/* Contact sekce — silnější tmavý okraj */
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(9,10,8,.6) 0%,
    transparent 20%,
    transparent 80%,
    rgba(9,10,8,.6) 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* ── SECTION DIVIDERS ─────────────────────────────────────── */
.section-divider {
  width: 1px;
  height: 80px;
  background: var(--c-line);
  margin: 0 auto;
}

/* ── SCROLL PROGRESS ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(81,96,48,.6), var(--c-olive-light));
  z-index: 9999;
  transform-origin: left;
  pointer-events: none;
}

/* ── ANIMATE IN STATES ────────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.anim-fade-in { opacity: 0; }

.anim-clip {
  clip-path: inset(0 100% 0 0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about__right { order: -1; }

  .about__titles-badge {
    left: 0;
    bottom: -1rem;
  }

  .about__image-deco { display: none; }

  .awards__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --s-xl:  4rem;
    --s-2xl: 7rem;
  }

  body { cursor: auto; }
  .cursor { display: none; }

  .site-nav { padding: 1.5rem var(--s-sm); }

  .nav__links { display: none; }

  /* Hamburger tlačítko */
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
  }
  .nav__burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--c-cream);
    transition: transform .3s, opacity .3s;
    transform-origin: center;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__right {
    display: none;
  }

  .hero__top-meta {
    display: none;
  }

  .gallery__item {
    --h: 52vw;
    height: var(--h);
    width: calc(var(--h) * var(--ratio, 0.75));
  }

  .contact__deco-text { display: none; }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ── MOBILNÍ OVERLAY MENU ────────────────────────────────── */
@media (min-width: 769px) {
  .nav__burger { display: none; }
}

.mobile-nav {
  display: none; /* JS přidá is-open */
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 11, 9, .97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav.is-open {
  display: flex;
  opacity: 1;
}
.mobile-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav__link {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--c-cream);
  text-decoration: none;
  padding: .6rem 2rem;
  letter-spacing: .05em;
  opacity: .85;
  transition: opacity .2s;
}
.mobile-nav__link:hover { opacity: 1; }
.mobile-nav__lang {
  margin-top: 2.5rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  font-family: var(--f-sans);
  font-size: .75rem;
  letter-spacing: .15em;
}

/* ── MICRO-DETAILS & EDITORIAL MARKS ─────────────────────── */
/*
 * DŮLEŽITÉ: všechny barvy jsou rgba(81,96,48,X) = olive-light s průhledností
 * --c-olive-dim (#1e2611) je na tmavém pozadí prakticky neviditelná — nepoužívat
 */

/* ── 1. Label — čárka vlevo ─────────────────────────────────── */
.t-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.t-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .65;
  flex-shrink: 0;
}

/* V philosophy sekci label stojí samostatně — bez čárky vlevo */
.philosophy__label-row .t-label::before {
  display: none;
}

/* ── 2. Rohové zarážky na nadpisech ─────────────────────────
   Olive rgba(.38) = viditelné ale jemné. Větší (18px) = čitelné.
*/
.about__headline,
.awards__headline {
  position: relative;
}

.about__headline::before {
  content: '';
  position: absolute;
  bottom: -12px; left: -18px;
  width: 18px; height: 18px;
  border-left: 1px solid rgba(81,96,48,.5);
  border-bottom: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

.about__headline::after {
  content: '';
  position: absolute;
  top: -12px; right: -18px;
  width: 18px; height: 18px;
  border-right: 1px solid rgba(81,96,48,.5);
  border-top: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

/* Awards — rohové zarážky těsně kolem label+headline bloku */
.awards__header > div:first-child {
  position: relative;
}
.awards__header > div:first-child::before {
  content: '';
  position: absolute;
  bottom: -12px; left: -16px;
  width: 18px; height: 18px;
  border-left: 1px solid rgba(81,96,48,.5);
  border-bottom: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}
.awards__header > div:first-child::after {
  content: '';
  position: absolute;
  top: -10px; right: -16px;
  width: 18px; height: 18px;
  border-right: 1px solid rgba(81,96,48,.5);
  border-top: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

/* Galerie header */
.gallery__header > div:first-child {
  position: relative;
}
.gallery__header > div:first-child::before {
  content: '';
  position: absolute;
  bottom: -12px; left: -16px;
  width: 18px; height: 18px;
  border-left: 1px solid rgba(81,96,48,.5);
  border-bottom: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}
.gallery__header > div:first-child::after {
  content: '';
  position: absolute;
  top: -10px; right: -16px;
  width: 18px; height: 18px;
  border-right: 1px solid rgba(81,96,48,.5);
  border-top: 1px solid rgba(81,96,48,.5);
  pointer-events: none;
}

/* ── 3. Section divider — animovaný bod + sweep ───────────── */
@keyframes dividerPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(81,96,48,.15);
    opacity: .45;
    transform: translate(-50%,-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(81,96,48,.5), 0 0 24px rgba(81,96,48,.12);
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.35);
  }
}

@keyframes dividerSweep {
  0%         { top: -20%;  opacity: 0; }
  15%        { opacity: .7; }
  85%        { opacity: .7; }
  100%       { top: 120%; opacity: 0; }
}

.section-divider {
  position: relative;
  overflow: hidden;
}

/* Pulzující dot uprostřed */
.section-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(81,96,48,.7);
  animation: dividerPulse 3.5s ease-in-out infinite;
  z-index: 1;
}

/* Světelný sweep po lince */
.section-divider::after {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 35%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(150,170,90,.55),
    transparent
  );
  animation: dividerSweep 5s ease-in-out infinite;
  animation-delay: .8s;
}

/* ── 4. Hero — rohové zarážky, světlejší = vidět na fotce ─── */
.hero__content::before {
  content: '';
  position: absolute;
  bottom: -20px; left: -8px;
  width: 20px; height: 20px;
  border-left: 1px solid rgba(240,237,230,.35);
  border-bottom: 1px solid rgba(240,237,230,.35);
  pointer-events: none;
}
.hero__content::after {
  content: '';
  position: absolute;
  top: -12px; right: 0;
  width: 20px; height: 20px;
  border-right: 1px solid rgba(240,237,230,.25);
  border-top: 1px solid rgba(240,237,230,.25);
  pointer-events: none;
}

/* ── 5. Kontakt — mobil ───────────────────────────────────── */

/* ── SELECTION ────────────────────────────────────────────── */
::selection {
  background: var(--c-olive);
  color: var(--c-white);
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient( var(--c-olive-dim), var(--c-olive) );
  border-radius: 2px;
}
