/* ============================================
   MK VISUALS — Portfolio Web
   Style by Martin Kohút, MMXXVI
   ============================================ */

/* ===== Fonty se načítají v HTML <head> přes <link preconnect/preload>
   (rychlejší než @import zde — neblokuje render) ===== */

/* ===== CSS Variables (paleta) =====
   Změnit barvy stačí jen tady, projeví se ve všech stránkách */
:root {
  --navy: #192843;
  --cream: #FBF3DA;
  --brown: #BC9063;
  --brown-dark: #8B6843;
  --brown-on-cream: #6B4F32;  /* tmavší pro hover/akcenty na krémovém pozadí, WCAG AA: 7.5:1 */

  --font-serif: 'DM Serif Display', serif;
  --font-script: 'Caveat', cursive;
  /* Alternativy script fontu (stačí přepnout řádek výše):
     'Cormorant Garamond', serif    — elegantní serif kurzíva, redakční tón
     'Instrument Serif', serif      — moderní serif s lehkým nádechem fluidnosti
  */
  --font-sans: 'News Cycle', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ===== Reset & základ ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== Focus pro klávesnicovou navigaci (přístupnost) ===== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 4px;
  border-radius: 2px;
}
.section-cream :focus-visible,
.grid-section :focus-visible,
.project-meta :focus-visible,
.project-brief :focus-visible,
.project-gallery :focus-visible,
.about-content :focus-visible {
  outline-color: var(--brown-on-cream);
}

/* ===== Animace ===== */
@keyframes fadeup { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: translateY(0); } 50% { opacity: 1; transform: translateY(6px); } }
@keyframes breathe { 0%, 100% { transform: scale(1.0); } 50% { transform: scale(1.06); } }

/* Scroll-triggered animace */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVIGACE (sdílená všemi stránkami)
   ============================================ */
.nav { position: relative; z-index: 10; padding: 24px 120px; display: flex; justify-content: space-between; align-items: center; animation: fadein 0.8s ease 0.1s both; }
.logo { width: 100px; height: 100px; display: block; flex-shrink: 0; margin-top: 20px; }
.logo img, .logo svg { width: 100%; height: 100%; display: block; }
.menu { display: flex; gap: 56px; }
.menu a {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--cream);
  padding: 4px 0;
  transition: color 0.3s ease;
  position: relative;
}
.menu a:hover { color: var(--brown); }
.menu a.active { color: var(--brown); }
.menu a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--brown);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* Hamburger button — schovaný na desktopu, viditelný pod 960px */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
}
.menu-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
/* Na krémových sekcích (portfolio, kontakt, atd. — tam má hamburger tmavou barvu) */
.section-cream .menu-toggle span,
.grid-section .menu-toggle span { background: var(--navy); }

/* ============================================
   HERO SECTION (jen homepage)
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  /* Vrstvený background: radiální spotlight (světlejší navy uprostřed, tmavší okraje)
     Centrum mírně nad středem (38 %) — rámuje nadpis, ne menu.
     Plné navy je fallback pro starší prohlížeče bez radial-gradient. */
  background-color: var(--navy);
  background-image: radial-gradient(ellipse 90% 70% at 50% 38%,
    #243558 0%,
    #192843 50%,
    #0d1729 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Papírová textura — SVG feTurbulence jako data URI, žádný extra request.
   Nad spotlight, pod canvas auroru (canvas má z-index 0, paper-tex je za ním přes .hero pozadí). */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.55' numOctaves='3' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.98  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23p)'/></svg>");
  background-size: 400px 400px;
  background-repeat: repeat;
  opacity: 1;
  mix-blend-mode: screen;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(25, 40, 67, 0) 0%,
    rgba(25, 40, 67, 0) 50%,
    rgba(25, 40, 67, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero .nav { position: relative; z-index: 4; }

.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 120px 140px 0;
  text-align: right;
}

.hero-headline {
  margin: 0;
  color: var(--cream);
  display: block;
  animation: fadeup 1.2s ease 0.5s both;
}

.hero-headline-line {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(38px, 10vw, 80px);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -1px;
}

.hero-headline-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(48px, 13vw, 105px);
  line-height: 0.95;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -0.5px;
  margin-top: -8px;
}
/* Pokud přepneš --font-script na 'Cormorant Garamond' nebo 'Instrument Serif',
   odkomentuj tento řádek pro italic (Caveat italic nemá, takže by se vykreslil
   nepěkný fake-italic):
   .hero-headline-script { font-style: italic; }
*/

