/* ============================================================
   NK ZET — Rebranding preview
   Plain CSS, ready to be moved into a WordPress theme (main.css)
   ============================================================ */

:root {
  --zet-blue: #053d89;
  --zet-royal: #0d47a1;
  --zet-navy: #06152e;
  --zet-gold: #ffb000;
  --zet-orange: #ff7a00;

  --white: #ffffff;
  --paper: #f5f7fa;
  --gray-100: #eef2f7;
  --gray-300: #d9dee7;
  --gray-600: #6f7f99;
  --graphite: #1b2433;

  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;

  --line: 2px;
  --ink: #06152e;

  --shadow-soft: 10px 10px 0 var(--zet-navy);
  --shadow-card: 8px 8px 0 var(--zet-navy);
  --shadow-gold: 8px 8px 0 var(--zet-gold);

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;

  --header-h: 104px;
}



/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--navy { background: var(--zet-navy); color: var(--white); }
.section--paper { background: var(--paper); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zet-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--zet-gold); }
.eyebrow .num {
  background: var(--zet-blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 0;
  font-weight: 700;
}
.eyebrow--light .num { background: var(--zet-gold); color: var(--zet-navy); }
.eyebrow__bar { width: 34px; height: 3px; background: var(--zet-gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--zet-blue);
  margin: 0;
}
.section-title--light { color: var(--white); }
.accent-text { color: var(--zet-gold); }

.lead { font-size: clamp(17px, 2vw, 20px); font-weight: 500; color: var(--graphite); }
.section--navy .lead { color: rgba(255, 255, 255, 0.82); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--zet-blue);
  --btn-fg: var(--white);
  --btn-border: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: var(--line) solid var(--btn-border);
  border-radius: 0;
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: 4px 4px 0 var(--btn-border);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--btn-border); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--btn-border); }
.btn--accent { --btn-bg: var(--zet-gold); --btn-fg: var(--zet-navy); --btn-border: var(--ink); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-border: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--zet-navy); }
.btn--line { --btn-bg: var(--white); --btn-fg: var(--zet-blue); --btn-border: var(--zet-blue); }
.btn--line:hover { background: var(--zet-blue); color: var(--white); }
.btn--line-light { --btn-bg: transparent; --btn-fg: var(--white); --btn-border: var(--white); }
.btn--line-light:hover { background: var(--white); color: var(--zet-navy); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(6, 21, 46, 0.94);
  border-bottom: var(--line) solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Yellow contact bar */

.top-contact-bar {
  display: block;
  width: 100%;
  min-height: 34px;
  background: var(--zet-gold);
  color: var(--zet-navy);
  border-bottom: var(--line) solid var(--ink);
}

.top-contact-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.top-contact-bar__inner a {
  display: inline-flex;
  align-items: center;
  color: var(--zet-navy);
  text-decoration: none;
}

.top-contact-bar__inner a:hover {
  color: var(--zet-blue);
}

.top-contact-bar__inner span {
  display: block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--zet-navy);
  transform: rotate(45deg);
}

/* Main nav row */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

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

.site-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
}

.site-logo__text strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.site-logo__text em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--zet-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta.is-mobile {
  display: none;
}

.match-card > .btn {
  display: inline-flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--zet-gold);
  transition: width 0.25s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.site-header.is-scrolled {
  background: var(--white);
  border-bottom: var(--line) solid var(--ink);
  box-shadow: none;
}

.site-header.is-scrolled .site-logo__text {
  color: var(--zet-navy);
}

.site-header.is-scrolled .site-logo__text em {
  color: var(--zet-blue);
}

.site-header.is-scrolled .nav-list a {
  color: var(--graphite);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--zet-navy);
}



