/* =========================================================
   Malonogometni turnir Maružini
   Sportski dizajn sustav  ·  v3 (identitet logotipa: limeta #85b22d)
   ========================================================= */

:root {
  /* paper palette */
  --paper:        #fafbf9;          /* main bg — warm cream */
  --paper-soft:   #f0f3ec;          /* alt sections */
  --paper-deep:   #dfe6d7;          /* hover, divider strokes */
  --ink:          #1d211d;          /* primary text */
  --ink-soft:     #4a504a;          /* secondary text */
  --ink-mute:     #7d827b;          /* meta, labels */
  --rule:         rgba(29, 33, 29, 0.13);
  --rule-strong:  rgba(29, 33, 29, 0.32);

  /* accents */
  --forest:       #20281a;          /* deep green for dark surfaces */
  --moss:         #567f1b;          /* mid green */
  --sage:         #c8dba4;          /* soft sage */
  --terracotta:   #567f1b;   /* duboka zelena za tekst */          /* warm clay */
  --terracotta-d: #44650f;
  --olive:        #6b7d3f;

  --shadow-sm:  0 1px 2px rgba(27, 37, 32, 0.05);
  --shadow-md:  0 12px 28px -10px rgba(27, 37, 32, 0.18);
  --shadow-lg:  0 24px 60px -16px rgba(27, 37, 32, 0.28);

  --radius:     8px;
  --grass:      #85b22d;     /* limeta iz logotipa */
  --radius-lg:  12px;

  --ff-display: "Archivo", "Inter", -apple-system, sans-serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container:  min(1280px, calc(100% - 2.5rem));
  --container-narrow: min(880px, calc(100% - 2.5rem));

  --type-base: 17px;
}

@media (min-width: 1024px) {
  :root { --type-base: 18px; }
}

* { box-sizing: border-box; }

::selection { background: var(--terracotta); color: #fff; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--type-base);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "ss01";
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 0.18em;
  transition: text-decoration-color .2s ease, color .2s ease;
}
a:hover {
  text-decoration-color: var(--terracotta);
  color: var(--terracotta);
}

p { margin: 0 0 1em; max-width: 64ch; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   TYPOGRAPHY — display headings
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; font-family: var(--ff-body); }

h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--terracotta);
  font-weight: 800;
}

.container { width: var(--container); margin-inline: auto; }
.container-narrow { width: var(--container-narrow); margin-inline: auto; }

/* small caps label — refined alternative to the old eyebrow */
.eyebrow {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--grass);
}

.lead {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 44ch;
}

