/* Antira — nový web
   Identita: Držíme dvere, kým prejdú.
   Golden Hour Civic · editorial · nie šablóna · nie trend */
:root {
  --ink: #121a16;
  --forest: #163326;
  --moss: #2a4a3a;
  --leaf: #3d6b52;
  --gold: #d4a72c;
  --gold-soft: #e8c96a;
  --gold-deep: #6f5610;
  --paper: #f4f6f3;
  --paper-warm: #eceee9;
  --white: #fafbf9;
  --muted: #5c6a62;
  --line: rgba(18, 26, 22, 0.12);
  --line-soft: rgba(18, 26, 22, 0.07);
  --shadow: 0 32px 80px rgba(18, 26, 22, 0.18);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 6.5rem;
  --max: 1180px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-media img { transform: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline-color: var(--gold-soft);
}
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 640;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
.muted { color: var(--muted); }

.wrap { width: min(var(--max), calc(100% - 2.75rem)); margin-inline: auto; }
.wrap-narrow { width: min(640px, calc(100% - 2.75rem)); margin-inline: auto; }
.wrap-wide { width: min(1360px, calc(100% - 1.5rem)); margin-inline: auto; }

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-solid {
  background: rgba(250, 251, 249, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.site-header.is-solid .brand,
.site-header.is-solid .nav-links a { color: var(--ink); }
.site-header.is-solid .nav-links a:hover { color: var(--forest); }
.site-header.is-solid .brand-mark--light { display: none; }
.site-header.is-solid .brand-mark--dark { display: block; }
.site-header:not(.is-solid) .brand-mark--dark { display: none; }
.site-header:not(.is-solid) .brand-mark--light { display: block; }
.site-header.is-solid .nav-links .cta {
  background: var(--forest);
  color: var(--white) !important;
}
.site-header.is-solid .nav-links .cta:hover { background: var(--moss); }

.nav-inner {
  width: min(var(--max), calc(100% - 1.75rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}
.brand img {
  height: 80px;
  width: auto;
  max-width: none;
  max-height: none;
}
.site-header .brand img {
  height: 80px;
  width: auto;
  max-width: none;
}
.site-footer .brand img {
  height: 56px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.1rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links .cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.nav-links .cta:hover { background: var(--gold-soft); color: var(--ink) !important; }
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  padding: 0.5rem 0.85rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
}
.site-header.is-solid .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn-ink { background: var(--forest); color: var(--white); }
.btn-ink:hover { background: var(--moss); }
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hero B: mierne doľava — menej ťažkého pravého kmeňa, viac skupina tvárí */
  object-position: 35% 30%;
  transform: none;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 23, 19, 0.42) 0%,
      rgba(15, 23, 19, 0.06) 22%,
      transparent 38%,
      transparent 52%,
      rgba(15, 23, 19, 0.55) 78%,
      rgba(15, 23, 19, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.75rem));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) 0 5rem;
}
.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 7.2vw, 4.75rem);
  font-weight: 650;
  margin-bottom: 1rem;
  text-wrap: balance;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.12s forwards;
}
.hero .lede {
  max-width: 32rem;
  font-size: clamp(1.12rem, 2.1vw, 1.32rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.28s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 1.1s var(--ease) 0.42s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ——— Audio (Domov) ——— */
.audio-block { max-width: 40rem; }
.audio-block .gold-rule {
  width: 3rem;
  height: 2px;
  border: 0;
  margin: 0 0 1.25rem;
  background: var(--gold);
}
.audio-block h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  margin: 0.35rem 0 0.75rem;
}
.audio-block > .muted { margin-bottom: 1.75rem; }
.audio-tracks {
  display: grid;
  gap: 1.35rem;
}
.audio-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
}
.audio-track audio {
  display: block;
  width: 100%;
  height: 2.75rem;
  accent-color: var(--forest);
}