/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--zet-navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 46, 0.95) 0%, rgba(6, 21, 46, 0.72) 45%, rgba(6, 21, 46, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 21, 46, 0.85), rgba(6, 21, 46, 0) 50%);
}
.hero__watermark {
  position: absolute;
  right: -2%;
  bottom: -6%;
  font-family: var(--font-display);
  font-size: clamp(140px, 26vw, 420px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.02em;
  pointer-events: none;
  white-space: nowrap;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 60px 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 14px 0 22px;
}
.hero__lead { max-width: 440px; color: rgba(255, 255, 255, 0.85); font-size: clamp(16px, 1.8vw, 19px); margin: 0 0 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__future {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
}

/* ---------- Match card / Hero scoreboard ---------- */

.match-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  background:
    linear-gradient(145deg, rgba(6, 21, 46, 0.96), rgba(5, 61, 137, 0.78)),
    var(--zet-navy);
  border: var(--line) solid var(--zet-gold);
  border-radius: 0;
  padding: 26px;
  color: var(--white);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

.match-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.match-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.match-card__league {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.match-card__competition {
  position: relative;
  z-index: 2;
  margin: -6px 0 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.match-card__teams {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  min-width: 0;
  text-align: center;
}

.match-card__team strong {
  display: block;
  max-width: 120px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.22;
  font-weight: 800;
}

.crest {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 0;
  border: var(--line) solid currentColor;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.crest--image {
  width: 64px;
  height: 64px;
  padding: 7px;
  background: #ffffff;
  color: var(--zet-navy);
  border-color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.crest--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.crest--opponent {
  background: #ffffff;
}

.crest--zet {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 176, 0, 0.18);
}

.match-card__team strong {
  margin-top: 2px;
  max-width: 130px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crest--blue {
  background: var(--zet-blue);
  color: var(--white);
}

.crest--gray {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.match-card__score {
  min-width: 98px;
  min-height: 68px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: var(--line) solid var(--zet-gold);
  box-shadow: 5px 5px 0 var(--zet-gold);
}

.match-card__score span {
  font-size: 52px;
  line-height: 0.9;
}

.match-card__score em {
  color: var(--zet-gold);
  font-size: 34px;
  transform: translateY(-2px);
}

.match-card__vs {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--zet-gold);
}

.match-card__meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.match-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
}

.match-card__meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zet-gold);
  font-weight: 400;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 0;
  background: var(--zet-navy);
  border: 1px solid var(--white);
  color: var(--white);
}

.tag--accent {
  background: var(--zet-gold);
  border-color: var(--zet-navy);
  color: var(--zet-navy);
}

/* Hero result card */
.match-card--result {
  overflow: hidden;
}

.match-card--result::before {
  content: "SEMAFOR";
  position: absolute;
  right: -8px;
  bottom: -8px;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 86px;
  line-height: 0.8;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.match-card__teams--result {
  align-items: center;
}

/* Ovo namjerno vraća gumb, jer gore postoji .match-card > .btn { display: none; } */
.match-card--result > .btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-top: 2px;
}

.match-card--result .btn--block {
  width: 100%;
}

@media (max-width: 1080px) {
  .match-card {
    justify-self: start;
    max-width: 440px;
  }
}

@media (max-width: 620px) {
  .match-card {
    max-width: 100%;
    padding: 22px;
  }

  .match-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .match-card__league {
    text-align: left;
  }

  .match-card__teams {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .match-card__team strong {
    max-width: none;
  }

  .match-card__score {
    min-width: 86px;
    padding: 8px 10px;
    justify-self: center;
  }

  .match-card__score span {
    font-size: 42px;
  }

  .match-card__score em {
    font-size: 28px;
    margin: 0 6px;
  }

  .match-card__meta {
    grid-template-columns: 1fr;
  }

  .match-card--result::before {
    font-size: 68px;
  }
}
/* ---------- Rebrand announcement (brutalist) ---------- */
.rebrand {
  background: var(--zet-navy);
  color: var(--white);
  padding: 0;
  border-top: 4px solid var(--zet-gold);
  border-bottom: 4px solid var(--zet-gold);
}
.rebrand__inner {
  padding: 0;
}
.rebrand__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.rebrand__label { color: var(--zet-gold); }
.rebrand__label--muted { color: rgba(255, 255, 255, 0.5); }
.rebrand__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-size: clamp(54px, 11vw, 150px);
  margin: 0;
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.rebrand__title-accent { color: var(--zet-gold); }
.rebrand__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
}
.rebrand__crest {
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 71, 161, 0.25);
}
.rebrand__crest img {
  width: 320px;
  height: auto;
}
.rebrand__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 36px 40px;
}
.rebrand__lead {
  max-width: 560px;
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.rebrand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rebrand__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rebrand__pills li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 24px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.rebrand__pills li:last-child { border-right: 0; }
.rebrand__pills li span {
  font-family: var(--font-display);
  color: var(--zet-gold);
  font-size: 26px;
  font-weight: 400;
}
@media (max-width: 760px) {
  .rebrand__grid { grid-template-columns: 1fr; }
  .rebrand__crest { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .rebrand__body { padding: 28px 0 0; }
  .rebrand__lead { font-size: 17px; }
  .rebrand__pills { grid-template-columns: 1fr; }
  .rebrand__pills li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .rebrand__pills li:last-child { border-bottom: 0; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--zet-blue);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--zet-gold);
}
.strip__track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.strip .dot { color: var(--zet-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.about__body p { margin: 0 0 18px; }
.stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 28px; }
.stat strong { font-family: var(--font-display); font-size: 52px; color: var(--zet-blue); line-height: 1; display: block; }
.stat span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--gray-600); text-transform: uppercase; }

.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--white);
  border: var(--line) solid var(--ink);
  border-radius: 0;
  padding: 28px 24px;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.value-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-card); }
.value-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 0;
  border: var(--line) solid var(--ink);
  background: var(--zet-blue);
  color: var(--white);
  margin-bottom: 18px;
}
.value-card h3 { font-size: 18px; margin: 0 0 8px; }
.value-card p { margin: 0; font-size: 14px; color: var(--gray-600); }

