/* ===== Design tokens ===== */
:root {
  --color-primary: #f0530f;
  --color-primary-dark: #b93a09;
  --color-primary-darker: #8a2c07;
  --color-primary-light: #ff8a4d;
  --color-vivid: #ff6a07;
  --color-vivid-alt: #ec5538;
  --color-accent: #eb9552;
  --color-cream: #fff8f1;
  --color-cream-dark: #fdecdc;
  --color-ink: #2b2420;
  --color-body: #5a5349;
  --color-body-soft: #6b6258;
  --color-white: #ffffff;
  --color-border: #f0e2d4;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px -6px rgba(43, 36, 32, 0.12);
  --shadow: 0 16px 40px -16px rgba(43, 36, 32, 0.22);
  --container: 1180px;
  --header-h: 80px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
/* Podstrani z večinoma besedilno vsebino: ožji stolpec, ker jih 1180px razpotegne.
   Glava in noga ostaneta v polni širini, enako kot na domači strani. */
.page-narrow .container { max-width: 980px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; background: var(--color-primary-dark); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm); z-index: 1000; transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.98rem;
  padding: 0.95rem 1.9rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt));
  color: #fff; box-shadow: 0 10px 24px -8px rgba(255, 106, 7, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(255, 106, 7, 0.5); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--color-ink); }
.btn-outline:hover { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }
.btn-white { background: #fff; color: var(--color-primary-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(0,0,0,.35); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--header-h);
  background: rgba(255,255,255,.94); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 42px; width: auto; }
.brand-word { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--color-ink); letter-spacing: -0.01em; transition: color .35s ease; }
.brand-word span, .grad-text { background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.96rem; color: var(--color-ink);
  position: relative; padding-block: 0.3rem; transition: color .35s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-primary);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--color-primary-dark); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none; background: none; border: none; padding: 0.5rem; margin: 0;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--color-ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease, background .35s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* transparent-over-hero navbar variant (index.html only), solidifies on scroll via .is-solid */
.site-header--hero:not(.is-solid) {
  background: transparent; border-bottom-color: transparent; backdrop-filter: none;
}
.site-header--hero:not(.is-solid) .nav-links a { color: rgba(255,255,255,.92); }
.site-header--hero:not(.is-solid) .nav-links a::after { background: #fff; }
.site-header--hero:not(.is-solid) .brand-word { color: #fff; }
.site-header--hero:not(.is-solid) .nav-toggle span { background: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff; flex-direction: column; justify-content: flex-start;
    padding: 2rem 1.5rem; gap: 2rem; transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.4rem; width: 100%; }
  .nav-links a { font-size: 1.15rem; color: var(--color-ink) !important; }
  .nav-cta { width: 100%; }
  .nav-cta .btn { width: 100%; }
}

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: min(88vh, 760px); display: flex; align-items: center;
}
.hero picture, .hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 20%;
  filter: brightness(.68) grayscale(.3);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,94,0,.8) 0%, rgba(210,55,5,.72) 45%, rgba(35,16,6,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: 6rem 5rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); color: #fff;
  padding: 0.5rem 1.1rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.eyebrow.light { background: var(--color-cream-dark); border-color: var(--color-cream-dark); color: var(--color-primary-dark); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 20ch; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 46ch; color: rgba(255,255,255,.92); }
.hero .lead-sm { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Floating music-note decorations */
.mnote {
  position: absolute; font-size: 1.7rem; color: rgba(255,255,255,.28); pointer-events: none; user-select: none;
  animation: floatUp 10s ease-in-out infinite; opacity: 0; z-index: 1;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) rotate(-8deg); }
  18% { opacity: .7; }
  85% { opacity: .2; }
  100% { opacity: 0; transform: translateY(-220px) rotate(14deg); }
}
@media (prefers-reduced-motion: reduce) { .mnote { display: none; } }

/* Pulse ring around primary hero CTA */
.pulse-wrap { position: relative; display: inline-block; }
.pulse-ring {
  position: absolute; inset: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt));
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.55); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .pulse-ring { display: none; } }

/* Scroll indicator */
.scroll-caret {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.55);
  animation: caretBounce 2s ease infinite; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.68rem; letter-spacing: .12em; text-transform: uppercase;
}
@keyframes caretBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }
@media (prefers-reduced-motion: reduce) { .scroll-caret { animation: none; } }

