/* =========================================================
   psihoterapija-pevec.si – slog strani
   Barve, pisave in razmiki so definirani v :root. Če želiš
   spremeniti videz celotne strani, začni tukaj.
   ========================================================= */

:root {
  --ink: #2a2a2a;          /* naslovi, glavno besedilo */
  --text: #3d3a36;         /* odstavki */
  --text-soft: #55524d;    /* sekundarno besedilo */
  --muted: #6b665e;        /* male oznake */
  --line: #e4e0d9;         /* tanke črte */
  --cream: #f6f4f1;        /* svetlo ozadje */
  --dark: #2a2635;         /* temno ozadje (hero, noga) */
  --purple: #4a455f;       /* vijolični pas */
  --teal: #1aa5a6;         /* gumbi */
  --teal-dark: #158687;
  --teal-text: #0e7476;    /* povezave */
  --gold: #caa86a;
  --gold-light: #e8d3a8;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Pisave (lokalne datoteke v assets/fonts) ---------- */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/instrument-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/instrument-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/instrument-serif-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/instrument-serif-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Osnova ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { flex: 1; }

img { max-width: 100%; }

a { color: var(--teal-text); }
a:hover { color: var(--purple); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

::selection { background: rgba(202, 168, 106, .28); }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
}

.em { font-style: italic; color: var(--gold-light); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* mala oznaka z velikimi črkami (npr. "01 — Uvod") */
.eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--teal { color: var(--teal-text); }
.eyebrow--gold { color: var(--gold); }

/* ---------- Animacije ---------- */

@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hintDrift { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

.rise { animation: riseIn .8s var(--ease) both; }
.rise-1 { animation: riseIn .9s var(--ease) both; animation-delay: .12s; }
.rise-2 { animation: riseIn .9s var(--ease) both; animation-delay: .26s; }
.rise-3 { animation: riseIn .9s var(--ease) both; animation-delay: .38s; }
.fade { animation: fadeIn .6s ease both; }

@media (prefers-reduced-motion: reduce) {
  .rise, .rise-1, .rise-2, .rise-3, .fade, .page-hero h1, .hero-photo { animation: none; }
}

/* ---------- Gumbi in povezave ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--teal);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .25s ease, gap .25s ease;
}
.btn:hover { background: var(--teal-dark); color: #ffffff; gap: 20px; }
.btn .arrow { font-size: 15px; line-height: 1; }

.btn-text {
  display: inline-flex;
  align-items: center;
  padding: 18px 4px;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  transition: color .25s ease, border-color .25s ease;
}
.btn-text:hover { color: var(--gold-light); border-color: var(--gold); }

.link-more {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 116, 118, .4);
  padding-bottom: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.link-more:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Glava ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0 clamp(16px, 3vw, 40px);
  min-height: 76px;
}

/* povezava za preskok na vsebino (vidna samo ob tabulatorju) */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--dark);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.skip-link:focus { top: 16px; color: #ffffff; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  padding: 14px 0;
  min-height: 76px;   /* stalna višina vrstice, da se logotip ob odprtju menija ne premakne */
  color: var(--ink);
  text-decoration: none;
  transition: opacity .2s ease;
}
.brand:hover { opacity: .65; color: var(--ink); }
.brand img { display: block; height: 36px; width: auto; }
.brand-name { display: block; font-family: var(--serif); font-size: 23px; line-height: 1; letter-spacing: -.01em; }
.brand-sub { display: block; margin-top: 6px; font-size: 9.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0 clamp(14px, 2vw, 26px);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform-origin: left;
  animation: lineGrow .45s var(--ease) both;
}
.site-nav a.nav-cta {
  color: #ffffff;
  background: var(--dark);
  padding: 0 20px;
  margin: 14px 0;
  transition: background .25s ease;
}
.site-nav a.nav-cta:hover { background: var(--teal); color: #ffffff; }
.site-nav a.nav-cta.active::after { display: none; }

/* gumb za mobilni meni (hamburger) */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  align-self: center;
  height: 44px;
  padding: 0 14px;
  background: none;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle-icon::before { top: 0; box-shadow: 0 5px 0 currentColor; }
.nav-toggle-icon::after { bottom: 0; }
.site-header.nav-open .nav-toggle-icon::before { top: 5px; box-shadow: none; transform: rotate(45deg); }
.site-header.nav-open .nav-toggle-icon::after { bottom: 5px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-bottom: 20px;
    border-top: 1px solid var(--line);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.active { color: var(--ink); }
  .site-nav a.active::after { display: none; }
  .site-nav a.nav-cta { margin: 16px 0 0; padding: 16px 20px; justify-content: center; border: 0; }
}

/* ---------- Hero (domača stran in "O meni") ---------- */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--dark);
  color: #ffffff;
}
.hero-text {
  flex: 1.15 1 540px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 108px) clamp(24px, 5vw, 92px) clamp(40px, 5vw, 76px);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-kicker::before { content: ''; display: block; width: 34px; height: 1px; background: var(--gold); }
.hero h1 {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 15em;
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: pretty;
}
.hero-lead {
  margin: clamp(26px, 3vw, 38px) 0 0;
  max-width: 30em;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, .74);
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(32px, 4vw, 44px);
}