/* ---------- Teams ---------- */
.teams__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 24px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(13, 71, 161, 0.25), rgba(5, 61, 137, 0.9));
  border: var(--line) solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px);
  opacity: 0.6;
}
.team-card span { position: relative; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--zet-gold); }
.team-card h3 { position: relative; font-family: var(--font-display); font-size: 32px; font-weight: 400; margin: 6px 0 2px; letter-spacing: 0.02em; }
.team-card p { position: relative; margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.7); }
.team-card:hover { transform: translate(-4px, -4px); border-color: var(--zet-gold); box-shadow: 8px 8px 0 var(--zet-gold); }
.team-card--cta { background: var(--zet-gold); border-color: var(--zet-gold); }
.team-card--cta span { color: var(--zet-navy); }
.team-card--cta h3, .team-card--cta p { color: var(--zet-navy); }
.team-card--cta::before { opacity: 0.15; }

/* ---------- School ---------- */
.school__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.school__media { position: relative; border: var(--line) solid var(--ink); border-radius: 0; box-shadow: var(--shadow-card); }
.school__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.school__badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--zet-gold);
  color: var(--zet-navy);
  border: var(--line) solid var(--ink);
  border-radius: 0;
  padding: 16px 22px;
  text-align: center;
}
.school__badge strong { font-family: var(--font-display); font-size: 40px; line-height: 0.9; display: block; }
.school__badge span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.school__content .btn { margin-top: 8px; }

/* FAQ */
.faq { margin-top: 36px; border-top: 1px solid var(--gray-300); }
.faq__item { border-bottom: 1px solid var(--gray-300); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--zet-blue);
  transition: transform 0.25s ease;
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { margin: 0 0 20px; color: var(--gray-600); }


/* ---------- Schedule ---------- */
.schedule {
  position: relative;
}

.schedule .section-head {
  align-items: flex-end;
}

.schedule__period {
  margin: 14px 0 0;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 15px;
}

.schedule__tabs {
  display: inline-flex;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.tab {
  min-height: 42px;
  border: 0;
  background: var(--white);
  padding: 12px 22px;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.12s ease;
}

.tab + .tab {
  border-left: var(--line) solid var(--ink);
}

.tab:hover {
  background: var(--gray-100);
}

.tab.is-active {
  background: var(--zet-blue);
  color: var(--white);
}

.tab.is-active:hover {
  background: var(--zet-blue);
  color: var(--white);
}

.tab:focus-visible {
  outline: 3px solid var(--zet-gold);
  outline-offset: 3px;
}

.schedule__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: -20px 0 28px;
  padding: 16px 18px;
  border: var(--line) solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--zet-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule__meta strong {
  color: var(--zet-blue);
}

.schedule__panel {
  display: none;
  overflow-x: auto;
  padding-bottom: 8px;
}

.schedule__panel[hidden] {
  display: none !important;
}

.schedule__panel.is-active {
  display: block;
  animation: scheduleFade 0.28s ease;
}

@keyframes scheduleFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.schedule__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
  border: var(--line) solid var(--ink);
  border-radius: 0;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}

.schedule__table th {
  text-align: left;
  background: var(--zet-navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 20px;
  white-space: nowrap;
}

.schedule__table td {
  padding: 17px 20px;
  border-top: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--graphite);
  vertical-align: middle;
}

.schedule__table tbody tr {
  transition: background 0.18s ease;
}

.schedule__table tbody tr:hover {
  background: var(--gray-100);
}

.schedule__table td:first-child {
  font-weight: 800;
  color: var(--ink);
}

.schedule__table td:nth-child(3),
.schedule__table td:nth-child(4) {
  white-space: nowrap;
}

.schedule__table--matrix {
  min-width: 1180px;
}

.schedule__table--matrix th,
.schedule__table--matrix td {
  text-align: center;
  vertical-align: middle;
}

.schedule__table--matrix th:first-child,
.schedule__table--matrix td:first-child {
  width: 250px;
  text-align: center;
}

.schedule__cell {
  white-space: pre-line;
}

.schedule__cell--empty {
  background: rgba(6, 21, 46, 0.035);
}

.schedule__cell--match {
  color: #06152e;
  font-weight: 800;
  background:
    linear-gradient(
      transparent 24%,
      rgba(255, 240, 0, 0.78) 24%,
      rgba(255, 240, 0, 0.78) 78%,
      transparent 78%
    );
}

.schedule__cell--match::first-line {
  color: #b21f2d;
}

.schedule__cell--match-red {
  color: #b21f2d;
  background: transparent;
}

.schedule__cell--meeting {
  color: #00424a;
  font-weight: 800;
  background:
    linear-gradient(
      transparent 18%,
      rgba(0, 229, 232, 0.72) 18%,
      rgba(0, 229, 232, 0.72) 82%,
      transparent 82%
    );
}

.schedule__empty {
  margin: 0 0 28px;
  padding: 28px;
  border: var(--line) solid var(--ink);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  font-weight: 700;
}

.schedule__note {
  margin: 26px 0 28px;
  padding: 22px 24px;
  border: var(--line) solid var(--ink);
  background: var(--zet-navy);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--zet-gold);
}

.schedule__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.schedule__note p + p {
  margin-top: 14px;
}

.schedule__note strong {
  color: var(--zet-gold);
}

.schedule__note a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule__note a:hover {
  color: var(--zet-gold);
}