/* ===== CMYK soutisk efekt ===== */
/* Každý řádek headline má 4 vrstvy: 3 CMYK kanály + základní text.
   CMYK vrstvy jsou aria-hidden (screen readers vidí jen base).
   Animovány jsou přes transform v JS — pomalu se rozjíždějí a vrací do soutisku. */
.headline-stack {
  position: relative;
  display: block;
}
.headline-stack .layer-c,
.headline-stack .layer-m,
.headline-stack .layer-y {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  mix-blend-mode: screen;
  will-change: transform;
  pointer-events: none;
}
.headline-stack .layer-base {
  position: relative;
  /* zachovává původní barvu (cream nebo brown ze základní třídy) */
}

/* Serif řádek (Design,) — CMYK barvy s drženou paletou */
.hero-headline-line.layer-c { color: #00B4D8; opacity: 0.50; } /* cyan */
.hero-headline-line.layer-m { color: #E63946; opacity: 0.40; } /* magenta tlumená */
.hero-headline-line.layer-y { color: #F4B860; opacity: 0.55; } /* yellow / hořčicová */

/* Script řádek (nadčasová kvalita.) — bez CMYK vrstev, jen čistá brown Caveat
   (rukopisný font má lehké tahy, kde je posun víc vidět než u serifu) */

/* Registrační značka v pravém dolním rohu hero */
.hero-reg-mark {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}

/* Vlastní kurzor štětec — kruh, který sleduje myš nad hero */
.brush-cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(251, 243, 218, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s ease;
  mix-blend-mode: difference;
  will-change: transform, left, top;
}
.brush-cursor.is-active {
  opacity: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(251, 243, 218, 0.6);
  margin: 0 0 28px 0;
  animation: fadeup 1s ease 0.3s both;
}

.hero-title-wrap {
  display: inline-block;
  text-align: left;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(251, 243, 218, 0.55);
  margin: 24px 0 0 0;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  width: 100%;
  animation: fadeup 1s ease 1.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadein 0.8s ease 1.4s both;
}
.hero-scroll .label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(251, 243, 218, 0.7);
  text-transform: uppercase;
}
.hero-scroll .arrow {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(251, 243, 218, 0.8);
  animation: pulse 2.4s ease infinite 1.7s;
}
.hero-cta {
  position: absolute;
  bottom: 140px;
  left: 100px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid rgba(251, 243, 218, 0.7);
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  animation: fadeup 1s ease 1.3s both;
}

.hero-cta:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.hero-cta .cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ============================================
   SEKCE — krémová (pro projekty)
/* ============================================
   ATMOSFÉRICKÝ BLOK (mezi hero a Vybrané práce)
   ============================================ */
.atmosphere {
  position: relative;
  height: 60vh;
  min-height: 480px;
  max-height: 640px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atmosphere-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/atmosphere.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.atmosphere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(25, 40, 67, 0.55) 0%,
    rgba(25, 40, 67, 0.40) 50%,
    rgba(25, 40, 67, 0.65) 100%);
  z-index: 1;
}
.atmosphere-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 64px;
  text-align: center;
}
.atmosphere-claim {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
  font-weight: 400;
}

/* ============================================
   KRÉMOVÁ SEKCE (Vybrané práce)
   ============================================ */
.section-cream {
  background: var(--cream);
  color: var(--navy);
  padding: 120px 64px 80px;
}

.section-head {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(25, 40, 67, 0.25);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.6);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  margin: 0;
  color: var(--navy);
}

/* ============================================
   PROJEKTY (na homepage)
   ============================================ */
.projects { max-width: 1280px; margin: 0 auto; }
.project {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 60px 0;
  align-items: start;
  border-top: 1px solid rgba(25, 40, 67, 0.18);
}
.project:first-of-type { border-top: none; padding-top: 30px; }
.project-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.7);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.project-title {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--navy);
  transition: color 0.3s ease;
}
.project:hover .project-title { color: var(--brown-dark); }
/* Klikatelný název + obrázek na homepage projektech (proklik na detail) */
.project-title-link {
  color: inherit;
  text-decoration: none;
  display: inline;
}
.project-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(25, 40, 67, 0.85);
  margin: 0;
  max-width: 380px;
}
.project-tags {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(25, 40, 67, 0.6);
  margin: 16px 0 0;
  line-height: 1.6;
  max-width: 380px;
}
.project-cta {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid rgba(25, 40, 67, 0.5);
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.project-cta:hover { color: var(--brown-dark); border-color: var(--brown-dark); }

.project-image {
  aspect-ratio: 1/1;
  background: rgba(25, 40, 67, 0.06);
  border: 1px solid rgba(25, 40, 67, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-image::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(25, 40, 67, 0.08);
  pointer-events: none;
  transition: inset 0.4s ease;
}
.project:hover .project-image::before { inset: 4px; }
.project-image span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.4);
  text-transform: uppercase;
}
.project-image picture,
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.project:hover .project-image img { transform: scale(1.03); }

