/* ═══════════════════════════════════════════════════════════
   MINARIKOSS — layout webu (hero, sekcie, navigácia)
   Predloha: Weblium "Actor Portfolio", čierna + akcent.
   Akcent: zlatá (default) alebo tyrkysová (html[data-accent="teal"]).
   Písmo: Inter na text, Poppins na nadpisy, Playfair italic na zvýraznené slovo.
   ═══════════════════════════════════════════════════════════ */
:root {
  --nav-h: 64px;
  --bg: #050505;
  --bg-rgb: 5, 5, 5;
  --bg2: #0b0b0c;
  --bg3: #121214;
  --line: rgba(255,255,255,0.08);
  --text: #f3f1ec;
  --muted: rgba(243,241,236,0.62);
  --muted2: rgba(243,241,236,0.4);
  --accent: #d9b35a;
  --accent-2: #f1d78f;
  --accent-rgb: 217, 179, 90;
  --accent-ink: #0a0a0a;
  --divider: rgba(217,179,90,0.38);
  --accent-section: linear-gradient(160deg, #d9b657 0%, #c79f3f 55%, #a37f2b 100%);
  --accent-section-ink: #16130d;
  --accent-section-ink-2: #5a4310;
  --hero-glow: radial-gradient(120% 90% at 80% 40%, #17130b 0%, #0a0907 40%, #050505 100%);
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --head: 'Poppins', 'Inter', system-ui, sans-serif;
  color-scheme: dark;
}
html[data-accent="teal"] {
  --accent: #00d4aa;
  --accent-2: #7df5da;
  --accent-rgb: 0, 212, 170;
  --accent-ink: #032a22;
  --divider: rgba(0,212,170,0.4);
  --accent-section: linear-gradient(160deg, #1fdcb6 0%, #00bf95 55%, #078a6c 100%);
  --accent-section-ink: #052821;
  --accent-section-ink-2: #0b4d3f;
  --hero-glow: radial-gradient(120% 90% at 80% 40%, #061a16 0%, #050b0a 40%, #050505 100%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #000; }

/* Logo podľa akcentu */
.logo-white { display: none; }
html[data-accent="teal"] .logo-gold { display: none; }
html[data-accent="teal"] .logo-white { display: block; }

.container { width: min(1240px, calc(100% - 96px)); margin: 0 auto; }
@media (max-width: 900px) { .container { width: calc(100% - 48px); } }

/* ── Kicker "| NÁZOV |" ───────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent);
}
.kicker::before, .kicker::after { content: '|'; color: var(--accent); font-weight: 300; }

/* Sekcie — horná hrana sekcie sedí presne na spodnej hrane menu (scroll-margin = výška menu) */
.section { padding: 96px 0; position: relative; scroll-margin-top: var(--nav-h); border-top: 1px solid var(--divider); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-title { font-family: var(--head); font-weight: 600; font-size: clamp(30px, 3.8vw, 48px); line-height: 1.12; margin: 16px 0 14px; letter-spacing: -0.02em; }
.section-title em, .hire h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); font-size: 1.1em; }
.section-lead { color: var(--muted); font-size: 17px; max-width: 620px; margin: 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } }

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled { background: rgba(var(--bg-rgb), 0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--divider); }
/* Desktop: položky menu v strede, vpravo len prepínač farieb */
@media (min-width: 1001px) {
  .nav-links { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); opacity: 0.85; transition: color 0.2s, opacity 0.2s; }
.nav-links a:hover { color: var(--accent); opacity: 1; }
.nav-links a.is-premium { color: var(--accent); opacity: 1; }
.theme-toggle, .nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  background: rgba(var(--bg-rgb), 0.4); border: 1px solid var(--line); color: var(--text);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.theme-toggle:hover, .nav-burger:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
/* Prepínač akcentu: dve farebné bodky, aktívna je väčšia */
.theme-toggle { gap: 4px; width: auto; padding: 0 10px; border-radius: 999px; }
.theme-toggle .dot { width: 10px; height: 10px; border-radius: 50%; transition: transform 0.2s; }
.theme-toggle .dot-gold { background: #d9b35a; }
.theme-toggle .dot-teal { background: #00d4aa; }
html:not([data-accent="teal"]) .theme-toggle .dot-gold, html[data-accent="teal"] .theme-toggle .dot-teal { transform: scale(1.35); box-shadow: 0 0 0 2px rgba(255,255,255,0.25); }
.nav-burger { display: none; border-radius: 8px; }
@media (max-width: 1000px) {
  .nav { padding: 0 20px; }
  .nav-right { gap: 10px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(var(--bg-rgb), 0.97); border-top: 1px solid var(--line); padding: 8px 0 16px; }
  .nav-links.is-open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-burger { display: inline-flex; }
}

/* ── HERO (úvodná obrazovka) ──────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 0 36px; overflow: hidden;
  background: var(--hero-glow);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center right; z-index: 0; }
.hero-bg-mobile { display: none; }   /* mobilná fotka — zapína ju mobile.css */
/* Stmavenie fotky na desktope. Pravá polovica (kde je fotka) je o 10 % svetlejšia:
   vľavo 92 % → 35 % šírky 70 % → 65 % šírky 10 % → pravý okraj 35 %;
   hore 50 % → od 29 % výšky 0 % → od 71 % výšky rastie → dole 94 % */
.hero-bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(var(--bg-rgb),0.92) 0%, rgba(var(--bg-rgb),0.70) 35%, rgba(var(--bg-rgb),0.10) 65%, rgba(var(--bg-rgb),0.35) 100%),
              linear-gradient(180deg, rgba(var(--bg-rgb),0.50) 0%, rgba(var(--bg-rgb),0) 29%, rgba(var(--bg-rgb),0) 71%, rgba(var(--bg-rgb),0.94) 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 40px; align-items: center; }
.hero-kicker { margin-bottom: 22px; }
.hero-logo { display: none; }   /* logo v úvode len na mobile */
.hero-foot-logo { display: none; }
.hero-brandblock { display: contents; }
.hero-title { font-family: var(--head); font-weight: 700; font-size: clamp(40px, 6vw, 80px); line-height: 1.04; margin: 0 0 22px; letter-spacing: -0.025em; }
.hero-title .l1 { display: block; color: var(--accent); }
.hero-title .l2 { display: block; color: var(--text); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Premium tlačidlo je aj na desktope (tretie vedľa Portfólio a Spolupráca) */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 3px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: rgba(var(--accent-rgb),0.12); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-dark { background: #0c0c0c; color: var(--accent-2); border-color: #0c0c0c; }
.btn-dark:hover { background: #222; }

.hero-stats { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; text-align: right; }
.hero-stat-value { font-family: var(--head); font-weight: 600; font-size: 42px; line-height: 1; color: var(--text); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; margin-top: 6px; }
.hero-tagline { display: none; }
.hero-mobile-actions { display: none; }

.hero-foot { position: relative; z-index: 2; margin-top: 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hero-contacts { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-contact { display: flex; gap: 12px; align-items: center; white-space: nowrap; }
.hero-contact-icon { color: var(--accent); display: inline-flex; }
.hero-contact-label { font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); opacity: 0.85; }
.hero-contact a { font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.hero-contact-value { font-size: 14px; color: var(--muted); }
.hero-contact a:hover { color: var(--accent); border-color: var(--accent); }
.socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: all 0.2s ease; background: rgba(0,0,0,0.3);
}
.social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .hero { padding: 100px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: row; justify-content: flex-start; text-align: left; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 34px; }
  .hero-foot { margin-top: 48px; align-items: flex-start; }
  .hero-contacts { flex-direction: column; gap: 14px; }
  .hero-contact { white-space: normal; }
}

/* ── PORTFÓLIO (Netflix) ─────────────────────────────── */
.portfolio { padding: 0; background: #050505; color: #fff; scroll-margin-top: var(--nav-h); }
.portfolio-empty { padding: 60px 64px; color: rgba(255,255,255,0.6); }
.section-about { padding-top: 88px; }

/* ── O MNE ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; background: var(--bg3); border: 1px solid var(--line); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.about-photo-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--muted2); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 24px; background: radial-gradient(80% 60% at 50% 40%, rgba(var(--accent-rgb),0.12) 0%, rgba(var(--bg-rgb),0) 100%); }
.about-photo-ph img { width: 120px; height: auto; opacity: 0.5; }
.about-photo::after { content: ''; position: absolute; inset: auto -30px -30px auto; width: 180px; height: 180px; border: 1px solid rgba(var(--accent-rgb),0.35); transform: rotate(45deg); pointer-events: none; }
.about-text p { color: var(--muted); font-size: 17px; margin: 0 0 20px; }
.about-text p:first-of-type { color: var(--text); font-size: 19px; }
.about-facts { list-style: none; padding: 0; margin: 36px 0 0; border-top: 1px solid var(--line); }
.about-facts li { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.about-facts li span:first-child { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding-top: 4px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .about-photo { max-width: 420px; } .about-facts li { grid-template-columns: 1fr; gap: 4px; } }
/* O mne na desktope: fotka začína v rovnakej výške ako „O mne", nadpis na jeden riadok
   (veľkosť podľa šírky stĺpca), text zarovnaný do bloku s delením slov. Mobil sa nemení. */
@media (min-width: 901px) {
  .about-grid { align-items: start; }
  .about-text { container-type: inline-size; }
  .about-text .section-title { font-size: clamp(30px, 5.1cqi, 60px); }
  .about-text p { text-align: justify; -webkit-hyphens: auto; hyphens: auto; }
  .about-text p:first-of-type { font-size: 17.5px; }
}

/* ── KONTAKT ─────────────────────────────────────────── */
.section-contact { background: radial-gradient(60% 80% at 50% 100%, rgba(var(--accent-rgb),0.14) 0%, rgba(var(--bg-rgb),0) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-side p { color: var(--muted); font-size: 17px; margin: 0 0 28px; }
.contact-lines { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-line { display: flex; gap: 14px; align-items: center; font-size: 16px; }
.contact-line svg { color: var(--accent); flex-shrink: 0; }
.contact-line a:hover { color: var(--accent); }
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form textarea {
  width: 100%; background: var(--bg2); border: 1px solid var(--line); color: var(--text); border-radius: 4px;
  padding: 15px 16px; font-family: inherit; font-size: 15px; outline: none; transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus { border-color: var(--accent); }
.form textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } .form-row { grid-template-columns: 1fr; } }

/* ── NA STIAHNUTIE / PREMIUM ─────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.card {
  position: relative; padding: 30px 28px; border-radius: 8px; background: var(--bg2); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 4px; }
.card h3 { font-family: var(--head); font-weight: 600; font-size: 21px; margin: 0; line-height: 1.25; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 15px; margin: 0; flex: 1; }
.card-keyword { font-size: 12px; color: var(--muted2); letter-spacing: 0.06em; }
.card-keyword b { color: var(--accent); letter-spacing: 0.2em; font-family: monospace; font-size: 13px; }
.card-price { font-family: var(--head); font-weight: 600; font-size: 28px; color: var(--accent-2); }
.card .btn { align-self: flex-start; margin-top: 8px; }
/* Informačný štítok namiesto tlačidla (produkt bez odkazu) — nie je klikateľný */
.btn-static { background: rgba(255,255,255,0.05); color: rgba(243,241,236,0.62); border-color: rgba(255,255,255,0.15); cursor: default; }
.btn-static:hover { transform: none; }

/* ── Podklady zadarmo — Netflix pás vnútri .container ───────────────── */
.downloads-row { margin-top: 4px; }
.downloads-row .netflix-row { padding: 0; }
.downloads-row .netflix-row-title { display: none; }

/* Dlaždica podkladu — obrázok z videa a jediný nápis (Poppins) */
.dl-tile .netflix-landscape-poster-thumb { display: flex; align-items: center; justify-content: center; background-size: cover; }
.dl-tile-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.62) 100%); transition: background 0.25s ease; }
.dl-tile-label {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 600; font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.6);
  transition: color 0.2s ease;
}
.dl-tile-label svg { width: 18px; height: 18px; }
.dl-tile:hover .dl-tile-shade { background: linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.5) 100%); }
.dl-tile:hover .dl-tile-label { color: var(--accent-2); }

/* ── Okno s detailom podkladu ───────────────────────────────────────── */
.dl-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; }
.dl-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(6px); }
.dl-modal-panel {
  position: relative; width: min(520px, 100%); background: var(--bg2); border: 1px solid var(--line);
  border-radius: 12px; padding: 34px 34px 30px; box-shadow: 0 30px 90px rgba(0,0,0,0.65);
  transform: translateY(10px) scale(0.98); opacity: 0; transition: transform 0.24s ease, opacity 0.24s ease;
}
.dl-modal.is-in .dl-modal-panel { transform: none; opacity: 1; }
.dl-modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); cursor: pointer; transition: color 0.18s ease, border-color 0.18s ease; }
.dl-modal-close:hover { color: var(--accent); border-color: var(--accent); }
.dl-modal-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); margin-bottom: 18px; }
.dl-modal-panel h3 { font-family: var(--head); font-weight: 600; font-size: 26px; margin: 10px 0 12px; letter-spacing: -0.01em; }
.dl-modal-panel p { color: var(--muted); font-size: 14.5px; margin: 0 0 20px; }
.dl-modal-keyword { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px dashed rgba(var(--accent-rgb),0.45); border-radius: 8px; margin-bottom: 22px; }
.dl-modal-keyword span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.dl-modal-keyword b { font-family: var(--head); font-size: 20px; color: var(--accent-2); letter-spacing: 0.06em; }
.dl-modal-note { font-size: 12.5px; color: var(--muted2); margin-top: 14px; }

