/* ============================================================
   O Meni (About) Page — scoped to body.o-nama-page
   ============================================================ */

.o-nama-page {
  --on-bg: #011415;
  --on-bg-2: #062b2e;
  --on-gold: #f1dab0;
  --on-gold-dim: rgba(241, 218, 176, 0.45);
  --on-gold-faint: rgba(241, 218, 176, 0.12);
  --on-cyan: #e2fdfb;
  --on-text: #fafafa;
  --on-text-muted: #abbcbb;
  --on-border: rgba(241, 218, 176, 0.16);
  --on-border-hard: rgba(241, 218, 176, 0.35);
  --on-glass: rgba(1, 20, 21, 0.78);
  --on-font-display: var(--font-cormorant), Georgia, serif;
  --on-font-body: var(--font-manrope), system-ui, sans-serif;
  --on-section-pad: clamp(64px, 8vw, 100px);

  background: linear-gradient(180deg, #011415 0%, #062b2e 45%, #011415 100%);
  color: var(--on-text);
  font-family: var(--on-font-body);
  overflow-x: hidden;
}

/* ============================================================
   UTILITY — Animations on scroll (JS adds .is-visible)
   ============================================================ */
.on-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.on-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.on-reveal--left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 120ms);
}

.on-reveal--left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.on-reveal-delay-1 {
  transition-delay: 0.1s;
}
.on-reveal-delay-2 {
  transition-delay: 0.2s;
}
.on-reveal-delay-3 {
  transition-delay: 0.3s;
}
.on-reveal-delay-4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .on-reveal,
  .on-reveal--left {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .on-hero__eyebrow,
  .on-hero__title,
  .on-hero__subtitle {
    opacity: 1;
    animation: none;
  }
  .on-hero__scroll {
    animation: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.on-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.on-hero::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--on-gold);
  margin: 40px auto 0;
  opacity: 0;
  animation: on-rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.6s forwards;
}

.on-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--on-cyan);
  margin-bottom: 24px;
  opacity: 0;
  animation: on-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.1s forwards;
}

.on-hero__title {
  font-family: var(--on-font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-gold);
  margin: 0 0 16px;
  opacity: 0;
  animation: on-rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.25s forwards;
}

.on-hero__subtitle {
  margin: 0 auto;
  max-width: 700px;
  padding: 0 20px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--on-text-muted);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: on-rise 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s forwards;
}

.on-hero__scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-gold-dim);
  font-size: 18px;
  animation: on-float 2.4s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0;
}

@keyframes on-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes on-float {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================================
   BIO SECTION — "Ko sam ja"
   ============================================================ */
.on-bio {
  padding: var(--on-section-pad) 0;
  position: relative;
}

.on-bio::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(241, 218, 176, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.on-bio .container {
  position: relative;
  z-index: 1;
}

.on-bio__image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.on-bio__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.on-bio__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 1px solid var(--on-border);
  pointer-events: none;
}

.on-bio__content {
  padding-left: 48px;
}

@media (max-width: 991px) {
  .on-bio__content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.on-bio__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-cyan);
  margin-bottom: 16px;
}

.on-bio__heading {
  font-family: var(--on-font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-gold);
  margin-bottom: 24px;
}

.on-bio__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--on-text-muted);
  margin-bottom: 16px;
}

.on-bio__text strong {
  color: var(--on-text);
}

.on-bio__langs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.on-bio__lang-badge {
  padding: 6px 16px;
  border: 1px solid var(--on-border-hard);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--on-cyan);
  background: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   CONTACT STRIP — inline CTA
   ============================================================ */
.on-contact-strip {
  padding: 32px 0;
}

.on-contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 32px;
  background: var(--on-glass);
  border: 1px solid var(--on-border);
  border-radius: 20px;
}

.on-contact-strip__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.on-contact-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--on-text-muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.on-contact-strip__link:hover {
  color: var(--on-gold);
}

.on-contact-strip__link i {
  color: var(--on-gold);
  font-size: 18px;
}

.on-contact-strip__link--primary {
  padding: 10px 22px;
  background: var(--on-gold);
  color: #0d0d0d;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.on-contact-strip__link--primary i {
  color: #0d0d0d;
}

.on-contact-strip__link--primary:hover {
  background: #fafafa;
  color: #0d0d0d;
  box-shadow: 0 4px 16px rgba(241, 218, 176, 0.3);
  transform: translateY(-1px);
}

/* ============================================================
   QUOTE SECTION — 2-column split
   ============================================================ */
