 :root {
      --brand: #EE762A;
      --black: #000;
      --white: #fff;
      --text: #EDEDED;
      --muted: #A7A7A7;
      --maxw: 1200px;
    }

    /* ===== Base / Reset ===== */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0; color: var(--text);
      font-family: 'Bebas Neue', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      letter-spacing: .3px; background: var(--black);
      /* high-tech grid background */
      --grid: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 100px),
              repeating-linear-gradient(0deg,  rgba(255,255,255,.06) 0 1px, transparent 1px 100px);
      background-image: radial-gradient(1200px 600px at 15% 10%, rgba(238,118,42,.13) 0%, transparent 70%), var(--grid);
      background-attachment: fixed;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }
    .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

    /* ===== Header / Glass Nav ===== */
    .header { position: sticky; top: 0; z-index: 60; }
    .nav-wrap {
      backdrop-filter: blur(10px) saturate(140%);
      background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55));
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }

    .logo { display: flex; align-items: center; gap: 14px; color: var(--white); }
    .logo__mark {
      width: 40px; height: 40px; border-radius: 12px; position: relative; isolation: isolate;
      background: var(--brand);
      box-shadow: 0 8px 30px rgba(238,118,42,.45);
      overflow: hidden;
    }
    .logo__mark::after {
      content: ""; position: absolute; inset: -40% -40% auto auto;
      background: linear-gradient(120deg, rgba(255,255,255,.6), transparent 60%);
      transform: rotate(20deg);
      mix-blend-mode: screen;
    }
    .logo__text { font-size: 34px; letter-spacing: 1.8px; }

    .menu { display: flex; align-items: center; gap: 34px; }
    .menu a { position: relative; font-size: 22px; color: #E8E8E8; }
    .menu a::after {
      content: ""; position: absolute; left: 0; bottom: -8px; height: 3px; width: 0; border-radius: 3px;
      background: linear-gradient(90deg, var(--brand), rgba(238,118,42,.2)); transition: width .25s ease;
    }
    .menu a:hover::after { width: 100%; }

    .nav-toggle { display: none; background: none; border: 0; width: 48px; height: 48px; color: var(--white); cursor: pointer; }
    .nav-toggle svg { width: 28px; height: 28px; }

    @media (max-width: 980px) {
      .menu { display: none; }
      .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
      .drawer {
        position: fixed; inset: 84px 0 auto 0; background: rgba(7,7,7,.96); backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255,255,255,.08); display: none; flex-direction: column;
      }
      .drawer a { padding: 18px 24px; border-top: 1px solid rgba(255,255,255,.06); font-size: 24px; }
      .drawer.is-open { display: flex; animation: slideDown .25s ease both; }
      @keyframes slideDown { from { transform: translateY(-8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
    }

    /* ===== Hero – brutal diagonal, glow, blobs ===== */
    .hero { position: relative; }
    .hero__stage { position: relative; height: clamp(420px, 56vw, 680px); overflow: clip; }
    .hero__media {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=2100&auto=format&fit=crop') center/cover no-repeat;
      transform: scale(1.06); filter: contrast(1.1) brightness(.9) saturate(1.1);
      clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    }
    .hero__overlay { position: absolute; inset: 0; background: radial-gradient(65% 65% at 30% 40%, rgba(0,0,0,.25), rgba(0,0,0,.65) 60%), linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.7) 100%); }

    /* floating brand blobs */
    .blob, .blob2 {
      position: absolute; filter: blur(40px); opacity: .5; pointer-events: none; mix-blend-mode: screen;
      background: radial-gradient(circle at 30% 30%, rgba(238,118,42,.85), transparent 60%);
    }
    .blob { width: 420px; height: 420px; left: -6%; top: -8%; animation: float1 9s ease-in-out infinite; }
    .blob2 { width: 360px; height: 360px; right: -8%; bottom: 8%; animation: float2 11s ease-in-out infinite; }
    @keyframes float1 { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(14px) } }
    @keyframes float2 { 0%,100%{ transform: translate(0,0) } 50%{ transform: translate(-10px, -10px) } }

    .hero__inner { position: relative; z-index: 3; height: 100%; display: grid; align-items: end; }
    .hero__content { padding: 60px 0 46px; }
    .eyebrow { display: inline-block; background: rgba(238,118,42,.16); color: #FFDCC7; padding: 6px 10px; border-radius: 6px; font-size: 18px; letter-spacing: 1px; margin-bottom: 16px; }
    .hero h1 { margin: 0 0 10px; color: var(--white); font-size: clamp(48px, 8.4vw, 120px); line-height: .9; letter-spacing: 1.2px; text-shadow: 0 12px 40px rgba(0,0,0,.55); }
    .hero h1 .outline { -webkit-text-stroke: 2px var(--brand); color: transparent; text-shadow: none; }
    .hero p { margin: 0 0 28px; max-width: 820px; color: #F1F1F1; font-size: clamp(18px, 2.8vw, 28px); letter-spacing: .6px; }

    .cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .btn {
      position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      height: 60px; padding: 0 26px; border-radius: 14px; overflow: hidden; cursor: pointer;
      color: var(--black); background: var(--brand); border: 2px solid var(--brand);
      box-shadow: 0 16px 40px rgba(238,118,42,.45);
      transition: transform .12s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-1px); box-shadow: 0 24px 60px rgba(238,118,42,.55); }
    .btn::after { content:""; position:absolute; inset:-2px; border-radius:16px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent); transform: translateX(-120%); }
    .btn:hover::after { animation: shine .9s ease; }
    @keyframes shine { to { transform: translateX(120%); } }

    .ghost { height: 60px; padding: 0 24px; border-radius: 14px; display: inline-flex; align-items: center; gap: 10px; color: #F1F1F1; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.03); }

    /* ===== Marquee strip ===== */
    .marquee { position: relative; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; }
    .marquee__inner { display: flex; gap: 40px; padding: 16px 0; white-space: nowrap; animation: run 28s linear infinite; }
    .marquee__item { color: var(--muted); font-size: 22px; letter-spacing: 1px; }
    .marquee__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); display: inline-block; margin: 0 14px; box-shadow: 0 0 0 3px rgba(238,118,42,.18); }
    @keyframes run { to { transform: translateX(-50%); } }

    /* ===== Sections ===== */
    section { padding: 90px 0; }
    section:nth-of-type(even) { background: #0c0c0c; }
    h2 { color: var(--white); font-size: clamp(34px, 5.5vw, 68px); margin: 0 0 20px; letter-spacing: 1px; }
    .lead { font-size: 22px; color: #EAEAEA; max-width: 920px; opacity: .95; }

    /* brutal cards */
    .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
    .card { grid-column: span 4; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; position: relative; transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease; }
    .card:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(0,0,0,.45); border-color: rgba(238,118,42,.5); }
    .card img { aspect-ratio: 16/10; object-fit: cover; }
    .card .card-body { padding: 18px; }
    .card h3 { margin: 0; font-size: 32px; letter-spacing: .8px; }
    .card p { margin: 8px 0 0; color: #D7D7D7; font-size: 18px; }
    @media (max-width: 980px){ .card{ grid-column: span 6; } }
    @media (max-width: 640px){ .card{ grid-column: span 12; } }

    /* a11y + motion */
    @media (prefers-reduced-motion: reduce){
      .marquee__inner { animation: none; }
      .blob, .blob2 { display: none; }
      .btn:hover::after { animation: none; }
    }
    /* kontajner s logom a menom v jednom riadku */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;               /* zmenši, ak treba miesto */
}

/* logo nech “nenafukuje” header */
.logo { flex: 0 0 auto; display:flex; align-items:center; }
.logo__img {
  height: 48px;            /* nastav podľa dizajnu (napr. 40–56px) */
  width: auto;
  display: block;
}

/* pravá strana – menu v jednom riadku */
.nav > nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* odkazy menu ako riadok */
.menu {
  display: flex;
  gap: 28px;               /* ak sa láme, zmenši napr. na 20px */
  white-space: nowrap;     /* nezalamuj */
}

/* voliteľné: jemne menšie písmo na menších šírkach */
@media (max-width: 1200px){
  .menu { gap: 20px; }
}
@media (max-width: 992px){
  .menu a { font-size: 0.95rem; }
}

/* hamburger viditeľný len na mobile (ak to tak chceš) */
@media (min-width: 992px){
  .nav-toggle { display: none; }
}
.hero__media {
  background-attachment: fixed;
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero__stage {
  position: relative;
  width: 100%;
  min-height: 600px; /* výška hero sekcie */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Pozadie hero sekcie */
.hero__media {
  position: absolute;
  inset: 0;
  background: url('bg.png') center center / cover no-repeat;
  z-index: 0;
}

.about--safe { --brand: var(--brand, #EE762A); --on-bg: #EAEAEA; --muted: #D7D7D7; --stroke: rgba(255,255,255,.08); --glass1: rgba(255,255,255,.04); --glass2: rgba(255,255,255,.02); --header-h: var(--header-height, 96px); position: relative; padding-block: clamp(64px, 7vw, 110px); isolation: isolate; scroll-margin-top: var(--header-h); }
.about--safe .about__container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(16px, 3vw, 32px); }
.about--safe .about__bg { position: absolute; inset: 0; background:
radial-gradient(800px 300px at 8% 10%, rgba(238,118,42,.18), transparent 60%),
linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%),
repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px),
repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px);
mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 100%);
pointer-events: none; z-index: 0; }
.about--safe .about__header { position: relative; z-index: 1; max-width: 980px; }
.about--safe .eyebrow { display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .7; }
.about--safe .about__title { font-size: clamp(30px, 5vw, 60px); line-height: 1.05; margin: 8px 0 14px; letter-spacing: .5px; }
.about--safe .about__title .brand { color: var(--brand); text-shadow: 0 8px 30px rgba(238,118,42,.35); }
.about--safe .about__lede { font-size: clamp(18px, 2.2vw, 22px); color: var(--on-bg); margin: 0 0 26px; max-width: 860px; }