/* Hero instrument pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.95rem; border-radius: 999px;
  font-size: 0.85rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.92);
}

/* Page (non-home) header banner */
.page-hero {
  background: linear-gradient(120deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  padding-top: calc(var(--header-h) + 3.2rem); padding-bottom: 3rem; border-bottom: 1px solid var(--color-border);
}
.breadcrumbs { font-size: 0.88rem; color: var(--color-body-soft); margin-bottom: 1rem; }
.breadcrumbs a:hover { color: var(--color-primary-dark); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 26ch; }
.page-hero .lead { max-width: 62ch; font-size: 1.08rem; color: var(--color-body); }

/* ===== Sections ===== */
.section { padding-block: 5.5rem; }
.section-alt { background: var(--color-cream); }
.section-tight { padding-block: 3.5rem; }
.section-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-header.left { margin-inline: 0; text-align: left; }
.section-header h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.section-header .lead { font-size: 1.08rem; }
.divider { width: 52px; height: 4px; background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); border-radius: 3px; margin: 0.9rem auto 1.3rem; }
.section-header.left .divider, .divider-left { margin-inline: 0; }

/* ===== Stat bar ===== */
.stat-bar { background: #fff; border-bottom: 1px solid var(--color-border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; padding-block: 3rem; }
.stat-num {
  font-family: var(--font-heading); font-weight: 900; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  color: var(--color-body-soft); font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem;
  letter-spacing: .08em; text-transform: uppercase; margin-top: 0.5rem;
}
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } .stat-num { font-size: 2rem; } }

/* ===== Value props ===== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.value-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 2rem 1.6rem; text-align: left; box-shadow: var(--shadow-sm);
}
.value-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--color-cream-dark); color: var(--color-primary-dark); margin-bottom: 1.1rem;
}
.value-card h3 { font-size: 1.08rem; margin-bottom: 0.4em; }
.value-card p { font-size: 0.94rem; margin-bottom: 0; }

@media (max-width: 1024px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ===== Instrument cards (featured, with photo) ===== */
.instrument-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 2.5rem; }
.instrument-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.instrument-card:hover { transform: translateY(-6px); border-color: rgba(255,106,7,.35); box-shadow: 0 20px 42px -16px rgba(255,106,7,.3); }
.instrument-card .card-media { height: 190px; overflow: hidden; }
.instrument-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.instrument-card:hover .card-media img { transform: scale(1.07); }
.instrument-card .card-content { padding: 1.4rem 1.5rem 1.6rem; }
.instrument-card .card-content h3 { display: flex; align-items: center; gap: 0.55rem; font-size: 1.1rem; margin-bottom: 0.5em; color: var(--color-ink); }
.instrument-card .card-content h3 svg { width: 22px; height: 22px; color: var(--color-primary-dark); flex-shrink: 0; }
.instrument-card .card-content p { font-size: 0.9rem; margin-bottom: 0; color: var(--color-body); }

@media (max-width: 1024px) { .instrument-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .instrument-grid { grid-template-columns: 1fr; } }

/* Non-featured instrument chips */
.instrument-chip-list { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.instrument-chip {
  display: inline-flex; align-items: center; gap: 0.55rem; background: #fff; border: 1px solid var(--color-border);
  border-radius: 999px; padding: 0.7rem 1.3rem; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.94rem; color: var(--color-ink); box-shadow: var(--shadow-sm);
}
.instrument-chip svg { width: 18px; height: 18px; color: var(--color-primary-dark); flex-shrink: 0; }
.subsection-label { text-align: center; font-family: var(--font-heading); font-weight: 700; color: var(--color-body-soft); margin-bottom: 1.2rem; }

/* ===== Music creation / feature band ===== */
.feature-band { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.feature-band img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-band.reverse { grid-template-columns: 0.95fr 1.05fr; }
.feature-band.reverse .feature-media { order: 2; }
@media (max-width: 900px) {
  .feature-band, .feature-band.reverse { grid-template-columns: 1fr; }
  .feature-band.reverse .feature-media { order: 0; }
}
.feature-media { position: relative; }
.about-badge {
  position: absolute; bottom: -22px; right: -18px; display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow);
}
.about-badge-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); color: #fff;
}
.about-badge-num { font-family: var(--font-heading); font-weight: 900; font-size: 1.5rem; color: var(--color-ink); line-height: 1.1; }
.about-badge-label { font-size: 0.78rem; color: var(--color-body-soft); }
@media (max-width: 560px) { .about-badge { right: 0; bottom: -18px; padding: 0.85rem 1.1rem; } }

.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 1.2rem; margin-block: 1.6rem; }
.check-item { display: flex; align-items: center; gap: 0.7rem; }
.check-dot {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); color: #fff;
}
.check-dot svg { width: 14px; height: 14px; }
.check-item span { font-size: 0.94rem; color: var(--color-ink); }

