/* ==========================================================================
   GEA PSIHOTERAPIJA — dizajn sistem
   Koncept: "Srednja linija". Logo je glava podijeljena po sredini — puna
   silueta (osoba, osjećaj) i linijski crtež mozga (misao, metod). Sajt koristi
   isti par: tople, pune površine naspram finih tirkiznih linija.
   ========================================================================== */

/* ---------- 1. Tokeni ---------------------------------------------------- */
:root {
  /* Logo — izvor istine (uzorkovano iz logo.svg) */
  --teal: #51A8B1;
  --lime: #A8CF45;
  --grad: linear-gradient(180deg, var(--lime) 0%, var(--teal) 100%);
  --grad-x: linear-gradient(90deg, var(--lime) 0%, var(--teal) 100%);

  /* Izvedene nijanse logo tirkizne — za tekst i CTA (WCAG AA na papiru) */
  --teal-700: #276A72;   /* 5.6:1 na --paper — linkovi, oznake */
  --teal-800: #1C4F55;   /* 8.3:1 — primarni CTA, naglasci */
  --teal-900: #153D42;   /* tamne površine */
  --teal-950: #0F2E32;
  --lime-700: #46651A;   /* limeta kao tekst na svijetlom (rijetko) */

  /* Neutralne, tople podloge */
  --paper: #F7F4ED;      /* topla bijela */
  --paper-hi: #FBF9F4;
  --stone: #EDE7DC;      /* svijetli kamen */
  --stone-2: #E2D9CA;
  --mist: #ECF3E3;       /* vrlo svijetla limeta */
  --mist-teal: #E3EFEE;  /* vrlo svijetla tirkizna */

  /* Tekst */
  --ink: #23292A;        /* charcoal 13.4:1 */
  --ink-2: #4C5655;      /* 6.9:1 */
  --ink-3: #5E6866;      /* 5.2:1 — sitni tekst, potpisi */
  --line: rgba(35, 41, 42, .12);
  --line-2: rgba(35, 41, 42, .22);
  --line-dark: rgba(247, 244, 237, .16);

  /* Tipografija */
  --f-serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --f-sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;

  --t-display: clamp(2.75rem, 1.55rem + 4.4vw, 5.6rem);
  --t-h1: clamp(2.5rem, 1.6rem + 3.3vw, 4.6rem);
  --t-h2: clamp(2rem, 1.45rem + 2.1vw, 3.3rem);
  --t-h3: clamp(1.4rem, 1.22rem + .7vw, 1.85rem);
  --t-h4: 1.125rem;
  --t-lead: clamp(1.22rem, 1.08rem + .55vw, 1.55rem);
  --t-body: 1.0625rem;
  --t-prose: clamp(1.0625rem, 1.02rem + .2vw, 1.1875rem);
  --t-small: .9375rem;
  --t-xs: .8125rem;
  --t-label: .75rem;

  /* Prostor (osnova 4px) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem; --s-10: 8rem;
  --section: clamp(5rem, 3.2rem + 6.5vw, 10rem);
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Oblik */
  --r-xs: 8px; --r-sm: 12px; --r-md: 20px; --r-lg: 28px; --r-pill: 999px;
  --shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 24px 48px -30px rgba(21, 61, 66, .28);
  --shadow-lift: 0 1px 0 rgba(255,255,255,.7) inset, 0 34px 60px -32px rgba(21, 61, 66, .34);

  /* Pokret */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-2: cubic-bezier(.32, .72, 0, 1);
  --dur: .7s;

  --header-h: 72px;
}

/* ---------- 2. Osnova ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
/* papirna tekstura — fiksni, neinteraktivni sloj */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a[href^="tel:"] { white-space: nowrap; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
::selection { background: var(--lime); color: var(--teal-950); }

:focus-visible {
  outline: 2px solid var(--teal-700);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-dark :focus-visible, .on-dark:focus-visible { outline-color: var(--lime); }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 200;
  background: var(--teal-900); color: var(--paper); padding: .75rem 1.1rem; border-radius: var(--r-pill);
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. Tipografija ---------------------------------------------- */
.display, .h1, .h2, .h3 {
  font-family: var(--f-serif);
  font-optical-sizing: auto;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
.display { font-size: var(--t-display); line-height: 1.02; font-weight: 340; }
.h1 { font-size: var(--t-h1); line-height: 1.04; font-weight: 350; }
.h2 { font-size: var(--t-h2); line-height: 1.08; font-weight: 360; }
.h3 { font-size: var(--t-h3); line-height: 1.2; font-weight: 420; letter-spacing: -.012em; }
.h4 { font-family: var(--f-sans); font-size: var(--t-h4); line-height: 1.4; font-weight: 650; letter-spacing: -.005em; }
.display em, .h1 em, .h2 em, .h3 em { font-style: italic; font-weight: 330; color: var(--teal-800); }

.lead {
  font-family: var(--f-serif);
  font-size: var(--t-lead);
  line-height: 1.45;
  font-weight: 380;
  color: var(--ink);
  letter-spacing: -.005em;
  text-wrap: pretty;
}
.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--ink-2); }
.muted { color: var(--ink-2); }
.small { font-size: var(--t-small); }
.xs { font-size: var(--t-xs); }
.measure { max-width: 64ch; }
.label {
  font-family: var(--f-sans);
  font-size: var(--t-label);
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-700);
}

/* naglasak — markerski potez limetom ispod ključnih riječi */
.hl {
  background: linear-gradient(transparent 64%, rgba(168, 207, 69, .45) 64%, rgba(168, 207, 69, .45) 92%, transparent 92%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 1.2s var(--ease) .3s;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.is-in .hl, .hl.is-in { background-size: 100% 100%; }

/* ---------- 4. Raspored ------------------------------------------------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: calc(880px + var(--gutter) * 2); }
.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * .6); }
.section--stone { background: var(--stone); }
.section--mist { background: var(--mist); }
.section--dark { background: var(--teal-900); color: var(--paper); }
.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(1rem, 2.2vw, 2rem); }
.stack > * + * { margin-top: var(--s-5); }
.stack-sm > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-6); }

/* ---------- 5. Brend oznake -------------------------------------------- */
/* .mark — podnožje sijalice iz logotipa: dvije linije + tačka */
.mark {
  display: inline-block; flex: none;
  width: 14px; height: 11px;
  background:
    linear-gradient(currentColor, currentColor) top center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 5px / 64% 2px no-repeat,
    radial-gradient(circle, currentColor 1.6px, transparent 2px) bottom center / 6px 4px no-repeat;
  border-radius: 1px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .42rem .85rem .42rem .7rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--paper-hi) 70%, transparent);
  font-size: var(--t-label); font-weight: 650; letter-spacing: .16em; text-transform: uppercase;
  line-height: 1.2; color: var(--teal-700);
}
.eyebrow .mark { color: var(--teal); }
.on-dark .eyebrow, .eyebrow--dark { border-color: var(--line-dark); background: rgba(255,255,255,.04); color: var(--lime); }
.on-dark .eyebrow .mark { color: var(--lime); }

.shead { display: grid; gap: var(--s-5); justify-items: start; }
.shead__row { display: flex; align-items: end; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap; }

/* srednja linija */
.midline {
  position: relative; width: 1px; justify-self: center;
  background: var(--grad);
  transform-origin: top;
}
.midline__node {
  position: absolute; left: 50%; top: var(--node, 38%);
  width: 13px; height: 13px; margin: -6.5px 0 0 -6.5px;
  border-radius: 50%; background: var(--paper); border: 1.5px solid var(--teal);
  box-shadow: 0 0 0 5px var(--paper);
}
.midline__node::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--lime); }

/* crtanje linija (SVG putanje sa pathLength="1") */
.draw path, .draw circle, .draw line, .draw polyline, .draw ellipse {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.2s var(--ease) calc(var(--d, 0) * 1s);
}
.draw.is-in path, .draw.is-in circle, .draw.is-in line, .draw.is-in polyline, .draw.is-in ellipse { stroke-dashoffset: 0; }

.ornament { position: absolute; pointer-events: none; fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; }

/* ---------- 6. Dugmad i linkovi ---------------------------------------- */
.btn {
  --btn-bg: var(--teal-800); --btn-fg: var(--paper); --btn-ic-bg: var(--lime); --btn-ic-fg: var(--teal-950);
  position: relative;
  display: inline-flex; align-items: center; gap: .9rem;
  min-height: 52px;
  padding: .4rem .45rem .4rem 1.45rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 650; font-size: .9875rem; letter-spacing: -.005em; line-height: 1.2;
  border: 1px solid transparent;
  transition: background-color .45s var(--ease), color .45s var(--ease), transform .45s var(--ease-2), box-shadow .45s var(--ease), border-color .45s var(--ease);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn__icon {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--btn-ic-bg); color: var(--btn-ic-fg);
  transition: transform .55s var(--ease-2), background-color .45s var(--ease);
}
.btn__icon svg { width: 16px; height: 16px; }
.btn:hover { --btn-bg: var(--teal-900); box-shadow: 0 18px 30px -18px rgba(21, 61, 66, .55); }
.btn:hover .btn__icon { transform: translate(3px, -1px) scale(1.06); }
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 4px; border-radius: var(--r-pill); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-ic-bg: var(--stone); --btn-ic-fg: var(--teal-800); border-color: var(--line-2); }
.btn--ghost:hover { --btn-bg: var(--paper-hi); --btn-ic-bg: var(--lime); --btn-ic-fg: var(--teal-950); border-color: var(--teal); box-shadow: none; }
.btn--light { --btn-bg: var(--paper); --btn-fg: var(--teal-900); --btn-ic-bg: var(--teal-800); --btn-ic-fg: var(--paper); }
.btn--light:hover { --btn-bg: #fff; --btn-ic-bg: var(--lime); --btn-ic-fg: var(--teal-950); }
.btn--sm { min-height: 44px; padding: .3rem .32rem .3rem 1.1rem; font-size: .9rem; gap: .7rem; }
.btn--sm .btn__icon { width: 34px; height: 34px; }
.btn--sm .btn__icon svg { width: 14px; height: 14px; }
.btn--plain { padding-right: 1.45rem; }
.btn[disabled], .btn.is-disabled {
  --btn-bg: var(--stone); --btn-fg: var(--ink-3); --btn-ic-bg: var(--stone-2); --btn-ic-fg: var(--ink-3);
  cursor: not-allowed; box-shadow: none; transform: none;
}
.btn[disabled] .btn__icon { transform: none; }
.btn.is-loading .btn__icon svg { animation: spin 1s linear infinite; }

.link {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 650; color: var(--teal-800);
  padding-block: .2rem;
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
  transition: background-size .6s var(--ease), color .3s var(--ease);
}
.link svg { width: 15px; height: 15px; transition: transform .5s var(--ease-2); }
.link:hover { background-size: 0% 1px; background-position: 100% 100%; }
.link:hover svg { transform: translateX(4px); }
.on-dark .link { color: var(--lime); }

.text-link { color: var(--teal-800); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .22em; text-decoration-color: color-mix(in srgb, var(--teal) 70%, transparent); transition: text-decoration-color .3s var(--ease); }
.text-link:hover { text-decoration-color: var(--teal-800); }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .36rem .8rem; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); background: var(--paper-hi);
  font-size: var(--t-xs); font-weight: 600; color: var(--ink-2); line-height: 1.3;
}
.chip--teal { background: var(--mist-teal); border-color: transparent; color: var(--teal-800); }
.chip--lime { background: var(--mist); border-color: transparent; color: var(--lime-700); }
button.chip { cursor: pointer; transition: all .35s var(--ease); }
button.chip:hover { border-color: var(--teal); color: var(--teal-800); }
button.chip[aria-pressed="true"] { background: var(--teal-800); border-color: var(--teal-800); color: var(--paper); }