.hero-image {
  flex: 1 1 380px;
  min-width: 280px;
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 52vw, 760px);
  border-left: 1px solid rgba(202, 168, 106, .35);
}
.hero-image-bg {
  position: absolute;
  inset: -14% 0;
  background-image: url('../assets/simon.jpg');
  background-size: cover;
  background-position: 50% 22%;
  will-change: transform;
}
.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(42, 38, 53, .22) 0%, rgba(42, 38, 53, .05) 45%, rgba(42, 38, 53, .55) 100%);
}
.hero-image-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px clamp(20px, 3vw, 32px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .7);
  animation: hintDrift 3s ease-in-out infinite;
}
.scroll-hint::after { content: ''; display: block; width: 1px; height: 28px; background: rgba(255, 255, 255, .55); }

/* svetla različica (stran O meni) */
.hero--light {
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.hero--light .hero-text {
  flex: 1.1 1 480px;
  padding: clamp(52px, 7vw, 104px) clamp(24px, 4vw, 72px);
}
.hero--light .hero-kicker { color: var(--teal-text); letter-spacing: .22em; }
.hero--light h1 {
  margin-top: clamp(22px, 3vw, 36px);
  max-width: 17em;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.04;
}
.hero--light .hero-lead {
  margin-top: clamp(26px, 3vw, 36px);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.7;
  color: var(--text);
}
.hero--light .hero-image {
  flex: 1 1 360px;
  min-width: 260px;
  min-height: clamp(340px, 42vw, 620px);
  border-left: 1px solid var(--line);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  animation: fadeIn 1s ease both;
}

/* ---------- Pas z dejstvi pod herojem ---------- */

.facts {
  background: var(--dark);
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.facts .container { display: flex; flex-wrap: wrap; }
.facts div {
  flex: 1 1 220px;
  padding: 26px clamp(16px, 2vw, 28px);
  border-left: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  letter-spacing: .06em;
}
.facts div:first-child { padding-left: 0; border-left: 0; }
.facts div:last-child { padding-right: 0; }

/* ---------- Sekcije in ozadja ---------- */

.section { padding-top: clamp(72px, 10vw, 140px); padding-bottom: clamp(72px, 10vw, 140px); }
.section--top { padding-top: clamp(52px, 7vw, 100px); padding-bottom: 0; }
.section--body { padding-top: clamp(52px, 7vw, 100px); padding-bottom: clamp(72px, 10vw, 132px); }
.section--bottom { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(72px, 10vw, 132px); }
.section--end { padding-bottom: clamp(72px, 10vw, 132px); }

.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); color: #ffffff; }
.bg-purple { background: var(--purple); color: #ffffff; }
.border-top { border-top: 1px solid var(--line); }

.gap-top { margin-top: clamp(64px, 9vw, 120px); }
.gap-top-sm { margin-top: clamp(56px, 8vw, 104px); }
.gap-top-xs { margin-top: clamp(44px, 6vw, 72px); }

/* ---------- Naslov podstrani ---------- */

.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(44px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
}
.page-hero h1 {
  flex: 1 1 560px;
  min-width: 280px;
  max-width: 18em;
  font-size: clamp(34px, 4.8vw, 70px);
  line-height: 1.04;
  letter-spacing: -.025em;
  text-wrap: pretty;
  animation: riseIn .8s var(--ease) both;
}

/* ---------- Dvostolpčna postavitev: oznaka levo, vsebina desno ---------- */

.split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 80px);
}
.split-label {
  flex: 0 1 180px;
  min-width: 140px;
}
.split-body {
  flex: 1 1 520px;
  min-width: 280px;
}
/* črta nad ali pod oznako */
.split-label--rule-top::before,
.split-label--rule-bottom::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--line);
}
.split-label--rule-top::before { margin-bottom: 18px; background: var(--gold); }
.split-label--rule-bottom::after { margin-top: 18px; }
.bg-purple .split-label--rule-top::before { background: rgba(202, 168, 106, .6); }
.bg-purple .eyebrow { color: rgba(232, 211, 168, .9); }