/* ——— Sections ——— */
.section { padding: 7rem 0; }
.section--tight { padding: 5rem 0; }
.section--flush { padding-bottom: 0; }
.section--flush-top { padding-top: 0; }
.section-head { max-width: 34rem; margin-bottom: 3.25rem; }
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section-head h2,
.split-copy h2 {
  font-size: clamp(2.05rem, 3.8vw, 3rem);
  text-wrap: balance;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split-visual {
  position: relative;
}
.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
/* S2 Prečo existujeme: jemne doprava — menej tanku vľavo, viac skupina ľudí */
#preco .split-visual img {
  object-position: 62% 42%;
}
.split-copy .gold-rule {
  width: 2.75rem;
  height: 2px;
  background: var(--gold);
  margin: 0 0 1.5rem;
  border: 0;
}

/* Tri cesty — foto + typografia */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.path-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.path-visual {
  display: block;
  overflow: hidden;
  margin-bottom: 1.35rem;
  aspect-ratio: 4 / 3;
}
.path-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.path-item:hover .path-visual img { transform: scale(1.03); }
.path-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}
.path-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.65rem;
}
.path-item p {
  color: var(--muted);
  margin-bottom: 1.15rem;
  max-width: 32ch;
  flex: 1;
}
.path-item a {
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.1rem;
  align-self: flex-start;
}
.path-item a:hover { color: var(--gold-deep); }

/* Forest band — foto + ticho */
.band {
  position: relative;
  color: var(--white);
  padding: 6.5rem 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.band-media {
  position: absolute;
  inset: 0;
}
.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}
/* S4 Zapojte sa · g-17: ľudia vľavo, text dominantný */
#zapojte .band-media img {
  object-position: 28% 42%;
  filter: saturate(0.78);
}
.band-veil {
  position: absolute;
  inset: 0;
  /* Text vľavo čitateľný; tváre vpravo odhalené */
  background:
    linear-gradient(100deg,
      rgba(15, 30, 24, 0.9) 0%,
      rgba(15, 30, 24, 0.72) 38%,
      rgba(15, 30, 24, 0.28) 68%,
      rgba(15, 30, 24, 0.12) 100%);
}
/* Busy stanica: silnejší ľavý veil, aby H2/CTA vyhrali */
#zapojte .band-veil {
  background:
    linear-gradient(100deg,
      rgba(15, 30, 24, 0.94) 0%,
      rgba(15, 30, 24, 0.86) 34%,
      rgba(15, 30, 24, 0.55) 58%,
      rgba(15, 30, 24, 0.28) 100%);
}
.band .wrap { position: relative; z-index: 1; }
.band .eyebrow { color: var(--gold-soft); }
.band h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.2vw, 3.35rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}
.band p {
  max-width: 32rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 2rem;
  font-size: 1.12rem;
}
.band-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Príbehy — editorial list + náhľady */
.stories { border-top: 1px solid var(--line); }
.story-row {
  display: grid;
  grid-template-columns: 5.5rem 4.5rem 1fr auto;
  gap: 1.15rem 1.35rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.35s var(--ease);
}
.story-row:hover { background: linear-gradient(90deg, rgba(212,167,44,0.08), transparent 55%); }
.story-row:hover h3 { color: var(--forest); }
.story-thumb {
  width: 4.5rem;
  height: 4.5rem;
  aspect-ratio: 1;
  overflow: hidden;
}
.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.story-row:hover .story-thumb img { transform: scale(1.05); }
.story-row time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
}
.story-row h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0;
  font-weight: 600;
  max-width: 28ch;
  transition: color 0.3s var(--ease);
}
.story-row .arrow {
  color: var(--gold-deep);
  font-size: 1.35rem;
  transition: transform 0.35s var(--ease);
}
.story-row:hover .arrow { transform: translateX(4px); }

