/* =========================================================
   ZLATÝ ŽIVOT n. o. – hlavný štýl webu
   Paleta: teplá krémová + jemná zlatá
   ========================================================= */

/* ---------- Písma ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Dizajnové premenné ---------- */
:root {
  --bg: #FBF8F2;
  --bg-alt: #F5EFE3;
  --surface: #FFFFFF;
  --ink: #33302A;
  --muted: #6B6353;
  --gold: #B98C4F;
  --gold-deep: #8A6430;
  --gold-soft: #EBDFC8;
  --line: #E7DECD;
  --success: #2E6B3F;
  --error: #A03E2E;
  --shadow-sm: 0 2px 10px rgba(90, 70, 40, 0.07);
  --shadow-md: 0 10px 32px rgba(90, 70, 40, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17 px – dobre čitateľné aj pre seniorov */
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { max-width: 68ch; }

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--gold); }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-soft); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 200;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Pomocné triedy ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section { padding-block: clamp(3.5rem, 8vw, 5.5rem); }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center p { margin-inline: auto; }
.section-head p { margin-top: 0.9rem; color: var(--muted); }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.overline::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head.center .overline::after {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ---------- Tlačidlá ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold-deep);
  color: #fff;
}
.btn-primary:hover {
  background: #6F4F24;
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Hlavička ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(45deg); }
.brand-text {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.site-nav > a:not(.btn) {
  position: relative;
  padding: 0.5rem 0.1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0.1rem;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav > a[aria-current="page"] { color: var(--gold-deep); }
.site-nav .btn { padding: 0.55rem 1.3rem; min-height: 44px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  padding: 12px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Úvodná sekcia (hero) ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 6.5rem) clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -260px; right: -220px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 140, 79, 0.16), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero-copy .lead {
  margin-top: 1.3rem;
  font-size: 1.14rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.hero-phone a {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  text-decoration: none;
}
.hero-phone a:hover { color: var(--gold-deep); }
.hero-phone svg { color: var(--gold-deep); }

/* Postupné objavenie prvkov hero sekcie */
.hero-copy > * {
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.45s; }

.hero-media {
  position: relative;
  animation: fadeScale 0.9s var(--ease) 0.3s both;
}
.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  z-index: -1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.96) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Karty predností ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Delené sekcie (obrázok + text) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: clamp(2.2rem, 6vw, 4.5rem);
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy p { color: var(--muted); margin-bottom: 1rem; }
.split-copy .btn { margin-top: 0.8rem; }

.check-list {
  list-style: none;
  margin: 1.3rem 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.check-list svg {
  flex-shrink: 0;
  margin-top: 0.28rem;
  color: var(--gold-deep);
}

/* ---------- Galéria ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9rem, 2vw, 1.3rem);
}
.gallery-grid.preview { grid-template-columns: repeat(3, 1fr); }

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  text-align: left;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption,
.gallery-item .caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem 1rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(40, 32, 18, 0.72));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption,
.gallery-item:hover .caption,
.gallery-item:focus-visible .caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-more { text-align: center; margin-top: 2.4rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(30, 25, 16, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 74vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-caption {
  margin-top: 1rem;
  color: #EFE8DA;
  font-size: 1rem;
  text-align: center;
}
.lightbox-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.26); transform: scale(1.08); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* ---------- Výzva na kontakt (CTA pás) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #3A3126, #574427);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: #F5EFE3;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -140px; right: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 140, 79, 0.35), transparent 70%);
}
.cta-band h2 { color: #FDFAF4; margin-bottom: 0.8rem; }
.cta-band p {
  margin-inline: auto;
  margin-bottom: 1.8rem;
  color: #D9CFBC;
}
.cta-band .btn-primary { background: var(--gold); color: #2B2417; }
.cta-band .btn-primary:hover { background: #CDA05F; color: #2B2417; }
.cta-band .cta-phone {
  display: block;
  margin-top: 1.4rem;
  color: #D9CFBC;
  font-size: 0.98rem;
}
.cta-band .cta-phone a { color: #FDFAF4; font-weight: 700; text-decoration: none; }
.cta-band .cta-phone a:hover { color: var(--gold); }

/* ---------- Hlavička podstránky ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
  background: var(--bg-alt);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -180px; right: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 140, 79, 0.18), transparent 65%);
}
.page-hero h1 { animation: fadeUp 0.7s var(--ease) both; }
.page-hero p {
  margin-top: 1rem;
  max-width: 620px;
  color: var(--muted);
  animation: fadeUp 0.7s var(--ease) 0.12s both;
}
.page-hero .overline { animation: fadeUp 0.7s var(--ease) both; }

/* ---------- Hodnoty ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.value-card .feature-icon { width: 50px; height: 50px; margin-inline: auto; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- Karta vedenia ---------- */
.person-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.person-card h3 { margin-bottom: 0.4rem; }
.person-card .role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.person-card .person-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
  font-size: 0.96rem;
  color: var(--muted);
}
.person-card .person-contact a { text-decoration: none; font-weight: 600; }

/* ---------- Kontaktná stránka ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-cards { display: grid; gap: 1.1rem; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.contact-card .feature-icon {
  width: 48px; height: 48px;
  margin-bottom: 0;
  border-radius: 12px;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-card p, .contact-card address {
  font-style: normal;
  font-size: 0.98rem;
  color: var(--muted);
}
.contact-card a { text-decoration: none; font-weight: 600; }

/* Formulár */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 1.6rem; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:hover,
.form-field textarea:hover { border-color: var(--gold); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(138, 100, 48, 0.14);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: var(--error); }
.field-error {
  display: none;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--error);
}
.field-error.show { display: block; }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.4rem 0 1.4rem;
  font-size: 0.94rem;
  color: var(--muted);
  cursor: pointer;
}
.checkbox-field input {
  width: 21px; height: 21px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold-deep);
  cursor: pointer;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  margin-top: 1.1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  animation: fadeUp 0.4s var(--ease) both;
}
.form-status.success {
  display: block;
  background: #E8F2E9;
  color: var(--success);
  border: 1px solid #BFDCC5;
}
.form-status.error {
  display: block;
  background: #F9E9E5;
  color: var(--error);
  border: 1px solid #EAC4BA;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Mapa */
.map-wrap {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.85);
}