.on-quote {
  padding: var(--on-section-pad) 0;
  position: relative;
}

.on-quote::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(226, 253, 251, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.on-quote__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--on-glass);
  border: 1px solid var(--on-border);
  border-radius: 30px;
  padding: 56px 48px;
  position: relative;
}

@media (max-width: 991px) {
  .on-quote__split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
}

.on-quote__left {
  text-align: center;
  border-right: 1px solid var(--on-border);
  padding-right: 48px;
}

@media (max-width: 991px) {
  .on-quote__left {
    border-right: none;
    border-bottom: 1px solid var(--on-border);
    padding-right: 0;
    padding-bottom: 32px;
  }
}

.on-quote__icon {
  width: 48px;
  height: auto;
  margin-bottom: 24px;
  opacity: 0.4;
}

.on-quote__text {
  font-family: var(--on-font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--on-gold);
  margin: 0 0 12px;
  quotes: none;
}

.on-quote__text::before,
.on-quote__text::after {
  content: none;
}

.on-quote__cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--on-text-muted);
  margin: 0;
}

.on-quote__right-title {
  font-family: var(--on-font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--on-gold);
  margin-bottom: 16px;
}

.on-quote__gloss {
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-text-muted);
  margin: 0 0 12px;
}

.on-quote__gloss:last-child {
  margin-bottom: 0;
}

/* ============================================================
   EXPERTISE — unified 5-column credentials + areas
   ============================================================ */
.on-expertise {
  padding: var(--on-section-pad) 0;
  background: linear-gradient(
    180deg,
    rgba(6, 43, 46, 0.6) 0%,
    rgba(1, 20, 21, 0.8) 100%
  );
  position: relative;
}

.on-expertise::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(241, 218, 176, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.on-section-title {
  font-family: var(--on-font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--on-gold);
  text-align: center;
  margin-bottom: 56px;
}

.on-exp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .on-exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .on-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .on-exp-grid {
    grid-template-columns: 1fr;
  }
}

.on-exp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--on-border);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  position: relative;
}

.on-exp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(241, 218, 176, 0.15);
  border-color: var(--on-border-hard);
}

/* Animated SVG icon */
.on-exp-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
}

.on-exp-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Orbit animation for WSCO card */
.exp-dot--1 {
  animation: exp-spin 10s linear infinite;
  transform-origin: 40px 40px;
}
.exp-dot--2 {
  animation: exp-spin 14s linear infinite reverse;
  transform-origin: 40px 40px;
}
.exp-dot--3 {
  animation: exp-spin 18s linear infinite;
  transform-origin: 40px 40px;
}
.exp-orbit {
  animation: exp-spin 30s linear infinite;
  transform-origin: 40px 40px;
}

@keyframes exp-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Constellation node pulse */
.exp-node {
  animation: exp-node-pulse 3s ease-in-out infinite alternate;
}
.exp-node:nth-child(5) {
  animation-delay: 0s;
}
.exp-node:nth-child(6) {
  animation-delay: 0.6s;
}
.exp-node:nth-child(7) {
  animation-delay: 1.2s;
}
.exp-node:nth-child(8) {
  animation-delay: 1.8s;
}

@keyframes exp-node-pulse {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.exp-line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: exp-draw 3s ease-in-out infinite alternate;
}
.exp-line:nth-child(1) {
  animation-delay: 0s;
}
.exp-line:nth-child(2) {
  animation-delay: 0.4s;
}
.exp-line:nth-child(3) {
  animation-delay: 0.8s;
}
.exp-line:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes exp-draw {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Pulse rings for NLP */
.exp-pulse {
  animation: exp-ring-pulse 3s ease-out infinite;
  transform-origin: center;
}
.exp-pulse--2 {
  animation-delay: 0.8s;
}
.exp-pulse--3 {
  animation-delay: 1.6s;
}

@keyframes exp-ring-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

/* Core glow */
.exp-core {
  animation: exp-glow 2.5s ease-in-out infinite alternate;
}

@keyframes exp-glow {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

/* Wave for systemic */
.exp-wave {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: exp-wave-flow 4s ease-in-out infinite alternate;
}
.exp-wave--2 {
  animation-delay: 0.5s;
}

@keyframes exp-wave-flow {
  from {
    stroke-dashoffset: 120;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Flame for shamanism */
.exp-flame {
  animation: exp-flame-flicker 2s ease-in-out infinite alternate;
  transform-origin: 40px 62px;
}
.exp-flame--inner {
  animation: exp-flame-flicker 1.5s ease-in-out infinite alternate-reverse;
  transform-origin: 40px 54px;
}

@keyframes exp-flame-flicker {
  0% {
    opacity: 0.6;
    transform: scaleY(0.95) scaleX(0.98);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05) scaleX(1.02);
  }
  100% {
    opacity: 0.7;
    transform: scaleY(0.97) scaleX(0.97);
  }
}

/* Card text */
.on-exp-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-cyan);
  background: rgba(226, 253, 251, 0.08);
  border: 1px solid rgba(226, 253, 251, 0.15);
  border-radius: 5px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.on-exp-card__title {
  font-family: var(--on-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--on-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.on-exp-card__area {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-gold);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.on-exp-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-text-muted);
  margin: 0;
}

/* ============================================================
   EVENTS & CALENDAR — side-by-side layout
   ============================================================ */
.on-events {
  padding: var(--on-section-pad) 0;
  background: linear-gradient(
    180deg,
    rgba(1, 20, 21, 0.8) 0%,
    rgba(6, 43, 46, 0.5) 100%
  );
}

.on-events__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 991px) {
  .on-events__split {
    grid-template-columns: 1fr;
  }
}

.on-events__cal-col {
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .on-events__cal-col {
    position: static;
  }
}

/* Calendar */
.on-calendar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-border);
  border-radius: 24px;
  padding: 28px;
}