.ic { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- 7. Header i navigacija ------------------------------------ */
.site-header {
  position: fixed; z-index: 100;
  top: 14px; left: 0; right: 0;
  padding-inline: var(--gutter);
  pointer-events: none;
  transition: transform .6s var(--ease-2);
}
.site-header__bar {
  pointer-events: auto;
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; gap: var(--s-5);
  height: var(--header-h);
  padding: 0 .55rem 0 1.4rem;
  border-radius: var(--r-pill);
  background: rgba(251, 249, 244, .9);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  transition: box-shadow .5s var(--ease), background-color .5s var(--ease);
}
.site-header.is-scrolled .site-header__bar { box-shadow: 0 18px 40px -26px rgba(21, 61, 66, .35); background: rgba(251, 249, 244, .96); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 42px; width: auto; }

.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; align-items: center; gap: .15rem; }
.nav__list > li { position: relative; display: flex; align-items: center; }
.nav__link {
  position: relative; display: inline-flex; align-items: center;
  padding: .55rem .72rem; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 560; color: var(--ink-2); letter-spacing: -.005em;
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav__link:hover { color: var(--ink); background: rgba(35, 41, 42, .045); }
.nav__link[aria-current="page"] { color: var(--teal-800); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; width: 14px; height: 2px; margin-left: -7px;
  border-radius: 2px; background: var(--grad-x);
}
.nav__dd-toggle {
  display: grid; place-items: center; width: 26px; height: 26px; margin-left: -.55rem; border-radius: 50%;
  color: var(--ink-2); transition: transform .4s var(--ease), background-color .3s var(--ease);
}
.nav__dd-toggle svg { width: 12px; height: 12px; }
.nav__dd-toggle:hover { background: rgba(35, 41, 42, .06); }
.nav__item--dd.is-open .nav__dd-toggle { transform: rotate(180deg); }
.site-header .btn { flex: none; }

.dd {
  position: absolute; top: calc(100% + 18px); left: 50%;
  width: 560px; padding: .5rem;
  transform: translate(-50%, 8px);
  border-radius: var(--r-md);
  background: var(--paper-hi);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(21, 61, 66, .4);
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .45s var(--ease-2), visibility 0s linear .35s;
}
.dd::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.nav__item--dd.is-open .dd { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.dd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.dd__item {
  display: grid; grid-template-columns: 44px 1fr; gap: .85rem; align-items: center;
  padding: .8rem .85rem; border-radius: var(--r-sm);
  transition: background-color .3s var(--ease);
}
.dd__item:hover { background: var(--mist); }
.dd__item .glyph { width: 44px; height: 44px; }
.dd__acr { font-family: var(--f-serif); font-size: 1.25rem; line-height: 1; color: var(--ink); }
.dd__full { display: block; font-size: .78rem; line-height: 1.35; color: var(--ink-3); margin-top: .25rem; }
.dd__foot { display: flex; justify-content: space-between; align-items: center; margin-top: .35rem; padding: .85rem .95rem .55rem; border-top: 1px solid var(--line); font-size: var(--t-xs); color: var(--ink-3); }

/* hamburger — dvije linije koje se spajaju u X */
.menu-toggle {
  display: none; position: relative; flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--stone);
  transition: background-color .3s var(--ease);
}
.menu-toggle span:not(.sr-only) {
  position: absolute; left: 16px; width: 20px; height: 1.6px; border-radius: 2px; background: var(--ink);
  transition: transform .55s var(--ease-2), top .55s var(--ease-2), width .55s var(--ease-2);
}
.menu-toggle span:nth-child(1) { top: 21px; }
.menu-toggle span:nth-child(2) { top: 29px; width: 13px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 25px; width: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 44px) var(--gutter) 1.75rem;
  background: var(--paper);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  clip-path: inset(0 0 100% 0 round 0 0 40px 40px);
  transition: clip-path .75s var(--ease-2), opacity .4s var(--ease), visibility 0s linear .75s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0 0 round 0); transition-delay: 0s; }
.mobile-menu__list { list-style: none; display: grid; gap: .15rem; }
.mobile-menu__list > li > a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--f-serif); font-size: clamp(1.75rem, 7vw, 2.4rem); line-height: 1.15; letter-spacing: -.02em;
}
.mobile-menu__list > li > a[aria-current="page"] { color: var(--teal-800); font-style: italic; }
.mobile-menu__list small { font-family: var(--f-sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.mobile-menu__sub { display: flex; flex-wrap: wrap; gap: .5rem; padding: .9rem 0 .6rem; }
.mobile-menu__sub .chip { font-size: .85rem; padding: .5rem .95rem; }
.mobile-menu__foot .btn { justify-self: start; }
.mobile-menu__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }
.mobile-menu__contact { display: grid; gap: .35rem; font-size: var(--t-small); color: var(--ink-2); }
.mobile-menu__contact a { color: var(--teal-800); font-weight: 600; }
.mobile-menu [data-stagger] { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .8s var(--ease-2); transition-delay: calc(.12s + var(--i, 0) * .05s); }
.mobile-menu.is-open [data-stagger] { opacity: 1; transform: none; }
body.menu-open { overflow: hidden; }

/* ---------- 8. Hero (početna) ----------------------------------------- */
.hero { position: relative; padding-top: calc(var(--header-h) + 14px + clamp(2.5rem, 6vw, 5.5rem)); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 5fr) 1px minmax(0, 6fr); column-gap: clamp(2rem, 5vw, 5.5rem); align-items: center; position: relative; }
.hero__media { position: relative; }
.hero__copy { position: relative; z-index: 2; padding-block: 1rem; }
.hero__copy .display { margin-top: var(--s-5); }
.hero__copy .display .line { display: block; }
.hero__lead { margin-top: var(--s-5); max-width: 34ch; color: var(--ink-2); font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: var(--s-6); }
.hero .midline { align-self: stretch; }
.hero__vijuge { width: clamp(150px, 14vw, 210px); top: clamp(-150px, -10vw, -90px); right: -1rem; z-index: 0; opacity: .75; }

/* okvir fotografije — "dvostruki rub": papirna ploča u kamenom ležištu */
.frame {
  position: relative; margin: 0;
  padding: 8px;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--stone) 80%, transparent);
  border: 1px solid var(--line);
}
.frame__core {
  position: relative; overflow: hidden;
  border-radius: calc(var(--r-lg) - 8px);
  background: var(--stone-2);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.frame__core img { width: 100%; height: 100%; object-fit: cover; }
.frame--portrait .frame__core { aspect-ratio: 4 / 5; }
.frame--portrait .frame__core img { object-position: 50% 12%; }
.frame--wide .frame__core { aspect-ratio: 3 / 2; }
.frame--tall .frame__core { aspect-ratio: 3 / 4; }
.frame--square .frame__core { aspect-ratio: 1; }
.frame--flat { padding: 0; background: none; border: 0; }
.frame--flat .frame__core { border-radius: var(--r-lg); }

.caption-card {
  position: absolute; z-index: 3;
  display: grid; grid-template-columns: 3px 1fr; gap: .9rem; align-items: stretch;
  padding: .95rem 1.2rem .95rem 1rem;
  border-radius: var(--r-md);
  background: var(--paper-hi);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 290px;
}
.caption-card::before { content: ""; border-radius: 3px; background: var(--grad); }
.caption-card strong { display: block; font-family: var(--f-serif); font-weight: 450; font-size: 1.15rem; line-height: 1.2; letter-spacing: -.01em; }
.caption-card span { display: block; font-size: .8rem; line-height: 1.45; color: var(--ink-3); margin-top: .2rem; }
.hero .caption-card { right: -28px; bottom: 34px; }

/* ---------- 9. Trust traka -------------------------------------------- */
.trust { padding-block: 0 clamp(1rem, 3vw, 2rem); }
.trust__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line-2);
}
.trust__list li {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.35rem 1.25rem;
  font-weight: 600; font-size: .95rem; line-height: 1.35; color: var(--ink);
}
.trust__list li + li { border-left: 1px solid var(--line); }
.trust__list .ic { width: 26px; height: 26px; color: var(--teal); stroke-width: 1.4; }

/* ---------- 10. Naš rad — podijeljeni krug ---------------------------- */
.rad__grid { align-items: center; row-gap: var(--s-8); }
.rad__text { grid-column: 1 / span 7; }
.rad__art { grid-column: 9 / span 4; position: relative; }
.rad__lead { font-size: clamp(1.45rem, 1.15rem + 1.15vw, 2.15rem); line-height: 1.32; font-weight: 360; letter-spacing: -.015em; margin-top: var(--s-6); }
.rad__body { margin-top: var(--s-6); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: start; }
.rad__body p { color: var(--ink-2); }
.split-disc { width: 100%; aspect-ratio: 1; overflow: visible; }
.split-disc .arcs { fill: none; stroke: var(--teal-700); stroke-width: 1.3; stroke-linecap: round; }
.split-disc .arcs .lime { stroke: var(--lime); stroke-width: 2.2; }
.split-disc__solid { transform-origin: 240px 240px; transform: scaleX(.2); opacity: 0; transition: transform 1.4s var(--ease-2), opacity 1s var(--ease); }
.is-in .split-disc__solid { transform: none; opacity: 1; }
.disc-tags { position: absolute; inset: 0; list-style: none; pointer-events: none; }
.disc-tags li { position: absolute; transform: translate(-50%, -50%); }
.disc-tags .chip { box-shadow: var(--shadow); background: var(--paper-hi); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-800); }