/* =========================================================
   NAV — quiet editorial masthead
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.4rem 0;
  transition: background .35s ease, padding .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 251, 249, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule);
  padding: 0.9rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  transition: height .25s ease, filter .25s ease;
}
.is-scrolled .brand__logo { height: 46px; }
.nav:not(.is-scrolled) .brand__logo {
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__links a {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 450;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  transition: color .15s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--terracotta); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink) !important;
}
.nav__cta::after { background: var(--terracotta) !important; transform: scaleX(1) !important; }
.nav__cta::before {
  content: "→";
  display: inline-block;
  color: var(--terracotta);
  margin-right: 0.15rem;
}

/* nav over dark hero (not scrolled) */
.nav:not(.is-scrolled) .nav__links a { color: rgba(250,251,249,0.92); }
.nav:not(.is-scrolled) .nav__cta { color: rgba(250,251,249,0.92) !important; }
.nav:not(.is-scrolled) .nav__cta::before { color: #cdeb9a; }
.nav:not(.is-scrolled) .nav__links a:hover { color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  color: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav:not(.is-scrolled) .nav__toggle span { background: var(--paper); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.6rem 2rem;
    gap: 1.1rem;
    box-shadow: 0 12px 24px rgba(0,0,0,.05);
    transform: translateY(calc(-100% - 100px));
    visibility: hidden;
    transition: transform .3s ease, visibility .3s;
    border-bottom: 1px solid var(--rule);
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; }
  .nav:not(.is-scrolled) .nav__links a { color: var(--ink); }
  .nav:not(.is-scrolled) .nav__cta { color: var(--ink) !important; }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: block; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { text-decoration: none; }
.btn--primary {
  background: var(--grass);
  color: #14200e;
}
.btn--primary:hover { background: #95c43c; color: #14200e; transform: translateY(-1px); }
.hero .btn--primary {
  background: var(--grass);
  color: #14200e;
}
.hero .btn--primary:hover { background: #95c43c; color: #14200e; }
.btn--ghost {
  background: transparent;
  color: rgba(250,251,249,0.96);
  border-color: rgba(250,251,249,0.4);
}
.btn--ghost:hover { background: rgba(250,251,249,0.1); color: #fff; border-color: #fff; }
.btn--dark {
  background: var(--forest);
  color: #fff;
}
.btn--dark:hover { background: #161e0e; color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn .arrow { transition: transform .25s ease; font-size: 1.05em; line-height: 1; }
.btn:hover .arrow { transform: translateX(3px); }

/* link-style CTA — magazine "Read more" pattern */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule-strong);
  transition: color .2s ease, border-color .2s ease;
}
.link-cta:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); text-decoration: none; }
.link-cta .arrow { transition: transform .25s ease; }
.link-cta:hover .arrow { transform: translateX(3px); }

/* =========================================================
   HERO — editorial, asymmetric
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: #fff;
  display: grid;
  align-content: end;
  padding: 7rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 40%;
  background-color: #141a10;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,26,16,0.7) 0%, rgba(20,26,16,0.35) 28%, rgba(20,26,16,0.92) 100%);
}
.hero__container {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero__main { max-width: 760px; }
.hero__loc {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(250,251,249,0.78);
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.hero__loc::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(250,251,249,0.5);
  transform: translateY(-4px);
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 850;
  font-size: clamp(2.5rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.8rem;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero__title em {
  font-style: normal;
  font-weight: 850;
  color: #9ed44a;          /* limeta iz logotipa, posvijetljena za tamnu podlogu */
}
.hero__title span.dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: var(--grass);
  vertical-align: 0.4em;
  margin: 0 0.05em 0 -0.04em;
}

.hero__lead {
  font-family: var(--ff-body);
  font-weight: 450;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.4;
  color: rgba(250,251,249,0.88);
  max-width: 36ch;
  margin: 0 0 2.4rem;
}

.hero__cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__side {
  border-left: 1px solid rgba(250,251,249,0.18);
  padding-left: 2rem;
  display: grid;
  gap: 1.6rem;
  align-self: end;
  margin-bottom: 0.5rem;
}
.hero__side dt {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  color: rgba(250,251,249,0.6);
  margin-bottom: 0.25rem;
  font-weight: 750;
}
.hero__side dd {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 750;
  font-size: 1.55rem;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero__side dd small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: rgba(250,251,249,0.6);
  margin-top: 0.2rem;
  font-weight: 400;
}