/* ============================================
   SEKCE — navy (kontakt)
   ============================================ */
.section-navy {
  background: var(--navy);
  color: var(--cream);
  padding: 100px 64px;
}

.contact-block {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

/* Status indicator s pulzující tečkou */
.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 243, 218, 0.7);
}
.contact-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 0 0 rgba(188, 144, 99, 0.5);
  animation: status-pulse 2.4s ease-out infinite;
}
@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(188, 144, 99, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(188, 144, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(188, 144, 99, 0); }
}

.contact-block .lead {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
  color: var(--cream);
  max-width: 600px;
}
.contact-block .lead .arrow {
  color: var(--brown);
  margin-left: 8px;
  font-weight: normal;
}
.contact-block .email {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--cream);
  transition: color 0.3s ease;
}
.contact-block .email:hover { color: var(--brown); }

/* Skupina tlačítek — e-mail (primary) + WhatsApp (ghost) */
.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* PRIMARY tlačítko — e-mail (akcentní vyplněné) */
.contact-block .email-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--navy);
  background: var(--brown);
  padding: 16px 26px;
  border: 1px solid var(--brown);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.contact-block .email-button:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--cream);
  transform: translateY(-1px);
}
.contact-block .email-button .email-icon {
  width: 20px;
  height: 20px;
  color: var(--navy);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.contact-block .email-button:hover .email-icon {
  color: var(--cream);
}

/* GHOST tlačítko — WhatsApp (jen rámeček) */
.contact-block .whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--cream);
  background: transparent;
  padding: 16px 26px;
  border: 1px solid rgba(251, 243, 218, 0.35);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.contact-block .whatsapp-button:hover {
  color: var(--brown);
  border-color: var(--brown);
  transform: translateY(-1px);
}
.contact-block .whatsapp-button .whatsapp-icon {
  width: 20px;
  height: 20px;
  color: var(--brown);
  flex-shrink: 0;
}

/* Podtitulek pod tlačítky */
.contact-meta {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(251, 243, 218, 0.55);
  letter-spacing: 0.02em;
  margin: 0;
}
.contact-meta .sep {
  margin: 0 10px;
  color: rgba(251, 243, 218, 0.3);
}

/* ============================================
   FOOTER (sdílený všemi stránkami)
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: 36px 64px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(251, 243, 218, 0.18);
  max-width: 1280px;
  margin: 0 auto;
}
.footer-left {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(251, 243, 218, 0.65);
  text-transform: uppercase;
}
.socials { display: flex; gap: 22px; align-items: center; }
.social-icon {
  width: 22px;
  height: 22px;
  display: flex;
  color: rgba(251, 243, 218, 0.65);
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icon:hover { color: var(--brown); transform: translateY(-2px); }
.social-icon svg { width: 100%; height: 100%; }

/* ============================================
   STRÁNKA: O MNĚ
   ============================================ */
.about-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 0 0 100px;
}
.about-content {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.about-text-block .section-title { color: var(--cream); font-size: 56px; }
.about-text-block p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(251, 243, 218, 0.88);
  margin: 0 0 18px;
  max-width: 480px;
}
.about-text-block p:first-of-type { margin-top: 32px; }
.about-image {
  aspect-ratio: 4/5;
  background: rgba(251, 243, 218, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.values-section {
  background: var(--cream);
  color: var(--navy);
  padding: 100px 64px;
}
.values-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}
.value-block {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(25, 40, 67, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.value-icon svg {
  width: 24px;
  height: 24px;
}
.value-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}
.value-text p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(25, 40, 67, 0.78);
}

.skills-section {
  background: var(--navy);
  color: var(--cream);
  padding: 80px 64px 100px;
  margin-top: -1px;
}
.skills-wrap { max-width: 1280px; margin: 0 auto; }
.skills-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(251, 243, 218, 0.18);
}
.skills-block:first-child { border-top: none; }
.skills-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 243, 218, 0.4);
  padding-bottom: 4px;
  display: inline-block;
  align-self: start;
  font-weight: 700;
}
.skills-content p {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(251, 243, 218, 0.88);
}
.skills-content p:last-child { margin-bottom: 0; }

