/* ============================================================
   CINEBOOM DESIGN SYSTEM — CORE CSS v3
   Integral CF · Barlow Condensed · Sports World · Archivo
   @import MUST be first — before any @font-face rules
   ============================================================ */

/* ── WEB FONTS (must come before @font-face) ──────────────── */
/* Barlow Condensed: primary display font — full Slovak diacritics support */
/* Oswald: fallback condensed bold with CE support */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700;1,800&family=Oswald:wght@600;700&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=block");

/* ── LOCAL BRAND FONTS ────────────────────────────────────── */
/* Integral CF kept for potential direct use, but NOT in --f-display anymore */
@font-face {
  font-family: "Integral CF";
  src: url("fonts/Fontspring-DEMO-integralcf-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Integral CF";
  src: url("fonts/Fontspring-DEMO-integralcf-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Sports World";
  src: url("fonts/Sports_World-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MADE Soulmaze";
  src: url("fonts/MADE_Soulmaze_PERSONAL_USE.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  --cb-red:         #FE121D;
  --cb-red-hover:   #FF2A35;
  --cb-red-press:   #D90F18;
  --cb-red-deep:    #7F0000;
  --cb-black:       #000000;
  --cb-ink:         #0B0B0B;
  --cb-white:       #FFFFFF;
  --cb-gray-90:     #1A1A1A;
  --cb-gray-70:     #3F3F3F;
  --cb-gray-50:     #7F7F7F;
  --cb-gray-30:     #BFBFBF;

  --fg-1:           var(--cb-white);
  --fg-2:           var(--cb-gray-30);
  --fg-3:           var(--cb-gray-50);
  --fg-accent:      var(--cb-red);
  --bg-1:           var(--cb-black);
  --bg-2:           var(--cb-ink);
  --bg-3:           var(--cb-gray-90);
  --border-1:       rgba(255,255,255,0.08);
  --border-2:       rgba(255,255,255,0.16);

  --shadow-glow:      0 0 48px rgba(254,18,29,0.45);
  --shadow-glow-soft: 0 0 24px rgba(254,18,29,0.25);
  --shadow-card:      0 24px 60px rgba(0,0,0,0.6);

  --radius-0:    0px;
  --radius-pill: 8px;

  --g-blur:      20px;
  --g-bg:        rgba(255,255,255,0.042);
  --g-bg-h:      rgba(255,255,255,0.075);
  --g-border:    rgba(255,255,255,0.11);
  --g-border-t:  rgba(255,255,255,0.22);
  --g-r:         14px;
  --g-r-pill:    8px;

  /* Barlow Condensed: sole display font — full Slovak diacritics, no mixing artefacts */
  --f-display: "Barlow Condensed", "Oswald", Impact, sans-serif; /* @kind font */
  --f-varsity: "Sports World", "Bowlby One", "Integral CF", Impact, sans-serif; /* @kind font */
  --f-body:    "Archivo", -apple-system, "Helvetica Neue", Arial, sans-serif; /* @kind font */

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-boom: cubic-bezier(0.16, 1.2, 0.3, 1); /* @kind other */
  --dur-fast:  120ms; /* @kind other */
  --dur-base:  220ms; /* @kind other */
  --dur-slow:  420ms; /* @kind other */
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; touch-action: manipulation; }
button, a, .media-card, .dq-option, .rev-arrow, [role="button"] { touch-action: manipulation; }
body {
  background: var(--cb-black);
  color: var(--fg-1);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; }
img, video { display: block; max-width: 100%; height: auto; }

/* ── GLASS ────────────────────────────────────────────────── */
.glass {
  background:       var(--g-bg);
  backdrop-filter:  blur(var(--g-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--g-blur)) saturate(1.5);
  border:           1px solid var(--g-border);
  border-top-color: var(--g-border-t);
  border-radius:    var(--g-r);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.45);
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.glass:hover {
  background:       var(--g-bg-h);
  border-color:     rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.32);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: var(--g-r-pill);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-top-color: rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  color: white;
  font-family: var(--f-display); font-weight: 800;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease-out);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  border-top-color: rgba(255,255,255,0.36);
  transform: translateY(-1px);
}
.btn-glass-red {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--g-r-pill);
  background: rgba(254,18,29,0.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(254,18,29,0.4);
  border-top-color: rgba(254,18,29,0.58);
  box-shadow: inset 0 1px 0 rgba(254,18,29,0.12);
  color: white;
  font-family: var(--f-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease-out);
}
.btn-glass-red:hover {
  background: rgba(254,18,29,0.28);
  border-color: rgba(254,18,29,0.58);
  transform: translateY(-1px);
}
.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  background: var(--cb-red); color: white;
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border: none; border-radius: var(--radius-0); cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-red:hover { background: var(--cb-red-hover); box-shadow: var(--shadow-glow-soft); transform: translateY(-1px); }

/* ── FLOATING NAVBAR ──────────────────────────────────────── */
.navbar {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 32px), 1480px);
  z-index: 1000;
  padding: 14px 20px 14px 29px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: var(--g-r-pill);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.09);
  border-top-color: rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 48px rgba(0,0,0,0.65);
}
.nav-logo img { height: 34px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-family: var(--f-display); font-weight: 800;
  font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: white; }