/* ---------- 11. Zatvoreni krug ---------------------------------------- */
.krug-sec__grid { align-items: center; row-gap: var(--s-8); }
.krug-sec__art { grid-column: 1 / span 6; }
.krug-sec__text { grid-column: 8 / span 5; }
.krug { position: relative; width: min(100%, 540px); aspect-ratio: 1; margin-inline: auto; --r: 38.5%; }
.krug__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; fill: none; stroke-linecap: round; }
.krug__ring { stroke: var(--teal-700); stroke-width: 1.2; }
.krug__flow { stroke: var(--teal); stroke-width: 2.4; stroke-dasharray: 2 14; opacity: .55; transform-origin: 260px 260px; animation: krug-spin 60s linear infinite; }
.krug__inner { stroke: var(--line-2); stroke-width: 1; }
.krug__exit { stroke: var(--lime); stroke-width: 3; }
.krug__exit-dot { fill: var(--lime); stroke: none; }
.krug__center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; pointer-events: none; }
.krug__center p { font-family: var(--f-serif); font-size: clamp(1.25rem, 1rem + 1vw, 1.9rem); line-height: 1.1; color: var(--ink-2); letter-spacing: -.01em; }
.krug__center em { color: var(--teal-800); }
.krug__items { list-style: none; position: absolute; inset: 0; }
.krug__items li {
  position: absolute;
  left: calc(50% + cos(var(--a)) * var(--r));
  top: calc(50% + sin(var(--a)) * var(--r));
  transform: translate(-50%, -50%);
}
.krug__items .chip {
  background: var(--paper-hi); border-color: var(--line-2); color: var(--ink);
  font-size: .82rem; padding: .5rem .9rem; box-shadow: var(--shadow); white-space: nowrap;
}
.section--stone .krug__items .chip { background: var(--paper-hi); }
.krug__items .chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex: none; }
.krug__exit-label {
  position: absolute; left: 100%; top: 50%; transform: translate(0, -50%);
  display: flex; align-items: center; gap: .5rem; white-space: nowrap;
  font-size: var(--t-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lime-700);
}
.krug-list { display: none; }
.callout {
  position: relative;
  padding: var(--s-6) var(--s-6) var(--s-6) calc(var(--s-6) + 6px);
  border-radius: var(--r-md);
  background: var(--paper-hi);
  border: 1px solid var(--line);
}
.callout::before { content: ""; position: absolute; left: -1px; top: 22px; bottom: 22px; width: 4px; border-radius: 4px; background: var(--grad); }
.callout .lead { font-size: clamp(1.15rem, 1.02rem + .5vw, 1.4rem); }

/* ---------- 12. Terapijski pristupi — kartice ------------------------- */
.glyph { width: 64px; height: 64px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; color: var(--teal-700); --g-fill: var(--paper-hi); --g-accent: var(--lime); transition: transform 1.1s var(--ease-2); }
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(.9rem, 1.6vw, 1.4rem); margin-top: var(--s-8); }
.bento > :nth-child(1) { grid-column: span 7; }
.bento > :nth-child(2) { grid-column: span 5; }
.bento > :nth-child(3) { grid-column: span 5; }
.bento > :nth-child(4) { grid-column: span 7; }
.acard {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  min-height: 360px;
  padding: clamp(1.5rem, 2.6vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--paper-hi);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .7s var(--ease-2), box-shadow .7s var(--ease), border-color .5s var(--ease);
}
.acard::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 100% 0%, var(--mist) 0%, transparent 60%);
  opacity: 0; transition: opacity .7s var(--ease);
}
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: color-mix(in srgb, var(--teal) 45%, transparent); }
.acard:hover::before { opacity: 1; }
.acard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.acard__acr { font-family: var(--f-serif); font-size: clamp(3rem, 2.2rem + 2.6vw, 4.6rem); line-height: .9; letter-spacing: -.03em; font-weight: 330; }
.acard__full { margin-top: var(--s-4); }
.acard__excerpt { margin-top: var(--s-5); color: var(--ink-2); max-width: 46ch; }
.acard__foot { margin-top: auto; padding-top: var(--s-6); display: flex; justify-content: space-between; align-items: center; }
.acard .glyph { width: clamp(64px, 6vw, 86px); height: auto; aspect-ratio: 1; }
.acard:hover .glyph--act { transform: rotate(60deg); }
.acard:hover .glyph--kbt { transform: rotate(90deg); }
.acard:hover .glyph--cft { transform: scale(1.1); }
.acard:hover .glyph--mbct { transform: scale(1.12); }
.acard__stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.acard--dark { background: var(--teal-900); color: var(--paper); border-color: transparent; }
.acard--dark::before { background: radial-gradient(120% 90% at 100% 0%, rgba(168, 207, 69, .16) 0%, transparent 60%); }
.acard--dark .acard__acr { color: var(--paper); }
.acard--dark .label { color: var(--lime); }
.acard--dark .acard__excerpt { color: rgba(247, 244, 237, .78); }
.acard--dark .glyph { color: var(--teal); --g-fill: var(--teal-900); }
.acard--dark .link { color: var(--lime); }

/* ---------- 13. O meni ------------------------------------------------- */
.about { overflow: hidden; }
.about__grid { align-items: center; }
.about__text { grid-column: 1 / span 5; position: relative; z-index: 2; }
.about__media { grid-column: 6 / span 7; position: relative; margin-right: calc(var(--gutter) * -1 - max(0px, (100vw - var(--container) - var(--gutter) * 2) / 2)); }
.about__media .frame { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: 0; padding-right: 0; }
.about__media .frame__core { border-top-right-radius: 0; border-bottom-right-radius: 0; aspect-ratio: 16 / 11; }
.about__media .frame__core img { object-position: 22% 40%; }
.about__name { font-size: clamp(2.6rem, 1.8rem + 3.2vw, 4.6rem); line-height: 1; margin-top: var(--s-5); }
.about__role { margin-top: var(--s-4); font-weight: 600; color: var(--teal-700); }
.about__bio { margin-top: var(--s-5); }
.about__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--s-5); }
.about .caption-card { left: -40px; bottom: -28px; }

/* ---------- 14. Koraci ------------------------------------------------ */
.steps { --gap: clamp(1rem, 2vw, 2rem); list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); margin-top: var(--s-8); position: relative; }
.steps::before, .steps::after { content: ""; position: absolute; left: 28px; right: calc((100% - 3 * var(--gap)) / 4 - 28px); top: 28px; height: 1px; background: var(--line-2); }
.steps::after { height: 2px; top: 27.5px; background: var(--grad-x); transform-origin: left; transform: scaleX(0); transition: transform 2.4s var(--ease) .2s; }
.steps.is-in::after { transform: scaleX(1); }
.steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps--3::before, .steps--3::after { right: calc((100% - 2 * var(--gap)) / 3 - 28px); }
.step { position: relative; }
.step__num {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-2);
  font-family: var(--f-serif); font-style: italic; font-size: 1.35rem; color: var(--teal-800);
  transition: background-color .6s var(--ease), border-color .6s var(--ease), color .6s var(--ease);
}
.section--stone .step__num { background: var(--stone); }
.is-in .step__num { border-color: var(--teal); }
.step:first-child .step__num { background: var(--teal-800); color: var(--paper); border-color: var(--teal-800); }
.step__title { margin-top: var(--s-5); }
.step p { margin-top: var(--s-3); color: var(--ink-2); font-size: var(--t-small); max-width: 30ch; }

/* ---------- 15. Diptih: online | uživo ------------------------------- */
.diptych { display: grid; grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr); gap: clamp(1rem, 2.5vw, 2.25rem); margin-top: var(--s-8); align-items: stretch; }
.diptych .midline { align-self: stretch; }
.diptych__or {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--teal);
  font-family: var(--f-serif); font-style: italic; font-size: 1.05rem; color: var(--teal-800);
}
.panel {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--paper-hi);
  overflow: hidden;
}
.panel--dark { background: var(--teal-900); color: var(--paper); border-color: transparent; }
.panel--dark .h2, .panel--dark .h3 { color: var(--paper); }
.panel--dark .muted { color: rgba(247, 244, 237, .76); }
.panel__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.panel .h2 { font-size: clamp(1.9rem, 1.45rem + 1.6vw, 2.75rem); margin-top: var(--s-5); }
.benefits { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: var(--s-6); border-top: 1px solid var(--line); }
.benefits li { display: grid; grid-template-columns: 26px 1fr; gap: .8rem; padding: 1.05rem .9rem 1.05rem 0; border-bottom: 1px solid var(--line); font-size: var(--t-small); line-height: 1.45; }
.benefits li:nth-child(odd) { border-right: 1px solid var(--line); }
.benefits li:nth-child(even) { padding-left: 1rem; }
.benefits strong { display: block; font-weight: 650; color: var(--ink); }
.benefits span { color: var(--ink-3); font-size: .85rem; }
.benefits .ic { color: var(--teal-700); margin-top: 2px; }
.platforms { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-top: var(--s-5); }
.panel__foot { margin-top: auto; padding-top: var(--s-6); display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.panel__photo { margin: calc(clamp(1.5rem, 3vw, 2.75rem) * -1) calc(clamp(1.5rem, 3vw, 2.75rem) * -1) 0; aspect-ratio: 16 / 7.5; overflow: hidden; }
.panel__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transform: scale(1.02); transition: transform 1.6s var(--ease); }
.panel:hover .panel__photo img { transform: scale(1.06); }
.address { display: grid; grid-template-columns: 26px 1fr; gap: .8rem; margin-top: var(--s-5); font-size: var(--t-small); line-height: 1.55; }
.address .ic { color: var(--lime); margin-top: 2px; }
.panel--dark .address strong { color: var(--paper); font-weight: 650; display: block; }

