/* =========================================================================
   NN FITNESS — "Život je lep"
   Premium black & red brand stylesheet. Mobile-first, responsive.
   ========================================================================= */

:root {
  /* Brand */
  --black: #000000;
  --ink: #0B0B0C;
  --ink-2: #121214;
  --ink-3: #1A1A1D;
  --ink-4: #26262B;
  --red: #EE2530;
  --red-600: #D11420;
  --red-700: #B30F18;
  --red-soft: rgba(238,37,48,0.12);

  --gray-700: #3A3A40;
  --gray-500: #6B6B73;
  --gray-400: #9A9AA2;
  --gray-300: #C8C8CE;
  --gray-200: #E4E4E8;
  --gray-100: #F2F2F4;
  --cream: #F2E9DA;
  --surface-warm: #F2E9DA;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--white);
  --bg-dark: var(--ink);
  --text: #16161A;
  --text-muted: #5C5C64;
  --text-on-dark: #EDEDF0;
  --muted-on-dark: #9A9AA2;
  --border: #E6E6EA;
  --border-dark: rgba(255,255,255,0.10);

  /* Type */
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Sizing */
  --container: 1240px;
  --container-narrow: 880px;
  --nav-h: 76px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.18);
  --shadow-red: 0 14px 40px rgba(238,37,48,0.32);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-launch: cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--red); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
}
.h-display { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 900; line-height: 0.96; text-transform: uppercase; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900; text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 800; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--red); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--red); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); }
.text-red { color: var(--red); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head .lead { margin-top: 18px; }
.dark { background: var(--ink); color: var(--text-on-dark); }
.dark h1,.dark h2,.dark h3,.dark h4 { color: #fff; }
.dark .lead { color: var(--muted-on-dark); }
.grid { display: grid; gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 0.95rem; line-height: 1;
  padding: 17px 30px; border-radius: var(--radius-pill);
  transition: transform .18s var(--ease-launch), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-600); box-shadow: var(--shadow-red); transform: translateY(-2px); }
.btn-dark { background: #fff; color: var(--ink); }
.btn-dark:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { color: var(--red); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { gap: 14px; }
.btn-lg { padding: 20px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8,8,9,0.65); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  transition: background .3s var(--ease), height .3s var(--ease);
}
.nav.scrolled { background: rgba(8,8,9,0.94); }
.nav .container { display: flex; align-items: center; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; line-height: 1; color: #fff; text-transform: uppercase; letter-spacing: .01em; }
.nav-logo .logo-text b { color: var(--red); font-weight: 900; font-style: italic; }
.nn-lockup { display: inline-flex; align-items: center; gap: 11px; }
.nn-lockup img { flex: none; }
.nn-lockup .logo-text { font-family: var(--font-head); font-weight: 800; line-height: 1; color: #fff; text-transform: uppercase; letter-spacing: .01em; }
.nn-lockup .logo-text b { color: var(--red); font-weight: 900; font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.03em; color: #EDEDF0;
  padding: 9px 13px; border-radius: 9px; transition: color .2s, background .2s;
}
.nav-links > li > a:hover, .nav-links > li > button:hover,
.nav-links > li.active > a { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.is-current { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .btn { padding: 12px 20px; font-size: 0.82rem; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px); min-width: 210px;
  background: var(--ink-2); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: all .22s var(--ease); z-index: 5;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop a {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: .02em;
  color: #D6D6DB; transition: background .18s, color .18s; white-space: nowrap;
}
.drop a:hover { background: rgba(238,37,48,.14); color: #fff; }
.drop a .ic { color: var(--red); width: 18px; height: 18px; flex: none; display: inline-flex; }
.caret { width: 14px; height: 14px; transition: transform .2s; }

/* Hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; color: #fff; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 110; background: var(--ink);
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; padding: 22px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.drawer-head img { height: 26px; }
.drawer-close { width: 46px; height: 46px; color: #fff; display: flex; align-items: center; justify-content: center; }
.drawer-close svg { width: 28px; height: 28px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; }
.drawer-links a, .drawer-sub-toggle {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.5rem; color: #fff; padding: 14px 6px; border-bottom: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.drawer-sub { padding: 4px 0 10px 14px; display: none; }
.drawer-sub.open { display: block; }
.drawer-sub a { font-size: 1.05rem; font-weight: 600; color: var(--gray-300); border: none; padding: 11px 6px; text-transform: none; }
.drawer-sub a .ic { width: 18px; height: 18px; color: var(--red); }
.drawer-foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.drawer-contact { display: flex; gap: 14px; color: var(--muted-on-dark); font-size: .92rem; flex-wrap: wrap; }
.drawer-contact a { color: var(--gray-300); font-weight: 600; }
body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; padding-top: var(--nav-h); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(115deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.4) 100%),
  radial-gradient(70% 90% at 85% 20%, rgba(238,37,48,.30), transparent 60%); }
.photo {
  position: relative; width: 100%; height: 100%; background:
    repeating-linear-gradient(118deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px),
    linear-gradient(135deg, #232327 0%, #0A0A0B 60%, #2A0608 100%);
  overflow: hidden;
}
.photo .wmark { position: absolute; right: -4%; bottom: -8%; width: 46%; opacity: .05; }
.photo > img.real { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.photo.dim > img.real { filter: brightness(0.62) contrast(1.03); }
.photo.dim::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.55) 100%); }
.photo .ph-label { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.hero-inner { position: relative; z-index: 2; padding: 60px 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.chip svg { width: 15px; height: 15px; color: var(--red); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .slogan { font-family: var(--font-head); font-weight: 900; font-style: italic; color: var(--red); text-transform: uppercase; letter-spacing: -.01em; }
.hero .lead { color: #D4D4D8; max-width: 48ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 48px; }
.stat .num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .num span { color: var(--red); }
.stat .cap { font-size: .82rem; color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-top: 8px; }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.5); display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; gap: 16px; }
.about-media .photo { border-radius: var(--radius); }
.about-media .tall { grid-row: span 2; }
.brand-split { display: grid; gap: 18px; margin-top: 30px; }
.brand-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: box-shadow .25s, transform .25s, border-color .25s; }
.brand-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.brand-card .ic-wrap { width: 52px; height: 52px; border-radius: 12px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.brand-card.kids .ic-wrap { background: var(--red); }
.brand-card .ic-wrap svg { width: 26px; height: 26px; }
.brand-card h3 { font-size: 1.15rem; }
.brand-card p { font-size: .96rem; color: var(--text-muted); margin-top: 5px; }
.brand-card .tagk { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }

/* ---------- Service cards ---------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink);
  color: #fff; display: flex; flex-direction: column; min-height: 460px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .media { position: relative; height: 250px; overflow: hidden; }
.service-card .media .photo { transition: transform .5s var(--ease); }
.service-card:hover .media .photo { transform: scale(1.06); }
.service-card .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 4%, transparent 60%); }
.service-card .tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 7px 13px; border-radius: var(--radius-pill); background: var(--red); font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.service-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { color: #fff; }
.service-card p { color: var(--gray-300); font-size: .96rem; margin-top: 10px; flex: 1; }
.service-card .btn-ghost { color: #fff; margin-top: 18px; align-self: flex-start; }
.service-card .btn-ghost:hover { color: var(--red); }

/* ---------- Why us ---------- */
.why-grid { grid-template-columns: repeat(4, 1fr); }
.feature { padding: 28px 24px; border-radius: var(--radius); background: rgba(255,255,255,.03); border: 1px solid var(--border-dark); transition: transform .25s, background .25s, border-color .25s; }
.feature:hover { transform: translateY(-4px); background: rgba(238,37,48,.08); border-color: rgba(238,37,48,.4); }
.feature .ic-wrap { width: 54px; height: 54px; border-radius: 13px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature .ic-wrap svg { width: 27px; height: 27px; }
.feature h3 { color: #fff; font-size: 1.12rem; }
.feature p { color: var(--muted-on-dark); font-size: .92rem; margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery-masonry { columns: 3; column-gap: 16px; }
/* Uniform (equal-size) gallery variant */
.gallery-uniform { columns: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-uniform .photo { height: 280px; margin: 0; }
@media (max-width: 720px) { .gallery-uniform { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery-uniform { grid-template-columns: 1fr; } .gallery-uniform .photo { height: 240px; } }
.gallery-masonry .photo { width: 100%; margin-bottom: 16px; border-radius: var(--radius); break-inside: avoid; cursor: pointer; transition: transform .3s var(--ease); }
.gallery-masonry .photo:hover { transform: scale(1.02); }
.g-1 { height: 300px; } .g-2 { height: 220px; } .g-3 { height: 260px; }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ---------- Pricing ---------- */
.pricing-block + .pricing-block { margin-top: clamp(50px, 7vw, 90px); }
.pricing-banner { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: var(--radius-pill); background: var(--red-soft); color: var(--red); font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; margin-top: 16px; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 32px 28px; border-radius: var(--radius-lg); background: #fff; color: var(--text); border: 1px solid var(--border); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; box-shadow: var(--shadow-lg); }
.price-card.featured h3 { color: #fff; }
.price-card .pc-tag { font-family: var(--font-head); font-weight: 800; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.price-card .badge-pop { position: absolute; top: 22px; right: 22px; background: var(--red); color: #fff; padding: 6px 12px; border-radius: var(--radius-pill); font-family: var(--font-head); font-weight: 800; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.price-card .amount { display: flex; align-items: baseline; gap: 7px; margin: 14px 0 4px; }
.price-card .amount .val { font-family: var(--font-head); font-weight: 900; font-size: 3rem; line-height: 1; letter-spacing: -.03em; }
.price-card .amount .per { color: var(--text-muted); font-weight: 600; }
.price-card.featured .amount .per { color: var(--muted-on-dark); }
.price-card ul.feats { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; }
.price-card .feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; }
.price-card .feats svg { width: 20px; height: 20px; color: var(--red); flex: none; margin-top: 1px; }
.price-card .btn { margin-top: auto; }
/* Kids pricing variant */
.pricing-kids .price-card { border-radius: var(--radius-lg); border-color: var(--border); }
.pricing-kids .price-card.featured { background: var(--red); border-color: var(--red); }
.pricing-kids .price-card.featured .pc-tag { color: #fff; }
.pricing-kids .price-card.featured .feats svg { color: #fff; }
.pricing-kids .price-card.featured .amount .per { color: rgba(255,255,255,.85); }
.pricing-kids .price-card.featured .badge-pop { background: #fff; color: var(--red); }

/* ---------- Testimonials ---------- */
.testi-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card { scroll-snap-align: start; flex: 0 0 min(420px, 86%); background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; }
.testi-card .stars { color: var(--red); letter-spacing: 3px; font-size: 1.05rem; }
.testi-card blockquote { font-size: 1.1rem; line-height: 1.55; margin: 16px 0 22px; color: var(--text); }
.testi-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; flex: none; }
.testi-card .who .name { font-family: var(--font-head); font-weight: 800; }
.testi-card .who .role { font-size: .85rem; color: var(--text-muted); }
.testi-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.testi-nav button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border); color: var(--ink); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s, border-color .2s; }
.testi-nav button:hover { background: var(--red); color: #fff; border-color: var(--red); }
.dark .testi-card { background: var(--ink-2); border-color: var(--border-dark); }
.dark .testi-card blockquote { color: #fff; }
.dark .testi-nav button { border-color: var(--border-dark); color: #fff; }

/* ---------- Instagram ---------- */
.ig-grid { grid-template-columns: 1fr 1fr; }
.ig-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); }
.ig-card .ig-head { display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.ig-card .ig-ava { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
.ig-card .ig-ava img { width: 30px; }
.ig-card .ig-ava.kids { background: var(--red); }
.ig-card .ig-head > div { min-width: 0; }
.ig-card .ig-head .handle { font-family: var(--font-head); font-weight: 800; overflow-wrap: anywhere; }
.ig-card .ig-head .meta { font-size: .85rem; color: var(--text-muted); }
.ig-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.ig-thumbs .photo { aspect-ratio: 1; }
.ig-card .ig-foot { padding: 20px 24px; }

/* ---------- Contact ---------- */
.contact-grid { grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-dark); }
.contact-info { padding: clamp(28px,4vw,46px); background: var(--ink-2); }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-dark); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-on-dark); font-weight: 600; }
.contact-row .val { color: #fff; font-weight: 600; font-size: 1.05rem; }
.contact-row .val a:hover { color: var(--red); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.contact-map { min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 420px; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--red); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.final-cta .lead { color: rgba(255,255,255,.9); max-width: 52ch; margin: 20px auto 0; }
.final-cta .hero-actions { justify-content: center; }
.final-cta .btn-outline-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.final-cta .mark { width: 64px; margin: 0 auto 24px; opacity: .9; }

/* ---------- Team ---------- */
.team-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.team-row + .team-row { margin-top: clamp(40px, 6vw, 80px); }
.team-row .team-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg,#232327 0%,#0A0A0B 60%,#2A0608 100%); }
.team-row .team-photo img.real { width: 100%; height: 100%; object-fit: cover; }
.team-row .team-photo .wmark { position: absolute; inset: auto -6% -8% auto; width: 50%; opacity: .07; }
.team-row .team-photo .ph-label { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.team-row.flip .team-photo { order: 2; }
.team-role { font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.team-info h2 { margin: 12px 0 16px; }
.team-info p { color: var(--text-muted); }
.team-info p + p { margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: var(--text-on-dark); padding-top: 72px; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 44px; border-bottom: 1px solid var(--border-dark); }
.footer-top .nn-lockup { margin-bottom: 18px; }
.slogan-big { font-family: var(--font-head); font-weight: 900; font-style: italic; text-transform: uppercase; color: var(--red); font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: -.01em; line-height: 1; }
.footer-top p { color: var(--muted-on-dark); max-width: 46ch; margin-top: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, auto); justify-content: center; gap: 30px 72px; padding: 48px 0; }
.footer-cols > div { text-align: left; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-on-dark); margin-bottom: 18px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer-links a { color: var(--gray-300); font-size: .96rem; transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
.footer-contact a { display: inline-flex; gap: 10px; color: var(--gray-300); align-items: flex-start; font-size: .96rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--gray-500); font-size: .86rem; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--red); }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 130; max-width: 560px; margin: 0 auto; background: var(--ink-2); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-lg); color: #fff; transform: translateY(160%); transition: transform .4s var(--ease); }
.cookie.show { transform: translateY(0); }
.cookie h4 { color: #fff; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.cookie h4 svg { width: 22px; height: 22px; color: var(--red); }
.cookie p { color: var(--gray-300); font-size: .92rem; margin: 10px 0 18px; }
.cookie p a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 13px 22px; font-size: .85rem; }
.cookie-settings { display: none; margin: 14px 0 6px; }
.cookie-settings.open { display: flex; flex-direction: column; gap: 10px; }
.cookie-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--border-dark); border-radius: 10px; }
.cookie-opt .t { font-weight: 700; font-size: .92rem; }
.cookie-opt small { color: var(--muted-on-dark); display: block; font-weight: 400; }
.switch { position: relative; width: 44px; height: 24px; border-radius: 999px; background: var(--ink-4); flex: none; transition: background .2s; }
.switch.on { background: var(--red); }
.switch.locked { background: var(--gray-700); opacity: .7; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.switch.on::after { transform: translateX(20px); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: none; }
.sticky-cta .btn { width: 100%; box-shadow: var(--shadow-red); }

/* ---------- Sub-page hero ---------- */
.page-hero { position: relative; color: #fff; padding: calc(var(--nav-h) + 10px) 0 60px; overflow: hidden; background: var(--ink); }
.page-hero .hero-bg { display: none; }
.page-hero-inner .eyebrow { margin-bottom: 12px; }
.page-hero h1 { margin: 0; }
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero-inner .eyebrow.center, .page-hero-inner .eyebrow { justify-content: center; }
.page-hero-inner .hero-actions { justify-content: center; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .85rem; color: var(--muted-on-dark); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--gray-700); }
.page-hero h1 { color: #fff; max-width: 18ch; margin-left: auto; margin-right: auto; }
.page-hero .lead { color: #D4D4D8; max-width: 56ch; margin-top: 18px; margin-left: auto; margin-right: auto; }

/* ---------- Content / legal ---------- */
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
.benefit { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); transition: box-shadow .2s, transform .2s; }
.benefit:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.benefit .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; flex: none; }
.benefit .ic svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.08rem; }
.benefit p { color: var(--text-muted); font-size: .95rem; margin-top: 6px; }

.prose { max-width: var(--container-narrow); margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-transform: none; letter-spacing: -.01em; margin: 38px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p, .prose li { color: var(--text-muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red); text-decoration: underline; }
.prose .updated { color: var(--gray-400); font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-cols { gap: 30px 50px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr !important; max-width: 480px !important; margin-left: auto !important; margin-right: auto !important; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0,220px)); justify-content: center; gap: 30px 40px; }
  .about-grid, .contact-grid, .ig-grid, .team-row { grid-template-columns: 1fr; }
  .team-row.flip .team-photo { order: 0; }
  .team-row .team-photo { max-width: 460px; margin: 0 auto; }
  .gallery-masonry { columns: 2; }
  .contact-map { min-height: 320px; }
  .contact-map iframe { min-height: 320px; }
  .about-media { grid-auto-rows: 130px; }
}
@media (max-width: 560px) {
  .about-media { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .about-media .tall, .about-media .photo[style*="span 2"] { grid-row: span 1; }
  .about-media .photo[style*="height"] { height: 240px !important; }
  body { font-size: 16px; }
  .hero-inner { text-align: center; }
  .hero-badges, .hero-actions, .hero-stats { justify-content: center; }
  .hero h1, .hero .lead { margin-left: auto; margin-right: auto; }
  .benefits-grid, .why-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
  .footer-cols > div { text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact { align-items: center; text-align: left; }
  .hero-stats { gap: 22px; }
  .btn { padding: 15px 24px; white-space: normal; }
  .hero-actions, .final-cta .hero-actions { width: 100%; }
  .hero-actions .btn, .final-cta .hero-actions .btn { width: 100%; }
  .btn-lg { padding: 14px 20px; font-size: .85rem; }
  .section { padding: 56px 0; }
  .price-card .amount .val { font-size: 2.5rem; }
}

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

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Rad sa profesionalcima — pro-points ---------- */
.pro-points { margin-top: 28px; display: flex; flex-direction: column; }
.pro-point { display: flex; gap: 16px; align-items: center; padding: 16px 4px; border-top: 1px solid var(--border); }
.pro-point:last-child { border-bottom: 1px solid var(--border); }
.pro-point .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; flex: none; }
.pro-point strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.pro-point span { color: var(--text-muted); font-size: .93rem; }

/* ---------- Sponzori ---------- */
.sponsors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; max-width: 860px; margin: 0 auto; }
.sponsor { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s var(--ease); }
.sponsor.open { box-shadow: var(--shadow-md); }
.sponsor-face { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 150px; padding: 26px 22px; cursor: pointer; background: none; }
.sponsor-face:hover { background: var(--gray-100); }
.sponsor-face .caret { position: absolute; right: 14px; bottom: 12px; color: var(--gray-400); transition: transform .3s var(--ease); }
.sponsor-face { position: relative; }
.sponsor.open .sponsor-face .caret { transform: rotate(180deg); color: var(--red); }
.sponsor img { max-width: 100%; max-height: 66px; width: auto; object-fit: contain; }
.sponsor .placeholder { display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--gray-400); text-align: center; }
.sponsor .placeholder svg { width: 26px; height: 26px; }
.sponsor .placeholder span { font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-info { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); background: var(--ink); color: #fff; }
.sponsor.open .sponsor-info { grid-template-rows: 1fr; }
.sponsor-info > div { overflow: hidden; }
.sponsor-info .inner { padding: 20px 22px; display: flex; flex-direction: column; gap: 7px; text-align: center; }
.sponsor-info strong { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; text-transform: uppercase; letter-spacing: .03em; }
.sponsor-info span { color: var(--gray-300); font-size: .9rem; line-height: 1.45; }
@media (max-width: 720px) { .sponsors-grid { grid-template-columns: 1fr; max-width: 400px; } }