.about--safe .about__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; align-items: start; position: relative; z-index: 1; }
.about--safe .about__left { grid-column: span 7; }
.about--safe .about__right { grid-column: span 5; }
@media (max-width: 980px){ .about--safe .about__left, .about--safe .about__right { grid-column: span 12; } }


.about--safe .about__points { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 14px; }
.about--safe .about__points li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 14px; border: 1px solid var(--stroke); border-radius: 14px; background: linear-gradient(180deg, var(--glass1), var(--glass2)); }
.about--safe .point__icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: color-mix(in oklab, var(--brand) 25%, transparent); color: #FFDCC7; box-shadow: 0 6px 16px rgba(238,118,42,.25); }
.about--safe .about__points h3 { margin: 0 0 2px; font-size: 22px; letter-spacing: .4px; }
.about--safe .about__points p { margin: 0; color: var(--muted); font-size: 16px; }


.about--safe .about__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; }
.about--safe .pill { display: inline-flex; align-items: center; height: 34px; padding: 0 12px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--stroke); font-size: 14px; }


.about--safe .about__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.about--safe .about__cta .btn, .about--safe .about__cta .ghost { appearance: none; border-radius: 12px; padding: 12px 16px; line-height: 1; text-decoration: none; border: 1px solid var(--stroke); display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }
.about--safe .about__cta .btn { background: var(--brand); color: #0b0b0b; box-shadow: 0 10px 24px rgba(238,118,42,.35); }
.about--safe .about__cta .ghost { background: linear-gradient(180deg, var(--glass1), var(--glass2)); color: var(--on-bg); }


.about--safe .stats { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 16px; }
.about--safe .stat { padding: 14px; border-radius: 14px; border: 1px solid var(--stroke); background: linear-gradient(180deg, var(--glass1), var(--glass2)); }
.about--safe .stat h4 { margin: 0 0 6px; font-size: 18px; letter-spacing: .3px; }
.about--safe .stat p { margin: 0; color: var(--muted); font-size: 14px; }


.about--safe .mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, minmax(60px, 10vw)); gap: 8px; }
.about--safe .tile { border-radius: 16px; border: 1px solid var(--stroke); background-size: cover; background-position: center; filter: contrast(1.05) saturate(1.05); min-height: 120px; }
.about--safe .t1 { grid-column: 1 / span 4; grid-row: 1 / span 3; background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=1600&auto=format&fit=crop'); }
.about--safe .t2 { grid-column: 5 / span 2; grid-row: 1 / span 2; background-image: url('https://images.unsplash.com/photo-1503387762-b6a3c1f0b1da?q=80&w=1200&auto=format&fit=crop'); }
.about--safe .t3 { grid-column: 5 / span 2; grid-row: 3 / span 2; background-image: url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1200&auto=format&fit=crop'); }
.about--safe .t4 { grid-column: 1 / span 6; grid-row: 4 / span 3; background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1800&auto=format&fit=crop'); }
@media (max-width: 980px){ .about--safe .mosaic { grid-template-rows: repeat(6, minmax(70px, 14vw)); } }
@media (max-width: 640px){ .about--safe .mosaic { grid-template-rows: repeat(6, minmax(80px, 22vw)); } }

/* ===== CONTACT ===== */
.contact { position: relative; padding: clamp(70px, 8vw, 110px) 0; isolation: isolate; }
.contact .lead { opacity: .95; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0;
background:
radial-gradient(700px 300px at 8% 10%, color-mix(in oklab, var(--brand) 24%, transparent), transparent 60%),
linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%),
repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px),
repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px);
mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 100%);
}
.contact__title { margin: 6px 0 12px; font-size: clamp(34px, 5.2vw, 68px); letter-spacing: 1px; }