@media (max-width: 900px) {
  .hero { padding: 6.5rem 0 3rem; }
  .hero__container { grid-template-columns: 1fr; gap: 2rem; }
  .hero__side { display: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 0.86rem;
  color: rgba(250,251,249,0.7);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   SECTION GENERICS
   ========================================================= */
section { padding: 5rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }
.section--alt { background: var(--paper-soft); }
.section--dark { background: var(--forest); color: #fff; }
.section--green { background: var(--forest); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }
.section--dark .eyebrow, .section--green .eyebrow { color: #aedb6b; }

.section__head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: end;
}
.section__head--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  margin-bottom: 4rem;
}
.section__head--center .eyebrow { justify-self: center; }
.section__head p {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 42ch;
  justify-self: end;
}
.section--dark .section__head p,
.section--green .section__head p { color: rgba(250,251,249,0.78); }
.section__head--center p { justify-self: center; }

@media (max-width: 820px) {
  .section__head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
  .section__head p { justify-self: start; }
}

/* subtle horizontal rule for section transitions */
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* =========================================================
   STATS — quiet figure row, no boxes
   ========================================================= */
.stats {
  background: var(--paper-soft);
  padding: 3.5rem 0;
  border-block: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stats__item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stats__item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--grass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.stats__item:hover::after { transform: scaleX(1); }
.stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(133, 178, 45, 0.14);
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.stats__icon svg { width: 24px; height: 24px; }
.stats__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stats__num small {
  font-size: 0.55em;
  font-weight: 750;
  color: var(--terracotta);
}
.stats__label {
  margin-top: 0.45rem;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .stats__item { padding: 1.2rem 1.1rem 1.1rem; }
  .stats__icon { width: 40px; height: 40px; margin-bottom: 0.75rem; }
}

/* =========================================================
   INTRO / TWO-COLUMN COMPOSITION
   ========================================================= */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.intro--flip { grid-template-columns: 1fr 1.1fr; }
.intro--flip .intro__media { order: 2; }
.intro__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.intro__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.intro__badge {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 400;
  box-shadow: var(--shadow-sm);
}
.intro__copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0.5rem 0 1.4rem;
}
.intro__lead {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 1.4rem;
}
.intro__copy .btns {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .intro, .intro--flip { grid-template-columns: 1fr; gap: 2.4rem; }
  .intro--flip .intro__media { order: 0; }
  .intro__media { aspect-ratio: 4/3; }
}

/* =========================================================
   PROGRAM — newspaper-style listing
   ========================================================= */
.program {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.day {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section--alt .day { background: var(--paper); }
.day:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--rule-strong); }
.day__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.day__num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.day__num em {
  color: var(--terracotta);
}
.day__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.day__weekday {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 750;
}
.day__sub {
  font-family: var(--ff-body);
  font-size: 0.86rem;
  color: var(--ink-mute);
}
.day__title {
  font-family: var(--ff-display);
  font-weight: 750;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}
.day__list {
  list-style: none;
  padding: 0; margin: 0;
}
.day__list li {
  padding: 0.7rem 0;
  border-top: 1px dotted var(--rule);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  font-size: 0.97rem;
  color: var(--ink-soft);
  align-items: baseline;
}
.day__list li:first-child { border-top: 0; padding-top: 0; }
.day__list time {
  font-family: var(--ff-display);
  font-weight: 750;
  font-size: 1.02rem;
  color: var(--ink);
}
.day__list em {
  color: var(--ink-mute);
  font-family: var(--ff-display);
  font-weight: 750;
}
.day__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: var(--ff-display);
  font-size: 0.86rem;
  color: var(--terracotta);
}
.day__tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
@media (max-width: 820px) { .program { grid-template-columns: 1fr; } }

/* =========================================================
   PRIZES — refined column layout
   ========================================================= */
.prizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prize {
  padding: 2.4rem 1.8rem;
  text-align: left;
  position: relative;
  border-right: 1px solid var(--rule);
  transition: background .25s ease;
}
.prize:last-child { border-right: 0; }
.prize:hover { background: var(--paper); }
.prize__rank {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 5rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  margin-bottom: 0.4rem;
}
.prize__rank em {
  font-size: 0.45em;
  color: var(--terracotta);
  align-self: flex-start;
  margin-top: 0.5em;
}
.prize--gold .prize__rank { color: #936a18; }
.prize--silver .prize__rank { color: #4a4a4a; }
.prize--bronze .prize__rank { color: #7e3f1f; }
.prize__title {
  font-family: var(--ff-display);
font-weight: 650;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.prize__list {
  list-style: none;
  padding: 0; margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  display: flex; flex-direction: column; gap: 0.45rem;
}
.prize__list li {
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}
.prize__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rule-strong);
}
.prize__list li.is-star::before { content: "★"; color: var(--terracotta); }

.individual-prizes {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.indiv {
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.indiv + .indiv { border-left: 1px solid var(--rule); padding-left: 1.5rem; }
.indiv__num {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--terracotta);
  font-weight: 750;
  min-width: 1.4rem;
}
.indiv__txt strong {
  display: block;
  font-family: var(--ff-display);
font-weight: 650;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.1;
}
.indiv__txt span {
  font-family: var(--ff-body);
  font-size: 0.86rem;
  color: var(--ink-mute);
  display: block;
  margin-top: 0.15rem;
}

@media (max-width: 820px) {
  .prizes { grid-template-columns: repeat(2, 1fr); }
  .prize { padding: 1.6rem 1.2rem; }
  .prize__rank { font-size: 3rem; }
}
@media (max-width: 600px) {
  .prizes { grid-template-columns: 1fr; border: 0; }
  .prize {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    column-gap: 1.1rem;
    align-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 1.4rem 0.2rem;
  }
  .prize:last-child { border-bottom: 0; }
  .prize__rank { font-size: 2.6rem; margin: 0; grid-row: 1 / span 2; }
  .prize__title { margin-bottom: 0.5rem; }
  .prize__list { grid-column: 2; }
  .prize__list li { line-height: 1.35; }
  .prize:nth-child(2) { border-right: 0; }
  .prize:nth-child(1), .prize:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .individual-prizes { grid-template-columns: 1fr; }
  .indiv + .indiv { border-left: 0; padding-left: 0; }
}

/* =========================================================
   FEATURES — editorial photo + caption
   ========================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature {
  position: relative;
  display: block;
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease;
}
.feature:hover { color: var(--ink); transform: translateY(-3px); }
.feature__img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  background-color: var(--paper-deep);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.2rem;
}
.feature__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,26,16,0.4));
  opacity: 0; transition: opacity .35s ease;
}
.feature:hover .feature__img::after { opacity: 1; }
.feature__img-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.feature:hover .feature__img-inner { transform: scale(1.05); }
.feature__kicker {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 0.3rem;
  display: block;
}
.feature h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: text-decoration-color .25s ease;
}
.feature:hover h3 { text-decoration-color: var(--terracotta); }
.feature p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature__img { aspect-ratio: 4/3; }
}

/* =========================================================
   TIMELINE — quiet vertical
   ========================================================= */
.timeline {
  position: relative;
  width: var(--container-narrow);
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 100px; top: 0; bottom: 0;
  width: 1px;
  background: var(--rule-strong);
}
.t-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.t-item:last-child { margin-bottom: 0; }
.t-year {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--terracotta);
  position: relative;
  padding-top: 0.2rem;
}
.t-year::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: -1.6rem;
  width: 12px; height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--paper);
}
.section--alt .t-year::after { box-shadow: 0 0 0 5px var(--paper-soft); }
.t-year small {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.3rem;
}
.t-body {
  padding-top: 0.2rem;
}
.t-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.t-body p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.t-item--highlight .t-year { color: var(--forest); }
.t-item--highlight .t-year::after { background: var(--forest); }
.t-item--highlight .t-body h3 em {
  color: var(--forest);
}
@media (max-width: 700px) {
  .timeline::before { left: 14px; }
  .t-item { grid-template-columns: 1fr; gap: 0.6rem; padding-left: 2.5rem; }
  .t-year::after { left: -2.5rem; right: auto; top: 0.7rem; }
  .t-year { font-size: 1.6rem; padding-top: 0; }
}

/* =========================================================
   LANDMARKS — magazine spread cards
   ========================================================= */
.landmarks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}
.landmark {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.landmark__img {
  aspect-ratio: 5/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.landmark__cat {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.3rem;
}
.landmark h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.landmark p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}
@media (max-width: 800px) {
  .landmarks { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   GALLERY (homepage preview grid)
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.g-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--paper-deep);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.g-item:hover img { transform: scale(1.05); }
.g-item--tall { grid-row: span 2; aspect-ratio: 1/2; }
.g-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
  .g-item--tall { grid-row: span 1; aspect-ratio: 1/1; }
}

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta-block {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 4.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: -25% -15% auto auto;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(177, 85, 48, 0.18);
  filter: blur(8px);
}
.cta-block .eyebrow { color: #aedb6b; }
.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: #fff;
}
.cta-block h2 em { color: #aedb6b; }
.cta-block p {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(250,251,249,0.85);
  max-width: 48ch;
  line-height: 1.45;
}
.cta-block__phone {
  position: relative;
  text-align: right;
}
.cta-block__phone .label {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: rgba(250,251,249,0.7);
  display: block;
  margin-bottom: 0.6rem;
}
.cta-block__phone a {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(250,251,249,0.3);
  padding-bottom: 0.15em;
  display: inline-block;
}
.cta-block__phone a:hover {
  color: #aedb6b;
  border-color: #aedb6b;
}
@media (max-width: 820px) {
  .cta-block { grid-template-columns: 1fr; padding: 2.5rem 2rem; text-align: left; }
  .cta-block__phone { text-align: left; }
}

/* =========================================================
   PAGE HERO — for subpages
   ========================================================= */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--forest);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  opacity: 0.4;
  filter: saturate(0.85);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,26,16,0.5), rgba(20,26,16,0.8));
}
.page-hero .container { position: relative; }
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: end;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-weight: 850;
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0.6rem 0 0;
  text-wrap: balance;
}
.page-hero h1 em {
  font-style: normal;
  color: #9ed44a;
}
.page-hero p {
  font-family: var(--ff-body);
  font-weight: 450;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: rgba(250,251,249,0.8);
  margin: 0;
  max-width: 42ch;
}
.crumbs {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  color: rgba(250,251,249,0.6);
  display: inline-block;
}
.crumbs a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(250,251,249,0.3); }
.crumbs a:hover { color: #aedb6b; border-color: #aedb6b; }
@media (max-width: 820px) {
  .page-hero { padding: 9rem 0 3.5rem; }
  .page-hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 450;
  letter-spacing: 0;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gallery-filters button:hover { color: var(--ink); border-color: var(--ink); }
.gallery-filters button.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.5rem;
}
.masonry .m-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--paper-deep);
  margin: 0;
}
.masonry .m-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.masonry .m-item:hover img { transform: scale(1.06); }
.masonry .m-tall { grid-row: span 2; }
.masonry .m-wide { grid-column: span 2; }
.masonry .m-big { grid-row: span 2; grid-column: span 2; }
@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 600px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .masonry .m-wide, .masonry .m-big { grid-column: span 2; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #141a10;
  color: rgba(250,251,249,0.7);
  padding: 5rem 0 2.2rem;
  font-size: 0.96rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
  text-transform: none;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 0.55rem; }
