/* ============================================================
   Adam Bezděkovský — portfolio web
   Tmavý cinematic look, mobile-first, bez frameworků
   ============================================================ */

/* ---------- Proměnné ---------- */
:root {
  --bg: #0A0A0B;            /* skoro černá */
  --bg-alt: #101012;        /* o odstín světlejší sekce */
  --surface: #141416;       /* karty */
  --border: #232326;        /* jemné linky */
  --text: #F4F4F2;          /* bílý text */
  --text-dim: #9A9AA0;      /* potlačený text */
  --accent: #FF4A1F;        /* výrazný akcent — signální oranžová */
  --accent-soft: rgba(255, 74, 31, 0.12);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 14px;
  --container: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Jemný filmový grain přes celou stránku */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.accent { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(255, 74, 31, 0.35);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-small {
  font-size: 0.85rem;
  padding: 0.55em 1.3em;
}

.btn-big {
  font-size: 1.1rem;
  padding: 1em 2.4em;
}

/* Podtržený textový odkaz */
.link-underline {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--accent);
  position: relative;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Navigace ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

/* Stav po odscrollování — přidává JS */
.site-header.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Hamburger — jen na mobilu */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s;
}

.nav-link:hover { color: var(--text); }

/* Aktivní stránka v navigaci */
.nav-link.active {
  color: var(--text);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  /* Záložní gradient, dokud není nahrané hero video */
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 74, 31, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 74, 31, 0.07), transparent 60%),
    var(--bg);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ztmavení videa, aby text zůstal čitelný */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.35) 50%, var(--bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.7rem, 9vw, 6rem);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-sub {
  max-width: 34rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Indikátor scrollu dole */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-pulse 1.8s var(--ease) infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Běžící pruh (marquee) ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 0.9rem 0;
  background: var(--bg-alt);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-dim);
  white-space: nowrap;
  padding-right: 1rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sekce ---------- */
.section {
  padding-block: clamp(4rem, 10vw, 7.5rem);
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* Tečka před štítkem sekce */
.section-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.6em;
  vertical-align: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  text-transform: uppercase;
}

.section-head {
  margin-bottom: clamp(2.2rem, 6vw, 4rem);
}

.section-head-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ---------- Karty služeb (homepage) ---------- */
.cards-grid {
  display: grid;
  gap: 1.2rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

/* Jemná záře v rohu karty při hoveru */
.service-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.service-card:hover::before { opacity: 1; }

.card-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.15em;
}

.card-icon { font-size: 1.7rem; }

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.card-more {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
}

.card-more .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .arrow { transform: translateX(5px); }

/* ---------- Karty prací / portfolio ---------- */
.works-grid {
  display: grid;
  gap: 1.4rem;
}

.work-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.work-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

/* Vyšší poměr pro reels (9:16 obsah v náhledu) */
.work-media-tall {
  aspect-ratio: 4 / 3;
}

/* Reel — karta má stejný formát jako ostatní (16:10), video na výšku
   se do ní vejde celé zmenšené, s okraji v barvě stránky */
.work-media-reel {
  background: var(--bg-alt);
}

/* Tlačítko s posterem reelu — místo nativního přehrávače v kartě */
.reel-open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

/* Poster i video na výšku — celé viditelné, zmenšené na výšku karty
   (vyšší specificita, aby přebila obecné object-fit: cover u .work-media) */
.work-media.work-media-reel img,
.work-media.work-media-reel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Reel se při hoveru nepřibližuje — přiblížení by ořezalo okraje záběru */
.work-card:hover .work-media.work-media-reel img,
.work-card:hover .work-media.work-media-reel video {
  transform: none;
}

.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* optické vycentrování trojúhelníku */
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 30px rgba(255, 74, 31, 0.45);
  transition: transform 0.3s var(--ease);
}

.reel-open:hover .reel-play {
  transform: scale(1.12);
}


/* Portfolio jako masonry — karty různých výšek na sebe těsně navazují */
.portfolio-grid .work-card {
  break-inside: avoid;
  margin-bottom: 1.4rem;
}

.work-media img,
.work-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-card:hover .work-media img,
.work-card:hover .work-media video {
  transform: scale(1.05);
}

/* Placeholder, dokud nejsou nahraná média */
.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 74, 31, 0.10), transparent 60%),
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, 0.02) 14px 15px),
    var(--bg-alt);
}

.media-placeholder span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.15rem;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.work-card:hover .media-placeholder span {
  transform: scale(1.12);
  border-color: var(--accent);
}

.media-placeholder-portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Portrétní fotka v sekci O mně */
.about-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.work-info {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.work-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 0.25em 0.9em;
}

.work-info h3 {
  font-size: 1.1rem;
}

.work-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ---------- Filtr portfolia ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.4rem;
}

.filter-btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5em 1.4em;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

.filter-btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* Skrytí odfiltrovaných položek */
.portfolio-item.hidden {
  display: none;
}

/* ---------- O mně — teaser (homepage) ---------- */
.about-teaser {
  max-width: 46rem;
}

.about-teaser-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

/* ---------- CTA pruh ---------- */
.cta-strip {
  padding-block: clamp(4.5rem, 12vw, 8rem);
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(255, 74, 31, 0.16), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 6.5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ---------- Podstránky — hlavička ---------- */
.page-hero {
  padding-top: clamp(8rem, 18vw, 11rem);
  padding-bottom: clamp(1rem, 4vw, 2rem);
}

.page-title {
  font-size: clamp(2.4rem, 8vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.page-sub {
  max-width: 38rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* ---------- Detail služby (sluzby.html) ---------- */
.service-detail {
  scroll-margin-top: 80px; /* kotvy #video/#strih/#weby nezajíždí pod fixní nav */
}

.service-detail-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.service-detail-head .card-num {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.service-detail-head .section-title {
  margin-bottom: 1rem;
}

.service-lead {
  color: var(--text-dim);
  font-size: 1.08rem;
}

.service-columns {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.check-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.6em;
  color: var(--text-dim);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-ref {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.service-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem 1.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.service-cta p { color: var(--text-dim); }
.service-cta strong { color: var(--text); }

/* ---------- Proces spolupráce ---------- */
.process-grid {
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.process-step .card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.contact-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  word-break: break-word;
}

.mailto-wrap {
  text-align: center;
}

.mailto-hint {
  margin-top: 0.9rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* O mně (kontakt.html) */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  max-width: 340px;
}

.about-text .section-title {
  margin-bottom: 1.2rem;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-text p {
  color: var(--text-dim);
}

/* ---------- Patička ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding-block: 3rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-note {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.footer-meta p:first-child {
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ---------- Scroll-reveal animace ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Respektování omezení pohybu */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee-track,
  .hero-scroll span {
    animation: none;
  }
}

/* ============================================================
   Větší obrazovky
   ============================================================ */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }

  /* Masonry sloupce pro portfolio (od tabletu výš) */
  .portfolio-grid {
    display: block;
    column-count: 2;
    column-gap: 1.4rem;
  }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-columns { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  /* 4 karty služeb — 2×2 mřížka drží karty čitelné */
  .process-grid { grid-template-columns: repeat(4, 1fr); }

  .about-grid {
    grid-template-columns: 340px 1fr;
    gap: 4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: start;
    gap: 3rem;
  }

  .footer-meta { text-align: right; }

  /* Desktop navigace — bez hamburgeru */
  .nav { height: 78px; }

  .nav-toggle { display: none; }

  .nav-menu {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    gap: 2rem;
    opacity: 1;
    visibility: visible;
  }

  .nav-link { font-size: 0.95rem; }

  .nav-cta { margin-left: 0.5rem; }
}
