*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050505;
  --ink: #0d0d0d;
  --cream: #f4efe2;
  --muted: rgba(244, 239, 226, .64);
  --dim: rgba(244, 239, 226, .38);
  --gold: #d7b46d;
  --gold-2: #f0d596;
  --line: rgba(244, 239, 226, .13);
  --line-g: rgba(215, 180, 109, .34);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { background: var(--black); scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold); color: #090805; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .07;
  background-image: radial-gradient(rgba(255,255,255,.75) .7px, transparent .7px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.progress-line {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 300;
  background: rgba(255,255,255,.06);
}
.progress-line span {
  display: block;
  height: 100%;
  width: calc(var(--page-p, 0) * 100%);
  background: var(--gold);
}

.wrap { width: 100%; max-width: 1380px; margin: 0 auto; padding-inline: clamp(20px, 4.6vw, 64px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 250;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(18px, 4.6vw, 64px);
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(5,5,5,.84), rgba(5,5,5,0));
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.solid {
  height: 58px;
  background: rgba(5,5,5,.74);
  backdrop-filter: blur(22px) saturate(160%);
  border-bottom-color: rgba(255,255,255,.08);
}
.brand { text-decoration: none; font-weight: 900; letter-spacing: .25em; font-size: 13px; color: var(--gold); }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
  color: rgba(244,239,226,.62);
  transition: color .25s ease;
}
.nav a:hover, .nav a.active { color: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.04); }
.lang button { appearance: none; border: 0; background: transparent; color: var(--muted); padding: 7px 10px; font-size: 10px; font-weight: 900; cursor: pointer; }
.lang button.active { background: var(--cream); color: #050505; }
.menu { display: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.04); position: relative; cursor: pointer; }
.menu span, .menu span::before, .menu span::after { content: ""; position: absolute; left: 50%; width: 16px; height: 1.5px; background: var(--cream); transform: translateX(-50%); transition: transform .3s var(--ease), opacity .2s ease; }
.menu span { top: 50%; }
.menu span::before { top: -6px; }
.menu span::after { top: 6px; }
body.menu-open .menu span { background: transparent; }
body.menu-open .menu span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
body.menu-open .menu span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

.lenis-panel, .statement, .why, .contact, .footer, .sticky-story, .horizontal { position: relative; z-index: 1; }

.hero { min-height: 150vh; background: var(--black); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 70% 25%, rgba(215,180,109,.17), transparent 26%); z-index: 3; }
.hero-bg, .dark-cover { position: sticky; top: 0; height: 100vh; inset-inline: 0; }
.hero-bg { z-index: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1.04 + var(--p, 0) * .08)) translateY(calc(var(--p, 0) * -60px)); filter: saturate(.85) contrast(1.05); }
.dark-cover { margin-top: -100vh; z-index: 1; background: linear-gradient(90deg, rgba(5,5,5,.84), rgba(5,5,5,.35), rgba(5,5,5,.76)), linear-gradient(to bottom, rgba(5,5,5,.2), rgba(5,5,5,.82)); pointer-events: none; }
.hero-inner { position: sticky; top: 0; min-height: 100vh; margin-top: -100vh; z-index: 4; display: flex; flex-direction: column; justify-content: center; padding-top: 72px; }
.hero-kicker { display: flex; justify-content: space-between; gap: 20px; max-width: 560px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: 11px; }
.mega-title { margin-top: 22px; font-size: clamp(70px, 14vw, 220px); line-height: .78; letter-spacing: -.085em; font-weight: 900; text-transform: uppercase; max-width: 1220px; transform: translateY(calc(var(--p, 0) * -46px)); }
.mega-title span { display: block; }
.mega-title .indent { padding-left: clamp(30px, 14vw, 190px); color: var(--gold-2); }
.hero-bottom { margin-top: clamp(28px, 6vh, 80px); display: grid; grid-template-columns: 190px minmax(0, 720px); gap: clamp(28px, 7vw, 120px); align-items: start; }
.scroll-copy { color: var(--dim); text-transform: uppercase; font-size: 11px; letter-spacing: .18em; font-weight: 800; display: grid; gap: 6px; }
.scroll-copy::after { content: ""; display: block; width: 1px; height: 52px; background: linear-gradient(to bottom, var(--gold), transparent); margin-top: 12px; transform-origin: top; animation: pulse 2.1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scaleY(.25); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; margin-bottom: 18px; }
.section-count { color: var(--dim); font-size: 12px; font-weight: 900; letter-spacing: .14em; }
.type-block { color: var(--muted); }
.typewriter { font-size: clamp(18px, 1.72vw, 25px); line-height: 1.52; max-width: 760px; color: var(--muted); min-height: 1.52em; }
.prose { display: grid; gap: 18px; margin-top: 34px; }
.prose .typewriter { max-width: 920px; }
.typewriter.strong, .strong { color: var(--cream); font-weight: 700; }
.js .typewriter:not(.typed):not(.typing) { color: transparent; }
.typewriter.typing::after { content: ""; display: inline-block; width: .08em; height: .95em; margin-left: .12em; background: var(--gold); transform: translateY(.12em); animation: blink .75s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.statement { min-height: 100vh; padding-block: clamp(110px, 14vw, 190px); display: flex; align-items: center; background: var(--cream); color: var(--ink); }
.statement .eyebrow { color: #8f6932; }
.statement .section-count { color: rgba(13,13,13,.35); }
.statement .typewriter { color: rgba(13,13,13,.68); }
.statement .typewriter.strong { color: var(--ink); }
.statement-grid { display: grid; grid-template-columns: 120px 1fr; gap: clamp(28px, 6vw, 90px); align-items: start; }
.statement-title { font-size: clamp(42px, 6.4vw, 108px); line-height: .94; letter-spacing: -.065em; max-width: 1120px; font-weight: 900; }

.sticky-story { min-height: 220vh; background: var(--black); }
.sticky-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
#globeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.globe-fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; opacity: .18; pointer-events: none; }
.globe-fallback img { width: min(980px, 82vw); filter: blur(1px) saturate(.75); transform: scale(calc(.96 + var(--p, 0) * .08)); }
.globe-vignette { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 34% 50%, transparent 0 26%, rgba(5,5,5,.25) 48%, rgba(5,5,5,.92) 78%), linear-gradient(90deg, rgba(5,5,5,.1), rgba(5,5,5,.72) 60%, rgba(5,5,5,.92)); }
.sticky-content { position: relative; z-index: 3; }
.right-copy { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 590px); gap: 52px; align-items: center; }
.right-copy > * { grid-column: 2; }
.right-copy .section-count { grid-column: 2; }
.big-split { font-size: clamp(54px, 8vw, 130px); line-height: .83; letter-spacing: -.078em; font-weight: 900; text-transform: uppercase; max-width: 880px; }
.big-split span { display: block; transform: translateX(calc((var(--p, 0) - .5) * -38px)); }
.glass { margin-top: 28px; padding: clamp(20px, 2.8vw, 34px); border: 1px solid var(--line); border-radius: 28px; background: rgba(14,14,14,.58); backdrop-filter: blur(18px) saturate(140%); box-shadow: 0 40px 120px rgba(0,0,0,.38); }
.glass .typewriter { font-size: clamp(17px, 1.35vw, 21px); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pills span { display: inline-flex; align-items: center; border: 1px solid var(--line-g); color: var(--gold-2); border-radius: 999px; padding: 8px 12px; text-transform: uppercase; font-size: 11px; letter-spacing: .11em; font-weight: 900; background: rgba(215,180,109,.08); }

.why { min-height: 100vh; padding-block: clamp(110px, 14vw, 200px); background: #090909; overflow: hidden; }
.why::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 12%, rgba(215,180,109,.12), transparent 26%); }
.why .wrap { position: relative; z-index: 2; }
.why-head { display: grid; grid-template-columns: 120px 1fr; gap: clamp(28px, 6vw, 90px); }
.wide-title { font-size: clamp(66px, 11vw, 180px); line-height: .82; letter-spacing: -.09em; text-transform: uppercase; font-weight: 900; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(54px, 8vw, 110px); border: 1px solid var(--line); background: var(--line); }
.benefit { min-height: 440px; padding: clamp(22px, 2.8vw, 38px); background: #090909; display: flex; flex-direction: column; justify-content: space-between; transition: background .35s ease, transform .35s var(--ease); }
.benefit:hover { background: #111; transform: translateY(-8px); }
.benefit span { color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.benefit h3 { font-size: clamp(22px, 2.2vw, 34px); line-height: 1; letter-spacing: -.04em; max-width: 240px; }
.benefit p { color: var(--muted); font-size: 15px; line-height: 1.55; }

.horizontal { height: 210vh; background: var(--cream); color: var(--ink); }
.horizontal-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.ticker { position: absolute; inset: auto 0 8vh 0; white-space: nowrap; display: flex; gap: .08em; transform: translateX(calc(-28vw * var(--p, 0))); color: rgba(13,13,13,.08); font-size: clamp(90px, 18vw, 280px); line-height: .75; font-weight: 900; letter-spacing: -.1em; pointer-events: none; }
.ticker span { padding-right: .2em; }
.horizontal-copy { position: relative; z-index: 2; display: grid; grid-template-columns: 120px minmax(0, 940px); gap: clamp(28px, 6vw, 90px); align-items: start; }
.horizontal .eyebrow { color: #8f6932; }
.horizontal .section-count { color: rgba(13,13,13,.35); }
.horizontal .typewriter { color: rgba(13,13,13,.68); }

.about-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1.05 + var(--p, 0) * .07)) translateY(calc(var(--p, 0) * -52px)); filter: saturate(.88) contrast(1.04); }
.about-mask { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.48) 42%, rgba(5,5,5,.85)), linear-gradient(to bottom, rgba(5,5,5,.16), rgba(5,5,5,.82)); }
.about-content { position: relative; z-index: 2; }
.about-copy { max-width: 860px; transform: translateY(calc(var(--p, 0) * -32px)); }

