/* ErfolgBau — verejný web. Zdroj: website_all_views/root.html (inline <style>).
   Needituj tu dizajn ad-hoc — je to 1:1 prevzatá predloha. */
:root {
  --bg: #FAF7EF;
  --paper: #F6F0E4;
  --bg-2: #F0E9D8;
  --bg-3: #E8DFC9;
  --ink: #1A1410;
  --ink-2: #3A2F25;
  --ink-3: #6E5F4F;
  --ink-4: #A89880;
  --border: #E0D5BB;
  --border-strong: #C9BB9A;
  --accent: #D45A1F;
  --accent-deep: #B84715;
  --accent-soft: #FAE3D1;
  --brand-deep: #2A2218;
  --brand-mid: #4A3B2D;
  --cream: #F4EAD2;
  --success: #4E6B3A;
  --success-soft: #E6EDD9;
  --warning: #BA8A26;
  --danger: #993322;

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter Tight', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv11";
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 239, 0.86);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: background 200ms var(--ease-out);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color 180ms var(--ease-out);
}
.nav-link:hover { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  gap: 1px;
  background: var(--bg-3);
  border-radius: 100px;
  padding: 2px;
}
.lang-btn {
  padding: 6px 11px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.lang-btn.active { background: var(--ink); color: white; }

.nav-cta {
  display: none;
  height: 40px;
  padding: 0 18px;
  border-radius: 100px;
  background: var(--ink);
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-items: center;
  gap: 8px;
  transition: background 180ms var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.nav-cta span { white-space: nowrap; }
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { background: var(--brand-mid); }

.nav-burger {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-3);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger svg { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu .nav-link {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.025em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://unoneto.sk/ponuky/erfolgbau/photos/K5_sunset_scaffolding_silhouette.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.3) 0%, rgba(26, 20, 16, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 14px;
  background: rgba(212, 90, 31, 0.12);
  border: 1px solid rgba(212, 90, 31, 0.35);
  border-radius: 100px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: white;
  max-width: 14ch;
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-feature-settings: "ss01";
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--cream);
  max-width: 56ch;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 100px;
  background: var(--accent);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 100px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; }

/* Hero stats inline */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
}
@media (min-width: 720px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat-num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 350;
  font-variation-settings: "opsz" 96, "WONK" 1;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
  font-feature-settings: "tnum";
  margin-bottom: 6px;
}
.hero-stat-num em { font-style: italic; color: var(--accent); font-size: 0.65em; }
.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(244, 234, 210, 0.7);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DUAL CTA STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.dual-strip {
  background: var(--brand-deep);
  border-top: 1px solid rgba(244, 234, 210, 0.08);
}
.dual-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .dual-strip-grid { grid-template-columns: 1fr 1fr; } }
.dual-card {
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  cursor: pointer;
  transition: background 240ms var(--ease-out);
}
@media (min-width: 768px) {
  .dual-card { padding: 64px 48px; }
  .dual-card:first-child { padding-left: 0; }
  .dual-card:last-child { padding-right: 0; padding-left: 48px; }
}
.dual-card:first-child { border-bottom: 1px solid rgba(244, 234, 210, 0.08); }
@media (min-width: 768px) {
  .dual-card:first-child { border-bottom: none; border-right: 1px solid rgba(244, 234, 210, 0.08); }
}

/* Default hover (mobile alebo single column) */
.dual-card:hover { background: rgba(212, 90, 31, 0.06); }

