:root {
  --bg: #0b0b0b;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --text-muted: var(--muted);
  --yellow: #f2c94c;
  --color-accent: var(--yellow);
  --border: rgba(242, 201, 76, 0.18);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1200px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #111111 35%, #0b0b0b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* Layout */
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 56px 0;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.15;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.section-lead {
  margin: 0 0 24px;
  max-width: 760px;
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(242, 201, 76, 0.12);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(242, 201, 76, 0.25);
  background: #111;
}

.brand__text {
  min-width: 0;
}

.brand__name {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand__sub {
  margin: 0;
  color: #888;
  font-size: 0.74rem;
}

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

.site-nav a {
  color: #eee;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  transition: 0.2s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.site-nav a:hover {
  color: var(--yellow);
  background: #111;
}

.site-nav a.active {
  background: var(--yellow);
  color: #000;
  font-weight: 600;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #0f0f0f;
  color: var(--yellow);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(242, 201, 76, 0.12);
  background: #000;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel__inner {
  padding: 14px 0 16px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(242, 201, 76, 0.1);
  background: #0f0f0f;
  color: #f2f2f2;
  cursor: pointer;
}

.mobile-cta-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mobile-cta-grid a {
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  font-size: 0.82rem;
  border: 1px solid rgba(242, 201, 76, 0.2);
  background: #111;
}

.mobile-cta-grid a:first-child {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture,
.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 520px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.16) 46%, #0b0b0b 100%),
    linear-gradient(90deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.42) 34%, rgba(0,0,0,0.10) 72%, rgba(0,0,0,0.26) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 88px 0 56px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  max-width: 840px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  margin: 14px 0 0;
  color: #ddd;
  max-width: 760px;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}

.btn--yellow {
  background: var(--yellow);
  color: #000;
}

.btn--yellow:hover {
  opacity: 0.92;
}

.btn--ghost {
  border-color: rgba(242, 201, 76, 0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
}

.btn--ghost:hover {
  border-color: rgba(242, 201, 76, 0.7);
  color: var(--yellow);
}

.hero__badges {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
}

.hero__badge {
  border: 1px solid rgba(242, 201, 76, 0.16);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.hero__badge--link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero__badge--link:hover,
.hero__badge--link:focus-visible {
  border-color: rgba(242, 201, 76, 0.38);
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.page-home .hero__content {
  padding-top: 6px;
  align-content: start;
}

.page-home .hero__content h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: clamp(1.9rem, 3.9vw, 3.1rem);
  line-height: 1.12;
}

.page-home .hero-subtitle {
  margin: 18px 0 20px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.18;
}

.page-home .hero-accent {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .page-home .hero {
    position: relative;
  }

  .page-home .hero__content {
    min-height: calc(100vh - 84px);
    padding-bottom: 220px;
  }

  .page-home .hero__badges {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    z-index: 3;
  }

  .page-home .hero__badge {
    width: 100%;
  }

  .page-home .hero__content h1 {
    font-size: clamp(1.5rem, 6.7vw, 2rem);
    line-height: 1.15;
  }

  .page-home .hero-subtitle {
    font-size: 1.16rem;
    line-height: 1.45;
  }
}

@media (min-width: 900px) {
  .page-home .hero {
    min-height: calc(100vh - 84px);
  }

  .page-home .hero__content {
    padding-top: 0;
    padding-bottom: 32px;
    justify-content: flex-start;
  }

  .page-home .hero__content h1 {
    margin-top: 0;
  }

  .page-home .hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
    align-items: stretch;
  }

  .page-home .hero__badge {
    width: 100%;
  }
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(16, 16, 16, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  background: rgba(242, 201, 76, 0.1);
  border: 1px solid rgba(242, 201, 76, 0.2);
  color: var(--yellow);
  font-weight: 700;
}

/* Page hero */
.page-hero {
  border-bottom: 1px solid rgba(242, 201, 76, 0.1);
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  padding: 46px 0 42px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.page-hero p {
  margin: 0 0 8px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-item a {
  color: inherit;
}

.gallery-item--instagram {
  display: block;
  text-decoration: none;
}

.gallery-item--instagram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.gallery-item__badge,
.gallery-item__cta {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(242, 201, 76, 0.35);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(4px);
  color: #fff;
}

.gallery-item__badge {
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

.gallery-item__cta {
  left: 12px;
  bottom: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-item--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.motivation-video__toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(242, 201, 76, 0.3);
  background: rgba(10, 10, 10, 0.86);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.motivation-video__toggle:hover,
.motivation-video__toggle:focus-visible,
.gallery-item--instagram:hover .gallery-item__cta,
.gallery-item--instagram:focus-visible .gallery-item__cta {
  border-color: rgba(242, 201, 76, 0.65);
  box-shadow: 0 0 0 3px rgba(242, 201, 76, 0.12);
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #8a8a8a;
  font-size: 0.88rem;
  text-align: center;
  padding: 10px;
}

.gallery-grid--transformacije .gallery-item {
  aspect-ratio: 4 / 5;
}

.gallery-grid--transformacije .gallery-item img {
  object-position: center top;
}

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

.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #111;
  display: grid;
  place-items: center;
  color: #888;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #111;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
  border-top: 1px solid rgba(242, 201, 76, 0.08);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1.2fr;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(242, 201, 76, 0.08);
  background: rgba(0,0,0,0.3);
  color: #f0f0f0;
}

/* Contact rows with icons (premium variant) */
.contact-row--icon {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.contact-row--icon .contact-value {
  text-align: right;
  color: #fff;
  font-weight: 500;
  min-width: 0;
  word-break: break-word;
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(242, 201, 76, 0.15);
  background: rgba(242, 201, 76, 0.05);
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1;
}

/* Brand-colored icons */
.contact-icon--viber {
  color: #7360f2;
  border-color: rgba(115, 96, 242, 0.25);
  background: rgba(115, 96, 242, 0.08);
}

.contact-icon--whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.25);
  background: rgba(37, 211, 102, 0.08);
}

.contact-icon--instagram {
  color: #f77737;
  border-color: rgba(247, 119, 55, 0.25);
  background: rgba(247, 119, 55, 0.08);
}

.contact-icon--mail {
  color: #f2c94c;
}

.contact-icon--map {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.25);
  background: rgba(255, 107, 107, 0.08);
}

.contact-icon--clock {
  color: #9ad0ff;
  border-color: rgba(154, 208, 255, 0.25);
  background: rgba(154, 208, 255, 0.08);
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* CTA band */
.cta-band {
  padding-bottom: 88px;
}

.cta-band .card {
  border-color: rgba(242, 201, 76, 0.22);
  background: linear-gradient(90deg, #111111 0%, #090909 100%);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-band__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 10px;
}

/* Footer */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(242, 201, 76, 0.1);
}

.site-footer__inner {
  padding: 28px 0 92px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #0d0d0d;
}

.footer-title {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
}

.footer-muted {
  margin: 4px 0 0;
  color: #888;
  font-size: 0.88rem;
}

.footer-col {
  color: #ddd;
  font-size: 0.94rem;
}

.footer-col p {
  margin: 0 0 8px;
  color: #ddd;
}

.footer-links{
  margin-top: 10px;
  font-size: 0.86rem;
  color: #aaa;
  line-height: 1.35;
}
.footer-links a{
  color: #eee;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-links a:hover{
  color: var(--yellow);
  border-bottom-color: rgba(242, 201, 76, 0.45);
}

.footer-col a {
  color: #eee;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-credit{
  padding: 0 0 18px;
}

.footer-credit a{
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 201, 76, 0.35);
}

.footer-credit a:hover{
  border-bottom-color: rgba(242, 201, 76, 0.9);
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(242, 201, 76, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px;
  display: none;
}

.mobile-sticky-cta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mobile-sticky-cta a {
  text-align: center;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid rgba(242, 201, 76, 0.15);
  background: #101010;
  color: #f4f4f4;
  font-size: 0.78rem;
}

.mobile-sticky-cta a:first-child {
  background: var(--yellow);
  color: #000;
  font-weight: 700;
}

/* Helpers */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }

/* Responsive */
@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

  .footer-actions {
    align-items: flex-start;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band__actions {
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  /* Ensure MP Web Studio credit stays visible above mobile sticky CTA */
  .footer-credit{
    padding-bottom: 72px;
    text-align: center;
  }
  .footer-credit .footer-muted{
    text-align: center;
  }
}

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

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .map-wrap iframe {
    height: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    min-height: 68vh;
  }

  .hero__bg img {
    object-position: center center;
  }

  .hero__content {
    padding: 76px 0 42px;
  }

  .hero__badges {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }


  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding-bottom: 96px;
  }

  .cta-band__actions {
    grid-template-columns: 1fr;
  }

  .brand__sub {
    display: none;
  }

  .brand__name {
    font-size: 0.92rem;
    max-width: 180px;
  }

  /* Mobile contact rows */
  .contact-row--icon {
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }

  .contact-row--icon .contact-value {
    font-size: 0.95rem;
    text-align: right;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.92rem;
  }
}
/* Trener photo */
.trainer-photo-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  align-self: start;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.trainer-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0a0a0a;
}

@media (max-width: 900px) {
  .trainer-photo-card {
    aspect-ratio: 4 / 5;
    max-height: 420px;
  }
}

/* Gallery lightbox */
.gallery-item--btn, .video-placeholder--btn {
  cursor: pointer;
  width: 100%;
  text-align: inherit;
}

.gallery-item--btn {
  padding: 0;
  background: transparent;
  border: 0;
  font: inherit;
}

.video-placeholder--btn {
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #111;
  font: inherit;
  padding: 0;
}

.gallery-item--btn:focus-visible, .video-placeholder--btn:focus-visible,
.lightbox__close:focus-visible, .lightbox__nav:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
}

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

/* Ensure lightbox is fully hidden when closed (prevents any duplicate content showing in page flow) */
.lightbox[hidden],
.lightbox[aria-hidden="true"] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(3px);
}