/* mapa — statični pregled + učitavanje na klik (privatnost) */
.map {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: #E8E2D6;
  aspect-ratio: var(--map-ratio, 16 / 9);
  margin-top: var(--s-5);
  border: 1px solid var(--line);
}
.panel--dark .map { border-color: var(--line-dark); --map-ratio: 16 / 6; }
.map svg.map__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__pin { position: absolute; left: 56%; top: 46%; transform: translate(-50%, -100%); display: grid; justify-items: center; gap: .35rem; }
.map__pin-dot { width: 34px; height: 34px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--teal-800); display: grid; place-items: center; box-shadow: 0 10px 20px -8px rgba(21,61,66,.6); }
.map__pin-dot::after { content: ""; width: 11px; height: 11px; border-radius: 50%; background: var(--lime); }
.map__pin-label { padding: .28rem .6rem; border-radius: var(--r-pill); background: var(--paper-hi); color: var(--ink); font-size: .74rem; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow); }
.map__pulse { position: absolute; left: 56%; top: 46%; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: rgba(81,168,177,.5); animation: pulse 2.8s var(--ease) infinite; }
.map__load {
  position: absolute; right: .75rem; bottom: .75rem;
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .85rem; border-radius: var(--r-pill);
  background: rgba(251,249,244,.95); color: var(--ink); font-size: .78rem; font-weight: 650;
  border: 1px solid var(--line); transition: background-color .3s var(--ease);
}
.map__load:hover { background: #fff; }
.map__load .ic { width: 16px; height: 16px; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 16. FAQ --------------------------------------------------- */
.faq-sec__grid { align-items: start; row-gap: var(--s-7); }
.faq-sec__head { grid-column: 1 / span 4; position: sticky; top: 120px; }
.faq-sec__list { grid-column: 6 / span 7; }
.faq { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr 40px; gap: 1.25rem; align-items: center;
  padding: 1.35rem 0;
  font-family: var(--f-serif); font-size: clamp(1.15rem, 1.05rem + .4vw, 1.4rem); line-height: 1.3; letter-spacing: -.01em;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--teal-800); }
.faq__item summary:focus-visible { outline-offset: 4px; }
.faq__icon { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); transition: background-color .4s var(--ease), border-color .4s var(--ease), transform .6s var(--ease-2); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 1.5px; margin: -.75px 0 0 -6.5px; background: var(--ink); border-radius: 2px; transition: transform .5s var(--ease-2), background-color .3s; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--teal-800); border-color: var(--teal-800); transform: rotate(180deg); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--paper); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }
.faq__a { padding: 0 3.5rem 1.6rem 0; color: var(--ink-2); max-width: 62ch; }
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq__item::details-content { block-size: 0; overflow: hidden; transition: block-size .55s var(--ease), content-visibility .55s allow-discrete; }
  .faq__item[open]::details-content { block-size: auto; }
}

/* ---------- 17. Tekstovi --------------------------------------------- */
.posts { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(1rem, 2vw, 1.75rem); margin-top: var(--s-8); }
.posts__side { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
.post {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper-hi); border: 1px solid var(--line);
  transition: transform .7s var(--ease-2), box-shadow .7s var(--ease);
}
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--stone); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.post:hover .post__media img { transform: scale(1.04); }
.post__body { display: flex; flex-direction: column; gap: .8rem; padding: clamp(1.25rem, 2.2vw, 1.9rem); flex: 1; }
.post__meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; font-size: var(--t-xs); color: var(--ink-3); }
.post__title { font-family: var(--f-serif); font-size: clamp(1.35rem, 1.15rem + .8vw, 1.85rem); line-height: 1.15; letter-spacing: -.015em; font-weight: 400; }
.post--lg .post__title { font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.5rem); }
.post__excerpt { color: var(--ink-2); font-size: var(--t-small); }
.post__foot { margin-top: auto; padding-top: .5rem; }
.post a.post__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post--text .post__body { padding-top: clamp(1.5rem, 2.6vw, 2.2rem); }
.post--text .glyph { width: 44px; height: 44px; margin-bottom: .4rem; }
.insta-line { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); color: var(--ink-3); font-size: var(--t-small); }
.insta-line .ic { color: var(--teal-700); }

/* listing (Tekstovi) */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.plist { list-style: none; border-top: 1px solid var(--line-2); margin-top: var(--s-6); }
.plist__item { border-bottom: 1px solid var(--line-2); }
.plist__link { display: grid; grid-template-columns: 140px minmax(0, 1fr) 150px 48px; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; padding: 1.75rem 0; transition: background-color .4s var(--ease); position: relative; }
.plist__link::before { content: ""; position: absolute; inset: 0 calc(var(--gutter) * -.5); border-radius: var(--r-md); background: var(--paper-hi); opacity: 0; z-index: -1; transition: opacity .4s var(--ease); }
.plist__link:hover::before { opacity: 1; }
.plist__title { font-family: var(--f-serif); font-size: clamp(1.3rem, 1.1rem + .8vw, 1.9rem); line-height: 1.2; letter-spacing: -.015em; }
.plist__excerpt { margin-top: .45rem; color: var(--ink-2); font-size: var(--t-small); max-width: 70ch; }
.plist__time { font-size: var(--t-xs); color: var(--ink-3); }
.plist__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--teal-800); transition: all .5s var(--ease-2); }
.plist__arrow svg { width: 16px; height: 16px; }
.plist__link:hover .plist__arrow { background: var(--lime); border-color: var(--lime); color: var(--teal-950); transform: translateX(4px); }
.plist__item[hidden] { display: none; }
.empty { display: none; padding: var(--s-8) 0; text-align: left; color: var(--ink-2); }
.empty.is-visible { display: grid; gap: .75rem; }
.pagination { display: flex; align-items: center; gap: .4rem; margin-top: var(--s-7); }
.pagination a, .pagination span { display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 .9rem; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-weight: 600; font-size: .9rem; transition: all .35s var(--ease); }
.pagination a:hover { border-color: var(--teal); color: var(--teal-800); }
.pagination [aria-current="page"] { background: var(--teal-800); color: var(--paper); border-color: var(--teal-800); }
.pagination .is-disabled { color: var(--ink-3); opacity: .55; }
.pagination svg { width: 16px; height: 16px; }

/* ---------- 18. CTA traka -------------------------------------------- */
.cta-band { position: relative; overflow: hidden; padding-block: calc(var(--section) * .9); background: var(--stone); }
.cta-band__grid { position: relative; z-index: 1; align-items: end; row-gap: var(--s-7); }
.cta-band__text { grid-column: 1 / span 8; }
.cta-band__text .h2 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 4rem); line-height: 1.06; }
.cta-band__act { grid-column: 9 / span 4; display: grid; gap: 1.4rem; justify-items: start; }
.cta-band__direct { display: grid; gap: .35rem; font-size: var(--t-small); color: var(--ink-2); }
.cta-band__direct a { color: var(--teal-800); font-weight: 650; }
.cta-band .ornament { right: -150px; top: -70px; width: 360px; opacity: .5; }

/* ---------- 19. Footer ---------------------------------------------- */
.footer { background: var(--teal-950); color: rgba(247, 244, 237, .78); padding-top: clamp(4rem, 8vw, 7rem); position: relative; overflow: hidden; }
.footer a { transition: color .3s var(--ease); }
.footer a:hover { color: var(--lime); }
.footer__top { display: grid; grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2fr)) minmax(0, 3fr); gap: clamp(1.5rem, 3vw, 3rem); }
.footer__brand img { height: 58px; width: auto; }
.footer__claim { margin-top: 1.4rem; font-family: var(--f-serif); font-size: 1.3rem; line-height: 1.35; color: var(--paper); max-width: 22ch; letter-spacing: -.01em; }
.footer h2 { font-family: var(--f-sans); font-size: var(--t-label); letter-spacing: .16em; text-transform: uppercase; font-weight: 650; color: var(--lime); margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: .55rem; font-size: var(--t-small); }
.footer__contact { display: grid; gap: .9rem; font-size: var(--t-small); }
.footer__contact a { color: var(--paper); font-weight: 600; }
.footer__social { display: flex; gap: .5rem; margin-top: .4rem; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); color: var(--paper); }
.footer__social a:hover { border-color: var(--lime); }
.footer__social .ic { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: clamp(3rem, 6vw, 5rem); padding-block: 1.6rem; border-top: 1px solid var(--line-dark); font-size: var(--t-xs); color: rgba(247, 244, 237, .6); }
.footer__bottom nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__mark { position: absolute; right: -9%; bottom: -34%; width: min(40vw, 520px); opacity: .05; pointer-events: none; }