/* Galéria — full-bleed mozaika */
.gallery-home {
  padding: 7rem 0 5rem;
  background: var(--paper-warm);
}
.gallery-home .section-head { margin-left: max(0px, calc((100% - var(--max)) / 2 + 1.375rem)); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, 18vw);
  gap: 0.45rem;
  width: min(1360px, 100%);
  margin-inline: auto;
  padding-inline: 0.45rem;
}
.mosaic a {
  display: block;
  overflow: hidden;
  position: relative;
}
.mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 24, 0);
  transition: background 0.4s var(--ease);
}
.mosaic a:hover::after { background: rgba(15, 30, 24, 0.12); }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .m1 { grid-column: span 5; grid-row: span 2; }
.mosaic .m2 { grid-column: span 3; grid-row: span 2; }
.mosaic .m3 { grid-column: span 4; grid-row: span 1; }
.mosaic .m4 { grid-column: span 4; grid-row: span 1; }
.mosaic .m5 { grid-column: span 4; grid-row: span 2; }
.mosaic .m6 { grid-column: span 4; grid-row: span 2; }
.mosaic .m7 { grid-column: span 4; grid-row: span 2; }
.gallery-home .section-cta-row {
  width: min(var(--max), calc(100% - 2.75rem));
  margin: 2rem auto 0;
}

/* Podpora — dôstojný záver */
.support-band {
  position: relative;
  color: var(--white);
  padding: 5.5rem 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.support-band .band-media,
.support-band .band-veil { position: absolute; inset: 0; }
.support-band .band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.support-band .band-veil {
  background:
    linear-gradient(105deg,
      rgba(15, 30, 24, 0.92) 0%,
      rgba(15, 30, 24, 0.78) 45%,
      rgba(15, 30, 24, 0.4) 100%);
}
.support-band .wrap { position: relative; z-index: 1; }
.support-band .eyebrow { color: var(--gold-soft); }
.support-band h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--white);
  margin-bottom: 0.85rem;
}
.support-band p {
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.85rem;
  font-size: 1.12rem;
}

/* Page interiors */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.6rem);
  max-width: 14ch;
}
.page-hero p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}
.prose { max-width: 40rem; }
.prose h2 { font-size: 1.55rem; margin-top: 2.5rem; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: 0.45rem; }
.prose .doc-list { list-style: none; padding: 0; }
.prose .doc-list li { margin-bottom: 0.75rem; }
.prose .doc-list a { color: var(--forest); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.prose .doc-list a:hover { color: var(--gold-deep); }

.notice-archive {
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  background: var(--paper-warm);
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 40rem;
}

.link-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}
.link-card {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.link-card:hover .link-card-title { color: var(--gold-deep); }
.link-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.35rem;
  transition: color 0.25s var(--ease);
}
.link-card p { margin: 0; color: var(--muted); max-width: 36rem; }

.simple-form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
  margin-top: 1.5rem;
}
.simple-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
}
.simple-form input,
.simple-form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.simple-form input:focus,
.simple-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: transparent;
}
.simple-form textarea { min-height: 7rem; resize: vertical; }
.simple-form .form-note { margin: 0; font-size: 0.92rem; color: var(--muted); font-weight: 400; }
.archive-figure {
  margin: 1.5rem 0 0;
  max-width: 40rem;
}
.archive-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}
.archive-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.team-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 28rem;
}
.team-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
  color: var(--forest);
}

.choice-grid {
  border-top: 1px solid var(--line);
}
.choice {
  display: block;
  padding: 2.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.35s var(--ease);
}
.choice:hover { padding-left: 0.6rem; }
.choice h2 { font-size: 1.85rem; margin-bottom: 0.5rem; }
.choice p { color: var(--muted); margin: 0; max-width: 38rem; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.75rem 3rem;
  align-items: stretch;
}
.contact-panel__title {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 0.35rem 0 0.85rem;
}
.contact-panel__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.25rem;
}
.contact-card {
  padding-top: 1.35rem;
  border-top: 2px solid var(--gold);
}
.contact-card h3 { font-size: 1rem; margin-bottom: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { color: var(--forest); font-weight: 700; text-decoration: none; }
.contact-card a:hover { border-bottom: 1px solid var(--gold); }
.contact-card .map-link { margin-top: 0.65rem; font-size: 0.95rem; }
.map-block { margin-top: 3.5rem; max-width: 52rem; }
.map-block h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 0.35rem 0 1.15rem;
}
.map-block--aside {
  margin-top: 0;
  max-width: none;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 16rem;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  overflow: hidden;
}
.map-frame--tall {
  aspect-ratio: auto;
  flex: 1;
  min-height: 22rem;
  height: 100%;
}
.map-frame--inline {
  margin: 1.5rem 0 0.85rem;
  max-width: 40rem;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-link { margin: 0 0 1em; font-size: 0.98rem; }
.map-link a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.map-link a:hover { color: var(--gold-deep); }
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 1.75rem 0 0;
  font-size: 0.98rem;
}
.map-actions a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.map-actions a:hover { color: var(--gold-deep); }
.map-caption { margin-top: 1rem; max-width: 36rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 0.5rem;
}
.gallery-grid a {
  overflow: hidden;
  display: block;
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-grid a:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-grid a:nth-child(2) { grid-column: span 5; grid-row: span 3; }
.gallery-grid a:nth-child(5) { grid-column: span 5; grid-row: span 2; }
.gallery-grid a:nth-child(6) { grid-column: span 7; grid-row: span 2; }
.gallery-grid a:nth-child(9) { grid-column: span 8; grid-row: span 2; }
.gallery-grid a:nth-child(10) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.035); }