/* ===== Locations / service area ===== */
.location-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.location-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.5rem 1.2rem; text-align: center; box-shadow: var(--shadow-sm);
}
.location-card h3 { font-size: 1.02rem; margin-bottom: 0.3em; }
.location-card p { font-size: 0.86rem; margin-bottom: 0; color: var(--color-body-soft); }
@media (max-width: 1024px) { .location-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 760px; margin-inline: auto; }
.team-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem;
}
.team-photo { width: 104px; height: 104px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-info { min-width: 0; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 0.1em; }
.team-role { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary-dark); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 0.35em; }
.team-teaches { font-size: 0.84rem; margin-bottom: 0.55em; }
.team-social { display: flex; gap: 0.5rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 9px; background: var(--color-cream-dark); color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease, color .2s ease;
}
.social-btn:hover { background: var(--color-vivid); color: #fff; }
.social-btn svg { width: 16px; height: 16px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } .team-card { flex-direction: column; text-align: center; } }

/* ===== FAQ (details/summary) ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.3rem 1.6rem; font-family: var(--font-heading); font-weight: 700;
  color: var(--color-ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon-plus {
  position: relative; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--color-cream-dark);
  color: var(--color-primary-dark); transition: transform .2s ease;
}
.faq-item summary .icon-plus::before, .faq-item summary .icon-plus::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
}
.faq-item summary .icon-plus::before { left: 8px; right: 8px; top: 13px; height: 2px; }
.faq-item summary .icon-plus::after { top: 8px; bottom: 8px; left: 13px; width: 2px; }
.faq-item[open] summary .icon-plus { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.6rem 1.5rem; font-size: 0.97rem; }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, var(--color-vivid), var(--color-vivid-alt));
  color: #fff; text-align: center; padding-block: 4.5rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.5rem); max-width: 24ch; margin: 0 auto 0.5em; }
.cta-band .lead { color: rgba(255,255,255,.9); max-width: 54ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ===== Philosophy / long-form content (o-nas) ===== */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.prose h3 { font-size: 1.2rem; color: var(--color-primary-dark); margin-top: 1.8em; }
.prose p { font-size: 1.03rem; }
.prose.center { margin-inline: auto; text-align: left; }

/* ===== Services list ===== */
.service-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem;
  /* Zamejeno, da so kartice enako široke kot na domači strani. */
  max-width: 900px; margin-inline: auto;
}
.service-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); display: flex; gap: 1.2rem;
}
.service-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--color-cream-dark);
  color: var(--color-primary-dark); font-family: var(--font-heading); font-weight: 800; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
}
.service-num svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.service-card p { font-size: 0.95rem; margin-bottom: 0; }
/* V mreži na strani Storitve poravnano s karticami na domači strani.
   Kartice v .pillar-list (Glasbeno ustvarjanje) ostanejo nespremenjene. */
.service-list .service-card { padding: 1.75rem; }
.service-list .service-card h3 { font-size: 1.1rem; }
.service-list .service-card p { font-size: 0.9rem; }
@media (max-width: 800px) { .service-list { grid-template-columns: 1fr; } }

/* ===== Steps strip (storitve page) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { text-align: center; position: relative; }
.step-icon {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -10px rgba(255,106,7,.5);
}
.step-icon svg { width: 26px; height: 26px; }
.step-num {
  position: absolute; top: -6px; left: 50%; transform: translateX(18px);
  width: 24px; height: 24px; border-radius: 50%; background: var(--color-ink); color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 0.78rem; display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.step-card p { font-size: 0.92rem; color: var(--color-body); margin-bottom: 0; }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ===== Callout box (highlighted quote/box within prose) ===== */
.callout-box {
  background: var(--color-cream-dark); border-left: 4px solid var(--color-vivid); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; margin: 1.6rem 0;
}
.callout-box h3 { font-size: 1rem; margin-bottom: 0.4em; }
.callout-box p { font-size: 0.92rem; margin-bottom: 0; }
.quote-box {
  background: var(--color-cream-dark); border-left: 4px solid var(--color-vivid); border-radius: var(--radius);
  padding: 1.5rem 1.7rem; font-style: italic; font-size: 1rem; color: var(--color-ink); margin-bottom: 0;
}