.schedule > .container > .btn {
  margin-top: 2px;
}

@media (max-width: 760px) {
  .schedule__tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .tab {
    width: 100%;
    padding: 13px 14px;
    font-size: 11px;
    text-align: center;
  }

  .tab + .tab {
    border-left: 0;
    border-top: var(--line) solid var(--ink);
  }

  .schedule__meta {
    margin-top: -10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule__panel {
    width: calc(100% + 18px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .schedule__table {
    min-width: 680px;
  }

  .schedule__table--matrix {
    min-width: 1120px;
  }

  .schedule__table th,
  .schedule__table td {
    padding: 14px 16px;
  }
}

@media (max-width: 520px) {
  .schedule__tabs {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .tab {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .schedule__table {
    min-width: 620px;
    box-shadow: 5px 5px 0 var(--zet-navy);
  }

  .schedule__table--matrix {
    min-width: 1060px;
  }

  .schedule__empty {
    padding: 22px;
  }
}

/* ===== Schedule matrix refinement ===== */

.schedule__table--matrix {
  min-width: 1180px;
}

.schedule__table--matrix th,
.schedule__table--matrix td {
  text-align: center;
  vertical-align: top;
}

.schedule__table--matrix th {
  padding: 14px 12px;
}

.schedule__table--matrix td {
  padding: 14px 12px;
}

.schedule__table--matrix td:first-child,
.schedule__table--matrix th:first-child {
  width: 280px;
  text-align: left;
}

.schedule__table--matrix td:first-child {
  background: #fbfcff;
}

.schedule__table--matrix tbody tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.35);
}

.schedule__table--matrix tbody tr:nth-child(even) td:first-child {
  background: #f7f9fd;
}

/* Base content inside cells */
.schedule__cell-content {
  display: inline-block;
  line-height: 1.45;
  white-space: pre-line;
}

/* Left category column */
.schedule__cell--category {
  text-align: left;
}

.schedule__cell--category .schedule__cell-content {
  display: block;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}

.schedule__cell--category strong,
.schedule__cell--category b {
  font-weight: 800;
}

/* Empty cells */
.schedule__cell--empty {
  background: rgba(6, 21, 46, 0.025);
}

/* Badge system for highlighted items */
.schedule__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  max-width: 170px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  white-space: pre-line;
}

.schedule__badge--match {
  background: #f4ea2d;
  color: #06152e;
}

.schedule__badge--match-red {
  background: #ffffff;
  color: #06152e;
  border-color: #b32025;
  box-shadow: 3px 3px 0 rgba(179, 32, 37, 0.22);
}

.schedule__badge--meeting {
  background: #4fd7df;
  color: #05242d;
  border-color: #0b5c66;
  box-shadow: 3px 3px 0 rgba(11, 92, 102, 0.22);
}

/* Make first line inside event more visually distinct */
.schedule__badge--match::first-line,
.schedule__badge--match-red::first-line {
  color: #b32025;
  font-weight: 900;
}

.schedule__badge--meeting::first-line {
  color: #003f4a;
  font-weight: 900;
}

/* Reduce ugly full-cell highlight effect */
.schedule__cell--match,
.schedule__cell--match-red,
.schedule__cell--meeting {
  background: transparent !important;
}

/* Matrix note block refinement */
.schedule__note {
  margin-top: 24px;
}

/* Better horizontal scroll on smaller screens */
.schedule__panel {
  overflow-x: auto;
  overflow-y: visible;
}

@media (max-width: 900px) {
  .schedule__table--matrix {
    min-width: 1120px;
  }

  .schedule__table--matrix td:first-child,
  .schedule__table--matrix th:first-child {
    width: 250px;
  }

  .schedule__badge {
    min-width: 120px;
    max-width: 150px;
    padding: 9px 10px;
    font-size: 14px;
  }
}

@media (max-width: 620px) {
  .schedule__table--matrix {
    min-width: 1040px;
  }

  .schedule__table--matrix td,
  .schedule__table--matrix th {
    padding: 12px 10px;
  }

  .schedule__badge {
    min-width: 112px;
    max-width: 140px;
    font-size: 13px;
    line-height: 1.3;
  }
}



/* ===== Schedule preview overlay / reveal ===== */

.schedule__table-frame {
  position: relative;
}

.schedule__table-frame--preview {
  max-height: 560px;
  overflow: hidden;
  margin-bottom: 28px;
}

.schedule__table-frame--preview.is-expanded {
  max-height: none;
  overflow: visible;
}

.schedule__table-frame--preview .schedule__table {
  margin-bottom: 0;
}

.schedule__preview-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(245, 247, 250, 0) 0%,
      rgba(245, 247, 250, 0.88) 46%,
      rgba(245, 247, 250, 1) 100%
    );
}

.schedule__expand-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  background: var(--zet-gold);
  color: var(--zet-navy);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.18s ease;
}

