/* assets/css/style.css?v=200 */

/* =========================================================
   TOKENS — clean editorial (Glencore-ish feel)
========================================================= */
:root{
  --ink:#0b1220;
  --paper:#ffffff;
  --soft:#f6f7fb;

  --muted:rgba(11,18,32,.66);
  --muted2:rgba(255,255,255,.78);

  --line:rgba(15,23,42,.10);
  --line2:rgba(15,23,42,.16);

  --accent:#1f4fff;

  --font:"Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap:1180px;
  --pad:22px;

  --r:16px;
}

/* =========================================================
   Base
========================================================= */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:var(--paper);
  color:var(--ink);
  font-weight:400;
  letter-spacing:-0.01em;
}
img,video{max-width:100%;display:block}
a{color:inherit}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--pad)}
:focus-visible{outline:3px solid rgba(31,79,255,.35); outline-offset:2px}

.skip{
  position:absolute;left:-9999px;top:12px;z-index:99999;
  padding:10px 12px;background:#fff;border:1px solid rgba(15,23,42,.20);
  box-shadow:0 12px 30px rgba(2,6,23,.16);
  font-weight:700;text-decoration:none
}
.skip:focus{left:12px}
}
@media (max-width: 980px){
  #people .split{ display:flex; flex-direction:column; }
  #people .split .media{ order:2; }
  #people .split > div{ order:1; }
}

/* =========================================================
   Typography — calmer, tighter hierarchy
========================================================= */
.kicker{
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(255,255,255,.86);
}
.kicker--ink{color:rgba(11,18,32,.70)}
.kicker--light{color:rgba(255,255,255,.72)}

.kmini{
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  color:rgba(31,79,255,.92);
}

.display{
  margin:12px 0 12px;
  font-weight:650;
  font-size:30px;          /* ~polovica oproti starému 44px */
  line-height:1.12;
  letter-spacing:-0.03em;
}