.footer a {
  color: rgba(250,251,249,0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer a:hover { color: #aedb6b; border-color: rgba(174,219,107,0.4); }
.footer__brand-logo {
  height: 72px;
  width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer p {
  color: rgba(250,251,249,0.65);
  font-size: 0.95rem;
  max-width: 38ch;
}
.footer__bottom {
  border-top: 1px solid rgba(250,251,249,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ff-display);
  font-size: 0.92rem;
  color: rgba(250,251,249,0.5);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 24, 20, 0.96);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(250,251,249,0.25);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-family: var(--ff-display);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(250,251,249,0.1);
  border-color: #fff;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* =========================================================
   ANIMATIONS — restrained editorial reveals
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.muted { color: var(--ink-mute); }
.fineprint {
  font-family: var(--ff-display);
  color: var(--ink-mute);
  font-size: 0.96rem;
  text-align: center;
}

/* =========================================================
   Rezultati — tablice, raspored, završnica
   ========================================================= */

.standings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.standings__card {
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.standings__title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.9rem;
  color: var(--forest);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
}

.table th {
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 0.74rem;
  text-align: center;
  padding: 0.3rem 0.25rem;
  border-bottom: 1px solid var(--rule-strong);
}

.table td {
  text-align: center;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
}

.table tbody tr:last-child td { border-bottom: none; }

.table .table__team {
  text-align: left;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11rem;
}

.table .table__points {
  font-weight: 600;
  color: var(--forest);
}

.schedule { display: grid; gap: 2.5rem; }

.schedule__date {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--forest);
}

.schedule__date small {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-left: 0.75rem;
  font-weight: 450;
}

.schedule__date::first-letter { text-transform: uppercase; }

.fixtures {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
}

.fixture {
  display: grid;
  grid-template-columns: 3.4rem 3.2rem 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
}

.fixture:last-child { border-bottom: none; }

.fixture__time {
  color: var(--ink-mute);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.fixture__group {
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 500;
}

.fixture__home { text-align: right; font-weight: 500; color: var(--ink); }
.fixture__away { text-align: left; font-weight: 500; color: var(--ink); }

.fixture__score {
  min-width: 3.4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--ink-mute);
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.15rem 0.5rem;
  font-size: 0.9rem;
}

.fixture--played .fixture__score {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  font-weight: 600;
}

.playoff { display: grid; gap: 2.2rem; }

.playoff__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--forest);
}

@media (max-width: 640px) {
  .fixture {
    grid-template-columns: 2.9rem 1fr auto 1fr;
    gap: 0.45rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }
  .fixture__group { display: none; }
  .standings { grid-template-columns: 1fr; }
  .standings__card { padding: 1.1rem 1rem 0.8rem; }
}

/* =========================================================
   Cjenik donacija
   ========================================================= */

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem 2.5rem;
}