.schedule__expand-btn:hover {
  transform: translate(-50%, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  background: #ffc13d;
}

.schedule__expand-btn:active {
  transform: translate(-50%, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.schedule__table-frame--preview.is-expanded .schedule__preview-overlay {
  display: none;
}

.schedule__table-frame--preview.is-expanded .schedule__expand-btn {
  position: sticky;
  left: 50%;
  bottom: 18px;
  margin-top: 20px;
  transform: translateX(-50%);
}

@media (max-width: 760px) {
  .schedule__table-frame--preview {
    max-height: 500px;
  }

  .schedule__preview-overlay {
    height: 170px;
  }

  .schedule__expand-btn {
    width: calc(100% - 36px);
    max-width: 360px;
    padding: 0 18px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }
}




/* ---------- News ---------- */
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--white);
  border: var(--line) solid var(--ink);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.news-card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-card); }
.news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.news-card__media .tag { position: absolute; top: 14px; left: 14px; }
.news-card__body { padding: 22px 24px 26px; }
.news-card__body time { font-family: var(--font-mono); font-size: 12px; color: var(--gray-600); }
.news-card__body h3 { font-size: 19px; margin: 8px 0 10px; line-height: 1.25; }
.news-card__body p { margin: 0 0 16px; font-size: 14px; color: var(--gray-600); }
.news-card__body a { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zet-blue); }
.news-card__body a:hover { color: var(--zet-orange); }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: 0;
  border: var(--line) solid rgba(255, 255, 255, 0.5);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 46, 0.8), rgba(6, 21, 46, 0.1));
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.gallery__item span {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.gallery__item:hover::after { opacity: 0.55; }
.gallery__item:hover { transform: scale(1.01); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--zet-blue);
  color: var(--white);
  padding: clamp(72px, 10vw, 130px) 0;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 16px);
}
.cta__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 40vw, 560px);
  color: rgba(255, 255, 255, 0.06);
  line-height: 0.8;
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta__inner .eyebrow { justify-content: center; }
.cta__title { font-family: var(--font-display); font-size: clamp(54px, 9vw, 128px); line-height: 0.9; margin: 0 0 18px; text-transform: uppercase; }
.cta__lead { color: rgba(255, 255, 255, 0.85); font-size: clamp(16px, 2vw, 19px); margin: 0 auto 32px; max-width: 540px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__list { margin: 28px 0; }
.contact__list li { padding: 18px 0; border-bottom: 1px solid var(--gray-300); display: flex; flex-direction: column; }
.contact__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 4px; }
.contact__list a { font-size: 18px; font-weight: 600; color: var(--zet-blue); }
.contact__list a:hover { color: var(--zet-orange); }
.contact__map {
  position: relative;
  height: 220px;
  border-radius: 0;
  border: var(--line) solid var(--ink);
  background:
    linear-gradient(135deg, rgba(5, 61, 137, 0.9), rgba(6, 21, 46, 0.95)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 40px);
  display: grid;
  place-items: center;
}
.contact__map span { font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); font-size: 13px; }
.contact__map::after { content: ""; width: 16px; height: 16px; background: var(--zet-gold); border-radius: 50%; box-shadow: 0 0 0 6px rgba(255, 176, 0, 0.3); position: absolute; }

.contact__form {
  background: var(--white);
  border: var(--line) solid var(--ink);
  border-radius: 0;
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact__form h3 { font-family: var(--font-display); font-weight: 400; font-size: 30px; margin: 0 0 22px; text-transform: uppercase; color: var(--zet-navy); }
.contact__form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 16px; color: var(--graphite); }
.contact__form input,
.contact__form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 15px;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--graphite);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--zet-blue);
  box-shadow: 0 0 0 3px rgba(5, 61, 137, 0.12);
}
.contact__form input.invalid,
.contact__form textarea.invalid { border-color: var(--zet-orange); }
.form-status { font-size: 14px; margin: 14px 0 0; min-height: 20px; }
.form-status.ok { color: var(--zet-blue); font-weight: 600; }

/* =========================================================
   NK ZET — Modern footer
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--zet-navy);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer::before {
  content: "NK ZET";
  position: absolute;
  right: -2vw;
  top: 18px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding: 76px 0 58px;
  border-top: 4px solid var(--zet-gold);
}

.footer-main__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(170px, 0.75fr));
  gap: 44px;
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand__logo {
  display: inline-flex;
  width: 82px;
  height: 82px;
  padding: 10px;
  margin-bottom: 26px;
  background: #ffffff;
  border: var(--line) solid var(--zet-gold);
  box-shadow: 7px 7px 0 var(--zet-gold);
}

.footer-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand__kicker {
  margin: 0 0 8px;
  color: var(--zet-gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-brand__text {
  max-width: 360px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-brand__badges span {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 176, 0, 0.46);
  color: var(--zet-gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-col a span {
  color: var(--zet-gold);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: var(--line) solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition:
    transform 0.14s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.footer-social a:hover {
  transform: translate(-2px, -2px);
  background: var(--zet-gold);
  color: var(--zet-navy);
  border-color: var(--zet-gold);
  box-shadow: 4px 4px 0 #ffffff;
}

/* Moving strip */

.footer-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 16px 0;
  background: var(--zet-blue);
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  border-bottom: 3px solid var(--zet-gold);
}