.contact { padding-block: clamp(110px, 14vw, 190px); background: #090909; }
.contact-panel { border: 1px solid var(--line); border-radius: clamp(24px, 4vw, 48px); background: rgba(255,255,255,.035); padding: clamp(28px, 5vw, 70px); backdrop-filter: blur(18px); }
.contact-top { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 60px; align-items: end; }
.contact-intro .typewriter { font-size: clamp(16px, 1.3vw, 20px); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: clamp(30px, 5vw, 80px); margin-top: 62px; }
.form { display: grid; gap: 14px; }
.form label { display: grid; gap: 8px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; }
.form input, .form textarea { width: 100%; border: 1px solid var(--line); background: #0d0d0d; color: var(--cream); border-radius: 18px; padding: 16px 18px; outline: 0; font-size: 16px; }
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--gold); }
.submit { border: 0; border-radius: 999px; min-height: 54px; background: var(--cream); color: var(--black); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; cursor: pointer; transition: transform .25s var(--ease), background .25s ease; }
.submit:hover { transform: translateY(-2px); background: var(--gold-2); }
.form-note { color: var(--dim); font-size: 13px; }
.contact-info { display: grid; gap: 28px; align-content: start; }
.info-block { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.info-block h3, .locations h3 { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; margin-bottom: 14px; }
.info-block a, .locations a { display: block; color: var(--muted); text-decoration: none; line-height: 1.9; }
.info-block a:hover, .locations a:hover { color: var(--gold-2); }
.locations { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); margin-top: 70px; }
.locations article { background: #090909; padding: 22px; min-height: 210px; }
.locations p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-bottom: 10px; }

.footer { background: var(--black); border-top: 1px solid var(--line); padding-block: 70px 38px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 7vw, 100px); }
.footer-brand { color: var(--gold); letter-spacing: .22em; font-weight: 900; margin-bottom: 22px; }
.footer p { color: var(--dim); font-size: 14px; line-height: 1.7; max-width: 620px; }
.legal h3 { color: var(--cream); font-size: 16px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 22px; }
.legal dl { display: grid; grid-template-columns: 190px 1fr; gap: 10px 22px; font-size: 14px; }
.legal dt { color: var(--dim); }
.legal dd { color: var(--muted); }
.legal a { color: var(--muted); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

.reveal { transition: opacity 1s var(--ease), transform 1.05s var(--ease), filter 1.05s ease; transition-delay: calc(var(--d, 0) * 110ms); }
.js .reveal { opacity: 0; transform: translateY(34px); filter: blur(14px); }
.js .reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }

@media (max-width: 1120px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: repeat(2, 1fr); }
  .contact-top, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 64px; }
  .menu { display: block; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); height: 100vh; padding: 120px 34px; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 26px; background: rgba(5,5,5,.96); border-left: 1px solid var(--line); backdrop-filter: blur(22px); transform: translateX(100%); transition: transform .42s var(--ease); }
  body.menu-open .nav { transform: translateX(0); }
  .nav a { font-size: 19px; letter-spacing: .06em; }
  .hero-bottom, .statement-grid, .why-head, .horizontal-copy { grid-template-columns: 1fr; }
  .scroll-copy { display: none; }
  .right-copy { grid-template-columns: 1fr; }
  .right-copy > *, .right-copy .section-count { grid-column: 1; }
  .globe-vignette { background: linear-gradient(to bottom, rgba(5,5,5,.28), rgba(5,5,5,.78)); }
  .mega-title { letter-spacing: -.075em; }
  .mega-title .indent { padding-left: 0; }
  .sticky-story { min-height: 190vh; }
  .wide-title { font-size: clamp(56px, 17vw, 112px); }
  .benefit { min-height: 340px; }
}