/* ============================================
   STRÁNKA: PORTFOLIO
   ============================================ */
.portfolio-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 0 0 60px;
}
.portfolio-head {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(251, 243, 218, 0.25);
}
.portfolio-head .section-num { color: rgba(251, 243, 218, 0.6); }
.portfolio-head .section-title { color: var(--cream); font-size: 56px; }

.pre-text {
  max-width: 1280px;
  margin: 36px auto 0;
  padding: 0 64px 0 184px;
}
.pre-text p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251, 243, 218, 0.85);
  margin: 0;
  max-width: 580px;
}

.grid-section {
  background: var(--cream);
  color: var(--navy);
  padding: 100px 64px;
}
.grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 50px;
}
.card { display: flex; flex-direction: column; cursor: pointer; }
.card-image {
  aspect-ratio: 1/1;
  background: rgba(25, 40, 67, 0.06);
  border: 1px solid rgba(25, 40, 67, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.card-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(25, 40, 67, 0.08);
  pointer-events: none;
  transition: inset 0.4s ease;
}
.card:hover .card-image::before { inset: 4px; }
.card-image span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.4);
  text-transform: uppercase;
}
.card-image picture,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.card:hover .card-image img { transform: scale(1.03); }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 18px;
}
.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.6);
  text-transform: uppercase;
}
.card-cat {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(25, 40, 67, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.15;
  margin: 8px 0 6px;
  color: var(--navy);
  transition: color 0.3s ease;
}
.card:hover .card-title { color: var(--brown-dark); }
.card-tags {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(25, 40, 67, 0.7);
  margin: 0;
}

/* ============================================
   STRÁNKA: KONTAKT
   ============================================ */
.contact-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 0 0 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 64px;
  align-items: start;
}
.contact-left .section-num { color: rgba(251, 243, 218, 0.6); margin-bottom: 24px; display: block; }
.contact-left .contact-status { margin-bottom: 28px; }
.contact-left .big-headline {
  font-family: var(--font-script);
  font-size: 110px;
  line-height: 0.9;
  margin: 0 0 30px;
  color: var(--cream);
}
.contact-left .lead-text {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251, 243, 218, 0.85);
  max-width: 460px;
  margin: 30px 0 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 80px;
}
.contact-info-block { padding-top: 20px; border-top: 1px solid rgba(251, 243, 218, 0.18); }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(251, 243, 218, 0.55);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.contact-info-value { font-family: var(--font-serif); font-size: 26px; color: var(--cream); margin: 0; transition: color 0.3s ease; }
a.contact-info-value:hover { color: var(--brown); }
.contact-info-value.smaller { font-size: 18px; font-family: var(--font-sans); }

.contact-info-value.with-icon { display: inline-flex; align-items: center; gap: 14px; }
.contact-info-value .info-icon { width: 22px; height: 22px; color: var(--brown); flex-shrink: 0; transition: color 0.3s ease; }
a.contact-info-value.with-icon:hover .info-icon { color: var(--cream); }

.contact-socials {
  display: flex;
  gap: 28px;
  margin-top: 12px;
  align-items: center;
}
.contact-socials .social-icon { width: 26px; height: 26px; }

/* ============================================
   STRÁNKA: DETAIL PROJEKTU
   ============================================ */
.project-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 0 0 100px;
  position: relative;
}
.nav-light .menu a { color: var(--navy) !important; }
.nav-light .menu a.active { color: var(--brown-on-cream) !important; }
.nav-light .menu a.active::after { background: var(--brown-on-cream); }
.nav-light .menu a:hover { color: var(--brown-on-cream) !important; }

.project-hero-content {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 0 64px;
}
.project-back {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(251, 243, 218, 0.6);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 60px;
  transition: color 0.3s ease;
}
.project-back:hover { color: var(--brown); }

.project-meta-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(251, 243, 218, 0.55);
  text-transform: uppercase;
  margin: 0 0 24px;
}
.project-headline {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -1px;
}
.project-claim {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.5;
  color: rgba(251, 243, 218, 0.78);
  max-width: 700px;
  margin: 0;
  font-weight: 400;
}

/* META INFO */
.project-meta {
  background: var(--cream);
  border-top: 1px solid rgba(25, 40, 67, 0.18);
  padding: 50px 64px;
}
.project-meta-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.meta-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(25, 40, 67, 0.55);
  text-transform: uppercase;
}
.meta-value {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.4;
}
.meta-value em {
  color: rgba(25, 40, 67, 0.55);
  font-style: italic;
  font-size: 14px;
}

