:root {
      --ink: #08243a;
      --charcoal: #1c1c1c;
      --muted: #5f625f;
      --muted-2: #7d7b75;
      --red: #e31e24;
      --gold: #f0b43e;
      --gold-deep: #d59a17;
      --cream: #fffaf0;
      --cream-2: #fff4df;
      --sand: #f6e7c3;
      --sand-soft: #fbefd5;
      --paper: #ffffff;
      --mist: #e9ecef;
      --line: rgba(8, 36, 58, 0.12);
      --line-strong: rgba(8, 36, 58, 0.18);
      --hairline: rgba(8, 36, 58, 0.085);
      --surface: rgba(255, 255, 255, 0.7);
      --surface-strong: rgba(255, 255, 255, 0.86);
      --shadow: 0 18px 46px rgba(8, 36, 58, 0.052);
      --shadow-soft: 0 8px 22px rgba(8, 36, 58, 0.035);
      --radius: 16px;
      --radius-sm: 12px;
      --max: 1180px;
      --title-font: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
      --text-font: "Quicksand", "Avenir Next", "Segoe UI", system-ui, sans-serif;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      scroll-behavior: smooth;
      background: var(--cream);
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--ink);
      font-family: var(--text-font);
      background:
        radial-gradient(circle at 92% 2%, rgba(238, 180, 58, 0.08), transparent 23rem),
        linear-gradient(180deg, #fffdf8 0%, var(--cream) 54%, #fffdf8 100%);
      font-weight: 500;
    }

    body.menu-open {
      overflow: hidden;
    }

    img,
    svg {
      display: block;
    }

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

    button {
      border: 0;
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(238, 180, 58, 0.62);
      outline-offset: 4px;
    }

    .site {
      overflow: clip;
    }

    .section {
      padding: 78px 28px;
      position: relative;
    }

    .section--soft {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(246, 231, 195, 0.18));
      border-top: 1px solid rgba(8, 36, 58, 0.045);
      border-bottom: 1px solid rgba(8, 36, 58, 0.04);
    }

    .section__inner {
      width: min(100%, var(--max));
      margin: 0 auto;
      position: relative;
      z-index: 1;
      min-width: 0;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(8, 36, 58, 0.055);
      background: rgba(255, 253, 248, 0.9);
      backdrop-filter: blur(18px);
    }

    /* Global header system: reuse these rules for future subpage prototypes. */
    .header-inner {
      width: min(100%, 1320px);
      min-height: 60px;
      margin: 0 auto;
      padding: 8px 26px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: clamp(20px, 2.8vw, 38px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 130px;
    }

    .brand img {
      width: 136px;
      height: auto;
      max-height: 40px;
      object-fit: contain;
      opacity: 1;
    }

    .nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: clamp(18px, 2.35vw, 34px);
      color: rgba(8, 36, 58, 0.76);
      font-size: 0.8rem;
      font-weight: 650;
    }

    .nav a {
      position: relative;
      padding: 10px 0;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 4px;
      height: 1px;
      border-radius: 99px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 180ms ease;
    }

    .nav a:hover::after,
    .nav a:focus-visible::after,
    .nav a[aria-current="page"]::after {
      transform: scaleX(1);
    }

    .nav a[aria-current="page"] {
      color: var(--charcoal);
    }

    .header-actions {
      display: inline-flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      display: none;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 11px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.82);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span {
      position: relative;
      display: block;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    .menu-toggle[aria-expanded="true"] span {
      transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span::before {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span::after {
      top: 0;
      transform: rotate(-90deg);
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      border-radius: 12px;
      color: #18130b;
      background: var(--gold);
      box-shadow: 0 9px 18px rgba(238, 180, 58, 0.13);
      font-family: var(--text-font);
      font-weight: 730;
      line-height: 1;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      white-space: nowrap;
    }

    .site-header .btn,
    .hero .btn {
      min-height: 42px;
      padding: 0 20px;
      border-radius: 11px;
    }

    .btn:hover,
    .btn:focus-visible {
      background: #f5c768;
      box-shadow: 0 14px 24px rgba(238, 180, 58, 0.17);
      transform: translateY(-1px);
    }

    .btn--secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .btn--secondary:hover,
    .btn--secondary:focus-visible {
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .arrow {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .kicker {
      margin: 0 0 16px;
      color: var(--red);
      font-family: var(--title-font);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      color: var(--charcoal);
      font-family: var(--title-font);
      letter-spacing: 0;
      text-wrap: balance;
    }

    h1 {
      max-width: 590px;
      font-size: clamp(3.35rem, 4.25vw, 4.75rem);
      font-weight: 700;
      line-height: 1.01;
    }

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

    h2 {
      font-size: clamp(2.04rem, 3.75vw, 3.72rem);
      font-weight: 650;
      line-height: 1.03;
    }

    h3 {
      font-size: clamp(1.2rem, 1.7vw, 1.55rem);
      font-weight: 700;
      line-height: 1.18;
    }

    .lead {
      margin: 22px 0 0;
      max-width: 520px;
      color: var(--muted);
      font-size: clamp(1rem, 1.14vw, 1.1rem);
      font-weight: 600;
      line-height: 1.66;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head--center {
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 38px;
      text-align: center;
    }

    .section-head p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 1.02rem;
      font-weight: 600;
      line-height: 1.66;
    }

    #zacetek,
    #skupine {
      padding-top: 74px;
      padding-bottom: 74px;
    }

    #skupine {
      padding-top: 14px;
      padding-bottom: 14px;
    }

    #skupine .section-head {
      margin-bottom: 14px;
    }

    #skupine h2 {
      font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    }

    .hero {
      min-height: min(520px, calc(100vh - 60px));
      padding: 28px 26px 8px;
      display: grid;
      align-items: center;
    }

    .hero__inner {
      width: min(100%, 1320px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.72fr) minmax(590px, 1.22fr);
      align-items: center;
      gap: clamp(20px, 2.3vw, 34px);
      min-width: 0;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 540px;
      padding: 10px 0 8px;
      min-width: 0;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .trust-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(31, 31, 31, 0.64);
      font-size: 0.91rem;
      font-weight: 650;
    }

    .trust-note::before {
      content: "";
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: var(--gold);
    }

    .season-note {
      width: fit-content;
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 10px;
      border: 1px solid rgba(8, 36, 58, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.62);
      color: rgba(8, 36, 58, 0.68);
      font-size: 0.74rem;
      font-weight: 700;
    }

    .hero-media {
      position: relative;
      min-height: 408px;
      display: grid;
      align-items: center;
      min-width: 0;
    }

    .photo-slot {
      position: relative;
      display: block;
      overflow: hidden;
      border: 1px solid rgba(8, 36, 58, 0.11);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 60% 18%, rgba(255, 255, 255, 0.92), transparent 15rem),
        linear-gradient(180deg, rgba(238, 180, 58, 0.34), rgba(246, 231, 195, 0.34) 44%, rgba(8, 36, 58, 0.12));
      isolation: isolate;
    }

    .photo-slot::before {
      content: "";
      position: absolute;
      inset: 46% -18% -20%;
      z-index: -1;
      border-radius: 50% 50% 0 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
    }

    .photo-slot::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(8, 36, 58, 0.03));
      pointer-events: none;
    }

    .photo-slot img {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: var(--image-position, 50% 50%);
    }

    .hero-photo {
      --image-position: 53% 48%;
      width: min(100%, 810px);
      aspect-ratio: 1.58 / 1;
      min-height: 0;
      margin-left: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      clip-path: url(#heroPhotoMask);
    }

    .headline-dot {
      color: var(--red);
    }

    .hero-photo::before {
      display: none;
    }

    .hero-photo::after {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 36, 58, 0.035));
    }

    .hero-mask-defs {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }

    .hero-path {
      position: absolute;
      left: -50%;
      right: -4%;
      bottom: 20%;
      z-index: 2;
      width: 154%;
      height: 78%;
      overflow: visible;
      pointer-events: none;
    }

    .hero-path__line {
      fill: none;
      stroke: rgba(238, 180, 58, 0.72);
      stroke-width: 1.25;
      stroke-linecap: round;
      vector-effect: non-scaling-stroke;
    }

    .hero-path__dot {
      fill: var(--red);
    }

    .gold-arc {
      position: absolute;
      pointer-events: none;
      border: 1.5px solid rgba(238, 180, 58, 0.6);
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50%;
    }

    .red-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: var(--red);
    }

    .trust-strip {
      padding: 8px 31px 9px;
      margin-top: -12px;
      position: relative;
      z-index: 5;
    }

    .stats {
      width: min(100%, var(--max));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-radius: 21px;
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 10px 26px rgba(8, 36, 58, 0.05);
      overflow: hidden;
      backdrop-filter: blur(10px);
    }

    .stat {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      gap: 18px;
      padding: 39px 28px 26px;
    }

    .stat p {
      min-width: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
      line-height: 1.2;
    }

    .icon {
      width: 24px;
      height: 24px;
      color: var(--gold-deep);
      stroke-width: 1.8;
      flex: 0 0 auto;
    }

    .stat .icon {
      width: 64px;
      height: 64px;
      stroke-width: 1.55;
    }

    .stat strong {
      display: block;
      color: var(--charcoal);
      font-family: var(--title-font);
      font-size: clamp(1.15rem, 1.3vw, 1.35rem);
      font-weight: 700;
      line-height: 1.15;
    }

    .stat span {
      display: block;
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 650;
      line-height: 1.2;
    }

    .start-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
      gap: 18px;
    }

    #zacetek {
      padding: 30px 28px 4px;
    }

    #zacetek .section-head--center {
      margin-bottom: 20px;
    }

    .choice {
      position: relative;
      display: block;
      min-height: 140px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: none;
      overflow: hidden;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .choice:hover,
    .choice:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(238, 180, 58, 0.48);
      box-shadow: 0 14px 34px rgba(8, 36, 58, 0.045);
    }

    .choice__body {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: space-between;
      gap: 14px;
      height: 100%;
      padding: clamp(14px, 2vw, 20px);
      padding-right: 47%;
    }

    .choice__top {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: start;
      gap: 18px;
    }

    .choice__top .icon {
      width: 30px;
      height: 30px;
      margin-top: 2px;
    }

    .choice p,
    .program-card p,
    .benefit p,
    .step p,
    .parent-card p,
    .about-copy p,
    .cta-panel p {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.58;
    }

    .choice__action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--charcoal);
      font-weight: 760;
    }

    .choice__action .arrow {
      width: 18px;
      height: 18px;
      color: var(--gold-deep);
      flex: 0 0 auto;
    }

    .choice-photo {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 45%;
      overflow: hidden;
    }

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

    .map-card {
      background:
        radial-gradient(circle at 86% 10%, rgba(238, 180, 58, 0.08), transparent 12rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.72));
    }

    /* Reusable location map (instanci v #zacetek in #koraki) — fully
       self-contained under .location-map. */
    .location-map {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 45%;
      height: 100%;
      color: rgba(8, 36, 58, 0.16);
    }

    .location-map path {
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }

    .location-map circle {
      fill: var(--red);
    }

    .location-map circle.location-map__marker--secondary {
      fill: var(--gold-deep);
    }

    .location-map circle.location-map__marker--dominant {
      fill: var(--red);
      stroke: var(--paper);
      stroke-width: 1.5;
    }

    .location-map .location-map__outline--inner {
      opacity: 0.4;
      stroke-width: 1.1;
    }

    .choice--hall {
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.74));
    }

    .choice__meta {
      display: none;
    }

    .choice__meta span {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      padding: 0 12px;
      border: 1px solid rgba(238, 180, 58, 0.24);
      border-radius: 999px;
      background: rgba(255, 250, 240, 0.74);
      color: rgba(8, 36, 58, 0.68);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .program-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .program-card {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 4px;
      padding: 8px 8px 6px;
      border: 1px solid var(--hairline);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: none;
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .program-card:hover {
      transform: translateY(-2px);
      border-color: rgba(238, 180, 58, 0.44);
      box-shadow: 0 14px 34px rgba(8, 36, 58, 0.045);
    }

    .program-photo {
      --image-position: 50% 50%;
      aspect-ratio: 2 / 1;
      border-radius: 13px;
      border-color: rgba(8, 36, 58, 0.075);
    }

    .program-photo--advanced,
    .program-photo--experienced {
      --image-position: 50% 48%;
    }

    .program-card__body {
      display: grid;
      align-content: start;
      gap: 12px;
      padding: 2px 10px 0;
    }

    .age {
      color: var(--muted);
      font-size: 0.86em;
      font-weight: 500;
    }

    .section-action {
      margin-top: 34px;
      display: flex;
      justify-content: center;
    }

    .btn--outline-gold {
      color: var(--gold-deep);
      background: transparent;
      border: 1px solid var(--gold);
      box-shadow: none;
    }

    .btn--outline-gold:hover,
    .btn--outline-gold:focus-visible {
      background: rgba(238, 180, 58, 0.09);
      box-shadow: none;
    }

    #skupine .section-action {
      margin-top: 6px;
    }

    #skupine .section-action .btn {
      min-height: 34px;
      padding: 0 20px;
    }

    .why-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
      gap: 52px;
      align-items: start;
    }

    .why-photo {
      --image-position: 50% 42%;
      min-height: 0;
      aspect-ratio: 1.93 / 1;
      border-color: rgba(8, 36, 58, 0.075);
      box-shadow: var(--shadow-soft);
    }

    #zakaj-judo {
      padding: 25px 28px;
    }

    .why-copy {
      position: relative;
      padding-top: 6px;
    }

    .why-head {
      margin-bottom: 18px;
    }

    .why-arc {
      position: absolute;
      left: -34px;
      top: 4px;
      width: 34px;
      height: 220px;
      color: rgba(238, 180, 58, 0.55);
      pointer-events: none;
    }

    .why-arc__line {
      fill: none;
      stroke: currentColor;
      stroke-width: 1.4;
      stroke-linecap: round;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .why-layout .benefit-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: 28px;
      row-gap: 24px;
    }

    .benefit {
      display: grid;
      align-content: start;
      gap: 12px;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: none;
      box-shadow: none;
    }

    .benefit .icon {
      width: 66px;
      height: 66px;
      stroke-width: 1.4;
    }

    .benefit h3,
    .program-card h3 {
      font-size: clamp(1.08rem, 1.24vw, 1.25rem);
      line-height: 1.22;
    }

    .steps {
      display: flex;
      align-items: flex-start;
      gap: 0;
    }

    .step {
      position: relative;
      flex: 1 1 0;
      display: flex;
      align-items: flex-start;
      gap: 18px;
      min-width: 0;
    }

    .step__num {
      flex: 0 0 auto;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 1.5px solid rgba(240, 180, 62, 0.62);
      border-radius: 999px;
      color: var(--gold-deep);
      font-family: var(--title-font);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      background: rgba(255, 250, 240, 0.62);
    }

    .step__body {
      display: grid;
      gap: 6px;
      min-width: 0;
      margin-top: 5px;
    }

    .step__body h3 {
      font-size: 1.05rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink);
    }

    .step__body p {
      font-size: 0.86rem;
      line-height: 1.5;
    }

    .step-arrow {
      flex: 0 0 auto;
      align-self: center;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      margin: 0 clamp(6px, 1.1vw, 14px);
      color: rgba(238, 180, 58, 0.72);
    }

    .step-arrow svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
    }

    #koraki {
      padding-top: 12px;
      padding-bottom: 18px;
    }

    #koraki .section-head {
      margin-bottom: 8px;
      max-width: none;
    }

    #koraki h2 {
      font-size: clamp(1.55rem, 2.35vw, 2.2rem);
    }

    /* #koraki two-column band: steps left, reused Task-4 map right. */
    .koraki-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
      gap: clamp(24px, 3vw, 46px);
      align-items: stretch;
    }

    .koraki-map {
      position: relative;
      align-self: center;
      height: 176px;
    }

    /* Reuse the frozen Task-4 .location-map here without touching its own rules
       or the #zacetek instance. #koraki-scoped override only re-positions it to
       fill this column; geometry/markers/content stay identical. */
    #koraki .location-map {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .parents-layout,
    .about-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.66fr);
      gap: clamp(38px, 5vw, 72px);
      align-items: center;
    }

    .parents-layout {
      grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.16fr);
    }

    .parent-links {
      display: grid;
      gap: 14px;
      margin-top: 26px;
      justify-items: start;
    }

    .parent-card {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 2px 0;
      font-weight: 720;
      color: var(--ink);
      transition: transform 180ms ease, color 180ms ease;
    }

    .parent-card:hover,
    .parent-card:focus-visible {
      transform: translateX(2px);
      color: var(--gold-deep);
    }

    .parent-card .icon {
      width: 22px;
      height: 22px;
      flex: none;
      color: var(--gold-deep);
      stroke-width: 1.6;
      opacity: 0.85;
    }

    .parent-card .arrow {
      width: 18px;
      height: 18px;
      color: var(--gold-deep);
      opacity: 0.78;
    }

    .parents-photo {
      --image-position: 50% 55%;
      aspect-ratio: 2.45 / 1;
      min-height: 250px;
      border-color: rgba(8, 36, 58, 0.075);
      box-shadow: var(--shadow-soft);
    }

    .about-layout {
      position: relative;
      grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.12fr) minmax(180px, 0.5fr);
      gap: clamp(24px, 3.4vw, 48px);
      padding: clamp(22px, 3vw, 34px);
      border: 1px solid rgba(238, 180, 58, 0.22);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(246, 231, 195, 0.4));
    }

    .about-photo {
      --image-position: 50% 45%;
      aspect-ratio: 1.08 / 1;
      min-height: 200px;
      border-color: rgba(8, 36, 58, 0.075);
      box-shadow: var(--shadow-soft);
    }

    .about-dot {
      position: absolute;
      top: 20px;
      right: 28px;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--red);
    }

    .about-copy {
      max-width: 680px;
      padding-right: clamp(0px, 2vw, 18px);
    }

    .about-copy p {
      margin-top: 18px;
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .text-link {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-deep);
      font-weight: 760;
    }

    .text-link .arrow {
      width: 18px;
      height: 18px;
      color: var(--gold-deep);
    }

    .final-cta {
      padding: 58px 28px 46px;
    }

    .cta-panel {
      width: min(100%, var(--max));
      min-height: 252px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.56fr);
      align-items: center;
      gap: clamp(24px, 4vw, 48px);
      padding: clamp(30px, 4.2vw, 46px);
      border: 1px solid rgba(238, 180, 58, 0.24);
      border-radius: 18px;
      background:
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.9), transparent 14rem),
        linear-gradient(135deg, rgba(246, 231, 195, 0.66), rgba(255, 250, 240, 0.96));
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-soft);
    }

    .cta-copy {
      position: relative;
      z-index: 2;
    }

    .cta-copy p:not(.kicker) {
      max-width: 600px;
    }

    .cta-photo {
      --image-position: 52% 48%;
      min-height: 188px;
      aspect-ratio: 1.58 / 1;
      border-radius: 16px;
      border-color: rgba(8, 36, 58, 0.075);
      box-shadow: 0 12px 28px rgba(8, 36, 58, 0.055);
    }

    .cta-panel .gold-arc {
      right: -120px;
      bottom: 22px;
      width: 510px;
      height: 150px;
      transform: rotate(-5deg);
      opacity: 0.48;
    }

    .cta-panel .red-dot {
      right: 245px;
      bottom: 88px;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 26px;
      position: relative;
      z-index: 2;
    }

    .footer {
      padding: 48px 28px 30px;
      border-top: 1px solid rgba(8, 36, 58, 0.07);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 250, 240, 0.68));
    }

    .footer__inner {
      width: min(100%, var(--max));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(210px, 0.9fr) repeat(4, minmax(120px, 0.55fr)) minmax(180px, 0.75fr);
      gap: clamp(22px, 3.4vw, 44px);
      align-items: start;
    }

    .social-row {
      display: flex;
      gap: 12px;
      margin-top: 17px;
    }

    .social-link {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .social-link:hover,
    .social-link:focus-visible {
      background: var(--gold-deep);
      color: var(--ink);
      transform: translateY(-2px);
    }

    /* .footer a preglasi .social-link barvo -> ikona bi bila navy na navy */
    .footer a.social-link {
      color: #fff;
    }

    .footer a.social-link:hover,
    .footer a.social-link:focus-visible {
      color: var(--ink);
    }

    .social-link svg {
      width: 16px;
      height: 16px;
    }

    .footer-contact {
      display: grid;
      gap: 11px;
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
    }

    .footer-contact li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(8, 36, 58, 0.72);
      font-weight: 620;
    }

    .footer-contact svg {
      width: 17px;
      height: 17px;
      flex: none;
      color: rgba(8, 36, 58, 0.6);
    }

    .footer-brand img {
      width: 142px;
      height: auto;
      max-height: 44px;
      object-fit: contain;
      opacity: 0.94;
    }

    .footer-brand p {
      max-width: 340px;
      margin: 18px 0 0;
      color: var(--muted);
      font-weight: 600;
      line-height: 1.6;
    }

    .footer h3 {
      color: rgba(8, 36, 58, 0.84);
      font-size: 0.76rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .footer ul {
      display: grid;
      gap: 9px;
      margin: 17px 0 0;
      padding: 0;
      list-style: none;
    }

    .footer a,
    .footer small {
      color: rgba(8, 36, 58, 0.72);
      font-weight: 620;
      line-height: 1.45;
    }

    .footer a {
      transition: color 160ms ease;
    }

    .footer a:hover,
    .footer a:focus-visible {
      color: var(--charcoal);
    }

    .footer-bottom {
      width: min(100%, var(--max));
      margin: 36px auto 0;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      border-top: 1px solid rgba(8, 36, 58, 0.08);
      color: rgba(8, 36, 58, 0.62);
      font-size: 0.86rem;
      font-weight: 600;
      flex-wrap: wrap;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1040px) {
      .header-inner {
        min-height: 66px;
        grid-template-columns: auto minmax(0, 1fr) auto;
      }

      .nav {
        position: fixed;
        inset: 66px 18px auto;
        display: none;
        align-items: stretch;
        justify-content: start;
        gap: 2px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #fffdf8;
        box-shadow: 0 18px 42px rgba(8, 36, 58, 0.08);
        z-index: 70;
      }

      .nav.is-open {
        display: grid;
      }

      .nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 12px;
      }

      .nav a:hover,
      .nav a:focus-visible {
        background: var(--cream);
      }

      .nav a::after {
        left: 14px;
        right: auto;
        bottom: 7px;
        width: 34px;
      }

      .menu-toggle {
        display: grid;
      }

      .header-actions {
        position: static;
      }

      .hero__inner,
      .why-layout,
      .parents-layout,
      .about-layout,
      .koraki-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .koraki-map {
        height: 220px;
        max-width: 420px;
      }

      .hero-media {
        min-height: 292px;
      }

      .hero-photo {
        width: min(100%, 680px);
        aspect-ratio: 1.62 / 1;
        min-height: 0;
        margin: 0;
      }

      .hero-path {
        left: -24%;
        bottom: 5%;
        width: 130%;
        height: 56%;
      }

      .why-photo {
        min-height: 300px;
        aspect-ratio: 16 / 9;
      }

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

      .why-layout .benefit-grid {
        grid-template-columns: 1fr;
        row-gap: 26px;
      }

      .why-arc {
        display: none;
      }

      .stat:nth-child(odd) {
        border-right: 1px solid rgba(8, 36, 58, 0.06);
      }

      .stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(8, 36, 58, 0.08);
      }

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

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

      .footer-brand {
        grid-column: 1 / -1;
      }

      .steps {
        flex-direction: column;
        gap: 22px;
      }

      .step-arrow {
        display: none;
      }

      .about-photo {
        min-height: 220px;
        aspect-ratio: 16 / 10;
      }

      .cta-photo {
        min-height: 240px;
      }

      .about-layout {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
      }
    }

    @media (max-width: 640px) {
      .section {
        padding: 50px 16px;
      }

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

      .header-inner {
        min-height: 62px;
        padding: 8px 16px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 8px;
      }

      .brand {
        min-width: 0;
      }

      .brand img {
        width: 108px;
        max-height: 36px;
      }

      .header-actions .btn {
        min-height: 40px;
        padding: 0 13px;
        border-radius: 10px;
        font-size: 0.82rem;
      }

      .header-actions {
        gap: 6px;
      }

      .menu-toggle {
        display: grid;
        width: 40px;
        height: 40px;
      }

      .nav {
        inset: 62px 10px auto;
      }

      .hero {
        min-height: auto;
        padding: 28px 16px 22px;
      }

      .hero__inner {
        gap: 18px;
      }

      .hero-copy {
        padding: 6px 0 0;
        width: 100%;
        max-width: 100%;
      }

      h1 {
        font-size: clamp(2.85rem, 12.4vw, 3.28rem);
        line-height: 1.01;
      }

      h2 {
        font-size: clamp(2.2rem, 10.8vw, 3.05rem);
      }

      h3 {
        font-size: 1.2rem;
      }

      .lead {
        margin-top: 18px;
        font-size: 0.98rem;
        line-height: 1.56;
      }

      .hero-actions {
        align-items: stretch;
        gap: 12px;
        margin-top: 22px;
        width: 100%;
      }

      .hero-actions .btn,
      .hero-actions .btn--secondary {
        width: 100%;
      }

      .trust-note {
        width: 100%;
        font-size: 0.92rem;
      }

      .hero-media {
        min-height: 140px;
      }

      .hero-photo {
        --image-position: 54% 50%;
        aspect-ratio: 1.78 / 1;
        min-height: 0;
      }

      .hero-path {
        left: -20%;
        right: -18%;
        bottom: 0;
        width: 136%;
        height: 112px;
        opacity: 0.74;
      }

      .hero-path__dot--quiet {
        display: none;
      }

      .trust-strip {
        padding: 0 16px 14px;
        margin-top: 0;
      }

      .program-grid,
      .benefit-grid,
      .why-layout .benefit-grid {
        grid-template-columns: 1fr;
      }

      .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 12px;
      }

      .stat,
      .stat:nth-child(2),
      .stat:nth-child(-n + 2) {
        min-height: 56px;
        padding: 9px 8px;
        gap: 7px;
        border-right: 1px solid rgba(8, 36, 58, 0.07);
        border-bottom: 1px solid rgba(8, 36, 58, 0.07);
      }

      .stat:nth-child(2),
      .stat:nth-child(4) {
        border-right: 0;
      }

      .stat:nth-child(n + 3) {
        border-bottom: 0;
      }

      .stat .icon {
        width: 20px;
        height: 20px;
      }

      .stat strong {
        display: inline;
        font-size: 0.82rem;
        overflow-wrap: anywhere;
      }

      .stat span {
        display: inline;
        margin: 0;
        font-size: 0.66rem;
        overflow-wrap: anywhere;
      }

      .choice {
        min-height: 0;
      }

      .choice__body {
        gap: 16px;
        padding: 22px;
        padding-right: 22px;
      }

      .choice__top {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .choice-photo,
      .location-map {
        position: static;
        width: 100%;
        height: 160px;
        order: -1;
      }

      .choice {
        display: flex;
        flex-direction: column;
      }

      #zacetek {
        padding-bottom: 50px;
      }

      #skupine {
        padding-top: 52px;
      }


      .benefit {
        min-height: auto;
      }

      .parents-photo {
        min-height: 200px;
        aspect-ratio: 16 / 9;
      }

      .cta-panel {
        min-height: 0;
        padding: 26px 22px;
      }

      .cta-photo {
        min-height: 160px;
        aspect-ratio: 1.72 / 1;
      }

      .cta-actions {
        align-items: stretch;
      }

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

      .footer {
        padding: 46px 16px 28px;
      }

      .footer-bottom {
        margin-top: 30px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
      }
    }