.h2{
  margin:10px 0 12px;
  font-weight:650;
  font-size:28px;
  letter-spacing:-0.02em;
}
.h2--light{color:#fff}

.h3{
  margin:10px 0 8px;
  font-weight:650;
  font-size:17px;
  letter-spacing:-0.01em;
}
.h3--light{color:#fff}

.p{margin:0 0 14px;line-height:1.75;font-size:15px;color:rgba(11,18,32,.86)}
.p--muted{color:var(--muted)}
.p--light{color:var(--muted2)}
.lead{margin:0 0 14px;line-height:1.82;font-size:16px;color:rgba(11,18,32,.70)}
.fine{margin-top:12px;font-size:13px;line-height:1.6;color:rgba(11,18,32,.60)}
.fine--light{color:rgba(255,255,255,.70)}
.muted{color:rgba(11,18,32,.55)}
.fine--hero{color:rgba(255,255,255,.70)}

/* =========================================================
   Header — minimal, overlay, burger only
========================================================= */
.hdr{
  position:fixed;top:0;left:0;right:0;
  z-index:80;
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  will-change: transform;
}
.hdr.is-hidden{transform:translateY(-110%)}

.hdr__inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:18px 0;
}

.brand{display:flex;align-items:center;text-decoration:none}
.brand__logo{
  height:92px;
  width:auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

.hdr__right{display:flex;align-items:center;gap:12px}

.lang{display:flex;gap:8px;align-items:center}
.lang__btn{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  padding:8px 10px;
  cursor:pointer;
  font-weight:800;
  font-size:12px;
  line-height:1;
  border-radius:999px;
  color:rgba(255,255,255,.78);
  transition:border-color .18s ease, color .18s ease, background .18s ease;
}
.lang__btn:hover{border-color:rgba(255,255,255,.40);color:#fff}
.lang__btn.is-active{border-color:rgba(255,255,255,.55);color:#fff}

/* overlay */
.hdr.is-overlay{
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.hdr.is-overlay::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
  pointer-events:none;
}
.hdr.is-overlay .hdr__inner{position:relative;z-index:2}

/* scrolled */
.hdr.is-scrolled{
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 28px rgba(2,6,23,.08);
}
.hdr.is-scrolled .brand__logo{filter:none}
.hdr.is-scrolled .lang__btn{
  border-color:rgba(15,23,42,.16);
  background:rgba(255,255,255,.70);
  color:rgba(11,18,32,.78);
}
.hdr.is-scrolled .lang__btn:hover{border-color:rgba(31,79,255,.30);color:rgba(11,18,32,.95)}

/* burger — ONLY 3 lines */
.burger{
  width:46px;height:46px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  cursor:pointer;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.burger span{
  width:22px;height:2px;
  background:rgba(255,255,255,.92);
}
.burger:hover{border-color:rgba(255,255,255,.48)}
.hdr.is-scrolled .burger{
  border-color:rgba(15,23,42,.18);
  background:rgba(255,255,255,.80);
}
.hdr.is-scrolled .burger span{background:#0b1220}

/* =========================================================
   Drawer
========================================================= */
.drawer{position:fixed;inset:0;z-index:90}
.drawer[hidden]{display:none !important}
.drawer__backdrop{
  position:absolute;inset:0;
  background:rgba(2,6,23,.60);
  backdrop-filter: blur(2px);
}
.drawer__panel{
  position:absolute;top:0;right:0;
  width:min(420px, 92vw);
  height:100%;
  background:rgba(10,14,24,.94);
  backdrop-filter: blur(14px);
  border-left:1px solid rgba(255,255,255,.10);
  padding:18px 18px 22px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.drawer__top{display:flex;align-items:center;justify-content:space-between}
.drawer__title{color:#fff;font-weight:800;letter-spacing:.18em}
.drawer__close{
  width:42px;height:42px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;color:#fff;
  cursor:pointer;font-weight:800;
}
.drawer__close:hover{border-color:rgba(255,255,255,.28)}
.drawer__nav{display:grid;gap:10px;margin-top:10px}
.drawer__a{
  text-decoration:none;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.90);
  font-weight:650;
}
.drawer__a:hover{color:#fff}
.drawer__a--strong{color:#fff}
.drawer__legal{display:flex;gap:14px;flex-wrap:wrap;margin-top:auto}

/* =========================================================
   Hero
========================================================= */
.hero{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  height:88vh;
  min-height:640px;
  max-height:1120px;
  background:#000;
  overflow:hidden;
}
.hero__media{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;object-position:center;
}
.hero__shade{
  position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.18) 30%, rgba(0,0,0,.10) 55%, rgba(0,0,0,.75));
}
.hero__grid{
  position:absolute;inset:0;
  z-index:3;
  display:flex;
  align-items:flex-end;
  padding-bottom:56px;
}
.hero__copy{max-width:760px}
.hero__h1{
  margin:12px 0 0;
  color:#fff;
  font-weight:650;
  font-size:34px;          /* ✅ polovička oproti 54px */
  line-height:1.06;
  letter-spacing:-0.03em;
}
.hero__p{
  margin:12px 0 0;
  color:rgba(255,255,255,.80);
  font-size:14px;          /* ✅ menšie */
  line-height:1.65;
  max-width:620px;
}
.hero__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}

/* Reduced motion note */
.hero__reduced{position:absolute;left:0;right:0;top:92px;z-index:4}
.note{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(11,18,32,.55);
  backdrop-filter: blur(10px);
  padding:12px 14px;
  box-shadow:0 18px 55px rgba(0,0,0,.22);
  border-radius:14px;
}
.note__t{color:#fff;font-weight:650}
.note__p{margin-top:6px;color:rgba(255,255,255,.82);line-height:1.6;font-size:13.5px}

/* =========================================================
   Sections / layout
========================================================= */
.sec{padding:88px 0}
.sec--soft{background:var(--soft)}
.sec--dark{
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(31,79,255,.12), transparent 55%),
    radial-gradient(900px 500px at 80% 20%, rgba(31,79,255,.08), transparent 60%),
    #0b1220;
  color:#fff;
}

.grid2{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:start}
.panel{
  border-top:1px solid rgba(15,23,42,.10);
  padding-top:18px;
  display:grid;
  gap:16px;
}
.metric{padding-bottom:14px;border-bottom:1px solid rgba(15,23,42,.10)}
.metric__v{margin-top:8px;font-weight:650;font-size:15px;color:rgba(11,18,32,.92)}
.metric__p{margin-top:6px;color:rgba(11,18,32,.62);line-height:1.6;font-size:14px}

.split{display:grid;grid-template-columns:1.1fr .9fr;gap:38px;align-items:center}
.media img,.media video{width:100%;height:auto;object-fit:cover;border-radius:0}
.media video{min-height:360px}

.tags{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.tag{
  font-weight:650;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(11,18,32,.70);
  border-bottom:2px solid rgba(31,79,255,.20);
  padding-bottom:4px;
}

.head{max-width:860px}
.headRow{display:flex;align-items:flex-end;justify-content:space-between;gap:18px}

.cards2{display:grid;grid-template-columns:1fr 1fr;gap:26px;margin-top:22px}
.card{
  border-top:1px solid rgba(15,23,42,.10);
  padding-top:14px;
}
.card__img{width:100%;height:260px;object-fit:cover}
.card__body{padding:14px 0 0}

.list{
  margin:10px 0 0;
  padding-left:18px;
  line-height:1.75;
  font-weight:400;
  color:rgba(11,18,32,.72);
  font-size:15px;
}
.list--light{color:rgba(255,255,255,.78)}
.list li{margin:6px 0}

.cols3{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:18px}
.cols3--tight{gap:22px}
.cols4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:18px}

.col{padding-bottom:14px;border-bottom:1px solid rgba(15,23,42,.10)}
.col--dark{border-bottom:1px solid rgba(255,255,255,.12)}

.join{margin-top:18px;display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.mail{
  font-weight:650;
  text-decoration:none;
  border-bottom:2px solid rgba(31,79,255,.22);
  padding-bottom:4px;
}
.mail:hover{border-bottom-color:rgba(31,79,255,.70)}

.links{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px}

/* =========================================================
   Insights rail
========================================================= */
.rail{
  display:flex;
  gap:22px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding:6px 2px 2px;
  -webkit-overflow-scrolling:touch;
}
.rail::-webkit-scrollbar{height:10px}
.rail::-webkit-scrollbar-thumb{background:rgba(15,23,42,.12)}
.news{
  min-width:320px;
  max-width:420px;
  flex:0 0 auto;
  scroll-snap-align:start;
  padding-bottom:14px;
  border-bottom:1px solid rgba(15,23,42,.10);
}
.cta{
  display:inline-block;
  margin-top:10px;
  color:rgba(31,79,255,.95);
  font-weight:650;
  text-decoration:none;
  border-bottom:2px solid rgba(31,79,255,.20);
  padding-bottom:4px;
}
.cta:hover{border-bottom-color:rgba(31,79,255,.80)}

/* =========================================================
   Buttons
========================================================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;
  text-decoration:none;
  font-weight:650;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  border-radius:999px;
  line-height:1;
}
.btn--primary{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 14px 30px rgba(31,79,255,.18);
}
.btn--ghost{
  background:transparent;
  border-color:rgba(255,255,255,.28);
  color:#fff;
}
.btn--ghost:hover{border-color:rgba(255,255,255,.46)}
.btn--ghostDark{
  background:transparent;
  border-color:rgba(15,23,42,.18);
  color:rgba(11,18,32,.92);
}
.btn--ghostDark:hover{border-color:rgba(31,79,255,.26)}
.btn--full{width:100%}
.btn--sm{padding:10px 12px;font-size:13px}

/* link buttons */
.link{
  border:none;background:transparent;padding:0;cursor:pointer;
  font-weight:650;
  color:rgba(31,79,255,.95);
  border-bottom:2px solid rgba(31,79,255,.16);
  padding-bottom:4px;
}
.link:hover{border-bottom-color:rgba(31,79,255,.85)}

/* =========================================================
   Contact
========================================================= */
.contactRow{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:10px}
.email{
  display:inline-block;
  font-size:18px;
  font-weight:650;
  color:rgba(11,18,32,.92);
  text-decoration:none;
  border-bottom:2px solid rgba(31,79,255,.26);
  padding-bottom:6px;
}
.email:hover{border-bottom-color:rgba(31,79,255,.80)}

.form{padding:0;background:transparent;border:none}
.lbl{display:block;margin-top:12px}
.lbl span{
  display:block;
  font-weight:800;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(11,18,32,.62);
  margin-bottom:6px;
}
input,textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid rgba(15,23,42,.12);
  background:transparent;
  font-family:var(--font);
  font-size:15px;
  font-weight:400;
  border-radius:12px;
}
textarea{resize:vertical}
.err{margin-top:6px;color:#b42318;font-size:12.5px;line-height:1.4;min-height:16px}

/* =========================================================
   Footer
========================================================= */
.foot{padding:28px 0;background:#fff;border-top:1px solid rgba(15,23,42,.08)}
.foot__inner{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;align-items:flex-start}
.foot__brand{font-weight:800;letter-spacing:.18em}
.foot__links{margin-top:10px;display:flex;gap:14px;flex-wrap:wrap}
.foot__right{max-width:520px}

/* =========================================================
   Toast
========================================================= */
.toast{
  position:fixed;right:18px;bottom:18px;z-index:99999;
  background:#0b1220;color:#fff;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 22px 70px rgba(2,6,23,.22);
  max-width:min(520px, calc(100% - 36px));
  font-weight:600;
  border-radius:14px;
}

/* =========================================================
   Modal
========================================================= */
.modal[hidden]{display:none !important}
.modal{position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:18px}
.modal__backdrop{position:absolute; inset:0; background:rgba(2,6,23,.62); backdrop-filter:blur(2px)}
.modal__panel{
  position:relative;width:min(920px, calc(100% - 26px));
  background:#fff;
  box-shadow:0 22px 70px rgba(2,6,23,.22);
  outline:none;
  border-radius:18px;
  overflow:hidden;
}
.modal__head{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid rgba(15,23,42,.10)}
.modal__title{font-weight:650}
.modal__close{
  width:40px;height:40px;border:1px solid rgba(15,23,42,.10);
  background:transparent;cursor:pointer;font-weight:700;
  border-radius:12px;
}
.modal__close:hover{border-color:rgba(31,79,255,.22)}
.modal__body{padding:16px;max-height:min(72vh, 680px);overflow:auto}
.modal__body h3{margin:14px 0 8px;font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.modal__body p{margin:0 0 10px;color:rgba(11,18,32,.74);line-height:1.7;font-size:14px}
.modal__body ul{margin:0 0 10px;padding-left:18px;color:rgba(11,18,32,.74);line-height:1.7;font-size:14px}

body.is-locked{overflow:hidden}

/* =========================================================
   Reduced motion
========================================================= */
@media (prefers-reduced-motion: reduce){
  html:focus-within{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
  }
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width:1080px){
  .cols4{grid-template-columns:repeat(2,1fr)}
  .cols3{grid-template-columns:1fr}
}
@media (max-width:980px){
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .cards2{grid-template-columns:1fr}
  .hero{height:78vh;min-height:560px}
  .brand__logo{height:64px}
  .display{font-size:28px}
  .hero__h1{font-size:32px}
}
@media (max-width:520px){
  .hero{height:64vh;min-height:460px}
  .hero__grid{padding-bottom:34px}
  .display{font-size:24px}
  .hero__h1{font-size:28px}
  .hero__p{font-size:13px}
}

/* people video full-bleed on mobile */
@media (max-width: 768px){
  #people .peopleVideo{
    display:block;
    width:100vw;
    max-width:none;
    height:auto;
    position:relative;
    left:50%;
    transform:translateX(-50%);
  }
}
/* =========================================================
   DESKTOP = MOBILE NAV STYLE (drawer) + 3x LOGO
   Works with your current index.html
========================================================= */

/* Header overlay on hero video */
.topbar.is-overlay{
  position:fixed;
  top:0; left:0; right:0;
  z-index:80;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:none;
}
.topbar.is-overlay .topbar__inner{
  padding:18px 0;
}

/* make header readable over video */
.topbar.is-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.40), rgba(0,0,0,0));
  pointer-events:none;
}

/* ensure content sits above overlay gradient */
.topbar.is-overlay .topbar__inner{
  position:relative;
  z-index:2;
}

/* Logo baseline */
.brand__logo{
  height:56px;
  width:auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.18));
}

/* Language buttons readable on video */
.topbar.is-overlay .lang__btn{
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.78);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.topbar.is-overlay .lang__btn:hover{
  border-color: rgba(255,255,255,.40);
  color:#fff;
}
.topbar.is-overlay .lang__btn.is-active{
  border-color: rgba(255,255,255,.55);
  color:#fff;
}

/* Hamburger readable on video */
.topbar.is-overlay .navToggle{
  border-color: rgba(255,255,255,.22);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.topbar.is-overlay .navToggle span{
  background: rgba(255,255,255,.86);
}

/* =========================================================
   DESKTOP RULES: hide inline nav, show hamburger, 3x logo
========================================================= */
@media (min-width: 980px){

  /* 1) hide desktop inline nav completely */
  .topbar .nav{
    display:none !important;
  }

  /* 2) show hamburger also on desktop */
  .navToggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
  }

  /* 3) logo 3x bigger on desktop
     (pôvod 56px → 168px je 3x, ale to už môže byť obrovské.
      Dám "Glencore big but elegant" = 120px default + 140px pre ultra-wide.
      Ak chceš NAOZAJ 3x, prehoď na 168px.)
  */
  .brand__logo{
    height:120px !important;
  }

  @media (min-width: 1280px){
    .brand__logo{ height:140px !important; }
  }

  /* viac priestoru pre veľké logo */
  .topbar.is-overlay .topbar__inner{
    padding:22px 0;
  }
}

/* =========================================================
   DRAWER on desktop: make it feel like premium slide-over
========================================================= */
.drawer{
  border-top:1px solid rgba(255,255,255,.10);
}

/* when overlay header is active, drawer should look dark/premium */
.topbar.is-overlay .drawer{
  background: rgba(10,14,24,.92);
  backdrop-filter: blur(14px);
}
.topbar.is-overlay .drawer__a{
  color: rgba(255,255,255,.90);
  border-bottom-color: rgba(255,255,255,.10);
}
.topbar.is-overlay .drawer__a:hover{
  color:#fff;
}
.topbar.is-overlay .drawer__a--strong{
  color:#fff;
}
.topbar.is-overlay .drawer__legal .footLink{
  color: rgba(255,255,255,.86);
  border-bottom-color: rgba(255,255,255,.16);
}

/* desktop drawer sizing */
@media (min-width: 980px){
  .drawer{
    position:fixed;
    top:0;
    right:0;
    width:min(420px, 92vw);
    height:100vh;
    border-left:1px solid rgba(255,255,255,.10);
    border-top:none;
    z-index:90;
  }
  .drawer__inner{
    padding:110px 26px 22px; /* space for big logo header area */
  }
}

/* body lock already exists; keep it */
body.is-locked{ overflow:hidden; }

/* =========================================================
   HERO spacing so content doesn't hide behind fixed header
========================================================= */
.hero{
  position:relative;
}
.hero__content{
  padding-top:140px; /* ensures hero text starts below big header */
}
@media (max-width: 980px){
  .hero__content{ padding-top:92px; }
}
/* =========================================================
   HAMBURGER — clean 3 lines in top bar (no text)
   Glencore / Vitol style
========================================================= */

.navToggle{
  width:42px;
  height:42px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;

  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(8px);

  cursor:pointer;

  transition: all .25s ease;
}

/* lines */
.navToggle span{
  display:block;
  width:20px;
  height:2px;

  background:rgba(255,255,255,.92);

  transition: all .25s ease;
}

/* hover effect (premium subtle) */
.navToggle:hover{
  border-color: rgba(255,255,255,.50);
}

.navToggle:hover span{
  background:#fff;
}

/* =========================================================
   DARK version when header not over video
========================================================= */

.topbar:not(.is-overlay) .navToggle{
  border:1px solid rgba(11,18,32,.20);
  background:rgba(255,255,255,.80);
}

.topbar:not(.is-overlay) .navToggle span{
  background:#0b1220;
}


/* =========================================================
   DESKTOP: slightly larger (premium look)
========================================================= */

@media (min-width:980px){

  .navToggle{
    width:48px;
    height:48px;
  }

  .navToggle span{
    width:22px;
  }

}
/* =========================================================
   HAMBURGER — clean 3 lines in top bar (no text)
   Glencore / Vitol style
========================================================= */

.navToggle{
  width:42px;
  height:42px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;

  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(8px);

  cursor:pointer;

  transition: all .25s ease;
}

/* lines */
.navToggle span{
  display:block;
  width:20px;
  height:2px;

  background:rgba(255,255,255,.92);

  transition: all .25s ease;
}

/* hover effect (premium subtle) */
.navToggle:hover{
  border-color: rgba(255,255,255,.50);
}

.navToggle:hover span{
  background:#fff;
}

/* =========================================================
   DARK version when header not over video
========================================================= */

.topbar:not(.is-overlay) .navToggle{
  border:1px solid rgba(11,18,32,.20);
  background:rgba(255,255,255,.80);
}

.topbar:not(.is-overlay) .navToggle span{
  background:#0b1220;
}


/* =========================================================
   DESKTOP: slightly larger (premium look)
========================================================= */

@media (min-width:980px){

  .navToggle{
    width:48px;
    height:48px;
  }

  .navToggle span{
    width:22px;
  }

}
.navToggle.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.navToggle.is-open span:nth-child(2){
  opacity:0;
}

.navToggle.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}
/* =========================================================
   TYPE SYSTEM (Glencore-ish)
   - calmer weights
   - tighter but natural tracking
   - responsive, editorial scale
========================================================= */

:root{
  /* type scale */
  --fs-base: 16px;
  --lh-base: 1.65;

  /* HERO */
  --fs-hero-k: 12px;
  --fs-hero-h1: clamp(24px, 3.2vw, 32px);   /* ~50% smaller than 54px */
  --lh-hero-h1: 1.08;

  --fs-hero-p: 15px;

  /* SECTION HEADLINES */
  --fs-h1: clamp(22px, 2.6vw, 28px);        /* ~50% smaller than 44px */
  --lh-h1: 1.18;

  --fs-h2: clamp(20px, 2.2vw, 26px);
  --fs-h3: 18px;

  /* eyebrow labels */
  --trk-k: .16em;
}

/* Base typography */
body{
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  font-weight: 400;
  letter-spacing: -0.005em; /* less aggressive */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Eyebrow / kicker */
.k,.k2,
.hero__k{
  letter-spacing: var(--trk-k);
  font-weight: 650;               /* still premium, not too bold */
}

/* =========================================================
   APPLY: HERO sizes (half smaller)
========================================================= */
.hero__content {
  position: absolute;
  bottom: 20px; /* Umiestni text k spodnému okraju */
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 20px; /* Padding pre text, aby nebol prilepený úplne k okraju */
  text-align: center; /* Pre centrovanie textu */
}

.hero__k {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__h1 {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 650;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero__p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .80);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
/* =========================================================
   APPLY: Section headline (.h1) half smaller
========================================================= */
.h1{
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 34ch;
}

.h2{
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.h3{
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Paragraph rhythm */
.p{
  font-size: 16px;
  line-height: 1.8;
  color: rgba(11,18,32,.84);
}
.lead{
  font-size: 17px;
  line-height: 1.85;
  color: rgba(11,18,32,.68);
  max-width: 70ch;
}

/* Optional: slightly calmer nav typography */
.nav a{
  font-weight: 600;
  letter-spacing: .06em; /* was .02em; Glencore tends to airy caps feel */
  font-size: 12px;
  text-transform: uppercase;
}

/* =========================================================
   Mobile: keep it readable
========================================================= */
@media (max-width:1080px){
  .cols4{grid-template-columns:repeat(2,1fr)}
  .cols3{grid-template-columns:1fr}
}

@media (max-width:980px){
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .cards2{grid-template-columns:1fr}
  .hero{height:78vh;min-height:560px}
  .brand__logo{height:64px}
  .display{font-size:28px}
  .hero__h1{font-size:32px}
}

@media (max-width:520px){

  .hero{
    height:0vh;            /* trochu viac priestoru */
    min-height:520px;
  }

  .hero__grid{
    align-items:flex-end;
    padding-bottom:20px;   /* 🔥 tu je kľúč */
  }

  .display{font-size:24px}
  .hero__h1{font-size:28px}
  .hero__p{font-size:13px}
}
/* people video full-bleed */
@media (max-width:768px){
  #people .media{
    width:100vw;
    margin-left:calc(50% - 50vw);
  }
  #people .peopleVideo{
    width:100%;
    height:auto;
  }
}
/* =========================================================
   HEADER (skrytá horná lišta pri rolovaní)
========================================================= */
.topbar.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(2, 6, 23, .08);
}

.topbar.is-scrolled .brand__logo {
  filter: none;
}

.topbar.is-scrolled .nav a,
.topbar.is-scrolled .lang__btn {
  color: rgba(11, 18, 32, .78);
}

.topbar.is-scrolled .nav a:hover {
  color: rgba(11, 18, 32, .95);
}

.topbar.is-scrolled .lang__btn {
  border-color: rgba(15, 23, 42, .18);
}

.topbar.is-scrolled .navToggle {
  border-color: rgba(15, 23, 42, .18);
}

.topbar.is-scrolled .navToggle span {
  background: rgba(11, 18, 32, .72);
}
/* =========================================================
   HEADER: hide on scroll down, show on scroll up
========================================================= */
.topbar{
  transition: transform .28s ease, background-color .28s ease, border-color .28s ease;
  will-change: transform;
}
.topbar.is-hidden{
  transform: translateY(-110%);
}

/* =========================================================
   HAMBURGER: make it obviously a menu ("3 lines") + hint label
========================================================= */
.navToggle{
  position:relative;
}

/* three lines stronger + consistent spacing */
.navToggle span{
  height:2px;
  border-radius:0;
  opacity:1;
}
.navToggle span+span{ margin-top:7px; }

/* optional tiny MENU label (premium, not shouting) */
.navToggle::after{
  content:"MENU";
  position:absolute;
  right:52px;
  top:50%;
  transform:translateY(-50%);
  font-weight:800;
  font-size:11px;
  letter-spacing:.12em;
  opacity:.78;
  white-space:nowrap;
  color: currentColor;
}

/* on overlay header: label should be white */
.topbar.is-overlay .navToggle::after{
  color: rgba(255,255,255,.86);
}

/* on very small screens hide label, keep 3 lines */
@media (max-width:520px){
  .navToggle::after{ display:none; }
}