.footer-strip__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  white-space: nowrap;
  animation: footerMarquee 24s linear infinite;
}

.footer-strip__track span {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-strip__track i {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--zet-gold);
  transform: rotate(45deg);
}

@keyframes footerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Bottom */

.footer-bottom {
  position: relative;
  z-index: 2;
  background: #020916;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */

@media (max-width: 1080px) {
  .footer-main__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .footer-brand__text {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .footer-main {
    padding: 58px 0 44px;
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand__logo {
    width: 72px;
    height: 72px;
  }

  .footer-col {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-col a {
    width: 100%;
  }

  .footer-bottom__inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-strip__track {
    animation: none;
  }
}
/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .match-card { max-width: 420px; }
  .about__grid { grid-template-columns: 1fr; gap: 24px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .teams__grid { grid-template-columns: repeat(2, 1fr); }
  .school__grid { grid-template-columns: 1fr; gap: 36px; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--zet-navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 20px) 28px 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }
  .site-nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { color: var(--white); padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 16px; }
  .site-header.is-scrolled .nav-list a { color: var(--white); }
  .nav-cta.is-mobile { display: inline-flex; margin-top: 22px; }
  body.menu-open { overflow: hidden; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header.is-scrolled.menu-active .menu-toggle span { background: var(--white); }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .values { grid-template-columns: 1fr; }
  .teams__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 2; grid-row: span 1; }
  .hero__future { display: none; }
  .stats { gap: 24px; }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}











/* =========================================================
   NK ZET — Prošle utakmice page
   File: assets/css/main.css
========================================================= */

.past-matches-page {
  background: #f4f7fb;
  color: #06152e;
  overflow: hidden;
}

/* HERO */

.past-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 83, 161, 0.55), transparent 34%),
    linear-gradient(135deg, #06152e 0%, #071b3d 52%, #020916 100%);
  color: #ffffff;
}

.past-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
  background-size: 42px 42px;
  opacity: 0.55;
  pointer-events: none;
}

.past-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 90px;
  border-radius: 999px;
  background: rgba(255, 180, 0, 0.15);
  filter: blur(10px);
  pointer-events: none;
}

.past-hero__watermark {
  position: absolute;
  right: -2vw;
  bottom: -5vw;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7rem, 21vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
}

.past-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
}

.past-hero__title {
  margin: 22px 0;
  max-width: 820px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.2rem, 11vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.past-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.past-hero__card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(0, 80, 156, 0.62), rgba(0, 34, 77, 0.58));
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.1);
  padding: 30px;
  backdrop-filter: blur(14px);
}

.past-hero__card strong {
  display: block;
  margin: 22px 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.past-hero__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

/* BROWSER */

.past-browser {
  padding: 90px 0 110px;
}

.past-browser__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 32px;
}

/* MAIN CATEGORY TABS */

.past-category-tabs {
  position: sticky;
  top: 82px;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 0 46px;
  padding: 14px;
  border: 1px solid rgba(6, 21, 46, 0.12);
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(16px);
  scrollbar-width: thin;
}

.past-category-tabs::-webkit-scrollbar {
  height: 7px;
}

.past-category-tabs::-webkit-scrollbar-thumb {
  background: rgba(6, 21, 46, 0.22);
}

.past-category-tab {
  flex: 0 0 auto;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid rgba(6, 21, 46, 0.16);
  background: #ffffff;
  color: #06152e;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.past-category-tab span {
  display: block;
  margin-bottom: 4px;
  color: #ffb400;
  font-size: 0.68rem;
}

.past-category-tab:hover {
  transform: translateY(-2px);
  border-color: #ffb400;
}

.past-category-tab.is-active {
  background: #06152e;
  color: #ffffff;
  border-color: #06152e;
  box-shadow: 6px 6px 0 rgba(255, 180, 0, 0.32);
}

/* PANELS */

.past-panel {
  animation: pastPanelIn 0.28s ease both;
}

.past-panel[hidden],
.past-subpanel[hidden] {
  display: none !important;
}

@keyframes pastPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.past-panel__head {
  margin-bottom: 26px;
}

.past-panel__description {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(6, 21, 46, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* SUBTABS */

.past-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.past-subtab {
  padding: 11px 16px;
  border: 1px solid rgba(6, 21, 46, 0.18);
  background: #ffffff;
  color: #06152e;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.past-subtab:hover {
  transform: translateY(-2px);
  border-color: #ffb400;
}

.past-subtab.is-active {
  background: #ffb400;
  color: #06152e;
  border-color: #ffb400;
}

/* COMPETITION HEAD */

.past-competition-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.past-competition-head h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* MATCH CARDS */

.past-match-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.past-match-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(6, 21, 46, 0.14);
  background:
    linear-gradient(135deg, rgba(0, 83, 161, 0.96), rgba(3, 37, 82, 0.98));
  color: #ffffff;
  box-shadow: 8px 8px 0 rgba(6, 21, 46, 0.1);
}

.past-match-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 25%, transparent 25%);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.past-match-card::after {
  content: "NKZ";
  position: absolute;
  right: 14px;
  bottom: -12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
}