/* ================================================================
   SHELL SYNC 2026-08-05 — uskladitev s KONCNO potrjeno naslovnico
   (Taski 9, 10 + responsive audit 834/390). Samo skupni kalup:
   header, navigacija, mobilni meni, gumbi/tap tarce, footer,
   socialne povezave, focus-visible, responsive dostopnost.
   Pravila sekcij naslovnice se NE prenasajo.
   ================================================================ */

/* --- header (Task 10) --- */
@media (min-width: 1041px) {
  .site-header .header-inner {
    width: min(100%, 1348px);
    min-height: 100px;
    padding: 8px 0;
  }

  #site-nav {
    justify-content: center;
    gap: 70px;
    position: relative;
    left: 38px;
  }

  .site-header .header-actions .btn {
    height: 46px;
    padding: 0 30px;
  }
}

/* sidra ne pristanejo pod sticky headerjem (~100px na desktopu) */
main [id],
footer[id] {
  scroll-margin-top: 116px;
}

/* --- footer (Task 9) --- */
footer.footer {
  border-top: 2px solid #f8ddb2;
  background: #fcfbfa;
}

@media (min-width: 1041px) {
  footer.footer {
    position: relative;
    padding: 24px 46px 32px;
    border-top: 0;
  }

  footer.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 17px;
    right: 21px;
    height: 10px;
    border: 1.5px solid #f5d9a8;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    pointer-events: none;
  }

  #footer .footer__inner {
    width: min(1348px, 100%);
    grid-template-columns: 332px 200px 164px 182px 247px minmax(0, 1fr);
    gap: 0;
  }

  #footer .footer-brand img { width: 84px; }
  #footer .footer-brand p { margin-top: 20px; font-size: 13px; line-height: 18px; }
  #footer .footer-brand small { font-size: 12px; line-height: 17px; }
  #footer ul { margin-top: 8px; gap: 7px; }
  #footer .footer__inner a,
  #footer .footer__inner li { font-size: 13px; line-height: 17px; }
  #footer .social-row { margin-top: 21px; gap: 16px; }
  #footer .social-link { width: 26px; height: 26px; }
  #footer .social-link svg { width: 13px; height: 13px; }
  #footer .footer-contact { margin-top: 27px; gap: 11px; }
  #footer .footer-contact svg { width: 15px; height: 15px; }
}

/* --- responsive dostopnost (skupni audit 834/390): tap tarce >= 44px --- */
@media (max-width: 1040px) {
  .site-header .header-actions .btn,
  .site-header button[aria-expanded],
  .hero-actions .btn,
  .section-action .btn {
    min-height: 44px;
  }

  #footer .footer__inner a {
    display: inline-block;
    padding: 11px 0;
  }

  #footer .social-link {
    width: 44px;
    height: 44px;
  }
}