.on-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.on-calendar__month {
  font-family: var(--on-font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--on-gold);
  margin: 0;
}

.on-calendar__nav {
  background: none;
  border: 1px solid var(--on-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--on-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.on-calendar__nav:hover {
  border-color: var(--on-gold);
  color: var(--on-gold);
}

.on-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--on-text-muted);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--on-border);
}

.on-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.on-calendar__day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 15px;
  color: var(--on-text-muted);
  position: relative;
  cursor: default;
  transition: background 0.2s ease;
}

.on-calendar__day--empty {
  cursor: default;
}

.on-calendar__day.is-today {
  background: rgba(241, 218, 176, 0.1);
  color: var(--on-text);
  font-weight: 700;
}

.on-calendar__day.has-event {
  cursor: pointer;
  color: var(--on-gold);
  font-weight: 700;
}

.on-calendar__day.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--on-gold);
}

.on-calendar__day.has-event:hover {
  background: rgba(241, 218, 176, 0.15);
}

/* Event cards */
.on-event-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-border);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.on-event-card:hover {
  border-color: var(--on-border-hard);
  transform: translateX(4px);
}

.on-event-card.is-highlighted {
  border-color: var(--on-gold);
  box-shadow: 0 0 24px rgba(241, 218, 176, 0.15);
}

.on-event-card__date {
  flex: 0 0 auto;
  width: 70px;
  text-align: center;
}

.on-event-card__day {
  font-family: var(--on-font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--on-gold);
  line-height: 1;
}

.on-event-card__month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-cyan);
}

.on-event-card__info {
  flex: 1 1 auto;
}

.on-event-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-text);
  margin-bottom: 4px;
}

.on-event-card__meta {
  font-size: 14px;
  color: var(--on-text-muted);
  margin: 0;
}

@media (max-width: 575px) {
  .on-event-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .on-calendar {
    padding: 20px 16px;
  }
  .on-calendar__day {
    font-size: 13px;
  }
}

/* ============================================================
   WSCO SECTION
   ============================================================ */
.on-wsco {
  padding: var(--on-section-pad) 0;
  position: relative;
}

.on-wsco::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(241, 218, 176, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.on-wsco__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-border);
  border-radius: 30px;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .on-wsco__card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
}

.on-wsco__logo-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .on-wsco__logo-col {
    margin-bottom: 8px;
  }
}

.on-wsco__logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--on-border-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.on-wsco__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.on-wsco__content h3 {
  font-family: var(--on-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--on-gold);
  margin-bottom: 16px;
}

.on-wsco__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-text-muted);
  margin-bottom: 12px;
}

.on-wsco__details {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.on-wsco__details li {
  font-size: 15px;
  color: var(--on-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--on-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.on-wsco__details li span:first-child {
  color: var(--on-text-muted);
}

.on-wsco__details li span:last-child {
  font-weight: 700;
  color: var(--on-cyan);
}

.on-wsco__specs {
  margin-top: 24px;
}

.on-wsco__specs-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-text-muted);
  margin-bottom: 12px;
}

.on-wsco__specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 767px) {
  .on-wsco__specs-grid {
    justify-content: center;
  }
}