/* BRIEF */
.project-brief {
  background: var(--cream);
  padding: 80px 64px 100px;
}
.project-brief-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 50px;
}
.brief-block {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
}
.brief-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid rgba(25, 40, 67, 0.4);
  padding-bottom: 4px;
  align-self: start;
  display: inline-block;
}
/* Když je brief-label H2 (sémantická hierarchie pro SEO), resetuj defaultní styly nadpisu */
h2.brief-label {
  margin: 0;
  line-height: 1.4;
}
.brief-block p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(25, 40, 67, 0.88);
}
.brief-block p + p { margin-top: 14px; } /* mezera mezi více odstavci v rámci jednoho briefu */
.brief-block strong { color: var(--brown-on-cream); font-weight: 600; }

/* GALERIE */
.project-gallery {
  background: var(--cream);
  padding: 60px 64px 120px;
}
.gallery-section-label {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding-top: 20px;
}
.gallery-section-label .brief-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-caption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(25, 40, 67, 0.6);
  margin: 16px 0 0;
  font-style: italic;
}

/* PHOTOGRAPHY GALLERY — Portrait orientation
   Použito v projektu FOR BEAUTY (foto-reportáž z veletrhu).
   Hero = jedna portrait fotka centered s padding, působí jako exponát.
   Grid-portrait = 2 sloupce, každý portrait 3:4. */

.gallery-hero {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  text-align: center;
}
.gallery-hero picture {
  display: inline-block;
  max-width: 560px;
  width: 100%;
}
.gallery-hero img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 24px 64px -16px rgba(25, 40, 67, 0.25),
              0 8px 24px -8px rgba(25, 40, 67, 0.15);
}
.gallery-hero .gallery-caption {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid-portrait {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.gallery-grid-portrait figure {
  margin: 0;
}
.gallery-grid-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 16px 40px -12px rgba(25, 40, 67, 0.2),
              0 4px 16px -4px rgba(25, 40, 67, 0.1);
}
.gallery-grid-portrait figcaption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(25, 40, 67, 0.6);
  margin: 16px 0 0;
  font-style: italic;
}

/* 3-COLUMN GRID — čtvercové výstupy (tiskoviny / social).
   Použito v projektu Profi-pedikúra. Sekce po 3 položkách = jeden čistý řádek. */
.gallery-grid-3 {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.gallery-grid-3 figure { margin: 0; }
.gallery-grid-3 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 16px 40px -12px rgba(25, 40, 67, 0.2),
              0 4px 16px -4px rgba(25, 40, 67, 0.1);
}
.gallery-grid-3 figcaption {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(25, 40, 67, 0.6);
  margin: 16px 0 0;
  font-style: italic;
}

/* ZÁVĚREČNÁ NAVIGACE */
.project-footer-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(251, 243, 218, 0.18);
  margin-bottom: 60px;
}
.section-navy-with-nav { padding-top: 60px; }
.footer-nav-back, .footer-nav-next {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(251, 243, 218, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav-back:hover, .footer-nav-next:hover { color: var(--brown); }
.footer-nav-next { font-weight: 500; color: var(--cream); }

/* ===== Související projekty (related work) ===== */
.related-work {
  background: var(--cream);
  padding: 80px 64px 100px;
  border-top: 1px solid rgba(25, 40, 67, 0.08);
}
.related-work-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.related-work-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-on-cream);
  margin-bottom: 32px;
  display: block;
}
.related-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.related-card {
  display: block;
  padding: 32px;
  background: rgba(25, 40, 67, 0.04);
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.related-card:hover {
  background: rgba(25, 40, 67, 0.08);
  transform: translateY(-2px);
}
.related-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-on-cream);
  margin-bottom: 12px;
}
.related-card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.2;
}
.related-card-tags {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(25, 40, 67, 0.7);
  margin: 0;
}
@media (max-width: 760px) {
  .related-work { padding: 50px 24px 70px; }
  .related-work-grid { grid-template-columns: 1fr; gap: 16px; }
  .related-card { padding: 24px; }
  .related-card-title { font-size: 22px; }
}

/* ============================================
   RESPONSIVE — mobil
   ============================================ */