/* ---------- 20. Unutrašnje stranice ---------------------------------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 14px + clamp(2.5rem, 5vw, 4.5rem)); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.page-hero__grid { align-items: end; row-gap: var(--s-7); }
.page-hero__text { grid-column: 1 / span 8; }
.page-hero__side { grid-column: 9 / span 4; }
.page-hero .h1 { margin-top: var(--s-5); }
.page-hero .lead { margin-top: var(--s-5); max-width: 40ch; color: var(--ink-2); }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; margin-top: var(--s-6); }
.page-hero--center .page-hero__text { grid-column: 1 / span 10; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; font-size: var(--t-xs); color: var(--ink-3); font-weight: 550; }
.crumbs li { display: inline-flex; align-items: center; gap: .45rem; }
.crumbs li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; border: 1px solid var(--teal); }
.crumbs a:hover { color: var(--teal-800); }
.crumbs [aria-current="page"] { color: var(--ink); }
.page-hero .crumbs { margin-bottom: var(--s-6); }

.wide-photo { margin-top: 0; }
.wide-photo .frame__core { aspect-ratio: 21 / 9; }

/* terapijski šablon — hero */
.therapy-hero .page-hero__grid { align-items: center; }
.therapy-title { display: grid; gap: .9rem; margin-top: var(--s-5); font-family: var(--f-serif); color: var(--ink); }
.therapy-title__acr { font-size: clamp(5.2rem, 2.6rem + 10vw, 12rem); line-height: .8; letter-spacing: -.05em; font-weight: 290; }
.therapy-title__full { font-size: clamp(1.7rem, 1.25rem + 1.8vw, 2.8rem); line-height: 1.08; font-weight: 360; letter-spacing: -.02em; max-width: 18ch; text-wrap: balance; }
.therapy-title__full em { font-style: italic; color: var(--teal-800); font-weight: 330; }
.therapy-title__en { margin-top: .9rem; font-family: var(--f-serif); font-style: italic; color: var(--ink-3); font-size: 1.05rem; }
.therapy-hero .lead { margin-top: var(--s-6); }
.therapy-hero__art { display: grid; place-items: center; }
.big-glyph { width: 100%; max-width: 340px; overflow: visible; fill: none; stroke: var(--teal-700); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.big-glyph .faint { stroke: var(--line-2); }
.big-glyph .node { fill: var(--paper); stroke: var(--teal); stroke-width: 1.6; }
.big-glyph .node.acc { fill: var(--lime); stroke: var(--lime-700); }
.big-glyph .core { fill: var(--teal-800); stroke: none; }
.big-glyph .lens { fill: var(--lime); fill-opacity: .5; stroke: none; }
.big-glyph--breathe .ring { transform-origin: 150px 150px; animation: breathe 7s var(--ease) infinite; }
.big-glyph--breathe .ring:nth-of-type(2) { animation-delay: .6s; }
.big-glyph--breathe .ring:nth-of-type(3) { animation-delay: 1.2s; }

.split { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; }
.split--top { align-items: start; }
.split--rev { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.glyph-quad { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper-hi); max-width: 360px; margin-left: auto; }
.glyph-quad svg { width: 100%; height: auto; aspect-ratio: 1; padding: 26%; border: 0 solid var(--line); }
.glyph-quad svg:nth-child(1), .glyph-quad svg:nth-child(2) { border-bottom-width: 1px; }
.glyph-quad svg:nth-child(odd) { border-right-width: 1px; }
.glyph-quad svg:hover.glyph--act { transform: rotate(60deg); }
.glyph-quad svg:hover.glyph--kbt { transform: rotate(90deg); }
.glyph-quad svg:hover.glyph--cft, .glyph-quad svg:hover.glyph--mbct { transform: scale(1.1); }

/* Izbor pristupa — tamna kartica sa pitanjem */
.izbor { padding-bottom: var(--section); }
.izbor__card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: minmax(0, 7fr) 1px minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--r-lg);
  background: var(--teal-900); color: var(--paper);
  box-shadow: var(--shadow-lift);
}
.izbor__card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 90% at 100% 0%, rgba(168, 207, 69, .14) 0%, transparent 60%),
              radial-gradient(60% 80% at 0% 100%, rgba(81, 168, 177, .16) 0%, transparent 65%);
}
.izbor__orn { right: -30px; top: -40px; width: 220px; opacity: .35; z-index: -1; }
.izbor .h2 { margin-top: var(--s-5); color: var(--paper); max-width: 18ch; }
.izbor .h2 em { color: var(--lime); }
.izbor__glyphs { display: flex; gap: .9rem; margin-top: var(--s-6); }
.izbor__glyphs .glyph { width: 46px; height: 46px; color: var(--teal); --g-fill: var(--teal-900); }
.izbor .midline { align-self: stretch; }
.izbor .midline__node { background: var(--teal-900); box-shadow: 0 0 0 6px var(--teal-900); }
.izbor__a { display: grid; justify-items: start; gap: var(--s-5); }
.izbor__a .note { margin-top: 0; }
.on-dark .ph { color: rgba(247, 244, 237, .7); }

/* raspored sa sidrenom navigacijom */
.doc { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: start; }
.toc { position: sticky; top: 118px; }
.toc__title { margin-bottom: 1rem; }
.toc ol { list-style: none; border-left: 1px solid var(--line-2); display: grid; }
.toc ol a { position: relative; display: block; padding: .5rem 0 .5rem 1.1rem; font-size: .9rem; line-height: 1.35; color: var(--ink-3); font-weight: 550; transition: color .3s var(--ease); }
.toc ol a::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: var(--grad); transform: scaleY(0); transition: transform .45s var(--ease-2); }
.toc ol a:hover { color: var(--ink); }
.toc ol a.is-active { color: var(--teal-800); }
.toc ol a.is-active::before { transform: scaleY(1); }
.toc__cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; justify-items: start; gap: 1rem;
  margin-top: var(--s-6); padding: 1.6rem 1.5rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--teal-900); color: var(--paper);
  box-shadow: var(--shadow);
}
.toc__cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 70% at 100% 0%, rgba(168, 207, 69, .16) 0%, transparent 60%),
              radial-gradient(80% 70% at 0% 100%, rgba(81, 168, 177, .18) 0%, transparent 65%);
}
.toc__cta-orn { right: -46px; top: -54px; width: 140px; opacity: .3; z-index: -1; }
.toc__cta .label { color: var(--lime); }
.toc__cta-q { margin: 0; font-family: var(--f-serif); font-size: 1.3rem; line-height: 1.22; letter-spacing: -.012em; color: var(--paper); text-wrap: balance; }
.toc__cta-q em { font-style: italic; color: var(--lime); }
.toc__cta-glyphs { display: flex; gap: .55rem; }
.toc__cta-glyphs .glyph { width: 30px; height: 30px; color: var(--teal); --g-fill: var(--teal-900); opacity: .5; }
.toc__cta-glyphs .glyph.is-current { opacity: 1; color: var(--lime); }
.toc__cta .btn { margin-top: .25rem; }
.doc__body > section { padding-block: clamp(2.5rem, 5vw, 4.5rem); border-top: 1px solid var(--line); }
.doc__body > section:first-child { padding-top: 0; border-top: 0; }
.doc__body .h2 { font-size: clamp(1.9rem, 1.45rem + 1.7vw, 2.9rem); }
.doc__body .sec-num { display: block; margin-bottom: .9rem; }

.prose { font-size: var(--t-prose); line-height: 1.78; color: var(--ink-2); max-width: 66ch; }
.prose > * + * { margin-top: 1.1em; }
.prose p { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 650; }
.prose .lead { color: var(--ink); }
.prose h2 { font-family: var(--f-serif); font-weight: 380; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.2rem); line-height: 1.15; letter-spacing: -.015em; color: var(--ink); margin-top: 2em; }
.prose h3 { font-family: var(--f-serif); font-weight: 450; font-size: 1.35rem; color: var(--ink); margin-top: 1.8em; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--teal); }

.pullquote { position: relative; margin: var(--s-7) 0; padding: 3.4rem 0 var(--s-6) clamp(1.5rem, 4vw, 3.5rem); border-left: 1px solid var(--line-2); max-width: 60ch; }
.pullquote::before { content: "\201E"; position: absolute; left: clamp(1.5rem, 4vw, 3.5rem); top: -2.6rem; font-family: var(--f-serif); font-size: 6rem; line-height: 1; color: var(--lime); }
.pullquote blockquote { margin: 0; font-family: var(--f-serif); font-size: clamp(1.3rem, 1.1rem + .9vw, 1.85rem); line-height: 1.38; letter-spacing: -.012em; color: var(--ink); font-weight: 370; }
.pullquote figcaption { margin-top: 1.1rem; font-size: var(--t-small); color: var(--ink-3); }
.pullquote figcaption strong { color: var(--ink); font-weight: 650; }

.list-cols { list-style: none; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-2); margin-top: var(--s-5); }
.list-cols li { display: flex; align-items: center; gap: .85rem; padding: 1rem 1rem 1rem 0; border-bottom: 1px solid var(--line-2); font-weight: 560; color: var(--ink); }
.list-cols li:nth-child(odd) { border-right: 1px solid var(--line); }
.list-cols li:nth-child(even) { padding-left: 1.1rem; }
.list-cols li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--teal); flex: none; }

.def {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.5rem); align-items: center;
  margin-top: var(--s-6); padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--r-lg); background: var(--teal-900); color: var(--paper);
}
.def__term { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem); line-height: 1.1; color: var(--lime); max-width: 12ch; }
.def p { color: rgba(247, 244, 237, .85); margin: 0; }

/* ACT — šest procesa */
.processes { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; margin-top: var(--s-6); }
.hexaflex { position: sticky; top: 130px; }
.hexaflex svg { width: 100%; max-width: 300px; overflow: visible; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hexaflex .hx-edge { stroke: var(--line-2); stroke-width: 1.2; }
.hexaflex .hx-spoke { stroke: var(--line-2); stroke-width: 1; stroke-dasharray: 3 5; }
.hexaflex .hx-node { fill: var(--paper-hi); stroke-width: 1.5; transition: fill .45s var(--ease), r .45s var(--ease-2); }
.hexaflex .hx-node.m { stroke: var(--teal); }
.hexaflex .hx-node.a { stroke: var(--lime-700); }
.hexaflex .hx-node.is-active.m { fill: var(--teal); }
.hexaflex .hx-node.is-active.a { fill: var(--lime); }
.hexaflex .hx-core { fill: var(--teal-800); }
.hexaflex text { font-family: var(--f-sans); font-size: 10.5px; font-weight: 700; fill: var(--ink-2); stroke: none; letter-spacing: .02em; }
.hexaflex__legend { display: grid; gap: .6rem; margin-top: 1.5rem; font-size: var(--t-xs); color: var(--ink-2); }
.hexaflex__legend span { display: inline-flex; align-items: center; gap: .55rem; }
.hexaflex__legend i { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--teal); }
.hexaflex__legend i.a { border-color: var(--lime-700); background: var(--lime); }
.hexaflex__legend i.m { background: var(--teal); }
.pgrid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; counter-reset: p; }
.pcard {
  position: relative; padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--r-md); background: var(--paper-hi); border: 1px solid var(--line);
  transition: border-color .45s var(--ease), transform .6s var(--ease-2), background-color .45s var(--ease);
}
.pcard:hover, .pcard:focus-within, .pcard.is-active { border-color: var(--teal); transform: translateY(-2px); }
.pcard--a { background: var(--mist); }
.pcard--a:hover, .pcard--a.is-active { border-color: var(--lime-700); }
.pcard__n { display: flex; align-items: center; justify-content: space-between; font-family: var(--f-serif); font-style: italic; color: var(--teal-700); font-size: 1.05rem; }
.pcard--a .pcard__n { color: var(--lime-700); }
.pcard h3 { margin-top: .6rem; font-family: var(--f-serif); font-weight: 450; font-size: 1.4rem; line-height: 1.2; letter-spacing: -.01em; }
.pcard p { margin-top: .6rem; font-size: var(--t-small); color: var(--ink-2); line-height: 1.6; }
.pgrid__note { grid-column: 1 / -1; margin-top: .6rem; font-size: var(--t-small); color: var(--ink-2); padding: 1rem 1.25rem; border-radius: var(--r-sm); border: 1px dashed var(--line-2); }