/* ---------- Besedilo ---------- */

.prose p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  max-width: 34em;
  text-wrap: pretty;
}
.prose p:last-child { margin-bottom: 0; }

.prose--soft p { font-size: 16.5px; color: var(--text-soft); }
.prose--wide p { max-width: 40em; }

.cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
}
.cols > * { flex: 1 1 280px; min-width: 0; }
.cols p { max-width: none; }
.lead-serif + .cols { margin-top: clamp(40px, 5vw, 64px); }
.levels + .cols { margin-top: clamp(36px, 4vw, 56px); }

.lead-serif {
  font-size: clamp(27px, 3.4vw, 46px);
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: 24em;
  text-wrap: pretty;
}

.section-title {
  margin-top: 18px;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 22em;
}
.split .section-title { margin-top: 0; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- Velik citat (vijolični pas) ---------- */

.quote {
  flex: 1 1 560px;
  min-width: 280px;
  margin: 0;
}
.quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 26em;
  text-wrap: pretty;
}

/* ---------- Seznam povezav na podstrani (domača stran) ---------- */

.index-list {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--ink);
  counter-reset: idx;
}
.index-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px clamp(24px, 4vw, 56px);
  padding: clamp(26px, 3vw, 40px) clamp(12px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background .3s ease, padding .3s ease;
}
.index-item:hover { background: var(--cream); padding-left: clamp(20px, 3vw, 40px); color: var(--ink); }
.index-item::before {
  counter-increment: idx;
  content: counter(idx, decimal-leading-zero);
  flex: 0 0 56px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  color: #7a756c;
}
.index-item::after { content: '→'; flex: 0 0 auto; margin-left: auto; font-size: 18px; color: var(--gold); }
.index-item .serif { flex: 1 1 260px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.16; letter-spacing: -.015em; }
.index-item .desc { flex: 1 1 260px; font-size: 15.5px; line-height: 1.7; color: var(--text-soft); }

/* ---------- Opomba ob strani (Namen / Cilj) ---------- */