.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 34px 44px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.step { display: flex; gap: 14px; }
.step-num { font-family: var(--head); font-weight: 700; font-size: 30px; color: var(--accent); line-height: 1; }
.step b { display: block; font-size: 14px; margin-bottom: 4px; font-weight: 700; }
.step span { font-size: 13.5px; color: var(--muted); }

/* Akcentová sekcia (Premium) — zlatá alebo tyrkysová podľa témy */
.section.is-gold { background: var(--accent-section); color: var(--accent-section-ink); border-top: none; }
.section.is-gold .kicker, .section.is-gold .kicker::before, .section.is-gold .kicker::after { color: var(--accent-section-ink-2); }
.section.is-gold .section-title { color: var(--accent-section-ink); }
.section.is-gold .section-title em { color: #fffaf0; text-shadow: 0 2px 14px rgba(0,0,0,0.18); }
.section.is-gold .section-lead { color: var(--accent-section-ink); opacity: 0.88; font-weight: 500; }
.section.is-gold .card { background: rgba(8,8,8,0.94); border-color: rgba(8,8,8,0.3); color: #f3f1ec; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.section.is-gold .card:hover { border-color: #0c0c0c; }
.section.is-gold .card p { color: rgba(243,241,236,0.65); }
.section.is-gold .card-icon { border-color: var(--accent); color: var(--accent); }
.section.is-gold .card-price { color: var(--accent-2); }
.card-badge { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 4px 9px; border-radius: 2px; }

/* ── HIRE ME strip ───────────────────────────────────── */
.hire { padding: 90px 0; text-align: center; scroll-margin-top: var(--nav-h); background: radial-gradient(60% 80% at 50% 100%, rgba(var(--accent-rgb),0.12) 0%, rgba(var(--bg-rgb),0) 100%); }
.hire h2 { font-family: var(--head); font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); margin: 14px 0 12px; letter-spacing: -0.02em; }
.hire p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { border-top: 1px solid var(--divider); padding: 40px 0; }
/* Tri rovnaké stĺpce: text je v strede stránky, aj keď sú ikony vpravo širšie ako logo vľavo */
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-logo { display: flex; align-items: center; justify-self: start; }
.footer-logo img { height: 30px; width: auto; }
.footer-copy { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; text-align: center; }
.footer-grid > .socials { justify-self: end; }

/* ── Plávajúce tlačidlo „Napíš mi" (vpravo dole) ───────── */
.msg-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(var(--accent-rgb), 0.55);
  animation: fabBob 3.2s ease-in-out infinite, fabPulse 2.6s ease-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}
.msg-fab:hover { background: var(--accent-2); transform: scale(1.08); animation-play-state: paused; }
.msg-fab svg { width: 26px; height: 26px; }
.msg-fab-label {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--bg2); color: var(--text); border: 1px solid var(--line);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; white-space: nowrap;
  padding: 8px 12px; border-radius: 6px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.msg-fab:hover .msg-fab-label { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@keyframes fabBob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@keyframes fabPulse { 0% { box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(var(--accent-rgb), 0.55); } 100% { box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 18px rgba(var(--accent-rgb), 0); } }
@media (prefers-reduced-motion: reduce) { .msg-fab { animation: none; } }
body.nfx-lightbox-open .msg-fab { display: none; }

/* ── Reveal on scroll ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Draft badge — len keď je web otvorený s ?draft=1 (z adminu) */
.draft-badge { position: fixed; bottom: 16px; left: 16px; z-index: 200; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 12px; border-radius: 4px; box-shadow: 0 6px 20px rgba(0,0,0,0.5); }
.draft-badge a { color: inherit; text-decoration: underline; margin-left: 8px; }