@media (max-width: 960px) {
  .nav { padding: 20px 24px; }
  .logo { width: 80px; height: 80px; margin-top: 0; }
  
  /* Hamburger menu — vidět jen na mobilu/tabletu */
  .menu-toggle { display: block; }
  
  /* Klasické inline menu schované, místo něj overlay (zapne se přes .is-open na .menu) */
  .menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 80px 24px;
  }
  .menu.is-open { transform: translateX(0); }
  .menu a { font-size: 28px; color: var(--cream); }
  .menu a:hover, .menu a.active { color: var(--brown); }
  .menu a.active::after { bottom: -8px; width: 6px; height: 6px; }
  
  /* Hero — výš nadpis, méně přehuštěný spodek */
  /* Velikost headlinu řeší clamp() v základním pravidle — žádný override tu netřeba */
  .hero-headline-line { letter-spacing: -0.5px; }
  .hero-eyebrow { font-size: 11px; }
  /* Mobilní layout hero — vše vycentrované, nadpis posunutý lehce pod střed
     (60 % výšky), aby měl prostor nad i pod sebou a nepůsobil přilepený nahoru */
  .hero-content { 
    padding: 0 24px 200px; 
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-title-wrap { 
    width: 100%; 
    text-align: center;
    transform: translateY(8vh); /* posun lehce dolů od přesného středu */
  }
  /* Subtitle "Brand · Print · Foto" — místo roztažených sloupců jeden řádek 
     s tečkovými separátory, blíž k nadpisu */
  .hero-subtitle { 
    justify-content: center; 
    gap: 16px;
    margin-top: 32px;
    font-size: 11px;
  }
  .hero-subtitle span:not(:last-child)::after {
    content: '·';
    margin-left: 16px;
    opacity: 0.6;
  }
  
  /* CTA tlačítko — vycentrované, ne přitlačené vlevo */
  .hero-cta { 
    bottom: 50px; 
    left: 50%; 
    transform: translateX(-50%);
    padding: 14px 22px; 
    font-size: 15px; 
  }
  .hero-scroll { display: none; } /* "Scroll ↓" pryč — na mobilu zbytečné */
  
  /* Registrační značka méně dominantní (jinak konkuruje CTA) */
  .hero-reg-mark { width: 24px; height: 24px; bottom: 24px; right: 24px; opacity: 0.25; }
  
  .section-cream, .section-navy, .skills-section, .grid-section { padding: 60px 24px; }
  
  /* Section head — na mobilu jeden sloupec (číslo NAD nadpisem, ne vedle) */
  .section-head, .portfolio-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 24px;
    align-items: start;
  }
  .portfolio-head { padding: 0 24px 24px; margin-top: 60px; }
  .section-title, .portfolio-head .section-title { font-size: 36px; }
  .section-num { padding-bottom: 0; }
  /* Pre-text (popis pod Portfolio nadpisem) — bez velkého levého paddingu */
  .pre-text { padding: 0 24px; }
  .pre-text p { font-size: 16px; }
  
  .project { grid-template-columns: 1fr; gap: 30px; padding: 40px 0; }
  .project-title { font-size: 26px; }
  
  .contact-block { gap: 24px; }
  .contact-block .lead { font-size: 32px; }
  .contact-status { font-size: 11px; }
  .contact-actions { flex-direction: column; width: 100%; gap: 12px; }
  .contact-block .email-button,
  .contact-block .whatsapp-button { justify-content: center; width: 100%; padding: 14px 20px; font-size: 16px; }
  .contact-meta { font-size: 13px; }
  .contact-meta .sep { display: inline; }
  
  .about-content { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; margin-top: 50px; }
  .about-text-block .section-title { font-size: 40px; }
  
  /* Portfolio karty — větší dýchání mezi nimi, menší placeholder */
  .grid { grid-template-columns: 1fr; gap: 64px; }
  .card-image { aspect-ratio: 1/1; }
  .card-title { font-size: 24px; margin-top: 12px; }
  
  .skills-block { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .values-section { padding: 60px 24px; }
  .skills-section { padding: 60px 24px; }
  .values-wrap { grid-template-columns: 1fr; gap: 40px; }
  
  .contact-content { grid-template-columns: 1fr; gap: 50px; padding: 0 24px; margin-top: 30px; }
  .contact-left .big-headline { font-size: 70px; }
  .contact-info { margin-top: 0; }
  
  .footer { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  
  .hero-bg { animation: none; }
  
  /* Atmosférický blok — mobil */
  .atmosphere { height: auto; min-height: 360px; max-height: none; padding: 100px 0; }
  .atmosphere-content { padding: 0 24px; }
  .atmosphere-claim { font-size: 26px; line-height: 1.3; }
  
  /* Detail projektu — mobil */
  .project-hero-content { padding: 0 24px; margin-top: 50px; }
  .project-headline { font-size: 52px; }
  .project-claim { font-size: 17px; }
  .project-back { margin-bottom: 40px; }
  
  .project-meta { padding: 30px 24px; }
  .project-meta-wrap { grid-template-columns: 1fr 1fr; gap: 24px; }
  
  .project-brief { padding: 50px 24px 70px; }
  .brief-block { grid-template-columns: 1fr; gap: 14px; }
  
  .project-gallery { padding: 40px 24px 80px; }
  
  /* Photography gallery mobile */
  .gallery-hero { padding: 0 16px; margin-bottom: 50px; }
  .gallery-grid-portrait { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    padding: 0 16px; 
    margin-bottom: 50px; 
  }
  .gallery-grid-3 {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 16px;
    margin-bottom: 50px;
  }
  .gallery-section-label { padding: 0 16px; }
  
  .project-footer-nav { flex-direction: column; gap: 16px; padding: 0 24px 40px; align-items: flex-start; margin-bottom: 40px; }
  .section-navy-with-nav { padding-top: 40px; }

  /* Mobilní hero — statický fallback místo animace */
  .brush-cursor { display: none; }
  .headline-stack .layer-c { transform: translate(-4px, -2px); }
  .headline-stack .layer-m { transform: translate(5px, 3px); }
  .headline-stack .layer-y { transform: translate(-2px, 5px); }
  .headline-stack .layer-c,
  .headline-stack .layer-m,
  .headline-stack .layer-y { will-change: auto; }
}

/* =========================================================
   CENÍK STRÁNKA — cenik.html (navy variant, jako hero)
   ========================================================= */

.cenik-page {
  background: var(--navy);
  color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.cenik-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 64px 100px;
  width: 100%;
  flex: 1;
}

/* INTRO BLOCK */
.cenik-intro {
  max-width: 760px;
  margin: 0 0 80px;
}
.cenik-page .section-num {
  display: block;
  margin-bottom: 24px;
  color: rgba(251, 243, 218, 0.55);
}
.cenik-page .big-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.0;
  color: var(--cream);
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.cenik-page .lead-text {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(251, 243, 218, 0.75);
  max-width: 580px;
}

/* SEZNAM POLOŽEK */
.cenik-list {
  margin: 0 0 60px;
}

.cenik-item {
  padding: 36px 0 32px;
  border-top: 1px solid rgba(251, 243, 218, 0.18);
}
.cenik-item:last-child {
  border-bottom: 1px solid rgba(251, 243, 218, 0.18);
}

.cenik-item-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 14px;
}