.lightbox__dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(88vh, 900px);
  background: #0c0c0c;
  border: 1px solid rgba(242, 201, 76, 0.2);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  grid-template-rows: 1fr auto auto;
  gap: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.lightbox__stage {
  grid-column: 2;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: #050505;
  padding: 16px;
}

.lightbox__img, .lightbox__video {
  max-width: 100%;
  max-height: 68vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox__video { background: #000; }

.lightbox__img[hidden],
.lightbox__video[hidden],
.lightbox__video-fallback[hidden] {
  display: none !important;
}

.lightbox__video-fallback {
  width: min(540px, 100%);
  min-height: 260px;
  border: 1px dashed rgba(242,201,76,.35);
  border-radius: 16px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  color: #ddd;
  padding: 20px;
}
.lightbox__video-fallback > div { font-size: 2rem; }
.lightbox__video-fallback p { margin: 0; font-weight: 600; }
.lightbox__video-fallback small { color: #aaa; }

.lightbox__nav, .lightbox__close {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lightbox__nav {
  font-size: 2rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.02);
}
.lightbox__nav:hover { background: rgba(255,255,255,.06); }
.lightbox__nav--prev { grid-column: 1; grid-row: 1; }
.lightbox__nav--next { grid-column: 3; grid-row: 1; }

.lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  z-index: 2;
}

.lightbox__caption {
  grid-row: 3;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #eaeaea;
  font-size: .95rem;
}
.lightbox__caption [data-lightbox-counter] { color: #bdbdbd; }

@media (max-width: 640px) {
  .lightbox { padding: 10px; }
  .lightbox__dialog {
    grid-template-columns: 42px 1fr 42px;
    border-radius: 14px;
  }
  .lightbox__stage { padding: 10px; min-height: 240px; }
  .lightbox__img, .lightbox__video { max-height: 60vh; }
  .lightbox__nav { font-size: 1.6rem; }
  .lightbox__caption {
  grid-row: 3; font-size: .85rem; }
}

/* Lightbox thumbnails */
.lightbox__thumbs {
  grid-row: 2;
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  padding: 10px 14px 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #090909;
  scroll-snap-type: x mandatory;
}

.lightbox__thumbs::-webkit-scrollbar { height: 8px; }
.lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 999px; }

.lightbox__thumb {
  flex: 0 0 auto;
  width: 86px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(242, 201, 76, 0.18);
  background: #050505;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: center;
  display: grid;
  place-items: center;
}

.lightbox__thumb:hover { border-color: rgba(242, 201, 76, 0.45); }

.lightbox__thumb.is-active {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(242, 201, 76, 0.12);
}

.lightbox__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.lightbox__thumb-fallback {
  padding: 6px 8px;
  font-size: .75rem;
  color: #ddd;
  text-align: center;
  line-height: 1.1;
}

.lightbox__thumb-video {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #eaeaea;
  font-size: .78rem;
  text-align: center;
  padding: 6px;
}

.lightbox__thumb-play {
  font-size: 1.1rem;
  opacity: .9;
}

@media (max-width: 640px) {
  .lightbox__thumb { width: 74px; height: 50px; border-radius: 10px; }
  .lightbox__thumbs {
  grid-row: 2; padding: 10px 10px 12px; gap: 8px; }
}

/* Video preview kartice u galeriji */
.video-placeholder{
  position: relative;
  overflow: hidden;
  padding: 0;
}
.video-thumb__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #090909;
}
.video-placeholder__overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.35rem;background:linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.42));color:#f2f2f2;pointer-events:none}
.video-placeholder__play{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,208,0,.92);
  color: #111;
  font-weight: 800;
}
.video-placeholder__label{
  font-size: .9rem;
  font-weight: 700;
}