@media (max-width: 620px) {
  .brand { font-size: 11px; letter-spacing: .18em; }
  .lang button { padding: 7px 9px; }
  .mega-title { font-size: clamp(58px, 19vw, 92px); }
  .statement-title { font-size: clamp(40px, 13vw, 70px); }
  .big-split { font-size: clamp(48px, 15vw, 82px); }
  .typewriter { font-size: 16px; }
  .benefit-grid, .locations { grid-template-columns: 1fr; }
  .benefit { min-height: auto; gap: 46px; }
  .contact-panel { border-radius: 24px; }
  .legal dl { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .typewriter::after { display: none !important; }
}


/* ================================================================
   FINAL SCALE + DIACRITICS FIX
   Goal: keep the current design, but make it usable at 100% browser zoom.
   ================================================================ */

/* The page felt visually zoomed-in. These variables reduce only the
   oversized display typography, not the whole layout quality. */
:root {
  --display-scale: .78;
  --safe-display-leading: 1.08;
  --safe-tight-leading: 1.02;
}

/* Large titles need more vertical room for Slovak/Czech diacritics.
   Previous line-heights below 0.9 caused accents to collide with lines above. */
.mega-title,
.big-split,
.statement-title,
.wide-title {
  line-height: var(--safe-display-leading) !important;
  letter-spacing: -.055em !important;
  overflow: visible !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  text-wrap: balance;
  font-kerning: normal;
}

/* Slightly smaller hero scale. Still bold, but no longer browser-zoomed. */
.mega-title {
  font-size: clamp(72px, 11.2vw, 188px) !important;
  line-height: .92 !important;
  letter-spacing: -.065em !important;
}

/* Network countries: reduce size and prevent clipping behind top bar. */
.globe-story .sticky-stage {
  align-items: center !important;
  padding-top: 72px !important;
  padding-bottom: 54px !important;
}

.right-copy {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 610px) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  align-items: center !important;
}

.globe-story .big-split {
  font-size: clamp(50px, 6.25vw, 104px) !important;
  line-height: .96 !important;
  letter-spacing: -.052em !important;
  max-width: 620px !important;
  margin-top: 0 !important;
}

.globe-story .big-split span {
  display: block;
  padding-block: .035em;
  transform: translateX(calc((var(--p, 0) - .5) * -18px)) !important;
}

.globe-story .glass {
  margin-top: clamp(20px, 2.6vw, 34px) !important;
  padding: clamp(20px, 2.3vw, 30px) !important;
  max-width: 610px !important;
  max-height: none !important;
  overflow: visible !important;
  border-radius: 24px !important;
}

.globe-story .glass .typewriter {
  font-size: clamp(15px, 1.08vw, 18px) !important;
  line-height: 1.52 !important;
}

/* Cream / relationship section:
   This was the biggest problem. The left title was too narrow and too tall,
   so Slovak words stacked letter-by-letter and overlapped with content. */
.horizontal {
  min-height: 145vh !important;
}

.horizontal .sticky-stage {
  min-height: 100vh !important;
  align-items: center !important;
  padding-top: 72px !important;
  padding-bottom: 80px !important;
  overflow: hidden !important;
}

.horizontal-copy {
  display: grid !important;
  grid-template-columns: minmax(320px, 42vw) minmax(420px, 760px) !important;
  gap: clamp(36px, 6vw, 96px) !important;
  align-items: center !important;
  min-height: auto !important;
  padding-block: 0 !important;
}

.horizontal .statement-title {
  font-size: clamp(48px, 6.35vw, 112px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.058em !important;
  max-width: 760px !important;
  white-space: normal !important;
}

.horizontal .statement-title span {
  display: inline !important;
  padding-block: .04em;
}

.horizontal .prose {
  margin-top: 0 !important;
  max-width: 760px !important;
  align-self: center !important;
}

.horizontal .typewriter {
  font-size: clamp(17px, 1.55vw, 24px) !important;
  line-height: 1.55 !important;
  max-width: 760px !important;
}

/* Background TRUST / QUALITY should stay subtle and not cover the content. */
.horizontal .ghost-word {
  font-size: clamp(92px, 17vw, 300px) !important;
  opacity: .055 !important;
  bottom: 4vh !important;
  line-height: .9 !important;
}

/* Ticker: move completely from right to left across the viewport. */
.ticker {
  width: max-content !important;
  inset: auto auto 7vh 0 !important;
  transform: translate3d(calc(110vw - 230vw * var(--p, 0)), 0, 0) !important;
  will-change: transform;
}

/* Contact section: avoid one-letter line breaks and keep the title human-sized. */
.contact-top {
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 520px) !important;
  gap: clamp(34px, 5vw, 80px) !important;
  align-items: center !important;
}

.contact .wide-title {
  font-size: clamp(60px, 8.2vw, 146px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.065em !important;
  max-width: 980px !important;
}

.contact .wide-title span {
  display: inline !important;
  padding-block: .04em;
}

/* Slightly reduce large section vertical pressure. */
.section-pad,
.content-section {
  padding-block: clamp(96px, 11vw, 160px) !important;
}

/* Better text rendering for heavy display font with accents. */
body {
  text-rendering: geometricPrecision;
}

/* English variant should also be slightly smaller in the globe headline. */
html[lang="en"] .globe-story .big-split {
  font-size: clamp(48px, 5.55vw, 96px) !important;
  line-height: 1.02 !important;
}

/* Tablet */
@media (max-width: 1180px) {
  .mega-title {
    font-size: clamp(68px, 12vw, 150px) !important;
  }

  .right-copy {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 560px) !important;
  }

  .globe-story .big-split {
    font-size: clamp(48px, 7.2vw, 92px) !important;
  }

  .horizontal-copy {
    grid-template-columns: minmax(300px, 40vw) minmax(380px, 1fr) !important;
    gap: clamp(32px, 5vw, 70px) !important;
  }

  .horizontal .statement-title {
    font-size: clamp(44px, 6.1vw, 86px) !important;
  }

  .contact .wide-title {
    font-size: clamp(58px, 8vw, 118px) !important;
  }
}