.note {
  flex: 0 1 340px;
  min-width: 260px;
  align-self: flex-start;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.note p {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.28;
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.split > .prose:not(.split-body) { flex: 1 1 420px; min-width: 280px; }

/* ---------- Tri ravni ---------- */

.levels {
  display: flex;
  flex-wrap: wrap;
  margin: clamp(40px, 5vw, 64px) 0 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  padding: 0;
  counter-reset: lvl;
}
.levels li {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 32px clamp(20px, 3vw, 36px) 40px;
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -.015em;
}
.levels li:first-child { padding-left: 0; border-left: 0; }
.levels li::before {
  counter-increment: lvl;
  content: counter(lvl, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
}

/* ---------- Področja (mreža z oštevilčenjem) ---------- */

.areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  border-top: 1px solid var(--ink);
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: area;
}
.areas li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.areas li::before {
  counter-increment: area;
  content: counter(area, decimal-leading-zero);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
}

/* ---------- Pas z dvema stolpcema (Kdaj je v pomoč) ---------- */

.band-cols {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 80px);
  padding-top: clamp(64px, 9vw, 120px);
  padding-bottom: clamp(64px, 9vw, 120px);
}
.band-cols > * { flex: 1 1 420px; min-width: 280px; margin: 0; }
.band-cols .text {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .74);
  max-width: 34em;
  text-wrap: pretty;
}
.band-cols .serif {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

/* ---------- Pogosta vprašanja ---------- */

.faq {
  margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--ink);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  color: var(--gold);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item h3 {
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.faq-item p {
  margin: 0 0 26px;
  max-width: 40em;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text);
  text-wrap: pretty;
}

/* ---------- Vrstice s podatki (Strokovnost, Okvir) ---------- */

.rows { border-top: 1px solid var(--ink); }
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.row-label {
  flex: 0 1 140px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.row-value {
  flex: 0 1 200px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.row-value--teal { color: var(--teal-text); }
.row-text {
  flex: 1 1 240px;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
}
.row-text.serif { font-size: 26px; letter-spacing: -.015em; color: var(--ink); }
.row-value + .row-text { font-size: 15.5px; color: var(--text-soft); }

/* ---------- Poziv k dejanju (temni pas) ---------- */

.cta-band .container {
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(56px, 8vw, 104px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
}
.cta-band p {
  flex: 1 1 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.16;
  letter-spacing: -.02em;
  max-width: 22em;
  text-wrap: pretty;
}

/* ---------- Kontakt ---------- */

.contact-list {
  flex: 1 1 380px;
  min-width: 280px;
  border-top: 1px solid var(--ink);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 24px;
  padding: 26px clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: background .3s ease, padding .3s ease;
}
.contact-row:hover { background: var(--cream); padding-left: clamp(16px, 2.5vw, 28px); color: var(--ink); }
.contact-row::after { content: '→'; flex: 0 0 auto; margin-left: auto; font-size: 17px; color: var(--gold); }
.contact-row .row-label { flex: 0 1 110px; }
.contact-row .value {
  flex: 1 1 150px;
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -.015em;
}
.contact-row .value small {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-text);
}

.map {
  margin-top: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
}
.map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

/* ---------- Noga ---------- */

.site-footer {
  background: var(--dark);
  color: #ffffff;
}
.footer-grid {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
}
.footer-brand { flex: 1.2 1 320px; min-width: 260px; }
.footer-brand img { display: block; height: 52px; width: auto; }
.footer-brand .serif {
  display: block;
  margin-top: 24px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 16em;
}
.footer-brand .small { margin-top: 20px; font-size: 13px; line-height: 1.8; color: rgba(255, 255, 255, .6); }

.footer-col { flex: 0 1 220px; min-width: 170px; }
.footer-heading {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(202, 168, 106, .9);
}
.footer-heading + * { margin-top: 16px; }
.footer-col p { margin: 0 0 26px; font-size: 15px; line-height: 1.85; color: rgba(255, 255, 255, .78); }
.footer-col p:last-child { margin-bottom: 0; }
.footer-col a { color: #ffffff; text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-light); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
}
.footer-links a { color: rgba(255, 255, 255, .78); }

.footer-bottom {
  padding-bottom: 36px;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .14);
  margin-bottom: 20px;
}