.menu__cat {
  border-top: 2px solid var(--rule-strong);
  padding-top: 1.1rem;
}

.menu__cat h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: var(--forest);
}

.menu__cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu__cat li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.32rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.menu__cat li::before {
  content: none;
}

.menu__item { flex-shrink: 1; min-width: 0; }

.menu__dots {
  flex: 1;
  border-bottom: 1px dotted var(--rule-strong);
  transform: translateY(-0.25em);
  min-width: 1.5rem;
}

.menu__price {
  flex-shrink: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 500;
}

/* Hero video cover */
.hero__bg { overflow: hidden; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* =========================================================
   Nav dropdown (Turnir)
   ========================================================= */

.nav__drop { position: relative; }

.nav__caret {
  font-size: 0.55em;
  opacity: 0.55;
  display: inline-block;
  transform: translateY(-0.15em);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 11.5rem;
  list-style: none;
  margin: 0;
  padding: 0.55rem 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

/* nevidljivi most preko praznine između linka i izbornika */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -1.1rem;
  left: 0; right: 0;
  height: 1.1rem;
}

.nav__drop:hover .nav__dropdown,
.nav__drop:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__dropdown a,
.nav:not(.is-scrolled) .nav__dropdown a {
  display: block;
  padding: 0.5rem 1.15rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.nav__dropdown a::after { content: none; }

.nav__dropdown a:hover,
.nav:not(.is-scrolled) .nav__dropdown a:hover {
  color: var(--terracotta);
  background: var(--paper-soft);
}

@media (max-width: 900px) {
  .nav__drop { width: 100%; }
  .nav__caret { display: none; }
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    padding: 0.65rem 0 0 1.1rem;
    background: none;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 0.65rem;
  }
  .nav__dropdown::before { content: none; }
  .nav__dropdown a { padding: 0; font-size: 1rem; }
}

.nav__dropdown-sep {
  height: 1px;
  background: var(--rule);
  margin: 0.45rem 0;
}

@media (max-width: 900px) {
  .nav__dropdown-sep { margin: 0; width: 2.5rem; }
}

/* Dječji turnir — kategorije U9/U11 */
.kat { margin-bottom: 3rem; }
.kat:last-child { margin-bottom: 0; }
.kat__title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--rule-strong);
}