/* Mobile / narrow screens */
@media (max-width: 860px) {
  .mega-title {
    font-size: clamp(54px, 15vw, 94px) !important;
    line-height: .96 !important;
  }

  .right-copy {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    align-content: center !important;
  }

  .globe-story .sticky-stage {
    padding-top: 84px !important;
    padding-bottom: 36px !important;
    align-items: center !important;
  }

  .globe-story .big-split {
    font-size: clamp(42px, 12vw, 74px) !important;
    line-height: 1.04 !important;
    max-width: 100% !important;
  }

  .globe-story .glass {
    max-height: none !important;
  }

  .horizontal {
    min-height: auto !important;
  }

  .horizontal .sticky-stage {
    position: relative !important;
    min-height: auto !important;
    padding-block: 96px !important;
  }

  .horizontal-copy {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .horizontal .statement-title {
    font-size: clamp(38px, 11.5vw, 68px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .horizontal .prose {
    max-width: 100% !important;
  }

  .ticker {
    transform: translate3d(calc(120vw - 260vw * var(--p, 0)), 0, 0) !important;
  }

  .contact-top {
    grid-template-columns: 1fr !important;
  }

  .contact .wide-title {
    font-size: clamp(46px, 13vw, 80px) !important;
    line-height: 1.05 !important;
  }
}

@media (max-width: 560px) {
  .mega-title {
    font-size: clamp(48px, 14vw, 72px) !important;
  }

  .globe-story .big-split,
  .horizontal .statement-title,
  .contact .wide-title {
    letter-spacing: -.04em !important;
  }

  .horizontal .statement-title {
    font-size: clamp(36px, 10vw, 56px) !important;
  }
}


/* ================================================================
   VALUES SECTION VISIBILITY FIX — FINAL
   Ensures the full heading "... na dôvere" stays visible.
   ================================================================ */

.horizontal {
  min-height: 132vh !important;
}

.horizontal-sticky {
  align-items: center !important;
  padding-top: 72px !important;
  padding-bottom: 54px !important;
}

.horizontal-copy {
  grid-template-columns: minmax(340px, 700px) minmax(360px, 640px) !important;
  gap: clamp(26px, 4.4vw, 72px) !important;
  align-items: center !important;
}

.horizontal .statement-title {
  font-size: clamp(40px, 5.15vw, 82px) !important;
  line-height: 0.98 !important;
  letter-spacing: -.052em !important;
  max-width: 700px !important;
  text-wrap: balance !important;
}

.horizontal .prose {
  margin-top: 0 !important;
  max-width: 640px !important;
}

.horizontal .typewriter {
  font-size: clamp(16px, 1.35vw, 21px) !important;
  line-height: 1.5 !important;
}

@media (max-width: 1180px) {
  .horizontal .statement-title {
    font-size: clamp(38px, 4.9vw, 72px) !important;
    max-width: 620px !important;
  }

  .horizontal-copy {
    grid-template-columns: minmax(300px, 560px) minmax(320px, 560px) !important;
  }
}

@media (max-width: 860px) {
  .horizontal {
    min-height: auto !important;
  }

  .horizontal-sticky {
    padding-top: 92px !important;
    padding-bottom: 72px !important;
    height: auto !important;
  }

  .horizontal-copy {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .horizontal .statement-title {
    font-size: clamp(34px, 9.5vw, 58px) !important;
    line-height: 1.02 !important;
    max-width: 100% !important;
  }
}


/* ================================================================
   NETWORK SECTION VISIBILITY FIX — FINAL SAFE VERSION
   Keeps the card under "Blízky východ" visible without breaking
   the values section fix.
   ================================================================ */

.globe-story .sticky-stage {
  height: 100vh !important;
  min-height: 100vh !important;
  align-items: center !important;
  padding-top: 58px !important;
  padding-bottom: 34px !important;
  overflow: hidden !important;
}

.globe-story .right-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 610px) !important;
  column-gap: clamp(28px, 5vw, 72px) !important;
  row-gap: clamp(2px, .45vw, 7px) !important;
  align-items: center !important;
  align-content: center !important;
}

.globe-story .right-copy > *,
.globe-story .right-copy .section-count {
  grid-column: 2 !important;
}

.globe-story .section-count {
  margin: 0 !important;
}

.globe-story .eyebrow {
  margin: 0 0 clamp(4px, .45vw, 7px) !important;
}

.globe-story .big-split {
  font-size: clamp(42px, 5.05vw, 82px) !important;
  line-height: .94 !important;
  letter-spacing: -.048em !important;
  max-width: 590px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.globe-story .big-split span {
  display: block !important;
  padding-block: 0 !important;
  transform: translateX(calc((var(--p, 0) - .5) * -14px)) !important;
}

.globe-story .glass {
  margin-top: clamp(6px, .75vw, 11px) !important;
  padding: clamp(16px, 1.6vw, 23px) !important;
  max-width: 590px !important;
  max-height: none !important;
  overflow: visible !important;
  border-radius: 22px !important;
}

.globe-story .glass .typewriter {
  font-size: clamp(14px, .98vw, 17px) !important;
  line-height: 1.42 !important;
  max-width: 100% !important;
}

.globe-story .pills {
  margin-top: clamp(8px, .95vw, 14px) !important;
}

/* English text is longer, so make the globe headline slightly smaller. */
html[lang="en"] .globe-story .big-split {
  font-size: clamp(40px, 4.65vw, 76px) !important;
  line-height: .96 !important;
}

@media (max-width: 1180px) {
  .globe-story .right-copy {
    grid-template-columns: minmax(0, .86fr) minmax(340px, 540px) !important;
  }

  .globe-story .big-split {
    font-size: clamp(40px, 6.2vw, 76px) !important;
    max-width: 540px !important;
  }

  .globe-story .glass {
    max-width: 540px !important;
  }
}

@media (max-width: 860px) {
  .globe-story .sticky-stage {
    height: auto !important;
    min-height: 100vh !important;
    padding-top: 86px !important;
    padding-bottom: 46px !important;
    overflow: visible !important;
  }

  .globe-story .right-copy {
    grid-template-columns: 1fr !important;
    row-gap: 8px !important;
  }

  .globe-story .right-copy > *,
  .globe-story .right-copy .section-count {
    grid-column: 1 !important;
  }

  .globe-story .big-split {
    font-size: clamp(38px, 11vw, 66px) !important;
    line-height: 1.02 !important;
    max-width: 100% !important;
  }

  .globe-story .glass {
    margin-top: 8px !important;
    max-width: 100% !important;
  }

  .globe-story .glass .typewriter {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
}


/* ================================================================
   FINAL TYPOGRAPHY + HORIZONTAL SPACING FIX
   - reduces the large PC gap in the values section
   - gives more room for Slovak diacritics
   ================================================================ */

/* --- VALUES / HORIZONTAL SECTION LAYOUT ON DESKTOP --- */
.horizontal-copy {
  grid-template-columns: 120px minmax(420px, 760px) minmax(320px, 640px) !important;
  column-gap: clamp(26px, 4vw, 64px) !important;
  row-gap: clamp(8px, 1vw, 16px) !important;
  align-items: start !important;
}

.horizontal .section-count {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: start !important;
}

.horizontal .eyebrow {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin-bottom: 6px !important;
}

.horizontal .statement-title {
  grid-column: 2 !important;
  grid-row: 2 !important;
  max-width: 760px !important;
  margin-top: 0 !important;
  line-height: 1.08 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-kerning: normal !important;
}

.horizontal .prose {
  grid-column: 3 !important;
  grid-row: 2 !important;
  align-self: start !important;
  margin-top: 0 !important;
  max-width: 640px !important;
}

/* --- GIVE MORE ROOM TO DIACRITICS IN LARGE TITLES --- */
.statement-title,
.wide-title,
.mega-title {
  line-height: 1.04 !important;
  letter-spacing: -.05em !important;
  text-wrap: balance !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.globe-story .big-split {
  line-height: 1.04 !important;
  letter-spacing: -.045em !important;
}

.globe-story .big-split span {
  padding-top: .03em !important;
  padding-bottom: .015em !important;
}

/* Slightly tighten the card under the globe heading, but keep it visible */
.globe-story .glass {
  margin-top: 10px !important;
}

/* --- TABLET --- */
@media (max-width: 1180px) {
  .horizontal-copy {
    grid-template-columns: 100px minmax(360px, 620px) minmax(280px, 520px) !important;
    column-gap: clamp(22px, 3.2vw, 46px) !important;
    row-gap: 10px !important;
  }

  .horizontal .statement-title {
    font-size: clamp(38px, 4.9vw, 70px) !important;
    line-height: 1.08 !important;
    max-width: 620px !important;
  }

  .horizontal .prose {
    max-width: 520px !important;
  }

  .globe-story .big-split {
    line-height: 1.05 !important;
  }
}

/* --- MOBILE --- */
@media (max-width: 860px) {
  .horizontal-copy {
    grid-template-columns: 1fr !important;
    row-gap: 16px !important;
  }

  .horizontal .section-count,
  .horizontal .eyebrow,
  .horizontal .statement-title,
  .horizontal .prose {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .horizontal .eyebrow {
    margin-bottom: 2px !important;
  }

  .horizontal .statement-title {
    line-height: 1.08 !important;
    max-width: 100% !important;
  }

  .globe-story .big-split {
    line-height: 1.06 !important;
  }
}


/* ================================================================
   NETWORK VIDEO SCRUB — ONLY REPLACES THE GLOBE VISUAL
   Keeps the original page/layout and uses scroll progress as video time.
   ================================================================ */

#globeCanvas,
.globe-fallback {
  display: none !important;
}

.network-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}

.network-scroll-video {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(62vw, 1100px);
  height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: .86;
  filter: brightness(1.06) contrast(1.12) saturate(1.06);
  transform:
    translate3d(calc(-4vw + var(--p, 0) * -2vw), -50%, 0)
    scale(calc(1.04 + var(--p, 0) * .08));
  will-change: transform;
}

.video-vignette {
  background:
    radial-gradient(circle at 31% 50%,
      rgba(5,5,5,0) 0 24%,
      rgba(5,5,5,.12) 42%,
      rgba(5,5,5,.50) 70%,
      rgba(5,5,5,.88) 100%),
    linear-gradient(90deg,
      rgba(5,5,5,.02),
      rgba(5,5,5,.40) 54%,
      rgba(5,5,5,.90) 100%) !important;
}

.globe-story .sticky-content {
  z-index: 3;
}

@media (max-width: 860px) {
  .network-scroll-video {
    left: 50%;
    width: 100vw;
    height: 100vh;
    opacity: .54;
    filter: brightness(.86) contrast(1.08) saturate(.95);
    transform:
      translate3d(-50%, -50%, 0)
      scale(calc(1.02 + var(--p, 0) * .06));
  }

  .video-vignette {
    background:
      linear-gradient(to bottom,
        rgba(5,5,5,.22),
        rgba(5,5,5,.62) 48%,
        rgba(5,5,5,.88)) !important;
  }
}


/* ================================================================
   VIDEO SCRUB PERFORMANCE FIX
   Helps Chrome keep the scroll-scrubbed video on the GPU.
   ================================================================ */

.network-scroll-video {
  backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
  contain: paint !important;
}


/* ================================================================
   ABOUT TEXT SCROLL HIGHLIGHT
   The text is visible from the start, then lights up word-by-word
   as the About sticky section scrolls.
   ================================================================ */

.scroll-highlight {
  display: grid;
  gap: 14px;
}

.scroll-highlight .highlight-line {
  color: rgba(244, 239, 226, .25);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
  max-width: 760px;
}

.scroll-highlight .highlight-line.strong {
  font-weight: 900;
}

.highlight-word {
  color: rgba(244, 239, 226, .28);
  transition:
    color .28s ease,
    text-shadow .28s ease,
    opacity .28s ease;
  will-change: color;
}

.highlight-word.is-active {
  color: rgba(244, 239, 226, .96);
  text-shadow: 0 0 18px rgba(244, 239, 226, .08);
}

.highlight-line.strong .highlight-word.is-active {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(215, 180, 109, .12);
}

@media (max-width: 860px) {
  .scroll-highlight .highlight-line {
    font-size: 15px;
    line-height: 1.48;
  }
}


/* ================================================================
   INTRO SECTION ONLY — REVERSIBLE SCROLL TYPEWRITER
   Applies only under:
   "Spájame globálne skúsenosti, rozsiahlu sieť kontaktov
   a inovatívny prístup."
   ================================================================ */

.intro-reversible {
  min-height: 8.4em;
}

.scroll-typewriter {
  font-size: clamp(18px, 1.72vw, 25px);
  line-height: 1.52;
  max-width: 920px;
  color: rgba(13, 13, 13, .68);
  min-height: 1.52em;
}

.scroll-typewriter.strong {
  color: var(--ink);
  font-weight: 700;
}

.scroll-type-char {
  color: transparent;
  opacity: 0;
  filter: blur(5px);
  transition:
    color .16s ease,
    opacity .16s ease,
    filter .16s ease,
    text-shadow .16s ease;
}

.scroll-type-char.is-visible {
  color: rgba(13, 13, 13, .68);
  opacity: 1;
  filter: blur(0);
}

.scroll-typewriter.strong .scroll-type-char.is-visible {
  color: var(--ink);
  text-shadow: 0 0 16px rgba(13, 13, 13, .08);
}

@media (max-width: 860px) {
  .intro-reversible {
    min-height: 10em;
  }

  .scroll-typewriter {
    font-size: 16px;
    line-height: 1.5;
  }
}


/* ================================================================
   ROLEX-STYLE STRENGTH CARDS
   Section: "Nastradex prináša"
   Sticky, cinematic card transitions controlled by scroll.
   ================================================================ */

.rolex-strengths {
  min-height: 360vh !important;
  padding-block: 0 !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(215,180,109,.13), transparent 26%),
    #090909 !important;
  overflow: clip !important;
}

.rolex-strengths-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rolex-strengths-wrap {
  height: 100vh;
  max-width: none !important;
  padding-inline: clamp(22px, 4.6vw, 64px) !important;
  padding-top: clamp(78px, 9vh, 108px);
  padding-bottom: clamp(24px, 4vh, 44px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 2.3vh, 30px);
}

.rolex-strengths .why-head {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: clamp(20px, 4vw, 56px) !important;
  align-items: end !important;
  margin: 0 !important;
  max-width: 1200px;
}

.rolex-strengths .why-head .section-count {
  align-self: start;
  padding-top: .4em;
}

.rolex-strengths .why-head .eyebrow {
  margin-bottom: 6px !important;
  font-size: 11px !important;
  letter-spacing: .16em !important;
}

.rolex-strengths .why-head .wide-title {
  font-size: clamp(44px, 6.5vw, 104px) !important;
  line-height: .96 !important;
  letter-spacing: -.055em !important;
  max-width: 1040px !important;
}

.rolex-card-showcase {
  position: relative;
  min-height: 0;
  height: 100%;
  width: 100%;
  --strength-p: 0;
}

.rolex-card-stage {
  position: absolute;
  inset: 0;
  border-radius: clamp(26px, 3vw, 46px);
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(244,239,226,.12);
  box-shadow:
    0 44px 130px rgba(0,0,0,.54),
    0 0 0 1px rgba(215,180,109,.06) inset;
}

.rolex-card {
  --card-progress: 0;
  --card-opacity: 0;
  --card-scale: 1.06;
  --card-y: 34px;
  --card-blur: 10px;
  position: absolute;
  inset: 0;
  opacity: var(--card-opacity);
  transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale));
  filter: blur(var(--card-blur));
  will-change: opacity, transform, filter, clip-path;
  clip-path: inset(calc((1 - var(--card-progress)) * 100%) 0 0 0 round clamp(26px, 3vw, 46px));
  pointer-events: none;
  background: #050505;
}

.rolex-card.active {
  pointer-events: auto;
}

.rolex-card-bg {
  position: absolute;
  inset: -4%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform:
    translate3d(0, calc((.5 - var(--card-progress)) * 46px), 0)
    scale(calc(1.08 - var(--card-progress) * .035));
  filter: brightness(.72) contrast(1.08) saturate(.90);
  will-change: transform;
}

.rolex-card-bg-alt {
  background-position: 62% center;
}

.rolex-card-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(215,180,109,.22), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.46) 46%, rgba(5,5,5,.78)),
    linear-gradient(to top, rgba(5,5,5,.84), rgba(5,5,5,.08) 54%, rgba(5,5,5,.56));
}