/* ACT — Opcija A / Opcija B */
.choice { position: relative; margin-top: var(--s-7); }
.choice__intro { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); line-height: 1.1; color: var(--ink); }
.choice__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.9rem, 1.6vw, 1.4rem); margin-top: var(--s-6); }
.option {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--r-lg);
  min-height: 420px;
  transition: transform .8s var(--ease-2), opacity .6s var(--ease), filter .8s var(--ease), box-shadow .8s var(--ease);
}
.option__tag { font-family: var(--f-serif); font-size: clamp(3.2rem, 2.2rem + 3.5vw, 5.6rem); line-height: .85; letter-spacing: -.04em; font-weight: 300; }
.option__tag small { display: block; font-family: var(--f-sans); font-size: var(--t-label); letter-spacing: .16em; text-transform: uppercase; font-weight: 650; margin-bottom: .9rem; }
.option p:not(.option__tag) { margin-top: var(--s-5); font-size: clamp(1.02rem, .98rem + .2vw, 1.12rem); line-height: 1.7; }
.option__tag { margin: 0; }
.option--a { background: #E6E4DF; color: #5b605e; border: 1px solid rgba(0,0,0,.06); }
.option--a .option__tag { color: #8a8f8d; }
.option--a .option__tag small { color: #7a7f7d; }
.option--a .option__line { stroke: #b8bbb8; }
.option--b { background: var(--teal-900); color: rgba(247,244,237,.88); }
.option--b .option__tag { color: var(--paper); }
.option--b .option__tag small { color: var(--lime); }
.option__art { margin-top: auto; padding-top: var(--s-6); }
.option__art svg { width: 100%; height: 70px; overflow: visible; fill: none; stroke-linecap: round; }
.option--b .option__line { stroke: url(#g-lime-teal); stroke-width: 2.5; }
.option--a .option__line { stroke-width: 2; }
.choice__grid:hover .option { opacity: .72; }
.choice__grid .option:hover { opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.choice__q { margin-top: var(--s-7); display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.5rem); align-items: center; }
.choice__q .h2 { font-style: italic; }
.choice__q p { color: var(--ink-2); max-width: 58ch; margin: 0; }

.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: var(--s-6); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.roles > div { padding: clamp(1.5rem, 3vw, 2.25rem); }
.roles > div:first-child { background: var(--teal-900); color: var(--paper); }
.roles > div:last-child { background: var(--paper-hi); }
.roles ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.roles li { font-family: var(--f-serif); font-size: clamp(1.4rem, 1.15rem + 1vw, 2rem); line-height: 1.1; }
.roles li + li::before { content: "·"; margin-right: .5rem; color: var(--lime); }
.roles > div:last-child li + li::before { color: var(--teal); }

.stat { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center; margin-top: var(--s-6); padding: clamp(1.4rem, 3vw, 2.2rem) 0; border-block: 1px solid var(--line-2); }
.stat__num { font-family: var(--f-serif); font-size: clamp(3.5rem, 2.4rem + 4vw, 6.5rem); line-height: .9; letter-spacing: -.04em; color: var(--teal-800); font-weight: 300; }
.stat__num span { color: var(--lime-700); }
.stat p { margin: 0; color: var(--ink-2); max-width: 46ch; }

.related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: var(--s-6); }
.rcard { position: relative; display: grid; gap: .8rem; padding: 1.5rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper-hi); transition: transform .6s var(--ease-2), border-color .4s var(--ease); }
.rcard:hover { transform: translateY(-3px); border-color: var(--teal); }
.rcard .glyph { width: 48px; height: 48px; }
.rcard__acr { font-family: var(--f-serif); font-size: 2rem; line-height: 1; }
.rcard p { font-size: var(--t-xs); color: var(--ink-3); margin: 0; line-height: 1.5; }
.related--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.krug--doc { width: min(100%, 460px); margin-inline: 0; }
.bio-sec { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(2rem, 5vw, 5.5rem); align-items: start; padding-block: clamp(3rem, 6vw, 5.5rem); border-top: 1px solid var(--line); }
.bio-sec__head { position: sticky; top: 120px; display: grid; gap: 1rem; justify-items: start; }
.bio-sec__head .h2 { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.7rem); }
.modes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.mode { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: center; padding: 1.1rem 1.25rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper-hi); transition: border-color .4s var(--ease), transform .6s var(--ease-2); }
.mode:hover { border-color: var(--teal); transform: translateY(-2px); }
.mode .glyph { width: 56px; height: 56px; }
.mode strong { display: block; font-family: var(--f-serif); font-weight: 420; font-size: 1.35rem; line-height: 1.1; }
.mode span { font-size: var(--t-xs); color: var(--ink-3); }

/* Pristupi — landing redovi */
.arows { list-style: none; border-top: 1px solid var(--line-2); margin-top: var(--s-7); }
.arow { border-bottom: 1px solid var(--line-2); }
.arow a { position: relative; display: grid; grid-template-columns: 110px minmax(0, 3fr) minmax(0, 4fr) 56px; gap: clamp(1rem, 3vw, 3rem); align-items: center; padding: clamp(1.75rem, 3vw, 2.75rem) 0; isolation: isolate; }
.arow a::before { content: ""; position: absolute; inset: 0 calc(var(--gutter) * -.6); background: var(--paper-hi); border-radius: var(--r-lg); z-index: -1; opacity: 0; transform: scaleY(.9); transition: opacity .5s var(--ease), transform .6s var(--ease-2); }
.arow a:hover::before { opacity: 1; transform: none; }
.arow .glyph { width: 88px; height: 88px; }
.arow a:hover .glyph--act { transform: rotate(60deg); }
.arow a:hover .glyph--kbt { transform: rotate(90deg); }
.arow a:hover .glyph--cft, .arow a:hover .glyph--mbct { transform: scale(1.1); }
.arow__acr { font-family: var(--f-serif); font-size: clamp(2.6rem, 2rem + 2.4vw, 4.4rem); line-height: .95; letter-spacing: -.03em; font-weight: 330; }
.arow__full { margin-top: .6rem; font-weight: 600; color: var(--ink-2); font-size: var(--t-small); }
.arow__en { display: block; font-weight: 500; color: var(--ink-3); font-size: var(--t-xs); margin-top: .15rem; font-style: italic; }
.arow p { color: var(--ink-2); margin: 0; }

/* Video poziv — ilustracija online sesije sa pravom fotografijom */
.call { position: relative; border-radius: var(--r-lg); background: var(--teal-950); padding: 10px; box-shadow: var(--shadow-lift); }
.call__screen { position: relative; overflow: hidden; border-radius: calc(var(--r-lg) - 10px); aspect-ratio: 4 / 3.3; }
.call__screen img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.call__self { position: absolute; right: 14px; top: 14px; width: 26%; aspect-ratio: 3 / 4; border-radius: 12px; background: linear-gradient(160deg, #cfd8cf, #aebbb5); border: 2px solid rgba(255,255,255,.7); display: grid; place-items: end center; overflow: hidden; }
.call__self svg { width: 80%; fill: rgba(21, 61, 66, .35); }
.call__bar { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: .5rem; padding: .45rem; border-radius: var(--r-pill); background: rgba(15, 46, 50, .78); }
.call__bar span { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; color: var(--paper); }
.call__bar span.end { background: #c2543f; }
.call__bar .ic { width: 16px; height: 16px; }
.call__live { position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: .45rem; padding: .3rem .65rem; border-radius: var(--r-pill); background: rgba(15, 46, 50, .78); color: var(--paper); font-size: .72rem; font-weight: 650; letter-spacing: .04em; }
.call__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); animation: blink 2s var(--ease) infinite; }

.checklist { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line-2); margin-top: var(--s-5); }
.checklist li { display: grid; grid-template-columns: 30px 1fr; gap: .9rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-2); }
.checklist .ic { color: var(--teal-700); }
.checklist strong { display: block; color: var(--ink); font-weight: 650; }
.checklist span { color: var(--ink-2); font-size: var(--t-small); }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: var(--s-6); }
.feature { padding: clamp(1.4rem, 2.5vw, 2rem); border-radius: var(--r-md); background: var(--paper-hi); border: 1px solid var(--line); }
.feature .ic { width: 30px; height: 30px; color: var(--teal-700); stroke-width: 1.3; }
.feature h3 { margin-top: 1.1rem; font-family: var(--f-serif); font-weight: 450; font-size: 1.4rem; line-height: 1.2; }
.feature p { margin-top: .6rem; color: var(--ink-2); font-size: var(--t-small); }
.feature--wide { grid-column: 1 / -1; }

/* O meni */
.bio-hero__grid { align-items: end; row-gap: var(--s-7); }
.bio-hero__text { grid-column: 1 / span 6; padding-bottom: 1rem; }
.bio-hero__media { grid-column: 8 / span 5; position: relative; }
.bio-hero__name { font-size: clamp(3rem, 2rem + 4.2vw, 6.2rem); line-height: .95; font-weight: 320; }
.bio-hero__name em { display: block; }
.timeline { list-style: none; position: relative; margin-top: var(--s-6); }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--grad); }
.timeline li { position: relative; display: grid; grid-template-columns: 140px 1fr; gap: 1.5rem; padding: 0 0 2.25rem 2.25rem; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--teal); }
.timeline li:first-child::before { background: var(--lime); border-color: var(--lime-700); }
.timeline__when { font-family: var(--f-serif); font-style: italic; color: var(--teal-800); font-size: 1.1rem; }
.timeline h3 { font-family: var(--f-serif); font-weight: 450; font-size: 1.35rem; line-height: 1.25; }
.timeline p { margin-top: .35rem; color: var(--ink-2); font-size: var(--t-small); }
.creds { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: var(--s-6); }
.cred { padding: 1.5rem; border-radius: var(--r-md); border: 1px dashed var(--line-2); display: grid; gap: .7rem; align-content: start; min-height: 170px; }
.cred .ic { color: var(--teal-700); }
.ph-block { margin-top: var(--s-5); padding: 1.5rem 1.6rem; border-radius: var(--r-md); border: 1px dashed var(--line-2); background: color-mix(in srgb, var(--paper-hi) 60%, transparent); }
.ph-block .note { margin-top: .75rem; }
.formula { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: var(--s-6); padding: 1.25rem 1.4rem; border-radius: var(--r-md); background: var(--paper-hi); border: 1px solid var(--line); }
.formula .chip { font-size: .85rem; padding: .5rem .9rem; }
.formula__op { font-family: var(--f-serif); font-size: 1.5rem; line-height: 1; color: var(--teal); }
.formula__res { font-family: var(--f-serif); font-size: 1.9rem; line-height: 1; color: var(--teal-800); letter-spacing: -.02em; }