.cenik-item-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -1px;
  position: relative;
}

/* CMYK soutisk stack pro nadpis položky — minimální amplitudy */
.cenik-stack {
  position: relative;
  display: block;
}
.cenik-title-text {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}
.cenik-title-text.layer-c,
.cenik-title-text.layer-m,
.cenik-title-text.layer-y {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  mix-blend-mode: screen;
  will-change: transform;
  pointer-events: none;
}
.cenik-title-text.layer-base {
  position: relative;
  color: var(--cream);
}
.cenik-title-text.layer-c { color: #00B4D8; opacity: 0.42; }
.cenik-title-text.layer-m { color: #E63946; opacity: 0.32; }
.cenik-title-text.layer-y { color: #F4B860; opacity: 0.45; }

.cenik-item-price {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--brown);
  margin: 0;
  white-space: nowrap;
  line-height: 1.0;
}

.cenik-item-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(251, 243, 218, 0.68);
  margin: 0;
  max-width: 720px;
}

/* POZNÁMKA POD CENÍKEM */
.cenik-note {
  background: rgba(251, 243, 218, 0.05);
  border-left: 2px solid var(--brown);
  border-radius: 0;
  padding: 24px 28px;
  margin: 60px 0 50px;
  max-width: 820px;
}
.cenik-note p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(251, 243, 218, 0.75);
  margin: 0 0 12px;
}
.cenik-note p:last-child {
  margin-bottom: 0;
}
.cenik-note strong {
  color: var(--cream);
  font-weight: 600;
}

/* CTA */
.cenik-cta {
  margin-top: 60px;
  display: block;
  clear: both;
}
.cenik-cta .cenik-link {
  display: inline-block;
  padding: 16px 32px;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cenik-cta .cenik-link:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-1px);
}