.rolex-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(20px, 3vh, 34px);
  padding: clamp(28px, 4.5vw, 70px);
  transform: translate3d(0, calc((1 - var(--card-progress)) * 28px), 0);
  opacity: clamp(.08, var(--card-progress), 1);
  will-change: transform, opacity;
}

.rolex-card-number {
  position: absolute;
  top: clamp(26px, 3.5vw, 52px);
  left: clamp(28px, 4.5vw, 70px);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
}

.rolex-card h3 {
  color: var(--cream);
  font-size: clamp(46px, 7.2vw, 118px);
  line-height: .87;
  letter-spacing: -.075em;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 760px;
}

.rolex-card p {
  margin-top: clamp(18px, 2vw, 28px);
  max-width: 700px;
  color: rgba(244,239,226,.70);
  font-size: clamp(16px, 1.36vw, 21px);
  line-height: 1.52;
}

.rolex-card-nav {
  position: absolute;
  right: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 40px);
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(244,239,226,.12);
  border-radius: 999px;
  background: rgba(5,5,5,.44);
  backdrop-filter: blur(18px);
}

.rolex-card-nav button {
  appearance: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244,239,226,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.045);
  color: rgba(244,239,226,.46);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s var(--ease);
}

.rolex-card-nav button.active {
  color: #050505;
  background: var(--gold-2);
  border-color: var(--gold-2);
  transform: scale(1.06);
}