.on-wsco__spec-tag {
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid var(--on-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-cyan);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.on-wsco__spec-tag:hover {
  border-color: var(--on-gold-dim);
  background: rgba(241, 218, 176, 0.06);
}

.on-wsco__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--on-gold);
  border-radius: 30px;
  color: var(--on-gold);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.on-wsco__link:hover {
  background: var(--on-gold);
  color: #0d0d0d;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.on-contact {
  padding: var(--on-section-pad) 0;
  background: linear-gradient(
    180deg,
    rgba(6, 43, 46, 0.5) 0%,
    rgba(1, 20, 21, 0.9) 100%
  );
}

.on-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 991px) {
  .on-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.on-contact__info h3 {
  font-family: var(--on-font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--on-gold);
  margin-bottom: 24px;
}

.on-contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--on-text);
}

.on-contact__item i {
  font-size: 24px;
  color: var(--on-gold);
  width: 32px;
  text-align: center;
}

.on-contact__item a {
  color: var(--on-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.on-contact__item a:hover {
  color: var(--on-gold);
}

.on-contact__social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}

.on-contact__social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--on-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-text-muted);
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.on-contact__social a:hover {
  background: var(--on-gold);
  color: #0d0d0d;
  border-color: var(--on-gold);
}

.on-contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-border);
  border-radius: 24px;
  padding: 36px;
}

.on-contact__form .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--on-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--on-text);
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.on-contact__form .form-control:focus {
  border-color: var(--on-gold);
  box-shadow: 0 0 0 3px var(--on-gold-faint);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.on-contact__form .form-control::placeholder {
  color: var(--on-text-muted);
}

.on-contact__form textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.on-contact__form .light-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FLOATING CONTACT FAB
   ============================================================ */
.on-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 998;
}

.on-fab__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--on-gold);
  color: #0d0d0d;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.on-fab__trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.on-fab__icon-close {
  display: none;
}

.on-fab.is-open .on-fab__icon-open {
  display: none;
}

.on-fab.is-open .on-fab__icon-close {
  display: block;
}

.on-fab__menu {
  position: absolute;
  bottom: 68px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.on-fab.is-open .on-fab__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.on-fab__item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--on-glass);
  border: 1px solid var(--on-border-hard);
  color: var(--on-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.on-fab__item:hover {
  background: var(--on-gold);
  color: #0d0d0d;
  transform: scale(1.1);
}

@media (max-width: 575px) {
  .on-fab {
    bottom: 20px;
    left: 20px;
  }
  .on-fab__trigger {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .on-fab__item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================================
   SCREEN READER ONLY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* QA pass — WSCO details alignment, calendar header, empty state */
.on-wsco__details li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.on-wsco__details li span:first-child {
  white-space: nowrap;
  flex-shrink: 0;
}

.on-wsco__details li span:last-child {
  text-align: right;
  text-wrap: balance;
}

.on-calendar__month {
  white-space: nowrap;
}

.on-events__empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 36px 24px;
  border: 1px dashed rgba(241, 218, 176, 0.25);
  border-radius: 18px;
  text-align: center;
}

.on-events__empty-mark {
  font-size: 20px;
  color: var(--on-gold, #f1dab0);
}

.on-events__empty p {
  margin: 0;
  color: #abbcbb;
  font-size: 15.5px;
}

.on-events__empty a {
  color: var(--on-gold, #f1dab0);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.on-events__empty a:hover {
  color: #e2fdfb;
}

/* WSCO — nove edukacije */
.on-wsco__edu {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(241, 218, 176, 0.22);
  border-radius: 16px;
  background: radial-gradient(
    140% 180% at 50% 0%,
    rgba(241, 218, 176, 0.07),
    transparent 65%
  );
}

.on-wsco__edu-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.on-wsco__edu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.on-wsco__edu-list li + li {
  border-top: 1px solid rgba(226, 253, 251, 0.08);
}

.on-wsco__edu-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.on-wsco__edu-info strong {
  font-size: 15.5px;
  font-weight: 700;
  color: #e8f2f1;
  line-height: 1.35;
}

.on-wsco__edu-info span {
  font-size: 13px;
  color: #abbcbb;
}

.on-wsco__edu-date {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(241, 218, 176, 0.3);
  background: rgba(241, 218, 176, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-gold, #f1dab0);
  white-space: nowrap;
}

.on-wsco__edu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-gold, #f1dab0);
  text-decoration: none;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.on-wsco__edu-link:hover {
  color: #e2fdfb;
  gap: 12px;
}

.on-wsco__edu-link i {
  font-size: 12px;
}