/* =========================================================
   Mobile polish (90% posjeta je mobile)
   ========================================================= */
@media (max-width: 480px) {
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1 1 100%; justify-content: center; }
  .btn { padding: 0.95rem 1.3rem; }
  .section__head p { font-size: 1.02rem; }
  .page-hero { padding-top: 7.5rem; }
}

/* Mini-galerije znamenitosti */
.landmark__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.landmark__gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: opacity .2s ease;
}
.landmark__gallery img:hover { opacity: 0.85; }
@media (max-width: 480px) {
  .landmark__gallery { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
}

/* =========================================================
   Subnav — sticky prečaci kroz sekcije stranice
   ========================================================= */
.subnav {
  position: sticky;
  top: 72px; /* visina skrolanog fiksnog headera */
  z-index: 40;
  background: rgba(250, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0.65rem 0;
}
.subnav__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__inner a {
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-weight: 650;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.subnav__inner a:hover {
  color: #14200e;
  background: var(--grass);
  border-color: var(--grass);
}

/* da anchor sekcije ne završe ispod fiksnog headera + subnava */
#program-2026, #nagrade-2026, #zabava, #cjenik, #prijava, #partneri, #arhiva {
  scroll-margin-top: 130px;
}

/* scroll indikator na mobitelu: u toku sadržaja, ne može se preklopiti */
@media (max-width: 900px) {
  .hero .hero__scroll {
    position: static;
    transform: none;
    justify-self: center;
    margin-top: 2.4rem;
  }
}

/* =========================================================
   Partneri turnira
   ========================================================= */
.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.9rem;
}
.sponsor {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3/2;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sponsor:hover { border-color: var(--grass); box-shadow: var(--shadow-sm); }
.sponsor img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 600px) {
  .sponsors { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .sponsor { padding: 0.8rem 0.9rem; }
}

/* Arhiva — poredak skupine + rezultati jedno uz drugo */
.arhiva-grupa {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 760px) {
  .arhiva-grupa { grid-template-columns: 1fr; }
}

/* YouTube embed */
.video-embed {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Fixture bez stupca za skupinu (arhivske grupne liste) */
.fixtures--simple .fixture { grid-template-columns: 3.4rem 1fr auto 1fr; }
@media (max-width: 640px) {
  .fixtures--simple .fixture { grid-template-columns: 2.9rem 1fr auto 1fr; }
}