/* ===== Pillar list (icon + text row, stacked) ===== */
.pillar-list { display: flex; flex-direction: column; gap: 1.2rem; }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; max-width: 780px; margin-inline: auto; }
.price-card {
  background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius-lg); padding: 2.2rem;
  position: relative; transition: border-color .3s ease, box-shadow .3s ease;
}
.price-card.featured { border-color: var(--color-vivid); box-shadow: 0 16px 44px -18px rgba(255,106,7,.4); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt)); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.price-card .price-sub { font-size: 0.85rem; color: var(--color-body-soft); margin-bottom: 1.4rem; }
.price-num-row { display: flex; align-items: flex-end; gap: 0.4rem; margin-bottom: 1.4rem; }
.price-num {
  font-family: var(--font-heading); font-weight: 900; font-size: 2.4rem; line-height: 1;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-num-row span { font-size: 0.85rem; color: var(--color-body-soft); margin-bottom: 0.2rem; }
@media (max-width: 700px) { .price-grid { grid-template-columns: 1fr; } }

/* ===== Mentor bio ===== */
.mentor-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.mentor-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow); max-width: 380px; }
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.mentor-name { font-size: 1.4rem; margin: 1.3rem 0 0.2em; }
.mentor-role { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: var(--color-primary-dark); }
.mentor-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; max-width: 380px; }
.mentor-chip {
  background: var(--color-cream-dark); color: var(--color-primary-dark); border: 1px solid rgba(255,106,7,.2);
  border-radius: 999px; padding: 0.3rem 0.9rem; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.mentor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.mentor-stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.2rem; text-align: center; min-height: 108px;
}
.mentor-stat-num {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.6rem; line-height: 1;
  background: linear-gradient(135deg, var(--color-vivid), var(--color-vivid-alt));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.mentor-stat-label { font-size: 0.68rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-body-soft); }
.mentor-stat.is-link { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.mentor-stat.is-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .mentor-grid { grid-template-columns: 1fr; } .mentor-photo, .mentor-chips { max-width: 340px; margin-inline: auto; } }

/* ===== Forms ===== */
.form-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow); }
/* Vpisni list stoji sam v containerju, zato ga zamejimo – sicer se razlije čez celotno širino strani.
   Kontaktni obrazec na domači strani je v stolpcu in je že ožji, zato nanj to ne vpliva. */
.form-card { max-width: 840px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .field-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: var(--color-ink); }
.field-title { display: block; }
.form-field .req { color: var(--color-primary-dark); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field textarea {
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  background: var(--color-cream); color: var(--color-ink); transition: border-color .18s ease, background .18s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.82rem; color: var(--color-body-soft); }
.form-section-title {
  grid-column: 1 / -1; font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; color: var(--color-ink);
  margin-top: 0.6rem; margin-bottom: 0; padding-top: 1.2rem; border-top: 1px dashed var(--color-border);
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.radio-group, .checkbox-group { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 0.7rem; }
.radio-option, .checkbox-option {
  display: flex; align-items: flex-start; gap: 0.7rem; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem; background: var(--color-cream); cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.radio-option:has(input:checked), .checkbox-option:has(input:checked) {
  border-color: var(--color-primary); background: var(--color-cream-dark);
}
.radio-option input, .checkbox-option input { margin-top: 3px; accent-color: var(--color-primary); width: 18px; height: 18px; flex-shrink: 0; }
.radio-option span, .checkbox-option span { font-size: 0.95rem; color: var(--color-ink); }

.form-submit-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-msg { grid-column: 1 / -1; padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.94rem; display: none; }
.form-msg.is-visible { display: block; }
.form-msg.success { background: #e9f7ee; color: #1f7a45; border: 1px solid #bfe8cf; }
.form-msg.error { background: #fdecec; color: #b3261e; border: 1px solid #f6c6c3; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--color-cream-dark);
  color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center;
}
.contact-info-item h3 { font-size: 1rem; margin-bottom: 0.2em; }
.contact-info-item p, .contact-info-item address, .contact-info-item a { font-size: 0.97rem; font-style: normal; }
.contact-info-item a:hover { color: var(--color-primary-dark); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Footer (dark) ===== */
.site-footer { background: var(--color-ink); padding-block: 4.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 46px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social .social-btn { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.footer-social .social-btn:hover { background: var(--color-primary); color: #fff; }
.footer-col h3 { font-family: var(--font-heading); font-size: 0.82rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.9); margin-bottom: 1.2em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.55); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.92rem; color: rgba(255,255,255,.55); }
.footer-service-area { font-size: 0.86rem; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.8rem; margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Legal / privacy prose page ===== */
.legal-prose h2 { font-size: 1.4rem; margin-top: 1.6em; }
.legal-prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }
.legal-prose li { margin-bottom: 0.4em; }

/* ===== Icons ===== */
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-filled { fill: currentColor; stroke: none; }

/* ===== Scroll reveal (progressive enhancement, safe by default) ===== */
html.js [data-aos] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
html.js [data-aos].in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-aos] { transform: none !important; transition: none !important; opacity: 1 !important; }
}