/* ── HAMBURGER ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding-top: 12vh;
  gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav .mobile-nav-logo { display: none; }
.mobile-nav-link {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 8vw, 46px);
  text-transform: uppercase; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-nav-link:hover { color: white; }
.mobile-nav-divider {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

/* ── HERO BASE ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-cin-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 68%, rgba(110,32,0,.48) 0%, transparent 48%),
    radial-gradient(ellipse at 82% 22%, rgba(55,0,0,.32) 0%, transparent 42%),
    linear-gradient(180deg, #0c0c0c 0%, #000 100%);
}
.hero-cin-bg::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent 0px, transparent 38px,
    rgba(255,255,255,0.005) 38px, rgba(255,255,255,0.005) 39px
  );
}
.hero-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.022;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(255,255,255,0.6) 2px, rgba(255,255,255,0.6) 3px
  );
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-redline {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cb-red) 30%, var(--cb-red) 70%, transparent 100%);
  z-index: 3; opacity: 0.6;
}

/* ── RED MARQUEE ──────────────────────────────────────────── */
.marquee-strip {
  background: var(--cb-red); overflow: hidden; padding: 16px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-inner { display: flex; align-items: center; gap: 32px; padding: 0 16px; white-space: nowrap; }
.marquee-item {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.04em; text-transform: uppercase; color: white;
}
.marquee-sep { font-family: var(--f-varsity); font-size: 20px; color: rgba(0,0,0,0.4); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STACKED TYPE ─────────────────────────────────────────── */
.typo-stack { background: var(--cb-black); padding: 52px 0 76px; overflow: hidden; }
.typo-line {
  display: block;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(48px, 10.5vw, 200px);
  line-height: 0.9;      /* was 0.875 — more room for diacritics */
  color: white; white-space: nowrap;
  padding: 0 48px;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.typo-line.red { color: var(--cb-red); font-style: italic; }

/* ── IMAGE PLACEHOLDER ────────────────────────────────────── */
.img-ph {
  width: 100%; height: 100%;
  background: #080808;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0px, transparent 17px,
    rgba(255,255,255,0.018) 17px, rgba(255,255,255,0.018) 18px
  );
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.img-ph span { font-family: monospace; font-size: 10px; color: rgba(255,255,255,0.13); text-align: center; padding: 0 16px; }

/* ── EYEBROW ──────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cb-red);
  margin-bottom: 12px; display: block;
}

/* ── FOOTER DIVIDER ──────────────────────────────────────── */
.footer-redline {
  width: 100%;
  height: 3px;
  background: var(--cb-red);
  box-shadow: 0 0 24px rgba(254,18,29,0.5);
}

/* ── FOOTER v2 ────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 48px 72px 0;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: none;
}

/* Decorative watermark — massive faded text bleeding off right */
.ftr-watermark {
  position: absolute;
  right: -40px;
  bottom: 24px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(100px, 18vw, 300px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: white;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

/* Three-column main area */
.ftr-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.ftr-col { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* ── Left — brand ── */
.ftr-logo { height: 104px; width: 104px; object-fit: contain; align-self: center; margin-bottom: 28px; }

.ftr-tagline {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 34px;
  max-width: 230px;
}

.ftr-socials { display: flex; gap: 12px; justify-content: center; margin-top: 0; }

/* Liquid glass social buttons */
.ftr-social-btn {
  width: 65px; height: 65px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--cb-red);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.ftr-social-btn:hover {
  color: var(--cb-red-hover);
  background: rgba(254,18,29,0.09);
  transform: none;
  box-shadow: none;
}

/* ── Center — navigation ── */
.ftr-col--nav { padding-top: 0; gap: 2px; align-items: flex-start; text-align: left; justify-content: flex-start; }

.ftr-nav-link {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 6px 0;
  line-height: 1.15;
  transition: color var(--dur-fast) var(--ease-out);
}
.ftr-nav-link:hover { color: white; }

/* ── Right — contact ── */
.ftr-col--contact { padding-top: 0; gap: 12px; align-items: flex-end; text-align: right; }

.ftr-contact-item { display: flex; flex-direction: column; gap: 3px; align-items: flex-end; text-align: right; }

.ftr-contact-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cb-red);
}

.ftr-contact-value {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  transition: color var(--dur-fast) var(--ease-out);
}
a.ftr-contact-value:hover { color: white; }

/* ── Bottom bar ── */
.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0 18px;
  border-top: none;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}
.ftr-bottom span {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.01em;
}

/* ── GLASS INPUTS ─────────────────────────────────────────── */
.input-glass {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-0);
  color: white; font-family: var(--f-body); font-size: 15px; line-height: 1.5;
  outline: none; transition: all var(--dur-fast) var(--ease-out);
  appearance: none; -webkit-appearance: none;
}
.input-glass::placeholder { color: rgba(255,255,255,0.22); }
.input-glass:focus { background: rgba(255,255,255,0.065); border-color: var(--cb-red); box-shadow: 0 0 0 1px var(--cb-red); }
select.input-glass option { background: #1a1a1a; color: white; }
textarea.input-glass { resize: vertical; min-height: 100px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-label {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--f-body); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); cursor: pointer;
  padding: 8px 14px; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all var(--dur-fast) var(--ease-out);
}
.checkbox-label input { display: none; }
.checkbox-label:has(input:checked) { background: rgba(254,18,29,0.15); border-color: rgba(254,18,29,0.4); color: white; }
.checkbox-label:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: white; }

/* ── LANGUAGE SWITCHER (dropdown) ─────────────────────────── */
.lang-switch { position: relative; display: inline-flex; visibility: hidden; font-family: var(--f-body); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.lang-switch.ready { visibility: visible; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; border-radius: var(--g-r-pill); padding: 0; margin: 0; cursor: pointer; font: inherit; letter-spacing: inherit; color: rgba(255,255,255,0.48); transition: color var(--dur-fast) var(--ease-out); }
.lang-current:hover { color: rgba(255,255,255,0.48); }
.lang-chevron { transition: transform var(--dur-fast) var(--ease-out); opacity: 0.75; }
.lang-switch.open .lang-chevron { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 100%; display: flex; flex-direction: column; background: #0d0d0d; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--g-r-pill); overflow: hidden; opacity: 0; visibility: hidden; max-height: 0; box-shadow: 0 12px 28px rgba(0,0,0,0.55); z-index: 200; transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), max-height var(--dur-fast) var(--ease-out), visibility 0s linear var(--dur-fast); }
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; max-height: 160px; transform: translateX(-50%) translateY(0); transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), max-height var(--dur-fast) var(--ease-out); }
.lang-opt { background: none; border: none; cursor: pointer; font: inherit; letter-spacing: inherit; color: rgba(255,255,255,0.48); padding: 9px 16px; text-align: center; white-space: nowrap; transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
.lang-opt:hover { color: rgba(255,255,255,0.48); background: rgba(255,255,255,0.06); }
.nav-lang { margin-right: 6px; }
.mobile-nav-lang { justify-content: center; margin-top: 22px; font-size: 15px; }
.ftr-lang { justify-content: center; margin-top: 22px; }
.lang-toggle { display: none; align-items: center; gap: 8px; }
.lang-t-opt { background: none; border: none; padding: 0; margin: 0; cursor: pointer; font: inherit; letter-spacing: inherit; color: rgba(255,255,255,0.48); transition: color var(--dur-fast) var(--ease-out); }
.lang-t-opt.active { color: #fff; font-weight: 800; }
.lang-t-sep { color: rgba(255,255,255,0.25); font-weight: 400; }
@media (max-width: 768px) {
  .ftr-lang .lang-current, .ftr-lang .lang-menu { display: none; }
  .ftr-lang .lang-toggle { display: inline-flex; }
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--cb-red); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 64px 40px 0; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { top: 12px; padding: 10px 14px; width: calc(100% - 24px); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 24px; }

  /* Marquee */
  .marquee-item { font-size: 18.4px; }
  .marquee-strip { padding: 13px 0; }

  /* Typo stack */
  .typo-line { font-size: clamp(36px, 9vw, 80px); padding: 0 20px; line-height: 0.92; }

  /* Footer (mobile) */
  .footer { padding: 40px 20px 0; position: relative; overflow: hidden; }
  .ftr-watermark { display: none; }
  .ftr-main { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; text-align: center; }
  .ftr-col { align-items: center; text-align: center; }
  .ftr-col--nav { order: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px 20px; align-items: center; justify-items: center; text-align: center; }
  .ftr-col--nav a { text-align: center; }
  .ftr-col--nav a:last-child { grid-column: 1 / -1; }
  .ftr-col--contact { order: 1; gap: 12px; align-items: center; text-align: center; }
  .ftr-main > .ftr-col:nth-child(2) { order: 2; }
  .ftr-contact-item { align-items: center; text-align: center; }
  .ftr-socials { justify-content: center; }
  .ftr-logo { height: 30px; align-self: center; }
  .ftr-tagline { font-size: 14px; margin-bottom: 16px; }
  .ftr-nav-link { font-size: 18px; padding: 4px 0; }
  .ftr-bottom { flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 14px 0 20px; text-align: center; position: relative; z-index: 1; }
  .ftr-bottom span { font-size: 11px; }

  /* Buttons */
  .btn-glass, .btn-red, .btn-glass-red { font-size: 11px; padding: 12px 20px; }
}


/* ── MOBILE NAV SOCIALS (inside hamburger overlay) ────────── */
.mobile-nav-socials { display: flex; gap: 10px; margin-top: 32px; }
.mobile-nav-socials a {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
}
.mobile-nav-socials a:active { color: white; background: rgba(255,255,255,0.09); }

/* ── GLOBAL MOBILE POLISH (≤ 768px) ───────────────────────── */
html, body { overflow-x: hidden; }
@media (max-width: 768px) {
  nav.navbar { display: flex; justify-content: center; }
  .navbar .nav-hamburger { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }
  .navbar .nav-center { display: none; }
  .navbar .nav-social { display: none; }
  img, video { max-width: 100%; }
  .btn-glass, .btn-red, .btn-glass-red, .btn-cta-dark, .kt-btn { min-height: 44px; }
}