.contact__grid { position: relative; z-index: 1; margin-top: 26px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.contact__left { grid-column: span 5; display: grid; gap: 16px; }
.contact__right { grid-column: span 7; display: grid; gap: 16px; }
@media (max-width: 980px){ .contact__left, .contact__right { grid-column: span 12; } }


/* contact cards */
.contact-card { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 16px; border-radius: 16px;
background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
border: 1px solid rgba(255,255,255,.08); transition: border-color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: color-mix(in oklab, var(--brand) 60%, rgba(255,255,255,.08)); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.contact-card__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; color: #FFDCC7;
background: color-mix(in oklab, var(--brand) 22%, rgba(255,255,255,.02)); box-shadow: 0 10px 24px rgba(238,118,42,.25);
}
.contact-card h3 { margin: 0 0 2px; font-size: 24px; letter-spacing: .4px; }
.contact-card p { margin: 0; font-size: 18px; color: #EAEAEA; }
.contact-card__cta { margin-top: 10px; display: flex; gap: 10px; flex-wrap: wrap; }
.contact-link { text-decoration: underline; text-underline-offset: 3px; }
.contact-muted { color: var(--muted); }


/* form */
.contact-form { padding: 18px; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); }
.contact-form .form-row { display: grid; gap: 8px; margin-bottom: 14px; }
.contact-form label { font-size: 14px; letter-spacing: .4px; color: #EDEDED; opacity: .9; }
.contact-form input, .contact-form textarea { width: 100%; color: #fff; background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 12px 14px; outline: none; font-family: inherit;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #BDBDBD; }
.contact-form input:focus, .contact-form textarea:focus { border-color: color-mix(in oklab, var(--brand) 55%, rgba(255,255,255,.12)); box-shadow: 0 0 0 4px rgba(238,118,42,.15); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-note { margin: 10px 2px 0; font-size: 13px; color: var(--muted); }


/* mapa */
.contact-map { height: 280px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: #0c0c0c; }
.contact-map iframe { width: 100%; height: 100%; display: block; filter: contrast(1.05) saturate(1.05) brightness(.95); }

/* ===== FOOTER ===== */
.site-footer { position: relative; color: var(--text); isolation: isolate; }
.site-footer .pill { display:inline-flex; align-items:center; height:28px; padding:0 10px; border-radius:999px;
  background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); font-size:13px; }

.footer__bg{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(800px 320px at 10% 0%, color-mix(in oklab, var(--brand) 22%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 120px);
  border-top:1px solid rgba(255,255,255,.08);
  mask-image: linear-gradient(180deg, black 0%, black 88%, transparent 100%);
}

.footer__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:repeat(12,1fr); gap:24px;
  padding: clamp(56px, 7vw, 96px) 0;
}

.footer__brand{ grid-column: span 5; }
.footer__brand img{ height:48px; width:auto; display:block; margin-bottom:10px; }
.footer__claim{ margin:8px 0 12px; color:#EAEAEA; font-size:18px; }
.footer__pills{ display:flex; flex-wrap:wrap; gap:8px; }

.footer__col{ grid-column: span 2; }
.footer__col h3{ margin:0 0 12px; font-size:18px; letter-spacing:.4px; color:#fff; opacity:.9; }
.footer__list{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.footer__list a{ color:#E7E7E7; text-decoration:none; position:relative; }
.footer__list a::after{
  content:""; position:absolute; left:0; bottom:-3px; height:2px; width:0; border-radius:2px;
  background: linear-gradient(90deg, var(--brand), rgba(238,118,42,.2)); transition:width .25s ease;
}
.footer__list a:hover::after{ width:100%; }

.footer__contact .footer__link{ text-decoration: underline; text-underline-offset: 3px; }

.footer__social{ display:flex; gap:10px; margin-top:12px; }
.soc{ display:inline-grid; place-items:center; width:40px; height:40px; border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  transition: transform .18s ease, border-color .2s ease, box-shadow .25s ease;
}
.soc:hover{ transform: translateY(-2px); border-color: color-mix(in oklab, var(--brand) 55%, rgba(255,255,255,.1)); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.soc svg{ width:20px; height:20px; fill:#FFDCC7; }

.footer__bar{ position:relative; background:#0a0a0a; border-top:1px solid rgba(255,255,255,.08); }
.footer__bar__inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 0; }
.footer__legal{ display:flex; align-items:center; gap:10px; color:#BEBEBE; }
.footer__legal a{ color:#DADADA; text-decoration:none; }
.footer__legal a:hover{ text-decoration:underline; text-underline-offset:3px; }

/* Responsivita */
@media (max-width: 980px){
  .footer__brand{ grid-column: span 12; }
  .footer__col{ grid-column: span 6; }
}
@media (max-width: 640px){
  .footer__col{ grid-column: span 12; }
  .footer__bar__inner{ flex-direction:column; align-items:flex-start; }
}
/* ===== COOKIES: BASE BUTTONS (reuse) ===== */
.btn{ display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border-radius:12px;
  border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); color:#fff; font-weight:600; cursor:pointer;
  transition:transform .16s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.btn--primary{ background: color-mix(in oklab, var(--brand, #EE762A) 85%, #ffffff 0%); border-color: transparent; }
.btn--ghost{ background: transparent; }
.btn:focus{ outline: 2px solid color-mix(in oklab, var(--brand, #EE762A) 60%, #fff 0%); outline-offset: 2px; }

/* ===== COOKIE BANNER ===== */
.cbanner{ position: fixed; inset-inline: 12px; bottom: 12px; z-index: 9999; }
.cbanner__inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:16px; border-radius:16px; backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(20,20,20,.92), rgba(20,20,20,.86));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cbanner__text{ max-width: 720px; }
.cbanner__text h2{ margin:0 0 6px; font-size: 18px; }
.cbanner__text p{ margin:0 0 6px; color:#E6E6E6; }
.cbanner__link{ background:none; border:none; color:#cfe3ff; text-decoration: underline; text-underline-offset: 2px; cursor:pointer; padding:0; }
.cbanner__link:hover{ opacity:.9; }
.cbanner__actions{ display:flex; gap:10px; flex-shrink:0; }

/* small screens */
@media (max-width: 720px){
  .cbanner__inner{ flex-direction: column; align-items: stretch; }
  .cbanner__actions{ justify-content: flex-end; }
}

/* ===== PREFERENCES MODAL ===== */
.cprefs{ position: fixed; inset:0; z-index: 10000; display:grid; place-items:center; background: rgba(0,0,0,.5); }
.cprefs__card{
  width: min(860px, 92vw); max-height: 86vh; overflow:auto;
  border-radius: 18px; border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(20,20,20,.96), rgba(20,20,20,.92));
  box-shadow: 0 30px 80px rgba(0,0,0,.55); padding: 16px 16px 12px;
}
.cprefs__head{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:6px 6px 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cprefs__head h3{ margin:0; }
.cprefs__close{ font-size:28px; line-height:1; background:none; border:none; color:#fff; cursor:pointer; }

.cprefs__body{ padding: 12px 6px; display:grid; gap:14px; }
.cprefs__group{ border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:12px; }
.cprefs__group legend{ font-weight:700; padding:0 6px; }
.cprefs__group p{ margin:6px 0 10px; color:#dcdcdc; }

.switch{ display:flex; align-items:center; gap:10px; }
.switch input{ width:18px; height:18px; }
.switch.is-disabled{ opacity:.6; }

.cprefs__actions{ display:flex; gap:10px; justify-content:flex-end; padding-top:6px; }

/* smooth show/hide */
[hidden]{ display:none !important; }
/* default: desktop */
.nav-toggle { display: none; }
.menu { display: flex; gap: 24px; align-items: center; }

/* mobilný drawer – skrytý */
.drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(20,20,20,.98);
  backdrop-filter: blur(6px);
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 9999;
}
.drawer a {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
}

/* keď je otvorený */
.drawer.is-open { display: block; }

/* breakpoint – pod ~992px skry desktop menu, zobraz hamburger */
@media (max-width: 992px) {
  .menu { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav { position: relative; } /* aby drawer vedel byť absolute voči hlavičke */
}
/* --- Globálne premenné pre okraje --- */
:root{
  --gutter: clamp(16px, 4vw, 24px);
}

/* Zabráň horizontálnemu posuvu */
html, body { overflow-x: hidden; }

/* --- Mobilné guttery pre hlavné bloky --- */
@media (max-width: 992px){
  /* header / navigácia */
  .header, .nav, .header__inner {
    padding-left: calc(var(--gutter) + env(safe-area-inset-left));
    padding-right: calc(var(--gutter) + env(safe-area-inset-right));
  }

  /* mobilné menu (drawer) */
  .drawer{
    padding-left: calc(var(--gutter) + env(safe-area-inset-left));
    padding-right: calc(var(--gutter) + env(safe-area-inset-right));
  }

  /* hero obsah */
  .hero__content, .hero__inner, .cta-row, .hero .badge, .footer__social{
    padding-left: calc(var(--gutter) + env(safe-area-inset-left));
    padding-right: calc(var(--gutter) + env(safe-area-inset-right));
  }

  /* všeobecne sekcie – ak nejaká trieda chýba, tento selektor ju zachytí */
  section, .section, .container, .content, .wrap{
    padding-left: calc(var(--gutter) + env(safe-area-inset-left));
    padding-right: calc(var(--gutter) + env(safe-area-inset-right));
  }

  /* vystrihni pevné ľavé/pravé marginy, ktoré tlačia texty k okrajom */
  h1, h2, h3, p, .cta-row, .hero__title, .hero__subtitle{
    margin-left: 0;
    margin-right: 0;
  }
}

/* Voliteľné: max šírka obsahu na veľkých displejoch */
@media (min-width: 992px){
  .container, .hero__inner, .header__inner, .section .inner{
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(20px, 2vw, 32px);
  }
}