.past-match-card > * {
  position: relative;
  z-index: 2;
}

.past-match-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: #ffb400;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.past-match-card__competition {
  min-height: 44px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.past-match-card__scoreline {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.past-match-card__scoreline strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.05rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.past-match-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 90px;
  padding: 8px 13px;
  background: #ffb400;
  color: #06152e;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 900;
}

.past-match-card__score em {
  margin: 0 7px;
  font-style: normal;
}

.past-match-card__link {
  width: fit-content;
  margin-top: auto;
  color: #ffffff;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid #ffb400;
}

.past-match-card__link:hover {
  color: #ffb400;
}

/* EMPTY STATE */

.past-empty-state {
  padding: 34px;
  border: 1px dashed rgba(6, 21, 46, 0.24);
  background: #ffffff;
  color: #06152e;
}

.past-empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.past-empty-state p {
  margin: 0;
  color: rgba(6, 21, 46, 0.66);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .past-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .past-hero__inner {
    grid-template-columns: 1fr;
  }

  .past-hero__card {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .past-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .past-hero__title {
    font-size: clamp(4.2rem, 21vw, 6rem);
  }

  .past-browser {
    padding: 64px 0 80px;
  }

  .past-browser__top {
    display: block;
  }

  .past-category-tabs {
    top: 70px;
    margin-bottom: 34px;
    padding: 10px;
  }

  .past-category-tab {
    min-height: 54px;
    padding: 11px 14px;
    font-size: 0.72rem;
  }

  .past-match-grid {
    grid-template-columns: 1fr;
  }

  .past-match-card {
    min-height: 235px;
  }

  .past-match-card__scoreline strong {
    font-size: 1.75rem;
  }

  .past-competition-head {
    display: block;
  }

  .past-competition-head .tag {
    display: inline-flex;
    margin-bottom: 14px;
  }
}

.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(6, 21, 46, 0.16);
  background: linear-gradient(135deg, #174b97 0%, #0b2347 100%);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}



/* =========================================================
   NK ZET — Gallery page fix
========================================================= */

.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.gallery-page__item {
  grid-column: span 4;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(6, 21, 46, 0.12);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(6, 21, 46, 0.08);
}

.gallery-page__link {
  display: block;
  position: relative;
  min-height: 380px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  background: #06152e;
}

.gallery-page__image {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #06152e;
}

.gallery-page__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
  background: #ffffff;
}

.gallery-page__caption span {
  color: #0053a1;
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-page__caption strong {
  color: #06152e;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.gallery-page__item:hover .gallery-page__image {
  transform: scale(1.04);
}

.gallery-page__image {
  transition: transform 0.35s ease;
}

@media (max-width: 1100px) {
  .gallery-page__item {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .gallery-page__item {
    grid-column: span 12;
  }

  .gallery-page__image {
    height: 260px;
    min-height: 260px;
  }
}

/* =========================================================
   NK ZET — Summer break / gotovi treninzi
========================================================= */

.summer-break {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 176, 0, 0.22), transparent 32%),
    linear-gradient(135deg, #f5f7fa 0%, #ffffff 48%, #eef3fb 100%);
  border-top: 4px solid var(--zet-gold);
  border-bottom: 2px solid rgba(6, 21, 46, 0.14);
}

.summer-break::before {
  content: "LJETO";
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 360px);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: rgba(6, 21, 46, 0.045);
  pointer-events: none;
}

.summer-break__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.summer-break__media {
  position: relative;
  border: var(--line) solid var(--ink);
  background: var(--zet-navy);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.summer-break__media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.summer-break__media::after {
  content: "NK ZET";
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  padding: 8px 12px;
  background: var(--zet-gold);
  color: var(--zet-navy);
  border: var(--line) solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summer-break__media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.summer-break__title {
  margin: 0 0 22px;
  color: var(--zet-blue);
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.summer-break__lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(6, 21, 46, 0.74);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
  font-weight: 500;
}

.summer-break__notice {
  display: grid;
  gap: 8px;
  max-width: 620px;
  padding: 22px 24px;
  border: var(--line) solid var(--ink);
  background: var(--zet-navy);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--zet-gold);
}

.summer-break__notice strong {
  color: var(--zet-gold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
}

.summer-break__notice span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .summer-break__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .summer-break__media {
    max-width: 620px;
  }

  .summer-break__media img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .summer-break__media img {
    min-height: 280px;
  }

  .summer-break__notice {
    padding: 20px;
  }

  .summer-break__notice strong {
    font-size: 1.65rem;
  }
}

/* =========================================================
   NK ZET — Top contact bar
========================================================= */

.top-contact-bar {
  width: 100%;
  min-height: 34px;
  background: var(--zet-gold);
  color: var(--zet-navy);
  border-bottom: 2px solid var(--ink);
}

.top-contact-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.top-contact-bar__inner a {
  color: var(--zet-navy);
  text-decoration: none;
}

.top-contact-bar__inner a:hover {
  color: var(--zet-blue);
}

.top-contact-bar__inner span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--zet-navy);
  transform: rotate(45deg);
}