/* izdvojeni tekst, članak */
.post--feature { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.post--feature .post__media { aspect-ratio: auto; min-height: 420px; }
.post--feature .post__body { padding: clamp(1.75rem, 3.5vw, 3.25rem); justify-content: center; gap: 1.1rem; }
.post--feature .post__title { font-size: clamp(1.8rem, 1.3rem + 1.8vw, 3rem); line-height: 1.08; }
.post--feature .post__foot { margin-top: .75rem; }
.posts--even { grid-template-columns: 1fr 1fr; }
.article-hero .post__meta { margin-top: .5rem; }
.article-hero__title { margin-top: 1.25rem; font-size: clamp(2.3rem, 1.5rem + 3.2vw, 4.3rem); max-width: 20ch; }
.article-hero__dek { margin-top: 1.5rem; color: var(--ink-2); max-width: 46ch; }
.byline { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--t-small); }
.byline img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; }
.byline strong { display: block; font-weight: 650; line-height: 1.3; }
.byline span { color: var(--ink-3); font-size: var(--t-xs); }
.byline__date { margin-left: auto; }
.doc--article { grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); }
.prose--article { max-width: 68ch; }
.prose--article > h2:first-of-type { margin-top: .5em; }
.prose--article > h2:first-of-type + p::first-letter { float: left; font-family: var(--f-serif); font-size: 4.4em; line-height: .82; padding: .08em .12em 0 0; color: var(--teal-800); font-weight: 350; }
.share { margin-top: var(--s-6); display: grid; gap: .8rem; }
.share__row { display: flex; gap: .5rem; }
.share__btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--teal-800); transition: all .35s var(--ease); }
.share__btn:hover { background: var(--teal-800); color: var(--lime); border-color: var(--teal-800); }
.share__btn .ic { width: 18px; height: 18px; }
.author-box { display: grid; grid-template-columns: 88px 1fr; gap: 1.5rem; align-items: start; margin-top: 3.5rem !important; padding: 1.75rem; border-radius: var(--r-lg); background: var(--paper-hi); border: 1px solid var(--line); }
.author-box img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; }
.author-box__name { font-family: var(--f-serif); font-size: 1.6rem; line-height: 1.1; color: var(--ink); margin: .35rem 0 .6rem !important; }
.author-box p:not(.label):not(.author-box__name) { font-size: var(--t-small); line-height: 1.6; margin-bottom: 1rem; }

/* kontakt */
.contact-grid { margin-top: 0; }
.mini-online { display: grid; grid-template-columns: 26px 1fr; gap: .9rem; margin-top: var(--s-6); padding: 1.25rem 1.35rem; border-radius: var(--r-md); background: var(--mist); font-size: var(--t-small); color: var(--ink-2); }
.mini-online .ic { color: var(--teal-800); margin-top: 2px; }
.mini-online strong { color: var(--ink); }
.location { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(1rem, 2vw, 1.75rem); align-items: stretch; }
.location__map .map { --map-ratio: auto; height: 100%; min-height: 460px; margin-top: 0; }
.location__side { display: grid; gap: 1.25rem; align-content: start; }
.location .checklist { margin-top: 0; }
.steps--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 2.5rem; }
.steps--grid::before, .steps--grid::after { display: none; }