/* ===== Batch fixes (mobile footer center, premium icons, trainer statement) ===== */

/* 1) Mobilni footer centralizacija */
.btn-label{display:inline-block;line-height:1;}

/* Contact info row icons stronger visual distinction */
.contact-grid .info-item .icon,
.contact-list .info-item .icon{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.contact-grid .info-item:nth-child(1) .icon{background:rgba(56,136,255,.10); color:#67a0ff;}
.contact-grid .info-item:nth-child(2) .icon{background:rgba(255,79,79,.10); color:#ff6b6b;}
.contact-grid .info-item:nth-child(3) .icon{background:rgba(37,211,102,.10); color:#25D366;}
.contact-grid .info-item:nth-child(4) .icon{background:rgba(225,48,108,.10); color:#E1306C;}
.contact-grid .info-item:nth-child(5) .icon{background:rgba(247,201,72,.10); color:#f7c948;}
.contact-grid .info-item:nth-child(6) .icon{background:rgba(162,170,184,.10); color:#c5ccd7;}

/* ===== Round 3 fixes: FAQ appended items + full brand icon styling ===== */

/* FAQ added items should match existing accordion and avoid raw overflow text */
.faq-item{
  width: 100%;
}
.faq-item summary{
  list-style: none;
}
.faq-item summary::-webkit-details-marker{
  display:none;
}

/* Contact list icon chips stronger brand/readability */
.contact-grid .info-item:nth-child(1) .icon,
.contact-list .info-item:nth-child(1) .icon{ color:#f7c948; border-color: rgba(247,201,72,.35); background: rgba(247,201,72,.08);}
.contact-grid .info-item:nth-child(2) .icon,
.contact-list .info-item:nth-child(2) .icon{ color:#8F5BD7; border-color: rgba(143,91,215,.35); background: rgba(143,91,215,.10);}
.contact-grid .info-item:nth-child(3) .icon,
.contact-list .info-item:nth-child(3) .icon{ color:#25D366; border-color: rgba(37,211,102,.35); background: rgba(37,211,102,.10);}
.contact-grid .info-item:nth-child(4) .icon,
.contact-list .info-item:nth-child(4) .icon{ color:#E1306C; border-color: rgba(225,48,108,.35); background: rgba(225,48,108,.10);}
.contact-grid .info-item:nth-child(5) .icon,
.contact-list .info-item:nth-child(5) .icon{ color:#f7c948; border-color: rgba(247,201,72,.35); background: rgba(247,201,72,.08);}
.contact-grid .info-item:nth-child(6) .icon,
.contact-list .info-item:nth-child(6) .icon{ color:#ff5b6b; border-color: rgba(255,91,107,.35); background: rgba(255,91,107,.08);}
.contact-grid .info-item:nth-child(7) .icon,
.contact-list .info-item:nth-child(7) .icon{ color:#c5ccd7; border-color: rgba(197,204,215,.35); background: rgba(197,204,215,.08);}

.contact-grid .info-item .icon svg,
.contact-list .info-item .icon svg{
  width:18px;
  height:18px;
}

/* ===== Round 4 FAQ accordion cleanup ===== */
.faq-list details,
.faq-grid details,
.faq-section details,
details.faq-item{
  width:100%;
  margin:0 0 14px 0;
  border:1px solid rgba(247,201,72,.18);
  border-radius:18px;
  background: rgba(10,10,10,.72);
  overflow:hidden;
}
details.faq-item > summary{
  position:relative;
  padding: 22px 56px 22px 22px;
  cursor:pointer;
  font-weight:700;
  line-height:1.35;
}
details.faq-item > summary::after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  font-size:1.6rem;
  line-height:1;
}
details.faq-item[open] > summary::after{
  content:"−";
}
details.faq-item > .faq-content{
  padding: 0 22px 20px 22px;
  border-top:1px solid rgba(247,201,72,.12);
}
details.faq-item > .faq-content p{
  margin: 0;
}

/* Safety: hide malformed bare details rows accidentally injected without faq-item class */
main > details:not(.faq-item){
  display:none !important;
}

/* Kontakt: originalne brand ikonice (Viber / WhatsApp / Instagram) */
.brand-icon-img{
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

/* Prevent background scroll when overlays are open */
body.no-scroll {
  overflow: hidden;
}

/* Visible focus for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* Blog */
.blog-toolbar{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  margin-bottom:18px;
}

.blog-grid{ align-items: stretch; }
.blog-card{ display:flex; flex-direction:column; gap:10px; transition: transform .15s ease, border-color .15s ease; }
.blog-card:hover{ transform: translateY(-2px); border-color: rgba(242,201,76,0.35); }
.blog-more{ margin-top:auto; color: var(--yellow); font-weight:600; }
.blog-empty h3{ margin:0 0 8px; }

.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.breadcrumbs a{ color: var(--text); opacity:0.9; }
.breadcrumbs a:hover{ color: var(--yellow); }
.breadcrumbs__sep{ opacity:0.55; }

.blog-article{ padding: 22px; }
.blog-article h2{ margin: 18px 0 10px; font-size: 1.35rem; }
.blog-article ul{ margin: 10px 0 0 18px; color: var(--muted); }
.blog-lead{ font-size: 1.05rem; color: var(--muted); margin-top:0; }

@media (max-width: 640px){
  .blog-toolbar{ flex-direction:column; align-items:flex-start; }
}

/* === Blog cover image === */
.blog-cover{
  margin: 0 0 18px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.blog-cover img{
  width: 100%;
  height: auto;
  display: block;
}

/* === Blog index card thumbnails === */
.blog-card{
  overflow: hidden;
}
.blog-card__img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 600px){
  .blog-card__img{ height: 150px; }
}

/* === Premium hover for blog cards === */
.blog-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.16);
}
.blog-card__img{
  transition: transform .22s ease;
}
.blog-card:hover .blog-card__img{
  transform: scale(1.03);
}
@media (hover: none){
  .blog-card:hover{ transform:none; box-shadow:none; }
  .blog-card:hover .blog-card__img{ transform:none; }
}

/* === Blog cards: text over image === */
.blog-card{
  position: relative;
}
.blog-card__img{
  height: 210px;
}
.blog-card__overlay{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
}
.blog-card__overlay h3{
  margin: 0 0 6px 0;
}
.blog-card__overlay p{
  margin: 0;
  opacity: .92;
}
.blog-card__overlay .blog-more{
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 600px){
  .blog-card__img{ height: 190px; }
  .blog-card__overlay{ padding: 14px; }
}

/* === Blog intro block === */
.blog-intro{
  padding: 22px;
}
.blog-intro h2{
  margin-top: 18px;
}

/* === Blog post cover overlap === */
.blog-cover{
  margin: 0 0 -260px 0; /* pull next card up over image */
}
.blog-article.card{
  position: relative;
  z-index: 2;
  padding-top: 22px;
}

/* Better paragraph rhythm */
.blog-article p{
  margin: 0 0 14px 0;
  line-height: 1.65;
}
.blog-article .blog-lead{
  margin-bottom: 18px;
}
.blog-article h2, .blog-article h3{
  margin-top: 22px;
}
@media (max-width: 600px){
  .blog-cover{ margin-bottom: -180px; }
}

/* === Programi i cenovnik: price styling & anchor scroll === */
.program-price{
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.05rem;
}
.program-price strong{
  color: var(--yellow);
}
.program-price__note{
  color: rgba(255,255,255,.72);
  font-weight: 500;
  margin-left: 6px;
}
h2[id]{
  scroll-margin-top: 90px;
}
.program-detail-card{
  border: 1px solid rgba(255,255,255,.10);
}

/* === Program detail cards: divider & price === */
.program-detail-card{
  padding: 22px;
}
.program-divider{
  border: none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 18px 0 14px 0;
}
.program-price{
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}
.program-price strong{
  color: var(--yellow);
}
.program-price__note{
  color: rgba(255,255,255,.72);
  font-weight: 500;
  margin-left: 6px;
}

.program-card-title,
.program-detail-title{
  color: var(--yellow);
}

.program-pricing-note{
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.6;
}

@media (max-width: 768px){
  .program-pricing-note{
    font-size: .92rem;
  }
}

.program-pricing-note-wrap{
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 18px;
}

@media (max-width: 768px){
  .program-pricing-note-wrap{
    padding: 0 16px;
  }
}

/* === Gallery landing upgrade === */
.gallery-hub-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.gallery-hub-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(242,201,76,.12);
  background:linear-gradient(180deg, rgba(18,18,18,.98) 0%, rgba(8,8,8,.98) 100%);
  border-radius:24px;
  box-shadow: var(--shadow);
}
.gallery-hub-preview{
  position:relative;
  min-height:190px;
  padding:14px;
  border-top:1px solid rgba(242,201,76,.1);
  background:radial-gradient(circle at top left, rgba(242,201,76,.12), transparent 42%), #0d0d0d;
}
.gallery-hub-chip{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.58);
  border:1px solid rgba(255,255,255,.08);
  color:#f7f7f7;
  font-size:.82rem;
  font-weight:600;
}
.gallery-hub-mosaic{
  display:grid;
  height:100%;
  gap:10px;
}
.gallery-hub-mosaic--transformacije{
  grid-template-columns:1.15fr .85fr;
  grid-template-rows:repeat(2, 82px);
}
.gallery-hub-mosaic--transformacije img:first-child{
  grid-row:1 / span 2;
}
.gallery-hub-mosaic--umetnost{
  grid-template-columns:1.05fr .95fr;
  grid-template-rows:repeat(2, 82px);
}
.gallery-hub-mosaic--umetnost img:first-child{
  grid-row:1 / span 2;
}
.gallery-hub-mosaic img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  display:block;
}
.gallery-hub-play{
  position:absolute;
  left:24px;
  bottom:22px;
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.62);
  border:1px solid rgba(255,255,255,.12);
  color:var(--yellow);
  font-size:.95rem;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}
.gallery-hub-card__body{
  padding:22px;
}
.gallery-hub-card__eyebrow{
  margin:0 0 8px;
  color:var(--yellow);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.74rem;
}
.gallery-hub-card__body h2{
  margin:0 0 10px;
  font-size:1.55rem;
}
.gallery-hub-card__body p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.gallery-hub-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.gallery-hub-stats span{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(242,201,76,.16);
  background:rgba(242,201,76,.08);
  color:#f2f2f2;
  font-size:.84rem;
}

/* === Programi i cenovnik polish === */
.program-detail-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:3px;
  background:linear-gradient(90deg, rgba(242,201,76,.85), rgba(242,201,76,0));
}
.program-detail-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.program-detail-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(242,201,76,.08);
  border:1px solid rgba(242,201,76,.16);
  color:#f3f3f3;
  font-size:.8rem;
  font-weight:600;
}
.program-detail-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  border:1px solid rgba(242,201,76,.12);
  background:linear-gradient(180deg, rgba(18,18,18,.96) 0%, rgba(10,10,10,.98) 100%);
}
.program-details-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  max-width:920px;
  margin:0 auto;
}
.program-detail-badge--accent{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.1);
  color:#d9d9d9;
}
.program-price-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:auto;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(242,201,76,.12);
  background:linear-gradient(180deg, rgba(242,201,76,.08) 0%, rgba(242,201,76,.03) 100%);
}
.program-price-box--stacked{
  display:grid;
  gap:10px;
}
.program-detail-card .btn{
  width:100%;
  margin-top:14px;
}
.program-pricing-note-wrap{
  margin-top:22px;
  max-width:920px;
}
.program-pricing-note{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}

@media (max-width: 900px){
  .gallery-hub-grid,
  .program-details-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 768px){
  .gallery-hub-preview{
    min-height:auto;
    padding:12px;
  }
  .gallery-hub-mosaic--transformacije,
  .gallery-hub-mosaic--umetnost{
    grid-template-columns:1fr 1fr;
    grid-template-rows:repeat(2, 72px);
  }
  .gallery-hub-play{
    width:40px;
    height:40px;
    left:18px;
    bottom:18px;
  }
  .program-detail-card__head,
  .program-price-box{
    align-items:flex-start;
  }
}
@media (max-width: 640px){
  .gallery-hub-card__body,
  .program-detail-card{
    padding-left:18px;
    padding-right:18px;
  }
}

.program-price-box .program-price,
.program-price-box .program-price strong{
  color: var(--yellow) !important;
}
.program-price-box .program-price__note{
  color: rgba(255,255,255,.78) !important;
}

.program-intro{
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Centralized mobile utility styles */
@media (max-width: 1024px){
  .footer-actions .btn--yellow[href^="tel:"]{
    display:none !important;
  }

  .mobile-sticky-cta .mobile-wa-brand{
    background:#25D366 !important;
    color:#ffffff !important;
    border-color:#25D366 !important;
  }

  .mobile-sticky-cta .mobile-viber-brand{
    background:#7360F2 !important;
    color:#ffffff !important;
    border-color:#7360F2 !important;
  }

  .mobile-sticky-cta .mobile-ig-brand{
    background:linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%) !important;
    color:#ffffff !important;
    border-color:transparent !important;
  }
}

.gallery-item__placeholder[hidden]{
  display:none !important;
}

/* === Blog thumbnails: show full artwork without cropping === */
.blog-card__img{
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  background: #111;
}
.blog-card:hover .blog-card__img{
  transform: none;
}
@media (max-width: 600px){
  .blog-card__img{
    height: auto;
  }
}
