*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #F5B800;
    --black: #0D0D0D;
    --dark: #111111;
    --dark2: #1A1A1A;
    --warm-white: #F4F1EC;
    --gray: #888880;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--warm-white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 60px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,13,13,0.94); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,184,0,0.12);
  }
  .nav-logo img { height: 44px; filter: brightness(0) invert(1); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(244,241,236,0.7); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    background: var(--gold); color: var(--black); border: none; padding: 12px 28px;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: #ffd233; }

  /* HERO — full bleed image */
  .page-hero {
    height: 70vh; min-height: 520px;
    position: relative; display: flex; align-items: flex-end;
    padding: 0 60px 80px;
  }
  .hero-img {
    position: absolute; inset: 0;
    background: url('/uploads/fotok/bence-43.webp') center/cover no-repeat;
  }
  .hero-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.2) 100%);
  }
  .hero-content { position: relative; z-index: 1; }
  .page-tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .page-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .page-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(56px, 8vw, 110px);
    font-weight: 900; text-transform: uppercase; line-height: 0.88;
  }
  .page-title .gold { color: var(--gold); }

  /* INTRO */
  .intro-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border-bottom: 1px solid rgba(245,184,0,0.06);
  }
  .intro-left {
    padding: 100px 60px; background: var(--dark);
  }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 4vw, 56px);
    font-weight: 900; text-transform: uppercase; line-height: 1;
  }
  .section-title .gold { color: var(--gold); }
  .body-text {
    font-size: 16px; line-height: 1.9; color: rgba(244,241,236,0.6);
    font-weight: 300; margin-top: 28px;
  }
  .body-text p + p { margin-top: 16px; }
  .gold-line { width: 48px; height: 2px; background: var(--gold); margin-top: 28px; }

  .intro-right {
    position: relative; overflow: hidden; min-height: 500px;
  }
  .intro-right img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.7s ease;
  }
  .intro-right:hover img { transform: scale(1.03); }
  .intro-right-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.4) 0%, transparent 60%);
  }

  /* STATS BAND */
  .stats-band {
    background: var(--gold); padding: 56px 60px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  }
  .stat-item { text-align: center; padding: 0 20px; }
  .stat-item + .stat-item { border-left: 1px solid rgba(13,13,13,0.15); }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 64px;
    font-weight: 900; color: var(--black); line-height: 1;
  }
  .stat-label { font-size: 12px; color: rgba(13,13,13,0.6); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }

  /* STORY TIMELINE */
  #story { padding: 120px 60px; background: var(--black); }
  .story-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px;
  }
  .timeline { position: relative; padding-left: 32px; }
  .timeline::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, var(--gold), transparent);
  }
  .timeline-item { position: relative; padding-bottom: 48px; }
  .timeline-item::before {
    content: ''; position: absolute; left: -36px; top: 6px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); box-shadow: 0 0 0 3px rgba(245,184,0,0.15);
  }
  .timeline-year {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; color: var(--gold); margin-bottom: 8px;
  }
  .timeline-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800;
    text-transform: uppercase; margin-bottom: 8px;
  }
  .timeline-desc { font-size: 14px; line-height: 1.7; color: rgba(244,241,236,0.5); }

  .story-img-wrap { position: sticky; top: 120px; }
  .story-img-wrap img {
    width: 100%; height: 480px; object-fit: cover; display: block;
  }
  .story-img-caption {
    background: var(--dark2); padding: 20px 24px;
    font-size: 13px; color: rgba(244,241,236,0.4); font-style: italic;
    border-left: 2px solid var(--gold);
  }

  /* VALUES */
  #values { padding: 0 60px 120px; background: var(--black); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
  .value-card {
    background: var(--dark2); padding: 52px 44px;
    border-top: 2px solid transparent; transition: all 0.3s;
  }
  .value-card:hover { border-top-color: var(--gold); background: #1e1e1e; }
  .value-icon {
    width: 52px; height: 52px; margin-bottom: 24px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
  }
  .value-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800;
    text-transform: uppercase; margin-bottom: 12px;
  }
  .value-desc { font-size: 14px; line-height: 1.75; color: rgba(244,241,236,0.5); }

  /* TEAM */
  #team { padding: 0 60px 120px; background: var(--black); }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
  .team-card { position: relative; overflow: hidden; background: var(--dark2); }
  .team-img {
    height: 380px; overflow: hidden;
  }
  .team-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    display: block; transition: transform 0.5s ease;
    filter: grayscale(30%);
  }
  .team-card:hover .team-img img { transform: scale(1.05); filter: grayscale(0%); }
  .team-info { padding: 28px 32px 32px; }
  .team-name {
    font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900;
    text-transform: uppercase;
  }
  .team-role { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
  .team-bio { font-size: 13px; line-height: 1.7; color: rgba(244,241,236,0.45); margin-top: 12px; }
  .team-exp {
    display: inline-block; margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    background: rgba(245,184,0,0.1); color: var(--gold);
    padding: 6px 14px; border: 1px solid rgba(245,184,0,0.2);
  }

  /* CERTIFICATIONS */
  #certs { padding: 0 60px 120px; }
  .certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
  .cert-card {
    background: var(--dark2); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 12px;
    border-bottom: 2px solid transparent; transition: border-color 0.2s;
  }
  .cert-card:hover { border-bottom-color: var(--gold); }
  .cert-icon { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .cert-name { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; text-transform: uppercase; }
  .cert-body { font-size: 12px; color: rgba(244,241,236,0.4); line-height: 1.6; }

  /* PHOTO GALLERY STRIP */
  .gallery-strip {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px;
    height: 460px; margin-bottom: 0;
  }
  .gallery-cell { overflow: hidden; position: relative; }
  .gallery-cell img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
  }
  .gallery-cell:hover img { transform: scale(1.05); filter: brightness(0.85); }
  .gallery-cell-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.5) 0%, transparent 50%);
  }

  /* CTA */
  .cta-banner {
    margin: 80px 60px; background: var(--gold); padding: 60px 72px;
    display: flex; justify-content: space-between; align-items: center; gap: 40px;
  }
  .cta-title { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900; text-transform: uppercase; color: var(--black); line-height: 1; }
  .cta-sub { font-size: 15px; color: rgba(13,13,13,0.6); margin-top: 8px; }
  .btn-dark {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 13px;
    letter-spacing: 2.5px; text-transform: uppercase;
    background: var(--black); color: var(--gold); border: none; padding: 20px 44px;
    text-decoration: none; white-space: nowrap; display: inline-block; transition: background 0.2s;
  }
  .btn-dark:hover { background: #1a1a1a; }

  footer { background: #080808; padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(245,184,0,0.08); }
  footer img { height: 32px; filter: brightness(0) invert(1); opacity: 0.5; }
  .footer-copy { font-size: 12px; color: var(--gray); }

  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up:nth-child(2) { transition-delay: 0.1s; }
  .fade-up:nth-child(3) { transition-delay: 0.2s; }
  .fade-up:nth-child(4) { transition-delay: 0.3s; }

  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; z-index:101; flex-shrink:0; }
  .hamburger span { display:block; width:24px; height:2px; background:var(--warm-white); transition:all 0.3s; }
  .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity:0; }
  .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  @media (max-width:900px){
    nav{padding:16px 20px;}
    .nav-links{display:none;position:fixed;top:73px;left:0;right:0;background:rgba(13,13,13,0.98);backdrop-filter:blur(16px);flex-direction:column;gap:0;padding:8px 0;border-bottom:1px solid rgba(245,184,0,0.12);z-index:99;}
    .nav-links.open{display:flex;}
    .nav-links li{border-bottom:1px solid rgba(244,241,236,0.05);}
    .nav-links a{display:block;padding:16px 24px;font-size:16px;}
    .nav-cta{display:none;}
    .hamburger{display:flex;}
    .page-hero{padding:0 20px 48px;}
    .page-title{font-size:clamp(40px,12vw,64px);}
    .intro-section{grid-template-columns:1fr;}
    .intro-left{padding:60px 20px;}
    .intro-right{min-height:280px;}
    .stats-band{grid-template-columns:1fr 1fr;padding:40px 20px;gap:0;}
    .stat-item{padding:20px 12px;}
    .stat-num{font-size:48px;}
    .stat-item+.stat-item{border-left:none;border-top:1px solid rgba(13,13,13,0.15);}
    #story{padding:72px 20px;}
    .story-grid{grid-template-columns:1fr;gap:40px;}
    .story-img-wrap{position:relative;top:0;}
    .story-img-wrap img{height:260px;}
    #values{padding:0 20px 72px;}
    .values-grid{grid-template-columns:1fr;}
    .value-card{padding:36px 24px;}
    #team{padding:0 20px 72px;}
    .team-grid{grid-template-columns:1fr;}
    #certs{padding:0 20px 72px;}
    .certs-grid{grid-template-columns:1fr 1fr;}
    .gallery-strip{grid-template-columns:1fr;height:auto;}
    .gallery-cell{height:220px;}
    .cta-banner{margin:48px 20px;padding:36px 24px;flex-direction:column;text-align:center;gap:20px;}
    .cta-title{font-size:28px;}
    footer{padding:32px 20px;flex-direction:column;gap:12px;text-align:center;}
  }


  a { color: #B87400; } a:hover { color: #F5B800; }
  .nav-cta { color: #080808 !important; }
  .section-tag, .page-tag, .hero-tag { color: #F5B800 !important; }

  nav { background: rgba(13,13,13,0) !important; backdrop-filter: blur(0px);
    border-bottom: none;
    transition: padding .35s, background .35s, box-shadow .35s !important; }
  nav.scrolled { background: rgba(13,13,13,0.94) !important; border-bottom: 1px solid rgba(245,184,0,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    padding-top: 14px !important; padding-bottom: 14px !important; }
  .nav-logo img { filter: brightness(0) invert(1) !important; }
  .nav-links a { color: rgba(244,241,236,0.7); }
  .nav-links a:hover, .nav-links a.active { color: #F5B800; }

  .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 200; width: 0; box-shadow: 0 0 12px rgba(245,184,0,0.6); }
  .page-hero .page-title { color: #F6F2EA !important; }
  .page-hero .page-tag { color: #F5B800 !important; }
  .stat-num { color: #080808 !important; }
  .stat-label { color: rgba(23,20,15,0.6) !important; }
  .cta-title { color: #080808 !important; }
  .cta-sub { color: rgba(23,20,15,0.6) !important; }
  .btn-dark { background: #080808 !important; color: #F5B800 !important; }
  footer .footer-copy { color: rgba(246,242,234,0.4) !important; }
  .story-img-caption { background: #080808; color: rgba(246,242,234,0.55); }
  /* reveal band */
  #rv-wrap { height: 300vh; position: relative; }
  #rv-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
  #rv-back { position: absolute; inset: 0; background: #080808; display: flex; align-items: center; justify-content: center; }
  #rv-back-text { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px,7vw,96px); font-weight: 900; text-transform: uppercase; color: rgba(246,242,234,0.05); letter-spacing: 8px; text-align: center; }
  #rv-imgwrap { position: absolute; inset: 0; clip-path: circle(0px at 50% 50%); }
  #rv-imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  #rv-imgwrap .rv-vig { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,12,8,0.8), transparent 55%); }
  #rv-label { position: absolute; bottom: 72px; left: 0; right: 0; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: clamp(24px,4vw,52px); font-weight: 800; text-transform: uppercase; letter-spacing: 4px; color: #F6F2EA; text-shadow: 0 2px 40px rgba(0,0,0,0.6); }
  #rv-label span { color: #F5B800; }
  #rv-hint { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: rgba(246,242,234,0.4); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s; }
  #rv-hint .a { width: 1px; height: 40px; background: linear-gradient(to bottom, #F5B800, transparent); animation: hintA 1.5s ease-in-out infinite; }
  @keyframes hintA { 0%,100% { opacity:.4; transform: scaleY(1); } 50% { opacity:1; transform: scaleY(1.25); } }
  @media (max-width:900px){ #rv-wrap { height: 200vh; } }

  /* SPECTACULAR ENHANCEMENTS */
  @keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
  .hero-img { animation: kenburns 28s ease-out forwards; will-change: transform; }
  .about-hero-glow { position: absolute; right: 8%; top: 18%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(245,184,0,0.15), transparent 68%); filter: blur(18px); z-index: 0; pointer-events: none; }
  .about-hero-wm { position: absolute; right: -2%; top: 12%; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 17vw; line-height: .8; color: rgba(245,184,0,0.04); text-transform: uppercase; white-space: nowrap; z-index: 0; pointer-events: none; user-select: none; }
  @keyframes heroRise { from { opacity: 0; transform: translateY(42px); } to { opacity: 1; transform: translateY(0); } }
  @media (prefers-reduced-motion: no-preference) {
    .hero-content .page-tag { animation: heroRise .7s .15s both; }
    .hero-content .page-title { animation: heroRise .95s .3s both; }
  }
  .page-title .gold { text-shadow: 0 0 60px rgba(245,184,0,0.3); }
  .team-card { transition: transform .35s ease, box-shadow .35s ease; }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.45); }
  .timeline-item::before { transition: box-shadow .3s ease; }
  .timeline-item:hover::before { box-shadow: 0 0 0 6px rgba(245,184,0,0.22); }
  .value-card { transition: transform .3s ease, border-color .3s, background .3s; }
  .value-card:hover { transform: translateY(-4px); }
  .site-footer { background: #0A0A0A; border-top: 1px solid rgba(245,184,0,0.1); padding: 64px 60px 0; }
  .sf-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,241,236,0.07); }
  .sf-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 20px; }
  .sf-about { font-size: 14px; line-height: 1.8; color: rgba(244,241,236,0.45); max-width: 340px; font-weight: 300; }
  .sf-social { display: flex; gap: 10px; margin-top: 22px; }
  .sf-social a { width: 38px; height: 38px; border: 1px solid rgba(244,241,236,0.14); display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .sf-social a:hover { border-color: #F5B800; background: rgba(245,184,0,0.08); }
  .sf-social svg { width: 16px; height: 16px; stroke: rgba(244,241,236,0.6); fill: none; stroke-width: 1.6; }
  .sf-social a:hover svg { stroke: #F5B800; }
  .sf-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #F5B800; margin-bottom: 20px; }
  .sf-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .sf-links a { font-size: 14px; color: rgba(244,241,236,0.55); text-decoration: none; transition: color .2s; }
  .sf-links a:hover { color: #F5B800; }
  .sf-contact-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: rgba(244,241,236,0.55); margin-bottom: 15px; }
  .sf-contact-item svg { width: 15px; height: 15px; stroke: #F5B800; fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
  .sf-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 16px; }
  .sf-copy { font-size: 12px; color: rgba(244,241,236,0.3); }
  .sf-bottom-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .sf-legal { font-size: 12px; color: rgba(244,241,236,0.3); text-decoration: none; }
  .sf-legal:hover { color: #F5B800; }
  .sf-admin { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,241,236,0.4); text-decoration: none; border: 1px solid rgba(244,241,236,0.15); padding: 8px 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
  .sf-admin:hover { border-color: #F5B800; color: #F5B800; }
  .sf-admin svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  @media (max-width: 900px) { .site-footer { padding: 48px 20px 0; } .sf-top { grid-template-columns: 1fr 1fr; gap: 32px; } .sf-brand { grid-column: 1 / -1; } .sf-bottom { flex-direction: column; text-align: center; } }