/* Desktop: asymetrický gradient hover — ľavá karta fade-in zľava, pravá fade-in sprava */
@media (min-width: 768px) {
  .dual-card:first-child:hover {
    background: linear-gradient(90deg, rgba(212, 90, 31, 0) 0%, rgba(212, 90, 31, 0.06) 50%, rgba(212, 90, 31, 0.10) 100%);
  }
  .dual-card:last-child:hover {
    background: linear-gradient(270deg, rgba(212, 90, 31, 0) 0%, rgba(212, 90, 31, 0.06) 50%, rgba(212, 90, 31, 0.10) 100%);
  }
}
.dual-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.dual-card-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 380;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: white;
  margin: 0;
}
.dual-card-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.dual-card-text {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
}
.dual-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.dual-card-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; transition: transform 200ms var(--ease-out); }
.dual-card:hover .dual-card-arrow svg { transform: translateX(4px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION COMMON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.section.alt { background: var(--paper); }
.section.dark { background: var(--brand-deep); color: var(--cream); }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 350;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 0 24px;
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; font-variation-settings: "opsz" 96, "SOFT" 60; }
.section.dark .section-title { color: white; }
.section-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0 0 56px;
}
.section.dark .section-lead { color: var(--cream); opacity: 0.85; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head-row > div:first-child { flex: 1; min-width: 320px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES (B2B partneri)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 240ms var(--ease-out), transform 240ms var(--ease-out);
}
.section.alt .service-card { background: var(--bg); }
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.75; }
.service-name {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 25;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.service-name em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.service-text {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS (before/after)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .process-step {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
  }
  .process-step.reverse { grid-template-columns: 1.2fr 1fr; }
  .process-step.reverse .process-step-text { order: 2; }
  .process-step.reverse .process-step-visual { order: 1; }
}
.process-step:last-child { margin-bottom: 0; }
.process-step-num {
  font-family: var(--f-display);
  font-size: 88px;
  font-weight: 350;
  font-variation-settings: "opsz" 144, "WONK" 1;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  font-feature-settings: "tnum";
  margin-bottom: 12px;
  opacity: 0.9;
}
.process-step-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 380;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.process-step-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.process-step-text {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.6;
}
.process-step-text strong { color: var(--ink); font-weight: 700; }

.process-step-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.process-step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-split {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.before-after-side {
  position: relative;
  overflow: hidden;
}
.before-after-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}
.before-after-label.before { background: rgba(26, 20, 16, 0.85); color: white; }
.before-after-label.after { background: var(--accent); color: white; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROJECTS (aktuálne stavby)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), border-color 240ms var(--ease-out);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.project-card-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.project-card-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.project-card-status.active { background: var(--accent); color: white; }
.project-card-body { padding: 24px; }
.project-card-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.project-card-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 25;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 6px;
}
.project-card-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.project-card-client { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.project-card-details {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--ink-3);
}
.project-card-details strong { display: block; color: var(--ink); font-size: 14px; margin-top: 2px; font-feature-settings: "tnum"; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOR WORKERS (B2C nábor)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.workers-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) { .workers-feature { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.workers-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.workers-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.workers-bullet-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--cream);
  background: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.workers-bullet-body { flex: 1; }
.workers-bullet-title {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 25;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  color: white;
}
.workers-bullet-text {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.55;
}

.workers-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.workers-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TEAM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(6, 1fr); } }

.team-card {
  display: flex;
  flex-direction: column;
}
.team-photo {
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
  margin-bottom: 14px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 25;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.team-name em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.team-role {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPLIANCE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) { .compliance-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.compliance-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 60px -20px rgba(26, 20, 16, 0.3);
}
.compliance-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.compliance-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.compliance-item:last-child { border-bottom: none; }
.compliance-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compliance-icon svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; }
.compliance-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.compliance-text {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STORY (Jozef)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.story-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: var(--brand-deep);
}
.story-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://unoneto.sk/ponuky/erfolgbau/photos/L1_worker_calls_family.jpg');
  background-size: cover;
  background-position: center;
}
.story-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0) 30%, rgba(26, 20, 16, 0.92) 100%);
}
.story-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  max-width: 720px;
}
@media (max-width: 559px) { .story-content { padding: 36px 28px; } }
.story-quote {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 380;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: white;
  margin: 0 0 24px;
}
.story-quote em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.story-attr {
  display: flex;
  gap: 14px;
  align-items: center;
  color: white;
}
.story-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.story-attr-name { font-weight: 700; font-size: 15px; }
.story-attr-role { font-size: 12px; opacity: 0.7; letter-spacing: 0.04em; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.contact-flag-emoji {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.contact-flag-emoji.de {
  background: linear-gradient(180deg, #000 0%, #000 33%, #DD0000 33%, #DD0000 66%, #FFCE00 66%);
}
.contact-flag-emoji.sk {
  background: linear-gradient(180deg, white 0%, white 33%, #0B4EA2 33%, #0B4EA2 66%, #EE1C25 66%);
}
.contact-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  letter-spacing: -0.025em;
  margin: 0;
}
.contact-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.contact-rows { display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; }
.contact-row-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 2px;
}
.contact-row-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA strip
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cta-strip {
  background: var(--accent);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta-strip-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 350;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-title em { font-style: italic; color: white; font-feature-settings: "ss01"; opacity: 0.85; }
.cta-strip-text {
  font-size: 17px;
  opacity: 0.9;
  margin: 0 auto 36px;
  max-width: 52ch;
}
.cta-strip .btn-primary {
  background: var(--ink);
  color: white;
}
.cta-strip .btn-primary:hover { background: var(--brand-mid); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
  background: var(--brand-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-brand-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 30;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 8px;
}
.footer-brand-title em { font-style: italic; color: var(--accent); font-feature-settings: "ss01"; }
.footer-brand-sub { font-size: 13px; opacity: 0.7; line-height: 1.55; margin-bottom: 20px; max-width: 36ch; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 180ms var(--ease-out), color 180ms var(--ease-out);
}
.footer-link:hover { opacity: 1; color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(244, 234, 210, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: rgba(244, 234, 210, 0.5);
  letter-spacing: 0.04em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Toast
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink);
  color: white;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1000;
  transition: transform 320ms var(--ease-out);
  pointer-events: none;
  box-shadow: 0 10px 30px -10px rgba(26, 20, 16, 0.4);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Animations
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.fade-in.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow::before { animation: none; }
}