/* Small scroll progress line inside the showcase */
.rolex-card-showcase::after {
  content: "";
  position: absolute;
  left: clamp(28px, 4.5vw, 70px);
  right: clamp(28px, 4.5vw, 70px);
  bottom: clamp(18px, 3vw, 40px);
  height: 1px;
  z-index: 8;
  background:
    linear-gradient(90deg,
      var(--gold-2) calc(var(--strength-p, 0) * 100%),
      rgba(244,239,226,.16) 0);
  opacity: .72;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 1120px) {
  .rolex-strengths .why-head {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .rolex-strengths .why-head .wide-title {
    font-size: clamp(40px, 7vw, 82px) !important;
  }

  .rolex-card h3 {
    font-size: clamp(40px, 8vw, 90px);
  }
}

/* Mobile: still cinematic, but not sticky-heavy */
@media (max-width: 820px) {
  .rolex-strengths {
    min-height: auto !important;
    padding-block: 92px !important;
    overflow: hidden !important;
  }

  .rolex-strengths-sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    overflow: visible !important;
  }

  .rolex-strengths-wrap {
    height: auto !important;
    display: block !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .rolex-strengths .why-head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  }

  .rolex-strengths .why-head .wide-title {
    font-size: clamp(38px, 10.3vw, 56px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.035em !important;
  }

  .rolex-card-showcase {
    height: auto;
  }

  .rolex-card-stage {
    position: relative;
    inset: auto;
    display: grid;
    gap: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .rolex-card {
    position: relative;
    min-height: 430px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    border: 1px solid rgba(244,239,226,.12);
    border-radius: 28px;
    overflow: hidden;
  }

  .rolex-card-bg {
    transform: scale(1.08) !important;
  }

  .rolex-card-inner {
    min-height: 430px;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card h3 {
    font-size: clamp(34px, 10.7vw, 56px);
    line-height: .96;
    letter-spacing: -.05em;
  }

  .rolex-card-nav,
  .rolex-card-showcase::after {
    display: none;
  }
}


/* ================================================================
   ROLEX STRENGTH CARDS — FULLSCREEN LAYOUT FIX
   Fixes:
   - "Nastradex prináša" is now in the small heading position
   - the huge title no longer covers the cards
   - cards fill the whole sticky section
   ================================================================ */

.rolex-strengths {
  min-height: 390vh !important;
  padding-block: 0 !important;
  background: #050505 !important;
  overflow: clip !important;
}

.rolex-strengths-sticky {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  display: block !important;
  background: #050505 !important;
}

.rolex-strengths-wrap {
  position: relative !important;
  height: 100vh !important;
  max-width: none !important;
  padding: 0 !important;
  display: block !important;
}

/* The section label sits above the full-screen cards. */
.rolex-strengths .why-head {
  position: absolute !important;
  z-index: 18 !important;
  top: clamp(84px, 10vh, 112px) !important;
  left: clamp(22px, 4.6vw, 64px) !important;
  right: clamp(22px, 4.6vw, 64px) !important;
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  gap: clamp(16px, 3vw, 42px) !important;
  align-items: start !important;
  margin: 0 !important;
  pointer-events: none !important;
}

.rolex-strengths .why-head .section-count {
  color: rgba(244,239,226,.44) !important;
  padding-top: 0 !important;
}

.rolex-strengths .why-head .eyebrow {
  margin: 0 !important;
  color: var(--gold-2) !important;
  font-size: clamp(12px, .9vw, 15px) !important;
  letter-spacing: .18em !important;
  line-height: 1.1 !important;
}

/* Hide the oversized title that was covering the cards. */
.rolex-strengths .why-head .wide-title {
  display: none !important;
}

/* Cards now fill the whole sticky viewport. */
.rolex-card-showcase {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  --strength-p: 0;
}

.rolex-card-stage {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  box-shadow: none !important;
}

.rolex-card {
  inset: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  border-radius: 0 !important;
  clip-path: inset(calc((1 - var(--card-progress)) * 100%) 0 0 0) !important;
}

.rolex-card-bg {
  inset: -5% !important;
  background-size: cover !important;
  background-position: center !important;
  filter: brightness(.66) contrast(1.08) saturate(.88) !important;
}

/* More cinematic overlay, readable content, no card border box. */
.rolex-card-shade {
  background:
    radial-gradient(circle at 78% 18%, rgba(215,180,109,.20), transparent 30%),
    linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.48) 42%, rgba(5,5,5,.82)),
    linear-gradient(to top, rgba(5,5,5,.86), rgba(5,5,5,.12) 56%, rgba(5,5,5,.60)) !important;
}

.rolex-card-inner {
  height: 100vh !important;
  max-width: 760px !important;
  justify-content: flex-end !important;
  padding:
    clamp(150px, 18vh, 190px)
    clamp(24px, 5vw, 78px)
    clamp(76px, 9vh, 112px) !important;
}

.rolex-card-number {
  top: clamp(150px, 18vh, 190px) !important;
  left: clamp(24px, 5vw, 78px) !important;
}

.rolex-card h3 {
  font-size: clamp(42px, 6.2vw, 98px) !important;
  line-height: .90 !important;
  letter-spacing: -.065em !important;
  max-width: 720px !important;
}

.rolex-card p {
  max-width: 680px !important;
  font-size: clamp(16px, 1.24vw, 20px) !important;
  line-height: 1.52 !important;
}

/* Navigation and progress line stay visible but do not fight the content. */
.rolex-card-nav {
  right: clamp(18px, 3vw, 42px) !important;
  bottom: clamp(28px, 4vh, 48px) !important;
}

.rolex-card-showcase::after {
  left: clamp(24px, 5vw, 78px) !important;
  right: clamp(92px, 13vw, 210px) !important;
  bottom: clamp(44px, 5.2vh, 68px) !important;
}

/* Tablet */
@media (max-width: 1120px) {
  .rolex-strengths .why-head {
    top: 84px !important;
    grid-template-columns: 54px minmax(0, 1fr) !important;
  }

  .rolex-card-inner {
    max-width: 700px !important;
    padding-top: 150px !important;
  }

  .rolex-card-number {
    top: 150px !important;
  }

  .rolex-card h3 {
    font-size: clamp(40px, 8vw, 84px) !important;
  }
}

/* Mobile */
@media (max-width: 820px) {
  .rolex-strengths {
    min-height: auto !important;
    padding-block: 92px !important;
    overflow: hidden !important;
  }

  .rolex-strengths-sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .rolex-strengths-wrap {
    height: auto !important;
    padding-inline: clamp(20px, 4.6vw, 64px) !important;
  }

  .rolex-strengths .why-head {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 28px !important;
  }

  .rolex-card-showcase {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: auto !important;
  }

  .rolex-card-stage {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: auto !important;
    display: grid !important;
    gap: 18px !important;
    overflow: visible !important;
    background: transparent !important;
  }

  .rolex-card {
    position: relative !important;
    height: auto !important;
    min-height: 430px !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    border: 1px solid rgba(244,239,226,.12);
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .rolex-card-bg {
    transform: scale(1.08) !important;
  }

  .rolex-card-inner {
    height: auto !important;
    min-height: 430px !important;
    padding: 86px 24px 28px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card-number {
    top: 28px !important;
    left: 24px !important;
  }

  .rolex-card h3 {
    font-size: clamp(34px, 10.7vw, 56px) !important;
    line-height: .96 !important;
  }

  .rolex-card-nav,
  .rolex-card-showcase::after {
    display: none !important;
  }
}

/* ================================================================
   FIXED STRENGTH CARDS — selected images + clean video-like transition
   ================================================================ */
.rolex-strengths {
  min-height: 390vh !important;
}

.rolex-card {
  --card-opacity: 0;
  --card-reveal: 0;
  --card-scale: 1.035;
  --card-y: 72px;
  --card-blur: 12px;
  --card-bg-scale: 1.10;
  --card-bg-shift: 20px;
  --card-content: 0;
  --card-copy-y: 30px;
  opacity: var(--card-opacity) !important;
  transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
  filter: blur(var(--card-blur)) !important;
  clip-path: inset(calc((1 - var(--card-reveal)) * 100%) 0 0 0) !important;
  transition: none !important;
  will-change: opacity, transform, filter, clip-path;
}

.rolex-card:first-child {
  --card-opacity: 1;
  --card-reveal: 1;
  --card-scale: 1;
  --card-y: 0px;
  --card-blur: 0px;
  --card-bg-scale: 1.06;
  --card-bg-shift: 0px;
  --card-content: 1;
  --card-copy-y: 0px;
}

.rolex-card-bg {
  inset: -4% !important;
  transform: translate3d(0, var(--card-bg-shift), 0) scale(var(--card-bg-scale)) !important;
  filter: brightness(.64) contrast(1.10) saturate(.94) !important;
  transition: none !important;
  will-change: transform;
}

.rolex-card-shade {
  background:
    radial-gradient(circle at 76% 18%, rgba(215,180,109,.23), transparent 30%),
    linear-gradient(90deg, rgba(5,5,5,.91) 0%, rgba(5,5,5,.54) 43%, rgba(5,5,5,.80) 100%),
    linear-gradient(to top, rgba(5,5,5,.90), rgba(5,5,5,.10) 54%, rgba(5,5,5,.62)) !important;
}

.rolex-card-inner {
  opacity: var(--card-content) !important;
  transform: translate3d(0, calc((1 - var(--card-content)) * 42px), 0) !important;
  transition: none !important;
  will-change: opacity, transform;
}

.rolex-card-number,
.rolex-card h3,
.rolex-card p {
  transform: translate3d(0, var(--card-copy-y), 0) !important;
  transition: none !important;
}

.rolex-card p {
  opacity: clamp(0, calc((var(--card-content) - .16) * 1.35), 1) !important;
  color: rgba(244,239,226,.86) !important;
}

.rolex-card h3 {
  opacity: clamp(.08, calc(var(--card-content) * 1.16), 1) !important;
  text-shadow: 0 18px 44px rgba(0,0,0,.38);
}

.rolex-card-nav button {
  overflow: hidden;
}

.rolex-card-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--gold-2);
  transform: scaleX(var(--nav-fill, 0));
  transform-origin: left center;
}

@media (max-width: 820px) {
  .rolex-card,
  .rolex-card-bg,
  .rolex-card-inner,
  .rolex-card-number,
  .rolex-card h3,
  .rolex-card p {
    transition: none !important;
  }

  .rolex-card p,
  .rolex-card h3,
  .rolex-card-inner {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ================================================================
   REFINEMENT — better diacritics spacing + tighter number/title spacing
   ================================================================ */
@media (min-width: 821px) {
  .rolex-card-inner {
    justify-content: flex-start !important;
    padding-top: clamp(146px, 17vh, 180px) !important;
  }

  .rolex-card-number {
    top: clamp(146px, 17vh, 180px) !important;
    line-height: 1 !important;
  }

  .rolex-card-inner > div {
    margin-top: clamp(34px, 4vh, 48px) !important;
  }

  .rolex-card h3 {
    margin: 0 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.05em !important;
    text-wrap: balance;
  }

  .rolex-card p {
    margin-top: clamp(16px, 1.8vw, 24px) !important;
  }
}


/* ================================================================
   HERO TITLE FIX — center "globálny" above "distribútor"
   ================================================================ */
.mega-title .indent {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-inline: auto !important;
  padding-left: 0 !important;
  text-align: center !important;
  line-height: 0.92 !important;
  font-size: 0.78em !important;
}

.mega-title .indent br {
  display: block;
}

@media (max-width: 1180px) {
  .mega-title .indent { font-size: 0.82em !important; }
}

@media (max-width: 860px) {
  .mega-title .indent {
    width: 100% !important;
    font-size: 0.88em !important;
    line-height: 0.96 !important;
  }
}

/* ================================================================
   REAL CONTACT FORM STATES
   ================================================================ */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.submit:disabled {
  cursor: wait;
  opacity: .62;
  transform: none !important;
}

.form-note {
  min-height: 1.35em;
  transition: color .25s ease, opacity .25s ease;
}

.form-note.sending { color: var(--gold-2); }
.form-note.success { color: #9be7b0; }
.form-note.error { color: #ffb0a8; }


/* ================================================================
   MOBILE FIX — Nastradex brings / strength cards
   Must stay at the very end of style.css so it overrides desktop
   scroll-animation rules that are declared above it.
   ================================================================ */
@media (max-width: 820px) {
  .rolex-strengths {
    min-height: auto !important;
    height: auto !important;
    padding: clamp(76px, 18vw, 104px) 0 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 78% 7%, rgba(215,180,109,.14), transparent 30%),
      #050505 !important;
  }

  .rolex-strengths-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    display: block !important;
    background: transparent !important;
  }

  .rolex-strengths-wrap {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: 1380px !important;
    padding-inline: clamp(18px, 5vw, 24px) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
  }

  .rolex-strengths .why-head {
    position: relative !important;
    z-index: 2 !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin: 0 0 24px !important;
    pointer-events: auto !important;
  }

  .rolex-strengths .why-head .section-count {
    color: rgba(244,239,226,.42) !important;
    padding-top: 0 !important;
  }

  .rolex-strengths .why-head .eyebrow {
    margin: 0 !important;
    color: var(--gold-2) !important;
    font-size: 11px !important;
    letter-spacing: .17em !important;
    line-height: 1.2 !important;
  }

  .rolex-strengths .why-head .wide-title {
    display: none !important;
  }

  .rolex-card-showcase {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .rolex-card-stage {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .rolex-card {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    pointer-events: auto !important;
    border: 1px solid rgba(244,239,226,.12) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #070707 !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.34) !important;
    isolation: isolate !important;
  }

  .rolex-card-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1.04) !important;
    filter: brightness(.54) contrast(1.1) saturate(.88) !important;
  }

  .rolex-card-bg-alt {
    background-position: 62% center !important;
  }

  .rolex-card-shade {
    position: absolute !important;
    inset: 0 !important;
    background:
      linear-gradient(to bottom, rgba(5,5,5,.50), rgba(5,5,5,.18) 28%, rgba(5,5,5,.92) 100%),
      linear-gradient(90deg, rgba(5,5,5,.80), rgba(5,5,5,.40) 55%, rgba(5,5,5,.76)) !important;
  }

  .rolex-card-inner {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: none !important;
    display: block !important;
    padding: 72px 18px 22px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card-number {
    position: absolute !important;
    top: 22px !important;
    left: 18px !important;
    color: var(--gold-2) !important;
    font-size: 11px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card-inner > div {
    margin-top: 0 !important;
  }

  .rolex-card h3 {
    max-width: 100% !important;
    margin: 0 !important;
    color: var(--cream) !important;
    font-size: clamp(30px, 9.4vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em !important;
    text-wrap: balance !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card p {
    max-width: 100% !important;
    margin-top: 14px !important;
    color: rgba(244,239,226,.78) !important;
    font-size: 14.5px !important;
    line-height: 1.52 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .rolex-card-nav,
  .rolex-card-showcase::after {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .rolex-card-inner {
    padding: 68px 16px 20px !important;
  }

  .rolex-card-number {
    left: 16px !important;
  }

  .rolex-card h3 {
    font-size: clamp(28px, 9vw, 38px) !important;
  }

  .rolex-card p {
    font-size: 14px !important;
  }
}


/* ================================================================
   VALUES TICKER FIX — full right-to-left sweep + mobile spacing
   ================================================================ */
.horizontal {
  position: relative !important;
  overflow: hidden !important;
}

.horizontal-sticky {
  position: sticky !important;
  top: 0 !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.ticker {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: clamp(28px, 6vh, 82px) !important;
  z-index: 0 !important;
  width: max-content !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(.42em, 2.2vw, .72em) !important;
  white-space: nowrap !important;
  color: rgba(13, 13, 13, .052) !important;
  font-size: clamp(88px, 16vw, 270px) !important;
  line-height: .78 !important;
  letter-spacing: .045em !important;
  transform: translate3d(var(--ticker-x, 110vw), 0, 0) !important;
  will-change: transform !important;
  pointer-events: none !important;
  user-select: none !important;
}

.ticker span {
  display: inline-block !important;
  padding-right: clamp(.24em, 1.8vw, .42em) !important;
}

.horizontal-copy {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 860px) {
  .horizontal {
    overflow: hidden !important;
  }

  .horizontal-sticky {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    padding-top: 92px !important;
    padding-bottom: clamp(172px, 27vh, 250px) !important;
    overflow: hidden !important;
  }

  .horizontal-copy {
    position: relative !important;
    z-index: 2 !important;
  }

  .ticker {
    bottom: clamp(24px, 6vh, 54px) !important;
    z-index: 0 !important;
    color: rgba(13, 13, 13, .042) !important;
    font-size: clamp(78px, 26vw, 132px) !important;
    line-height: .82 !important;
    letter-spacing: .055em !important;
    gap: .5em !important;
  }
}

@media (max-width: 390px) {
  .horizontal-sticky {
    padding-bottom: clamp(158px, 25vh, 222px) !important;
  }

  .ticker {
    font-size: clamp(70px, 25vw, 112px) !important;
    letter-spacing: .052em !important;
  }
}


/* ================================================================
   VALUES SECTION — FINAL STABLE TICKER FIX
   Fixes the desktop/mobile blank space and keeps the moving words
   below the mobile text instead of crossing through it.
   ================================================================ */
.horizontal {
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
}

.horizontal-sticky {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  isolation: isolate !important;
  padding-top: clamp(110px, 12vw, 170px) !important;
  padding-bottom: clamp(130px, 13vw, 190px) !important;
}

.horizontal-copy {
  position: relative !important;
  z-index: 2 !important;
}

.ticker {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  bottom: clamp(28px, 5vw, 72px) !important;
  z-index: 1 !important;
  width: max-content !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  gap: clamp(.55em, 2.4vw, .95em) !important;
  white-space: nowrap !important;
  color: rgba(13, 13, 13, .055) !important;
  font-size: clamp(82px, 15vw, 248px) !important;
  line-height: .82 !important;
  letter-spacing: .075em !important;
  transform: translate3d(var(--ticker-x, 110vw), 0, 0) !important;
  will-change: transform !important;
  pointer-events: none !important;
  user-select: none !important;
}

.ticker span {
  display: inline-block !important;
  padding-right: clamp(.28em, 1.7vw, .48em) !important;
}

@media (max-width: 860px) {
  .horizontal {
    height: auto !important;
    min-height: 0 !important;
  }

  .horizontal-sticky {
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding-top: 92px !important;
    padding-bottom: 120px !important;
  }

  .horizontal-copy {
    grid-template-columns: 1fr !important;
    row-gap: 16px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .horizontal .section-count,
  .horizontal .eyebrow,
  .horizontal .statement-title,
  .horizontal .prose {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .horizontal .statement-title {
    font-size: clamp(39px, 11vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.043em !important;
    max-width: 100% !important;
  }

  .horizontal .typewriter {
    font-size: clamp(17px, 4.7vw, 21px) !important;
    line-height: 1.55 !important;
  }

  .ticker {
    bottom: 24px !important;
    z-index: 1 !important;
    color: rgba(13, 13, 13, .045) !important;
    font-size: clamp(54px, 18vw, 86px) !important;
    line-height: .9 !important;
    letter-spacing: .08em !important;
    gap: .62em !important;
  }
}

@media (max-width: 390px) {
  .horizontal-sticky {
    padding-bottom: 108px !important;
  }

  .ticker {
    font-size: clamp(48px, 17vw, 76px) !important;
    letter-spacing: .075em !important;
  }
}