/* Story article */
.article { padding-bottom: 5rem; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.article-meta time {
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.article-lead {
  font-size: 1.32rem;
  line-height: 1.5;
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.article-figure {
  margin: 0 0 2.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article .prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  float: left;
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.12rem;
  color: var(--forest);
}
.article-nav {
  margin-top: 3.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-nav a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}
.article-nav a:hover { color: var(--gold-deep); }

.values {
  border-top: 1px solid var(--line);
  margin-top: 2.75rem;
}
.value-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.value-row strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
}
.value-row p { margin: 0; color: var(--muted); }

.iban-box {
  margin: 2.25rem 0;
  padding: 1.75rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--line);
}
.iban-box code {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 4.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer .brand { color: var(--white); margin-bottom: 0.85rem; }
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

/* Motion — reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

.muted-note { margin: 0; }
.prose-gap { margin-top: 3rem; }
.stack-gap { margin-top: 2.5rem; }

@media (max-width: 960px) {
  .site-header .brand img { height: 66px; }
  .site-header .brand-name { font-size: 1.12rem; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250,251,249,0.98);
    padding: 1.15rem 1.35rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    box-shadow: 0 22px 48px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--ink) !important; }
  .nav-links .cta { text-align: center; }
  .split { grid-template-columns: 1fr; }
  .split-visual::before { display: none; }
  .paths { grid-template-columns: 1fr; }
  .path-item { padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
  .path-item:last-child { border-bottom: 0; }
  .story-row {
    grid-template-columns: 4.5rem 1fr auto;
    gap: 0.75rem 1rem;
  }
  .story-row time {
    grid-column: 2;
    grid-row: 1;
  }
  .story-thumb { grid-row: 1 / span 2; }
  .story-row h3 { grid-column: 2; }
  .split-visual::before { display: none; }
  .hero-brand span { font-size: 1.85rem; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .mosaic .m1, .mosaic .m2, .mosaic .m3, .mosaic .m4,
  .mosaic .m5, .mosaic .m6, .mosaic .m7 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .mosaic .m1 { grid-column: span 2; grid-row: span 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .map-frame--tall {
    aspect-ratio: 16 / 9;
    min-height: 16rem;
    height: auto;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .gallery-grid a,
  .gallery-grid a:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .value-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .gallery-home .section-head { margin-left: 1.375rem; }
  .hero-brand span { font-size: 1.85rem; }
  .section { padding: 4.5rem 0; }
}

/* ——— Lightbox (fotky bez odchodu zo stránky) ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(18, 26, 22, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 5.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.lightbox__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(250, 251, 249, 0.35);
  border-radius: var(--radius);
  background: rgba(18, 26, 22, 0.75);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.lightbox__hint {
  margin: 0;
  color: rgba(250, 251, 249, 0.72);
  font-size: 0.9rem;
  text-align: center;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 640px) {
  .lightbox { padding: 3.75rem 0.75rem 1rem; }
  .lightbox__close {
    top: 0.65rem;
    right: 0.65rem;
    left: 0.65rem;
    width: auto;
    min-height: 3.15rem;
  }
  .lightbox__img { max-height: calc(100vh - 7rem); }
}