/* ---------- Pätička ---------- */
.site-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: #322B20;
  color: #CFC5B2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(2.8rem, 6vw, 4rem);
}
.site-footer .brand { color: #FDFAF4; margin-bottom: 1rem; }
.site-footer .brand-text small { color: var(--gold); }
.site-footer p { font-size: 0.96rem; }
.site-footer h3 {
  color: #FDFAF4;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: grid; gap: 0.55rem; }
.footer-links a {
  color: #CFC5B2;
  text-decoration: none;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact { list-style: none; display: grid; gap: 0.8rem; font-style: normal; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.96rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 0.25rem; color: var(--gold); }
.footer-contact a { color: #CFC5B2; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9C9280;
}
.footer-credit a {
  color: #CFC5B2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-credit a:hover { color: var(--gold); }
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; }
}

/* ---------- Animácie pri skrolovaní ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease) var(--d, 0s), transform 0.75s var(--ease) var(--d, 0s);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Obmedzený pohyb ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responzivita ---------- */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.4rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav > a:not(.btn) { padding: 0.8rem 0.2rem; font-size: 1.05rem; }
  .site-nav > a:not(.btn)::after { display: none; }
  .site-nav > a[aria-current="page"] { font-weight: 700; }
  .site-nav .btn { margin-top: 0.8rem; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 640px) {
  .gallery-grid, .gallery-grid.preview { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .person-card { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .map-wrap iframe { height: 320px; }
}

@media (max-width: 420px) {
  .gallery-grid, .gallery-grid.preview { grid-template-columns: 1fr; }
}

/* ---------- Kroky prijatia ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
}
.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.7rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.step-num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.step-card h3 { margin-bottom: 0.6rem; }
.step-card p { color: var(--muted); font-size: 0.99rem; }

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 820px;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  padding: 1.2rem 1.5rem;
  background: var(--gold-soft);
  border-radius: var(--radius);
  color: #5C4A28;
}
.info-note svg { flex-shrink: 0; margin-top: 0.25rem; color: var(--gold-deep); }
.info-note a { font-weight: 700; }

/* ---------- Dokumenty na stiahnutie ---------- */
.docs-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
}
.doc-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.doc-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-soft);
}
.doc-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.doc-name { font-weight: 600; }
.doc-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .doc-item { flex-wrap: wrap; }
  .doc-badge { margin-left: 3.6rem; }
}