/* ---------- Header mobile fix ---------- */

@media (max-width: 860px) {
  :root {
    --header-h: 104px;
  }

  .top-contact-bar__inner {
    justify-content: center;
    min-height: 34px;
    font-size: 9px;
    letter-spacing: 0.06em;
    gap: 9px;
    text-align: center;
  }

  .top-contact-bar__inner span {
    width: 5px;
    height: 5px;
  }

  .header-inner {
    height: 70px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--zet-navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + 20px) 28px 28px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a,
  .site-header.is-scrolled .nav-list a {
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }

  .nav-cta.is-mobile {
    display: inline-flex;
    margin-top: 22px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header.is-scrolled.menu-active .menu-toggle span {
    background: var(--white);
  }
}

/* =========================================================
   NK ZET — Trgovina (predbilježbe)
========================================================= */

.shop-page__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 20px;
}

.shop-page__lead {
  max-width: 640px;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
}

.shop-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-page__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.shop-page__pricing {
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
}

.section--navy .shop-page__pricing { color: rgba(255, 255, 255, 0.85); }
.shop-page__pricing p { margin: 0 0 6px; }
.shop-page__stock-total strong { color: var(--zet-gold); }
.section--paper .shop-page__stock-total strong { color: var(--zet-blue); }

/* ---------- Product grid ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.shop-card__trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  background: var(--white);
  text-align: left;
  overflow: hidden;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.section--navy .shop-card__trigger { border-color: rgba(255, 255, 255, 0.35); }

.shop-card__trigger:not(:disabled):hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-card);
}

.shop-card__trigger:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.shop-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}

.shop-card__stock-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--zet-navy);
  color: var(--white);
  border: 1px solid var(--white);
}

.shop-card__stock-tag.is-sold-out {
  background: var(--zet-orange);
  border-color: var(--ink);
  color: var(--white);
}

.shop-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--graphite);
}

.shop-card__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--zet-blue);
}

/* ---------- Modal ---------- */
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shop-modal.is-open {
  display: flex;
}

body.shop-modal-open {
  overflow: hidden;
}

.shop-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 46, 0.82);
}

.shop-modal__panel {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background: var(--white);
  border: var(--line) solid var(--ink);
  box-shadow: var(--shadow-soft);
}

.shop-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: var(--line) solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.shop-modal__media {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gray-100);
  padding: 28px;
}

.shop-modal__media-main {
  width: 100%;
  height: auto;
  max-width: 320px;
  max-height: 46vh;
  object-fit: contain;
}

.shop-modal__thumbs {
  display: flex;
  gap: 8px;
}

.shop-modal__thumb {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 2px solid var(--gray-300);
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
  flex-shrink: 0;
}

.shop-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-modal__thumb.is-active {
  border-color: var(--zet-blue);
}

.shop-modal__content {
  flex: 1 1 320px;
  padding: 32px;
}

.shop-modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
  color: var(--zet-navy);
  margin: 4px 0 10px;
}

.shop-modal__desc {
  color: var(--gray-600);
  font-size: 14px;
  margin: 0 0 20px;
}

.shop-modal__soldout {
  font-weight: 700;
  color: var(--zet-orange);
}

/* ---------- Reservation form ---------- */
.shop-form__radios {
  border: none;
  padding: 0;
  margin: 0 0 18px;
}

.shop-form__radios legend {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
  padding: 0;
}

.shop-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  margin-bottom: 8px;
  cursor: pointer;
}

.shop-form__radio:has(input:checked) {
  border-color: var(--zet-blue);
  background: rgba(5, 61, 137, 0.06);
}

.shop-form__radio.is-disabled,
.shop-form__radio:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.shop-form__radio small {
  font-weight: 400;
  color: var(--gray-600);
}

.shop-form__row { margin-bottom: 16px; }
.shop-form__row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--graphite);
}

.shop-form__row input {
  width: 100%;
  padding: 12px 14px;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
}

.shop-form__row input:focus {
  outline: none;
  border-color: var(--zet-blue);
  box-shadow: 0 0 0 3px rgba(5, 61, 137, 0.12);
}

.shop-form__row input.invalid {
  border-color: var(--zet-orange);
}

.shop-form__delivery-fields[hidden] { display: none; }

.shop-form__total {
  font-family: var(--font-mono);
  font-size: 15px;
  margin: 18px 0;
}

.shop-form__total strong { color: var(--zet-blue); }

.shop-form__status {
  min-height: 20px;
  font-size: 13px;
  margin: 12px 0 0;
}

.shop-form__status.ok { color: var(--zet-blue); font-weight: 700; }
.shop-form__status.err { color: var(--zet-orange); font-weight: 700; }

@media (max-width: 760px) {
  .shop-modal__media {
    flex-basis: 100%;
    padding: 20px;
  }

  .shop-modal__media img {
    max-height: 38vh;
  }

  .shop-modal__content {
    flex-basis: 100%;
    padding: 24px 20px 28px;
  }

  .shop-page__pricing {
    text-align: left;
  }
}