/* ---------- 21. Forma ------------------------------------------------ */
.form-shell { padding: 8px; border-radius: calc(var(--r-lg) + 4px); background: color-mix(in srgb, var(--stone) 85%, transparent); border: 1px solid var(--line); }
.form-card { padding: clamp(1.5rem, 3.4vw, 2.75rem); border-radius: var(--r-lg); background: var(--paper-hi); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; }
.form { display: grid; gap: 1.35rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.field { display: grid; gap: .5rem; align-content: start; }
.field__label { display: flex; justify-content: space-between; gap: .75rem; font-size: .88rem; font-weight: 650; color: var(--ink); }
.field__label .opt { font-weight: 500; color: var(--ink-3); }
.input {
  width: 100%; min-height: 54px;
  padding: .85rem 1rem;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
textarea.input { min-height: 150px; resize: vertical; line-height: 1.6; }
.input::placeholder { color: #8b9290; }
.input:hover { border-color: rgba(35, 41, 42, .35); }
.input:focus { outline: none; border-color: var(--teal-700); background: #fff; box-shadow: 0 0 0 4px rgba(81, 168, 177, .2); }
.field__help { font-size: var(--t-xs); color: var(--ink-3); }
.field__error { display: none; align-items: center; gap: .45rem; font-size: var(--t-xs); font-weight: 600; color: #A23B25; }
.field__error .ic { width: 16px; height: 16px; }
.field.is-invalid .input { border-color: #B6462F; background: #FFF8F5; }
.field.is-invalid .input:focus { box-shadow: 0 0 0 4px rgba(182, 70, 47, .15); }
.field.is-invalid .field__error { display: flex; }
.field.is-valid .input { border-color: var(--teal); }
.check { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: .8rem; align-items: start; font-size: var(--t-small); color: var(--ink-2); cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; cursor: pointer; }
.check__box { position: relative; width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--line-2); background: var(--paper); display: grid; place-items: center; transition: all .3s var(--ease); margin-top: 1px; }
.check__box svg { width: 13px; height: 13px; stroke: var(--paper); stroke-width: 2.4; fill: none; opacity: 0; transform: scale(.6); transition: all .35s var(--ease-2); }
.check input:checked + .check__box { background: var(--teal-800); border-color: var(--teal-800); }
.check input:checked + .check__box svg { opacity: 1; transform: none; }
.check input:focus-visible + .check__box { outline: 2px solid var(--teal-700); outline-offset: 3px; }
.check.is-invalid .check__box { border-color: #B6462F; }
.check.is-invalid .field__error { display: flex; }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .25rem; }
.form__note { font-size: var(--t-xs); color: var(--ink-3); max-width: 34ch; }
.form-success { display: none; gap: 1rem; padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--r-md); background: var(--mist); }
.form-success.is-visible { display: grid; }
.form-success__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-800); display: grid; place-items: center; color: var(--lime); }
.form-success__icon .ic { width: 24px; height: 24px; stroke-width: 2; }
.form.is-hidden { display: none; }
.form-alert { display: none; gap: .6rem; align-items: start; padding: .9rem 1rem; border-radius: var(--r-sm); background: #FBEDE8; color: #8B2F1C; font-size: var(--t-small); font-weight: 600; }
.form-alert.is-visible { display: flex; }

.contact-list { list-style: none; display: grid; margin-top: var(--s-6); border-top: 1px solid var(--line-2); }
.contact-list li { border-bottom: 1px solid var(--line-2); }
.contact-list a, .contact-list .contact-list__static { display: grid; grid-template-columns: 48px 1fr auto; gap: 1rem; align-items: center; padding: 1.1rem 0; }
.contact-list__ic { width: 48px; height: 48px; border-radius: 50%; background: var(--mist-teal); display: grid; place-items: center; color: var(--teal-800); transition: background-color .4s var(--ease), color .4s var(--ease); }
.contact-list a:hover .contact-list__ic { background: var(--teal-800); color: var(--lime); }
.contact-list small { display: block; font-size: var(--t-label); font-weight: 650; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.contact-list strong { font-weight: 650; font-size: clamp(.9rem, .82rem + .4vw, 1.05rem); color: var(--ink); overflow-wrap: anywhere; }
.contact-list .arrow { color: var(--teal-700); width: 18px; height: 18px; transition: transform .5s var(--ease-2); }
.contact-list a:hover .arrow { transform: translateX(4px); }

/* ---------- 22. Placeholder i napomene za klijenta ------------------ */
.ph { color: var(--ink-3); font-style: italic; }
.note {
  display: none;
  align-items: flex-start; gap: .55rem;
  margin-top: .9rem; padding: .6rem .85rem;
  border-radius: var(--r-sm);
  border: 1px dashed rgba(70, 101, 26, .55);
  background: rgba(236, 243, 227, .85);
  color: var(--lime-700);
  font-size: .78rem; line-height: 1.45; font-weight: 600; font-style: normal;
  max-width: 60ch;
}
.note::before { content: "Za potvrdu"; flex: none; padding: .12rem .45rem; border-radius: var(--r-pill); background: var(--lime); color: var(--teal-950); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin-top: 1px; }
.on-dark .note, .panel--dark .note { background: rgba(168, 207, 69, .1); color: var(--lime); border-color: rgba(168, 207, 69, .45); }
html.show-notes .note { display: flex; }
.notes-toggle {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem .85rem .5rem .55rem; border-radius: var(--r-pill);
  background: var(--paper-hi); border: 1px solid var(--line-2); box-shadow: var(--shadow);
  font-size: .76rem; font-weight: 650; color: var(--ink-2);
}
.notes-toggle__sw { position: relative; width: 32px; height: 18px; border-radius: 9px; background: var(--stone-2); transition: background-color .3s var(--ease); }
.notes-toggle__sw::after { content: ""; position: absolute; top: 2px; left: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; transition: transform .4s var(--ease-2); box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.notes-toggle[aria-pressed="true"] .notes-toggle__sw { background: var(--lime-700); }
.notes-toggle[aria-pressed="true"] .notes-toggle__sw::after { transform: translateX(14px); }

/* ---------- 23. Pojavljivanje pri skrolu ---------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1.1s var(--ease-2); transition-delay: calc(var(--i, 0) * 90ms); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: scale(.97); }
[data-reveal="scale"].is-in { transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

.hero .midline, .page-hero .midline { animation: grow-y 1.6s var(--ease) .3s both; }
.hero__copy > :not(.ornament) { animation: rise 1.1s var(--ease-2) both; }
.hero__copy > :nth-child(1) { animation-delay: .15s; }
.hero__copy > :nth-child(2) { animation-delay: .25s; }
.hero__copy > :nth-child(3) { animation-delay: .38s; }
.hero__copy > :nth-child(4) { animation-delay: .5s; }
.hero__media { animation: rise-photo 1.4s var(--ease-2) .05s both; }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes rise-photo { from { opacity: 0; transform: translateY(40px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes grow-y { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes krug-spin { to { transform: rotate(-360deg); } }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(5.5); opacity: 0; } }
@keyframes blink { 50% { opacity: .35; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.06); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .draw path, .draw circle, .draw line, .draw polyline, .draw ellipse { stroke-dashoffset: 0; }
}

/* ---------- 24. Dizajn sistem stranica ----------------------------- */
.ds-section { padding-block: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line-2); }
.ds-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; margin-top: var(--s-6); }
.swatch { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); background: var(--paper-hi); }
.swatch__c { height: 120px; display: flex; align-items: flex-end; padding: .8rem; font-size: .72rem; font-weight: 700; }
.swatch__m { padding: .9rem 1rem 1rem; display: grid; gap: .15rem; font-size: .8rem; color: var(--ink-2); }
.swatch__m strong { color: var(--ink); font-size: .92rem; }
.swatch__m code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .78rem; color: var(--ink-3); }
.type-row { display: grid; grid-template-columns: 170px 1fr; gap: 1.5rem; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.type-row code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .75rem; color: var(--ink-3); line-height: 1.5; }
.ds-demo { display: flex; flex-wrap: wrap; gap: 1rem 1.25rem; align-items: center; margin-top: var(--s-5); padding: clamp(1.25rem, 3vw, 2rem); border-radius: var(--r-md); background: var(--paper-hi); border: 1px solid var(--line); }
.ds-demo--dark { background: var(--teal-900); }
.ds-state { display: grid; gap: .6rem; justify-items: start; }
.ds-state > span { font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.btn.is-hover { --btn-bg: var(--teal-900); }
.btn.is-hover .btn__icon { transform: translate(3px, -1px) scale(1.06); }
.btn.is-focus { outline: 2px solid var(--teal-700); outline-offset: 4px; }
.input.is-focus { border-color: var(--teal-700); background: #fff; box-shadow: 0 0 0 4px rgba(81, 168, 177, .2); }
.space-scale { display: grid; gap: .5rem; margin-top: var(--s-5); }
.space-scale div { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 1rem; font-size: .8rem; color: var(--ink-3); }
.space-scale i { display: block; height: 14px; border-radius: 4px; background: var(--grad-x); }
.bp { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: var(--s-5); }
.bp div { padding: 1.25rem; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--paper-hi); font-size: var(--t-small); color: var(--ink-2); }
.bp strong { display: block; font-family: var(--f-serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); }
.ds-glyphs { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.ds-glyphs figure { margin: 0; display: grid; gap: .6rem; justify-items: center; font-size: var(--t-xs); color: var(--ink-3); }

.ds-concept { display: grid; justify-items: center; gap: 2rem; padding: clamp(1.75rem, 3vw, 2.75rem); border-radius: var(--r-lg); background: var(--paper-hi); border: 1px solid var(--line); }
.ds-concept > img { width: 104px; height: auto; }
.ds-concept__cols { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.ds-concept__cols > div { display: grid; justify-items: center; align-content: start; gap: .55rem; text-align: center; padding: .5rem 1rem; }
.ds-concept__cols > div + div { border-left: 1px solid; border-image: var(--grad) 1; }
.ds-concept__cols strong { font-family: var(--f-serif); font-weight: 420; font-size: 1.3rem; }
.ds-concept__cols small { font-size: var(--t-xs); color: var(--ink-3); line-height: 1.45; }
.ds-concept__solid { width: 32px; height: 64px; border-radius: 64px 0 0 64px; background: var(--grad); margin-left: 32px; }

/* ---------- 25. Responsive ---------------------------------------- */
@media (max-width: 1240px) {
  .hero__vijuge { display: none; }
  .nav, .site-header .btn--header { display: none; }
  .menu-toggle { display: block; }
  .site-header__bar { gap: .75rem; }
  .site-header .header-cta-mobile { display: inline-flex; margin-left: auto; }
}
.btn__label-short { display: none; }
@media (min-width: 1241px) {
  .header-cta-mobile { display: none !important; }
  .mobile-menu { display: none; }
}

@media (max-width: 1100px) {
  .footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
  .rad__text { grid-column: 1 / span 7; }
  .rad__art { grid-column: 8 / span 5; }
  .plist__link { grid-template-columns: 120px minmax(0, 1fr) 48px; }
  .plist__time { display: none; }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .hero__grid { grid-template-columns: 1fr; row-gap: var(--s-7); }
  .hero .midline { display: none; }
  .hero__copy { order: -1; padding: 0; }
  .hero__lead { max-width: 44ch; }
  .hero__media { max-width: 560px; }
  .hero .caption-card { right: -8px; bottom: 22px; }
  .hero__vijuge { display: none; }
  .rad__art { margin-inline: auto; }
  .trust__list { grid-template-columns: 1fr 1fr; }
  .trust__list li:nth-child(3) { border-left: 0; }
  .trust__list li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .rad__text, .rad__art, .krug-sec__art, .krug-sec__text, .about__text, .about__media, .faq-sec__head, .faq-sec__list,
  .cta-band__text, .cta-band__act, .page-hero__text, .page-hero__side, .bio-hero__text, .bio-hero__media { grid-column: 1 / -1; }
  .rad__art { max-width: 420px; }
  .krug-sec__text { order: -1; }
  .about__media { margin-right: calc(var(--gutter) * -1); margin-top: var(--s-7); }
  .about .caption-card { left: 12px; bottom: -22px; }
  .bio-hero__media .caption-card { left: 12px !important; bottom: -22px !important; }
  .bio-hero__media { max-width: 520px; }
  .bento > * { grid-column: 1 / -1 !important; }
  .acard { min-height: 0; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: var(--s-7); }
  .steps::before, .steps::after { display: none; }
  .diptych { grid-template-columns: 1fr; }
  .diptych .midline { display: none; }
  .diptych__or { display: none; }
  .faq-sec__head { position: static; }
  .posts, .posts--even { grid-template-columns: 1fr; }
  .post--feature { grid-template-columns: 1fr; }
  .post--feature .post__media { min-height: 0; aspect-ratio: 16 / 10; }
  .location { grid-template-columns: 1fr; }
  .location__map .map { min-height: 320px; }
  .doc--article { grid-template-columns: 1fr; }
  .doc { grid-template-columns: 1fr; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .bio-sec { grid-template-columns: 1fr; gap: 1.5rem; }
  .bio-sec__head { position: static; }
  .krug--doc { margin-inline: auto; }
  .glyph-quad { margin-left: 0; max-width: 240px; }
  .izbor__card { grid-template-columns: 1fr; }
  .izbor .midline { display: none; }
  .toc { position: static; display: none; }
  .therapy-hero__art { justify-items: start; }
  .big-glyph { max-width: 220px; }
  .processes { grid-template-columns: 1fr; }
  .hexaflex { position: static; max-width: 280px; }
  .related { grid-template-columns: 1fr; }
  .arow a { grid-template-columns: 72px minmax(0, 1fr) 48px; }
  .arow a > p { grid-column: 2 / 3; }
  .arow .glyph { width: 64px; height: 64px; }
  .arow__go { grid-row: 1; grid-column: 3; }
  .creds { grid-template-columns: 1fr 1fr; }
  .bp { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  body { font-size: 1.0625rem; }
  .site-header { top: 10px; }
  .site-header__bar { padding: 0 .4rem 0 1rem; }
  .brand img { height: 36px; }
  .menu-toggle { width: 46px; height: 46px; }
  .menu-toggle span:not(.sr-only) { left: 13px; }
  .menu-toggle span:nth-child(1) { top: 18px; }
  .menu-toggle span:nth-child(2) { top: 26px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1), .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 22px; }
  .header-cta-mobile { padding-left: .9rem; }
  .header-cta-mobile .btn__label-long { display: none; }
  .header-cta-mobile .btn__label-short { display: inline; }
  .hero { padding-top: calc(var(--header-h) + 10px + 2.25rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .hero__media .frame--portrait .frame__core { aspect-ratio: 4 / 4.4; }
  .hero .caption-card { position: relative; right: auto; bottom: auto; margin: -2.2rem 1rem 0; max-width: none; }
  .trust__list li { padding: 1.1rem .75rem; font-size: .86rem; gap: .6rem; }
  .trust__list .ic { width: 22px; height: 22px; }
  .rad__body { grid-template-columns: 1fr; gap: 0; }
  .rad__body p + p { margin-top: 1rem; }
  .krug { --r: 36%; }
  .krug__items, .krug__exit-label { display: none; }
  .krug-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin-top: var(--s-5); }
  .krug-list .chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
  .steps { grid-template-columns: 1fr; row-gap: 0; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 1.1rem; padding-bottom: 2rem; }
  .step__num { grid-row: span 2; }
  .step::before { content: ""; position: absolute; left: 28px; top: 56px; bottom: 0; width: 1px; background: var(--line-2); }
  .step:last-child::before { display: none; }
  .step__title { margin-top: .75rem; }
  .step p { grid-column: 2; }
  .benefits { grid-template-columns: 1fr; }
  .benefits li:nth-child(odd) { border-right: 0; }
  .benefits li:nth-child(even) { padding-left: 0; }
  .panel__foot { flex-direction: column; align-items: flex-start; }
  .faq__a { padding-right: 0; }
  .faq__item summary { grid-template-columns: 1fr 36px; }
  .faq__icon { width: 36px; height: 36px; }
  .plist__link { grid-template-columns: 1fr 44px; gap: .8rem 1rem; padding: 1.4rem 0; }
  .plist__cat { grid-column: 1 / -1; }
  .plist__arrow { width: 44px; height: 44px; }
  .cta-band .ornament { display: none; }
  .panel--dark .map { --map-ratio: 16 / 10; }
  .rad__art { max-width: 300px; }
  .disc-tags li:nth-child(2) { left: 86% !important; }
  .footer__top { grid-template-columns: 1fr 1fr; row-gap: 2.25rem; }
  .footer__top > :nth-child(4), .footer__top > :nth-child(5) { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .list-cols { grid-template-columns: 1fr; }
  .list-cols li:nth-child(odd) { border-right: 0; }
  .list-cols li:nth-child(even) { padding-left: 0; }
  .pgrid { grid-template-columns: 1fr; }
  .choice__grid { grid-template-columns: 1fr; }
  .option { min-height: 0; }
  .choice__q { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr; }
  .def { grid-template-columns: 1fr; }
  .stat { grid-template-columns: 1fr; gap: .8rem; }
  .form__row { grid-template-columns: 1fr; }
  .steps--grid { grid-template-columns: 1fr; row-gap: 0; }
  .author-box { grid-template-columns: 1fr; }
  .byline__date { margin-left: 0; width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: .3rem; }
  .creds { grid-template-columns: 1fr; }
  .modes, .related--4 { grid-template-columns: 1fr; }
  .type-row { grid-template-columns: 1fr; gap: .5rem; }
  .notes-toggle { left: .6rem; bottom: .6rem; }
  .notes-toggle__txt { display: none; }
  .arow a { grid-template-columns: 56px minmax(0, 1fr); }
  .arow .glyph { width: 52px; height: 52px; }
  .arow__go { display: none; }
  .arow a > p { grid-column: 1 / -1; }
  .map__pin-label { font-size: .68rem; }
}