/* MOBIL */
@media (max-width: 760px) {
  .cenik-content { padding: 60px 24px 70px; }
  .cenik-intro { margin-bottom: 50px; }
  .cenik-page .big-headline { font-size: 44px; }
  .cenik-page .lead-text { font-size: 16px; }
  .cenik-item { padding: 24px 0 22px; }
  .cenik-item-head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }
  .cenik-item-price { font-size: 22px; }
  .cenik-title-text { font-size: 30px; }
  .cenik-note { padding: 18px 22px; margin: 40px 0; }
  .cenik-cta { margin-top: 40px; }
  .cenik-cta .cenik-link { padding: 14px 28px; font-size: 14px; width: 100%; text-align: center; box-sizing: border-box; }
  /* CMYK soutisk na mobilu statický */
  .cenik-title-text.layer-c { transform: translate(-2px, -1px); }
  .cenik-title-text.layer-m { transform: translate(2px, 1px); }
  .cenik-title-text.layer-y { transform: translate(-1px, 2px); }
}

/* =========================================================
   FAQ SEKCE — na kontakt.html, cream pozadí
   ========================================================= */

.faq-section {
  background: var(--cream);
  color: var(--navy);
  padding: 100px 0 120px;
}

.faq-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 64px;
}

.faq-head {
  margin-bottom: 60px;
}
.faq-section .section-num {
  display: block;
  margin-bottom: 16px;
  color: rgba(25, 40, 67, 0.6);
}
.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--navy);
  margin: 0;
}

/* FAQ list */
.faq-list {
  border-top: 1px solid rgba(25, 40, 67, 0.22);
}

.faq-item {
  border-bottom: 1px solid rgba(25, 40, 67, 0.22);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--navy);
  line-height: 1.35;
  transition: color 0.25s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--brown-on-cream); }

.faq-q-text {
  flex: 1;
}

/* Plus/minus ikona — CSS-only, mění se podle open stavu */
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  transition: transform 0.25s ease;
}
.faq-icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Odpověď */
.faq-answer {
  padding: 0 0 28px;
  max-width: 800px;
}
.faq-answer p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(25, 40, 67, 0.78);
  margin: 0;
}

/* Mobil */
@media (max-width: 760px) {
  .faq-section { padding: 60px 0 80px; }
  .faq-content { padding: 0 24px; }
  .faq-head { margin-bottom: 40px; }
  .faq-title { font-size: 32px; }
  .faq-question {
    padding: 20px 0;
    font-size: 17px;
    gap: 16px;
  }
  .faq-answer { padding: 0 0 22px; }
  .faq-answer p { font-size: 15px; }
}

/* =========================================================
   NAVEDENÍ NA FAQ — odkaz v lead-textu a scroll indikátor
   ========================================================= */

/* Inline odkaz v lead-textu kontaktu */
.lead-link {
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(188, 144, 99, 0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.lead-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* Scroll indikátor pod kontakt sekcí — přilepený na spodek contact-hero */
.faq-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0 40px;
  margin: auto auto 0;
  color: rgba(251, 243, 218, 0.5);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  cursor: pointer;
}
.faq-scroll-hint:hover {
  color: var(--cream);
}
.faq-scroll-label {
  margin-top: 8px;
}
.faq-scroll-arrow {
  font-size: 18px;
  letter-spacing: 0;
  animation: scrollHintBounce 2.2s ease-in-out infinite;
}
@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Smooth scroll na hash linky */
html {
  scroll-behavior: smooth;
}

/* Mobil */
@media (max-width: 760px) {
  .faq-scroll-hint {
    margin-top: 70px;
    padding: 30px 0 40px;
    font-size: 10px;
    max-width: 180px;
  }
  .faq-scroll-arrow { font-size: 16px; }
}

/* ============================================
   LIGHTBOX — zvětšení obrázků galerie
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(25, 40, 67, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.25s ease;
  cursor: default;
}
.lightbox.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 0;
  padding-bottom: 3px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
/* Zamknout scroll pozadí, když je lightbox otevřený */
body.lightbox-open {
  overflow: hidden;
}
/* Respektuj uživatele s vypnutými animacemi */
@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox-img {
    transition: none;
  }
}

/* Navigační šipky v lightboxu */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
  padding-bottom: 4px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1;
}
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 600px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* Overlay dostává programový fokus kvůli klávesám — bez viditelného prstence */
.lightbox:focus { outline: none; }
.lightbox:focus-visible { outline: none; }
