/* ==========================================================
   OSNOVNE NASTAVITVE: barve, pisave in splošni elementi
   ========================================================== */
/* ==========================================================
   Lokalne pisave – Lora in Manrope
   ========================================================== */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/lora-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/lora-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
    U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lora-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
    U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC,
    U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ivory: #fcfaf6;
  --cream: #f6f0e7;
  --ink: #263137;
  --muted: #6d675f;
  --gold: #a98038;
  --gold-dark: #856225;
  --gold-light: #ded0b6;
  --border: #e8ded0;
  --serif: "Lora", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
[hidden] {
  display: none !important;
}
/* ==========================================================
   GLAVA STRANI IN NAVIGACIJA
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;

  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  padding: 8px clamp(28px, 7vw, 120px);
  background: rgba(252, 250, 246, 0.9);
  border-bottom: 1px solid rgba(222, 208, 182, 0.45);
  backdrop-filter: blur(15px);
}
.brand {
  width: 80px;
  height: 100%;
  margin-bottom: 5px;
  margin-top: 5px;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-self: start;
}
.brand img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.main-nav {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 2.7vw, 44px);
  font-size: 14px;
  font-weight: 500;
}
.main-nav a {
  position: relative;
  padding: 10px 0;
}
.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}
.main-nav a:hover:after {
  right: 0;
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: 0.25s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}
.button-outline {
  background: transparent;
  color: var(--gold-dark);
}
.button-outline:hover {
  background: var(--gold);
  color: #fff;
}
.button-small {
  min-height: 42px;
  padding: 10px 18px;
  justify-self: end;
}
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid var(--gold-light);
  padding: 0 0 6px;
  background: none;
}
.text-link span {
  transition: 0.25s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
/* ==========================================================
   UVODNA HERO SEKCIJA
   ========================================================== */
.hero {
  position: relative;
  min-height: 780px;
  height: 100vh;
  max-height: 960px;
  overflow: hidden;
  padding-top: 88px;
  display: flex;
  align-items: center;
}
.hero-image {
  width: 100%;
  height: calc(100% - 88px);
  object-fit: cover;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 88px 0 0;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(252, 250, 246, 0.96),
    rgba(252, 250, 246, 0.82) 34%,
    rgba(252, 250, 246, 0.08) 59%,
    transparent 75%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 47vw);
  margin-left: clamp(30px, 7vw, 120px);
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--gold-dark) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
blockquote,
h1,
h2,
h3 {
  font-family: var(--serif);
}
h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(58px, 5vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.hero-copy {
  max-width: 540px;
  margin: 28px 0 34px;
  color: #495156;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in 0.85s cubic-bezier(0.22, 0.8, 0.24, 1) forwards;
}
.d1 {
  animation-delay: 0.15s;
}
.d2 {
  animation-delay: 0.28s;
}
.d3 {
  animation-delay: 0.42s;
}
.d4 {
  animation-delay: 0.56s;
}
@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}
/* ==========================================================
   SKUPNE NASTAVITVE VSEBINSKIH SEKCIJ
   ========================================================== */
.section {
  padding: 100px clamp(28px, 7vw, 120px);
}
.section h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.section p {
  color: var(--muted);
}
.lead {
  color: var(--ink) !important;
  font-size: 19px;
}
.centered {
  text-align: center;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 58px;
}
.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.22, 0.8, 0.24, 1) var(--delay, 0s);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* ==========================================================
   Morda si tukaj, ker ...
   ========================================================== */
.recognition {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-right: 0;
  gap: 8vw;
}
.recognition-copy {
  max-width: 650px;
  align-self: center;
}
.soft-emphasis {
  margin: 30px 0 0;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
}
.recognition-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #e8d9c5;
}
.recognition-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recognition-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 250, 246, 0.15);
}
.recognition-visual:before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 72%;
  height: 88%;
  right: -6%;
  top: 5%;
  border: 1px solid rgba(169, 128, 56, 0.32);
  border-radius: 50% 0 0 50%;
}
.recognition-visual p {
  transform: translateX(-200px);
  position: relative;
  z-index: 3;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(35px, 3.5vw, 58px);
  line-height: 1.15;
}
/* ==========================================================
   STORITVE IN KARTICE
   ========================================================== */
.services {
  background: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto 42px;
}
.service-card {
  border: 1px solid var(--border);
  background: var(--ivory);
  overflow: hidden;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(76, 59, 36, 0.1);
}
.service-visual {
  height: 310px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e7dccb, #f8f2e9);
}
.service-visual span {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-dark);
  padding: 5px 10px;
  background: rgba(252, 250, 246, 0.88);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-visual img {
  transform: scale(1.03);
}
.service-visual i {
  position: absolute;
  display: block;
}
.message i {
  inset: 34px 46px;
  border: 1px solid rgba(169, 128, 56, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px hsla(0, 0%, 100%, 0.35),
    0 0 0 29px rgba(169, 128, 56, 0.18);
}
.message i:after {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--gold-light);
  filter: blur(4px);
}
.service-body {
  padding: 30px;
}
.card-eyebrow {
  margin: 0 0 10px !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.service-body h3 {
  margin: 0 0 14px;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 500;
}
.service-body > p:not(.card-eyebrow) {
  min-height: 104px;
  font-size: 14px;
}
.service-body a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 17px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* ==========================================================
   O MENI
   ========================================================== */
.about {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(380px, 0.9fr);
  gap: 8vw;
  align-items: center;
  background: var(--cream);
  padding-left: 0;
}
.about-image {
  position: relative;
  min-height: 660px;
  overflow: visible;
  display: flex;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 660px;
  object-fit: contain;
  object-position: center;
}
.about-image span {
  position: absolute;
  left: 120px;
  bottom: 26px;
  padding: 8px 14px;
  background: rgba(252, 250, 246, 0.87);
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .about-image span {
    left: 30px;
  }
}

/* ================================================================
   POENOTENI VELIKI NASLOVI
   Enaka velikost kot veliki sekcijski naslovi na domači strani.
   ================================================================ */

/* ================================================================
   DEVETMESEČNI PROGRAM – KONČNE PRILAGODITVE
   ================================================================ */

.program-page .program-hero .program-hero-image {
  object-position: center 20% !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom !important;
  transform: none;
}

/* ================================================================
   KONČNI POPRAVKI: HERO, KARTICE STORITEV IN ZIMSKI SOLSTICIJ
   ================================================================ */

/* Hero fotografija programa zapolni širino brez deformacije.
   Slika je povečana sorazmerno in sidrana na sredino spodnjega roba. */

/* Vse kartice storitev in njihovi gumbi se končajo na isti višini. */
.service-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
}

.service-body,
.service-card {
  display: flex;
  flex-direction: column;
}

.service-body,
.service-body > p:not(.card-eyebrow) {
  flex: 1;
}

.service-body .service-button {
  margin-top: auto;
}

/* Hero fotografija podstrani zimskega solsticija. */
.winter-solstice-hero > img {
  object-position: center bottom;
}

/* Trije podatki dogodka se lepo porazdelijo tudi v obstoječi mreži. */
.winter-solstice-booking .detail-price p:last-of-type {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .program-page .program-hero .program-hero-image {
    object-position: center bottom !important;
  }

  .winter-solstice-hero > img {
    object-position: 58% bottom;
  }
}

/* ================================================================
   PODSTRAN: TAO JOGA OBRAZA
   ================================================================ */

.tao-detail-hero > img {
  object-position: center center;
}

.tao-content-image {
  width: min(760px, 100%);
  margin: 58px auto;
}

.tao-content-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tao-testimonials {
  background: var(--cream);
}

.tao-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid rgba(169, 128, 56, 0.3);
  background: hsla(0, 0%, 100%, 0.82);
}

.tao-logo-card img {
  width: min(290px, 82%);
  height: auto;
  margin-bottom: 30px;
  object-fit: contain;
}

.tao-logo-card p {
  width: 100%;
  margin: 0 0 24px;
  padding: 20px 0;
  border-block: 1px solid var(--gold-light);
  text-align: center;
}

.tao-logo-card p span,
.tao-logo-card p strong {
  display: block;
}

.tao-logo-card p span {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tao-logo-card p strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.tao-logo-card .button {
  width: 100%;
}

@media (max-width: 760px) {
  .tao-detail-hero > img {
    object-position: 52% center;
  }

  .tao-content-image {
    width: calc(100% + 44px);
    margin: 46px -22px;
  }

  .tao-logo-card {
    padding: 32px 22px;
  }
}

/* ================================================================
   DEVETMESEČNI PROGRAM – POPRAVKI V13
   Ta sklop je namenoma na koncu datoteke, da ima prednost pred
   starejšimi nastavitvami podstrani programa.
   ================================================================ */

/* Daljša glavna besedila na podstrani programa. */
.program-page .facilitator-grid p:not(.eyebrow),
.program-page .program-accordion details p,
.program-page .program-application-intro > p:not(.eyebrow),
.program-page .program-audience-copy > p:not(.eyebrow),
.program-page .program-certificate p,
.program-page .program-curriculum .section-heading > p:not(.eyebrow),
.program-page .program-method > div:first-child > p:not(.eyebrow),
.program-page .program-narrative > p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}

/* Nadnaslov »O programu« uporablja isti slog kot ostali nadnaslovi. */
.program-page .program-narrative > .eyebrow {
  margin: 0 0 17px;
  color: var(--gold-dark) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
}

/* Celotna hero fotografija je rahlo zamaknjena v desno. */
.program-page .program-hero .program-hero-image {
  left: 0;
  width: 106%;
  max-width: none;
  object-position: center center !important;
  transform: translateX(3%);
}

/* Sekcija »Je ta program zate?« – fotografija do levega roba. */
.program-page .program-audience {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.9fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  width: 100%;
  padding: 0 clamp(28px, 7vw, 120px) 0 0;
  background: var(--cream);
}

.program-audience-image {
  align-self: stretch;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
}

.program-audience-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
}

.program-page .program-audience-copy {
  max-width: 620px;
  padding: 80px 0;
}

/* Svetlo bež fotografsko ozadje, enako kot pri obrazcih. */
.program-page .program-method {
  background:
    linear-gradient(rgba(246, 240, 231, 0.8), rgba(246, 240, 231, 0.8)),
    url(../images/ozadje.webp) 50% / cover;
  color: var(--ink);
}

/* Cenovni prikaz: redna cena, early bird cena in prihranek. */
.program-price-card .program-regular-price-top {
  display: block;
  margin: 0 0 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(177, 132, 61, 0.24);
}

.program-price-card .program-regular-price-top span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-price-card .program-regular-price-top strong {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.program-price-card .program-price {
  margin-top: 12px;
  font-size: clamp(64px, 7vw, 90px);
}

.program-price-card .program-saving {
  margin: 18px 0 10px;
}

.program-price-card .program-payment-note {
  margin: 0 0 28px;
}

@media (max-width: 900px) {
  .program-page .program-audience {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .program-audience-image,
  .program-audience-image img {
    min-height: 460px;
  }

  .program-page .program-audience-copy {
    max-width: none;
    padding: 65px 22px 75px;
  }
}

@media (max-width: 760px) {
  .program-page .program-hero .program-hero-image {
    width: 110%;
    object-position: 53% center !important;
    transform: translateX(1%);
  }

  .program-audience-image,
  .program-audience-image img {
    min-height: 380px;
  }
}

/* ================================================================
   SKUPNA BERLJIVOST BESEDILA
   ================================================================ */

/* Obojestransko so poravnani samo daljši vsebinski odstavki. */
.about-copy > p,
.contact-copy > p,
.detail-copy li,
.detail-copy p,
.detail-intro > p,
.recognition-copy li,
.recognition-copy > p,
.simple-page-inner li,
.simple-page-inner > p:not(.eyebrow) {
  text-align: justify;
  text-justify: inter-word;
}

/* Opaznejši gumbi na karticah storitev domače strani. */
.service-body .service-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  margin-top: 8px;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.service-body .service-button:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================================
   MNENJA NA PODSTRANEH STORITEV
   ================================================================ */

.service-testimonials {
  background: var(--cream, #fcfaf6);
}

.service-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(177, 132, 61, 0.24);
  background: hsla(0, 0%, 100%, 0.72);
}

.service-testimonial blockquote {
  margin: 0 0 28px;
  font-family: Lora, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  text-align: left;
}

.service-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--gold-dark);
}

.service-testimonial footer span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Ploščat krožni slider mnenj na podstraneh storitev. */
.service-testimonial-slider {
  width: min(920px, 100% - 88px);
  margin-bottom: 0;
}

.service-testimonial-slider .service-testimonial {
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
}

.service-testimonial-slider .service-testimonial blockquote {
  margin-bottom: 20px;
}

.service-testimonial-slider .service-testimonial footer {
  margin-top: 0;
}

/* ================================================================
   SLIDER CELOTNIH MNENJ
   ================================================================ */

.testimonial-slider {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  width: min(1080px, 100% - 88px);
  margin: 48px auto;
}

.testimonial-slider-viewport {
  overflow: hidden;
  transition: height 0.28s ease;
}

.testimonial-slider-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-slider-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-height: 0;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(177, 132, 61, 0.24);
  background: #fff;
  scroll-snap-align: start;
}

.testimonial-slide .testimonial-service {
  margin: 0 0 24px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-slide blockquote {
  margin: 0;
  font-family: Lora, serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.75;
  text-align: left;
}

.testimonial-slide footer {
  margin-top: 30px;
  color: var(--gold-dark);
  font-weight: 600;
}

.testimonial-slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font-size: 22px;
}

/* ================================================================
   PREPROSTE BESEDILNE PODSTRANI
   ================================================================ */

.simple-page {
  padding-top: clamp(150px, 15vw, 210px);
}

.simple-page-inner {
  width: min(860px, 100% - 88px);
  margin: 0 auto;
}

.simple-page h1 {
  max-width: 850px;
  margin: 10px 0 34px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
}

.simple-page h2 {
  margin: 52px 0 16px;
  font-size: clamp(25px, 3vw, 34px);
}

.simple-page li,
.simple-page p {
  line-height: 1.85;
}

.simple-page-lead {
  font-family: Lora, serif;
  font-size: clamp(20px, 2.5vw, 27px);
}

.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ================================================================
   BREZPLAČNE MEDITACIJE – VDELANA YOUTUBE GALERIJA
   ================================================================ */

.meditation-heading {
  margin-top: clamp(58px, 8vw, 92px);
  text-align: center;
}

.meditation-heading h2 {
  margin-top: 10px;
}

.meditation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: min(1120px, 100vw - 88px);
  margin: 42px 50% 0;
  transform: translateX(-50%);
}

.meditation-video {
  overflow: hidden;
  border: 1px solid rgba(177, 132, 61, 0.22);
  background: #fff;
  box-shadow: 0 16px 42px rgba(41, 33, 22, 0.07);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #171717;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.meditation-grid + .simple-page-actions {
  justify-content: center;
  margin-top: 38px;
}

@media (max-width: 760px) {
  .simple-page-inner,
  .testimonial-slider {
    width: min(100% - 40px, 680px);
  }

  .testimonial-slider {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .testimonial-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .testimonial-slide {
    min-height: 0;
    padding: 28px 22px;
  }

  .simple-page {
    padding-top: 125px;
  }

  .service-testimonial-slider {
    width: min(100% - 40px, 680px);
  }

  .meditation-grid {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    gap: 18px;
  }
}

/* ==========================================================
   TRETJI NIVO MENIJA: PRIHajajoči IN PRETEKLI DOGODKI
   ========================================================== */
.nav-subgroup {
  position: relative;
}

.nav-subgroup-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 2px;
  border: 0;
  border-bottom: 1px solid rgba(222, 208, 182, 0.55);
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.nav-subgroup-toggle span {
  color: var(--gold-dark);
  font-size: 18px;
  transition: transform 0.25s ease;
}

.nav-tertiary {
  position: absolute;
  top: -12px;
  left: calc(100% + 18px);
  display: grid;
  min-width: 310px;
  padding: 12px 18px;
  background: rgba(252, 250, 246, 0.99);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(65, 49, 29, 0.11);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition:
    opacity 0.2s ease 0.35s,
    transform 0.2s ease 0.35s,
    visibility 0s linear 0.55s;
  pointer-events: none;
}

.nav-subgroup.is-open .nav-tertiary,
.nav-subgroup:focus-within .nav-tertiary,
.nav-subgroup:hover .nav-tertiary {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
  pointer-events: auto;
}

.nav-subgroup.is-open .nav-subgroup-toggle span,
.nav-subgroup:focus-within .nav-subgroup-toggle span,
.nav-subgroup:hover .nav-subgroup-toggle span {
  transform: rotate(90deg);
}

/* ==========================================================
   PREPROSTE PODSTRANI: KONTAKT IN CENIK
   ========================================================== */
.simple-page {
  background: #fff;
}

.simple-main {
  min-height: 80vh;
  padding: 88px clamp(24px, 7vw, 120px) 100px;
}

.simple-page-intro {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 0 0 70px;
  text-align: center;
}

.simple-page-intro h1 {
  max-width: none;
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 60px;
}

.simple-page-intro > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(40px, 7vw, 100px);
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: start;
}

.contact-methods {
  padding-top: 20px;
}

.contact-method {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 28px 50px 28px 0;
  border-bottom: 1px solid var(--gold-light);
}

.contact-method > span,
.contact-social-block > span {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
}

.contact-method i {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold-dark);
  font-size: 24px;
  font-style: normal;
  transform: translateY(-50%);
}

.contact-social-block {
  padding: 30px 0;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.contact-socials a {
  min-width: 120px;
  padding: 13px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.contact-socials a:hover {
  background: var(--gold);
  color: #fff;
}

.contact-note {
  max-width: 440px;
  font-size: 13px;
}

.contact-page-form {
  margin: 0;
}

.contact-page-form h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.price-list {
  width: min(1040px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--gold-light);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 10px;
  border-bottom: 1px solid var(--gold-light);
}

.price-row span {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-row h2 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(23px, 3vw, 35px);
  line-height: 1.2;
}

.price-row h2,
.price-row > strong {
  font-family: var(--serif);
  font-weight: 400;
}

.price-row > strong {
  color: var(--gold-dark);
  font-size: clamp(28px, 4vw, 44px);
  white-space: nowrap;
}

.price-notice {
  width: min(880px, 100%);
  margin: 70px auto 0;
  padding: clamp(28px, 5vw, 55px);
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.price-notice h2 {
  margin: 10px 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.simple-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: min(1040px, 100%);
  margin: 70px auto 0;
  padding-top: 55px;
  border-top: 1px solid var(--border);
}

.simple-cta h2 {
  margin: 8px 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 400;
}

/* ==========================================================
   PODSTRAN MNENJA
   ========================================================== */
.testimonials-detail-hero > img {
  object-position: center center;
}

.full-testimonials {
  width: min(1040px, 100% - 48px);
  margin: 0 auto;
  padding: 100px 0;
}

.full-testimonials .disclaimer {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
}

@media (max-width: 1000px) {
  .nav-tertiary {
    position: static;
    display: none;
    min-width: 0;
    padding: 2px 0 5px 18px;
    border: 0;
    border-left: 1px solid var(--gold-light);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-subgroup:focus-within .nav-tertiary,
  .nav-subgroup:hover .nav-tertiary {
    display: none;
  }

  .nav-subgroup.is-open .nav-tertiary,
  .nav-subgroup.is-open:focus-within .nav-tertiary,
  .nav-subgroup.is-open:hover .nav-tertiary {
    display: grid;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .simple-main {
    padding: 76px 20px 75px;
  }

  .simple-page-intro {
    padding: 70px 0 50px;
  }

  .simple-page-intro h1 {
    font-size: 46px;
  }

  .contact-method strong {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .contact-socials {
    display: grid;
    grid-template-columns: 1fr;
  }

  .price-row {
    gap: 18px;
    padding: 30px 4px;
  }

  .price-row,
  .simple-cta {
    grid-template-columns: 1fr;
  }

  .simple-cta .button {
    width: 100%;
  }

  .testimonials-detail-hero > img {
    object-position: 64% center;
  }

  .full-testimonials {
    width: calc(100% - 40px);
    padding: 70px 0;
  }
}

/* ==========================================================
   DROPDOWN MENI: RAČUNALNIK IN TELEFON
   ========================================================== */
.main-nav {
  align-items: center;
  gap: clamp(15px, 1.8vw, 30px);
}

.nav-dropdown {
  position: relative;
}

/*
 * Nevidno varno območje zapolni razmik med gumbom in podmenijem.
 * Tako se podmeni med premikom kazalca ne zapre po pomoti.
 */
@media (min-width: 1001px) {
  .nav-dropdown::after {
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 12px;
    content: "";
  }

  .nav-subgroup::after {
    position: absolute;
    top: -12px;
    left: 100%;
    width: 20px;
    height: calc(100% + 24px);
    content: "";
  }
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  color: var(--gold-dark);
  font-size: 15px;
  transition: transform 0.25s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span,
.nav-dropdown:hover .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 280px;
  padding: 12px 18px;
  background: rgba(252, 250, 246, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(65, 49, 29, 0.11);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.2s ease 0.35s,
    transform 0.2s ease 0.35s,
    visibility 0s linear 0.55s;
  pointer-events: none;
}

.nav-dropdown.is-open .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%);
  transition-delay: 0s;
  pointer-events: auto;
}

.main-nav .nav-submenu a {
  padding: 11px 2px;
  border-bottom: 1px solid rgba(222, 208, 182, 0.55);
  white-space: nowrap;
}

.main-nav .nav-submenu a:last-child {
  border-bottom: 0;
}

.main-nav .nav-submenu a:after {
  display: none;
}

.main-nav .nav-submenu a:hover,
.main-nav .nav-submenu a[aria-current="page"] {
  color: var(--gold-dark);
}

.anchor-target {
  position: absolute;
  scroll-margin-top: 100px;
}

/* Zlate ikone družbenih omrežij v footerju. */
.footer-socials {
  display: flex;
  gap: 10px;
  margin: 10px 0 7px;
}

.site-footer .footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
  place-items: center;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.site-footer .footer-socials a:hover {
  background: var(--gold);
  color: #fff;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-socials a[aria-label="Instagram"] svg {
  fill: none;
}

.footer-socials .social-dot,
.footer-socials .social-play {
  fill: var(--ivory);
  stroke: none;
}

.footer-socials a[aria-label="Instagram"] .social-dot {
  fill: currentColor;
}

.about-detail-hero > img {
  object-position: center center;
}

.about-detail-contact .detail-price {
  justify-content: center;
}

@media (max-width: 1000px) {
  .main-nav {
    align-items: stretch;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px;
    padding: 4px 0 4px 18px;
    border: 0;
    border-left: 1px solid var(--gold-light);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown:focus-within .nav-submenu,
  .nav-dropdown:hover .nav-submenu {
    display: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-submenu,
  .nav-dropdown.is-open:focus-within .nav-submenu,
  .nav-dropdown.is-open:hover .nav-submenu {
    display: grid;
  }

  .main-nav .nav-submenu a {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .main-nav {
    max-height: calc(100vh - 76px);
  }

  .about-detail-hero > img {
    object-position: 65% center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ==========================================================
   PODSTRAN: NEVROSOMATSKA OBRAVNAVA
   ========================================================== */
.detail-page {
  background: var(--ivory);
}

.detail-page blockquote,
.detail-page h1,
.detail-page h2 {
  font-family: var(--serif);
}

.detail-hero {
  position: relative;
  min-height: 680px;
  height: 78vh;
  max-height: 820px;
  padding-top: 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.detail-hero > img {
  width: 100%;
  height: calc(100% - 88px);
  object-fit: cover;
  object-position: 70% center;
}

.detail-hero-shade,
.detail-hero > img {
  position: absolute;
  inset: 88px 0 0;
}

.detail-hero-shade {
  background: linear-gradient(
    90deg,
    rgba(252, 250, 246, 0.99),
    rgba(252, 250, 246, 0.93) 39%,
    rgba(252, 250, 246, 0.25) 65%,
    transparent 82%
  );
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 52vw);
  margin-left: clamp(28px, 7vw, 120px);
}

.detail-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.detail-title-rule {
  width: 160px;
  height: 1px;
  margin: 27px 0;
  background: var(--gold);
}

.detail-hero blockquote {
  max-width: 590px;
  margin: 0;
  font-size: 19px;
  font-style: italic;
  line-height: 1.65;
}

.detail-article {
  max-width: 1000px;
  margin: auto;
  padding: 78px 28px 95px;
}

.detail-article p {
  color: var(--muted);
}

.detail-intro {
  font-size: 16px;
}

.detail-lead {
  color: var(--ink) !important;
  font-size: 19px;
  font-weight: 500;
}

.detail-divider {
  position: relative;
  width: 320px;
  height: 1px;
  margin: 52px auto;
  background: var(--gold-light);
}

.detail-divider:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-copy h2 {
  margin: 58px 0 16px;
  color: var(--gold-dark);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.detail-copy h2:first-child {
  margin-top: 0;
}

.detail-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(55px, 8vw, 130px);
  align-items: center;
  padding: 85px clamp(28px, 7vw, 120px);
  background:
    linear-gradient(rgba(252, 250, 246, 0.2), rgba(252, 250, 246, 0.2)),
    url(../images/ozadje.webp) 50% / cover;
}

.detail-booking > div:first-child {
  max-width: 650px;
}

.detail-booking h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.detail-booking p:not(.eyebrow) {
  color: var(--muted);
}

.detail-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-price p {
  min-height: 130px;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.detail-price span {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-price strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.detail-price .button {
  grid-column: 1 / -1;
  min-height: 54px;
  margin: 22px 0 0;
}

.detail-notices {
  max-width: 1000px;
  margin: auto;
  padding: 75px 28px 95px;
}

.detail-notices details {
  border-top: 1px solid var(--border);
}

.detail-notices details:last-child {
  border-bottom: 1px solid var(--border);
}

.detail-notices summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  cursor: pointer;
  list-style: none;
}

.detail-notices summary::-webkit-details-marker {
  display: none;
}

.detail-notices summary:after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--gold);
  font-family: var(--sans);
}

.detail-notices details[open] summary:after {
  content: "−";
}

.detail-notices details > div {
  padding: 0 45px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .detail-hero {
    min-height: 760px;
    height: 100svh;
    padding-top: 76px;
    align-items: flex-end;
  }

  .detail-hero > img {
    inset: 76px 0 0;
    height: calc(100% - 76px);
    object-position: 62% center;
  }

  .detail-hero-shade {
    inset: 76px 0 0;
    background: linear-gradient(
      0deg,
      rgba(252, 250, 246, 0.99),
      rgba(252, 250, 246, 0.93) 48%,
      rgba(252, 250, 246, 0.08) 78%,
      transparent
    );
  }

  .detail-hero-content {
    width: auto;
    margin: 0 22px 52px 32px;
  }

  .detail-hero h1 {
    font-size: clamp(35px, 9.5vw, 45px);
    line-height: 1.05;
  }

  .detail-title-rule {
    margin: 19px 0;
  }

  .detail-hero blockquote {
    font-size: 14px;
    line-height: 1.55;
  }

  .detail-article {
    padding: 65px 22px 75px;
  }

  .detail-divider {
    width: 210px;
    margin: 42px auto;
  }

  .detail-copy h2 {
    margin-top: 44px;
    font-size: 23px;
  }

  .detail-booking {
    gap: 35px;
    padding: 65px 22px;
  }

  .detail-booking,
  .detail-price {
    grid-template-columns: 1fr;
  }

  .detail-price .button {
    grid-column: auto;
  }

  .detail-notices {
    padding: 65px 22px 75px;
  }

  .detail-notices details > div {
    padding-right: 0;
  }
}
.about-copy {
  max-width: 650px;
}
.about-copy blockquote {
  margin: 35px 0;
  padding: 14px 0 14px 28px;
  border-left: 1px solid var(--gold);
  font-size: 29px;
  font-style: italic;
  line-height: 1.3;
}
/* ==========================================================
   PRIHAJAJOČI DOGODKI
   ========================================================== */
.events {
  background: #f1e9dd;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.event-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ivory);
  transition: 0.35s;
}
.event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(76, 59, 36, 0.1);
}
.event-visual {
  position: relative;
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(169, 128, 56, 0.1), hsla(0, 0%, 100%, 0.18)),
    url(../images/ozadje.webp) 50% / cover;
}
.event-visual-solstice {
  background-position: 70%;
}
.event-type {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.event-visual time {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.event-visual time strong {
  display: block;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.event-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.event-body h3 {
  margin: 0 0 16px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.14;
}
.event-body p {
  margin-top: 0;
  font-size: 13px;
}
.event-body ul {
  margin: 4px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
}
.event-body > a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--border);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.program {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  background: #f1e9dd;
}
.program-facts {
  grid-template-columns: 1fr 1fr;
  align-self: center;
}
.program-facts div {
  min-height: 150px;
  padding: 25px;
  border-left: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.program-facts span {
  font-size: 12px;
  letter-spacing: 0.13em;
}
.program-facts strong {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
}
/* ==========================================================
   MNENJA STRANK
   ========================================================== */
.testimonials {
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-grid figure {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border);
  background: hsla(0, 0%, 100%, 0.55);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.testimonial-grid figure > b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1;
}
.testimonial-grid blockquote {
  flex: 1;
  margin: 10px 0 30px;
  font-family: var(--sans);
  font-size: 14px;
}
.testimonial-grid figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-grid figcaption strong {
  font-family: var(--serif);
  font-size: 19px;
}
.testimonial-grid figcaption span {
  color: var(--muted);
  font-size: 12px;
}
.disclaimer {
  max-width: 900px;
  margin: 35px auto 28px;
  text-align: center;
  font-size: 12px;
}
/* ==========================================================
   TVOJ NASLEDNJI KORAK – kompaktna postavitev
   ========================================================== */
.steps {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--cream);
}

.steps-heading {
  max-width: 480px;
}

.steps-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 3.6vw, 58px);
}

.steps-heading p:last-child {
  margin-bottom: 0;
}

.step-grid {
  gap: 0;
  border-top: 1px solid var(--gold-light);
}

.step-grid,
.step-grid article {
  display: grid;
  border-bottom: 1px solid var(--gold-light);
}

.step-grid article {
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
}

.step-grid article:last-child {
  border-bottom: 0;
}

.step-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.step-grid h3 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 500;
}

.step-grid p {
  margin: 0;
  font-size: 14px;
}

/* ==========================================================
   HITRE POVEZAVE – pripravljeno za morebitno poznejšo uporabo
   ========================================================== */
/* ==========================================================
   KONTAKT IN OBRAZEC
   ========================================================== */
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: center;
  background:
    linear-gradient(rgba(252, 250, 246, 0.24), rgba(252, 250, 246, 0.24)),
    url(../images/ozadje.webp) 50% / cover;
}
.contact-copy img {
  width: 210px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-top: 34px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(78, 58, 35, 0.1);
}
.form-card {
  background: hsla(0, 0%, 100%, 0.84);
  padding: clamp(28px, 4vw, 58px);
  box-shadow: 0 24px 70px rgba(95, 73, 45, 0.1);
}
.form-card h3 {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-card label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-card input:not([type="checkbox"]),
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--border);
  background: rgba(252, 250, 246, 0.72);
  color: var(--ink);
  padding: 13px 14px;
  text-transform: none;
  font-size: 16px;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(180, 132, 54, 0.22);
}
.consent {
  display: flex !important;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 12px !important;
}
.consent input {
  accent-color: var(--gold);
}
.consent a {
  text-decoration: underline;
}
.form-submit {
  width: 100%;
  justify-content: space-between;
}

/* Skrito varnostno polje kontaktnih obrazcev – obiskovalcem ni vidno. */
.form-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}
.direct-contact {
  gap: 22px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}
.direct-contact,
.success {
  display: flex;
  justify-content: center;
}
.success {
  min-height: 400px;
  flex-direction: column;
}
/* ==========================================================
   NOGA STRANI
   ========================================================== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  align-items: end;
  padding: 55px clamp(28px, 7vw, 120px);
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.site-footer img {
  width: 150px;
  height: 90px;
  object-fit: contain;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer a {
  font-size: 14px;
}
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-meta p {
  margin: 8px 0 0;
}
@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 150px 1fr 140px;
    padding-inline: 22px;
  }
  .main-nav {
    position: fixed;
    inset: 88px 0 auto;
    padding: 30px;
    background: var(--ivory);
    flex-direction: column;
    gap: 5px;
    transform: translateY(-130%);
    opacity: 0;
    transition: 0.35s;
  }
  .main-nav.is-open {
    transform: none;
    opacity: 1;
  }
  .menu-toggle {
    display: flex;
    justify-self: center;
    flex-direction: column;
    gap: 7px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
  }
  .hero-content {
    width: 53vw;
    margin-left: 5vw;
  }
  .service-visual {
    height: 240px;
  }
  .event-grid,
  .program,
  .steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr 52px;
    padding: 5px 18px;
  }
  .brand {
    width: 125px;
    height: 62px;
  }
  .brand img {
    width: 100%;
  }
  .menu-toggle {
    justify-self: end;
  }
  .header-cta {
    display: none;
  }
  .main-nav {
    inset: 76px 0 auto;
  }
  .hero {
    min-height: 800px;
    height: 100svh;
    padding-top: 76px;
    align-items: flex-end;
  }
  .hero-image {
    inset: 76px 0 0;
    height: calc(100% - 76px);
    object-position: 66% center;
  }
  .hero-shade {
    inset: 76px 0 0;
    background: linear-gradient(
      0deg,
      rgba(252, 250, 246, 0.98),
      rgba(252, 250, 246, 0.91) 37%,
      rgba(252, 250, 246, 0.12) 68%,
      transparent
    );
  }
  .hero-content {
    width: auto;
    margin: 0 22px 62px;
  }
  h1 {
    font-size: clamp(47px, 14vw, 65px);
  }
  .hero-copy {
    font-size: 14px;
    margin: 20px 0 24px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    flex: 1;
    padding-inline: 9px;
    font-size: 12px;
  }
  .section {
    padding: 85px 22px;
  }
  .section h2 {
    font-size: 43px;
  }
  .about,
  .contact,
  .recognition {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }
  .recognition-visual {
    min-height: 430px;
    margin: 20px -22px -85px 30px;
  }
  .event-card,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .event-visual {
    min-height: 230px;
  }
  .service-visual {
    height: 300px;
  }
  .about-image {
    margin: -85px -22px 20px;
    min-height: 0;
  }
  .about-image img {
    height: auto;
    max-height: none;
  }
  .program {
    padding-inline: 22px;
  }
  .program-facts div {
    min-height: 125px;
    padding: 18px;
  }
  .program-facts strong {
    font-size: 19px;
  }
  .step-grid article {
    grid-template-columns: 44px 1fr;
    padding: 22px 0;
  }
  .contact-copy img {
    width: 160px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .direct-contact {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }
  .site-footer img {
    margin: auto;
  }
  .footer-meta {
    align-items: center;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :after,
  :before {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   GALERIJA: KARTA PREOBRAZBE IN PREBUJENJA
   ========================================================== */
.card-gallery-section {
  padding: 100px clamp(24px, 7vw, 120px);
  background: var(--ivory);
}

.card-gallery-heading {
  width: min(720px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.card-gallery-heading h2 {
  margin: 10px 0 18px;
  font-family: Lora, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
}

.card-gallery-heading > p:last-child {
  margin-bottom: 0;
}

.card-gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1160px) 44px;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.card-gallery-viewport {
  overflow: hidden;
}

.card-gallery {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-gallery::-webkit-scrollbar {
  display: none;
}

.card-gallery-item {
  flex: 0 0 calc(33.33333% - 16px);
  margin: 0;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
}

.card-gallery-item a {
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.card-gallery-item img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.card-gallery-item a:hover img {
  transform: scale(1.025);
}

.card-gallery-item figcaption {
  padding: 18px 20px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.card-gallery-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-dark);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.card-gallery-arrow:hover {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 760px) {
  .card-gallery-section {
    padding: 68px 20px;
  }

  .card-gallery-heading {
    margin-bottom: 32px;
  }

  .card-gallery-slider {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .card-gallery {
    gap: 14px;
  }

  .card-gallery-item {
    flex-basis: 100%;
  }

  .card-gallery-item img {
    height: 360px;
  }

  .card-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ==========================================================
   DODATNE NASTAVITVE POTRJENE STRUKTURE
   ========================================================== */
.hero-content {
  width: min(660px, 48vw);
}
h1 {
  max-width: 700px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.approach {
  background:
    linear-gradient(rgba(252, 250, 246, 0.26), rgba(252, 250, 246, 0.26)),
    url(../images/ozadje.webp) 50% / cover;
  text-align: center;
  border-top: 1px solid #dfd1bf;
  border-bottom: 1px solid #dfd1bf;
}
.approach-inner {
  max-width: 1120px;
  margin: auto;
}
.approach blockquote {
  max-width: 850px;
  margin: 0 auto 24px;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.approach-copy {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
}
.audience-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}
.audience-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.audience-list li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}
.footer-meta span {
  margin: 3px 0;
}
@media (max-width: 760px) {
  h1 {
    font-size: clamp(43px, 5vw, 58px);
  }
  .site-header {
    height: 76px;
    grid-template-columns: 52px 1fr 52px;
    padding: 6px 16px;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 92px;
    height: 58px;
    margin: 0;
    padding: 5px 0;
  }

  .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
  }
  .hero-content {
    margin: 0 18px 102px 32px;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.02em;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.65;
  }
  .hero-actions {
    width: 100%;
    gap: 8px;
  }

  .hero-actions .button {
    flex: 1;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .recognition-visual {
    width: auto;
    min-height: 430px;
    margin: 25px -22px -85px;
  }

  .recognition-visual p {
    transform: translateX(-80px);
  }
}
@media (max-width: 760px) {
  /* HEADER */

  /* Logo na sredini */

  /* Večji burger meni */

  /* HERO BESEDILO */

  /* Širši in bolj ploščati gumbi */

  /* SLIKA Morda si tukaj čez celotno širino */
}
/* ================================================================
   DEVETMESEČNI PROGRAM – PRODAJNA PODSTRAN
   ================================================================ */
.program-page {
  overflow: hidden;
  background: #fcfaf6;
}

.program-hero {
  position: relative;
  min-height: 780px;
  padding-top: 92px;
  display: flex;
  align-items: center;
}

.program-hero-image,
.program-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.program-hero-image {
  object-fit: cover;
  object-position: 30% center;
}

.program-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(252, 250, 246, 0.98),
    rgba(252, 250, 246, 0.94) 37%,
    rgba(252, 250, 246, 0.54) 56%,
    rgba(252, 250, 246, 0.08) 78%
  );
}

.program-hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 50vw);
  margin-left: max(44px, 50vw - 580px);
}

.program-hero h1 {
  max-width: 720px;
  margin: 16px 0 24px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.02;
}

.program-hero-lead {
  max-width: 610px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.program-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.program-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1180px, 100% - 88px);
  margin: -42px auto 0;
  border: 1px solid rgba(177, 132, 61, 0.2);
  background: hsla(0, 0%, 100%, 0.96);
  box-shadow: 0 22px 60px rgba(48, 37, 22, 0.1);
}

.program-facts div {
  padding: 26px 22px;
  border-right: 1px solid rgba(177, 132, 61, 0.18);
}

.program-facts div:last-child {
  border-right: 0;
}

.program-facts span,
.program-facts strong {
  display: block;
}

.program-facts span {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-facts strong {
  font-family: Lora, serif;
  font-size: 17px;
  line-height: 1.4;
}

.program-audience,
.program-certificate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  width: min(1180px, 100% - 88px);
  margin: 0 auto;
  padding-inline: 0;
}

.program-audience-copy > p,
.program-certificate p,
.program-method > div:first-child p {
  text-align: left;
}

.program-audience {
  padding-left: 0;
  background: #f4eee4;
}

.program-audience-copy {
  max-width: 590px;
  padding-right: max(44px, 50vw - 580px);
}

.program-check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.program-check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.65;
  text-align: left;
}

.program-check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
}

.program-note {
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: hsla(0, 0%, 100%, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.program-value {
  background: #fff;
}

.program-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, 100%);
  margin: 54px auto 0;
  background: rgba(177, 132, 61, 0.2);
}

.program-value-grid article {
  min-height: 300px;
  padding: 40px 34px;
  background: #fcfaf6;
}

.program-value-grid article > span {
  color: var(--gold-dark);
  font-family: Lora, serif;
  font-size: 28px;
}

.program-value-grid h3 {
  margin: 30px 0 14px;
  font-size: 25px;
}

.program-value-grid p {
  text-align: left;
}

.program-curriculum {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(48px, 8vw, 110px);
  width: min(1160px, 100% - 88px);
}

.program-curriculum .section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.program-curriculum .section-heading > p {
  text-align: left;
}

.program-accordion {
  border-top: 1px solid rgba(177, 132, 61, 0.3);
}

.program-accordion details {
  border-bottom: 1px solid rgba(177, 132, 61, 0.3);
}

.program-accordion summary {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 15px;
  padding: 24px 4px;
  cursor: pointer;
  font-family: Lora, serif;
  font-size: clamp(18px, 2vw, 23px);
  list-style: none;
}

.program-accordion summary::-webkit-details-marker {
  display: none;
}

.program-accordion summary:after {
  content: "+";
  color: var(--gold-dark);
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}

.program-accordion details[open] summary:after {
  content: "−";
}

.program-accordion summary span {
  color: var(--gold-dark);
  font-size: 14px;
}

.program-accordion details > div {
  padding: 0 42px 26px 63px;
}

.program-accordion details > div p {
  margin: 0;
  line-height: 1.75;
  text-align: left;
}

.program-method {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(550px, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
  background: #18211f;
  color: #fff;
}

.program-method > div:first-child {
  align-self: center;
}

.program-method .eyebrow {
  color: #d7b374;
}

.program-method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.18);
}

.program-method-steps article {
  padding: 40px 28px;
  background: #1e2926;
}

.program-method-steps strong {
  color: #d7b374;
  font-family: Lora, serif;
  font-size: 28px;
}

.program-method-steps h3 {
  margin: 44px 0 14px;
  color: #fff;
  font-size: 26px;
}

.program-method-steps p {
  color: hsla(0, 0%, 100%, 0.78);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.program-facilitators {
  background: #fff;
}

.facilitator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  width: min(1100px, 100%);
  margin: 54px auto 0;
}

.facilitator-grid article {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(240px, 1.28fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(177, 132, 61, 0.2);
  background: #fcfaf6;
}

.facilitator-grid img {
  height: 100%;
  min-height: 560px;
}

.facilitator-grid article:first-child img {
  object-position: center;
}

.facilitator-grid article > div {
  padding: 36px 32px;
}

.facilitator-grid h3 {
  margin: 12px 0 22px;
  font-size: 28px;
}

.facilitator-grid p {
  font-size: 14px;
  line-height: 1.72;
  text-align: left;
}

.program-certificate img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 66% center;
}

.program-investment {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  background: #f4eee4;
}

.program-included {
  max-width: 590px;
  justify-self: end;
}

.program-price-card {
  max-width: 560px;
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(177, 132, 61, 0.35);
  background: #fff;
  box-shadow: 0 24px 70px rgba(60, 43, 21, 0.09);
}

.program-price {
  margin: 12px 0 2px;
  color: var(--gold-dark);
  font-family: Lora, serif;
  font-size: clamp(58px, 7vw, 86px);
  line-height: 1;
}

.program-price-date {
  margin-bottom: 28px;
  font-size: 14px;
  text-align: left;
}

.program-payment-note {
  font-size: 12px;
  line-height: 1.55;
  margin: 16px 0 24px;
  color: #655f56;
  text-align: left;
}

.program-regular-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.program-regular-price strong {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.program-saving {
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-weight: 600;
  text-align: left;
}

.program-price-card .button {
  width: 100%;
}

.program-price-card small {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.program-faq {
  width: min(920px, 100% - 88px);
  margin: 0 auto;
  padding-inline: 0;
}

.faq-accordion {
  margin-top: 52px;
}

.faq-accordion summary {
  grid-template-columns: 1fr 24px;
}

.faq-accordion details > div {
  padding-left: 4px;
}

.program-disclaimer {
  width: min(920px, 100% - 88px);
  margin: 0 auto;
  padding: 34px 0 60px;
}

.program-disclaimer p {
  margin: 0;
  color: #746d62;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1050px) {
  .program-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-facts div:nth-child(3) {
    border-right: 0;
  }

  .program-facts div:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(177, 132, 61, 0.18);
  }

  .program-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .program-hero {
    min-height: 820px;
    padding-top: 76px;
    align-items: flex-end;
  }

  .program-hero-image {
    object-position: 59% top;
  }

  .program-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(252, 250, 246, 0.99),
      rgba(252, 250, 246, 0.94) 44%,
      rgba(252, 250, 246, 0.12) 77%
    );
  }

  .program-hero-content {
    width: auto;
    margin: 0 22px 45px;
  }

  .program-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .program-hero-lead {
    font-size: 16px;
  }

  .program-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-facts {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 40px);
    margin-top: 20px;
  }

  .program-facts div,
  .program-facts div:nth-child(3) {
    border-right: 1px solid rgba(177, 132, 61, 0.18);
    border-bottom: 1px solid rgba(177, 132, 61, 0.18);
  }

  .program-facts div:nth-child(2n) {
    border-right: 0;
  }

  .program-facts div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .program-audience,
  .program-certificate,
  .program-curriculum,
  .program-investment,
  .program-method {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 38px;
  }

  .program-certificate {
    width: calc(100% - 44px);
  }

  .program-certificate img {
    height: 430px;
  }

  .program-audience-copy {
    padding: 0 22px 70px;
  }

  .program-method-steps,
  .program-value-grid {
    grid-template-columns: 1fr;
  }

  .program-value-grid article {
    min-height: 0;
  }

  .program-curriculum {
    padding-inline: 22px;
  }

  .program-curriculum .section-heading {
    position: static;
  }

  .program-accordion summary {
    grid-template-columns: 34px 1fr 22px;
    font-size: 17px;
  }

  .program-accordion details > div {
    padding: 0 4px 24px 49px;
  }

  .faq-accordion summary {
    grid-template-columns: 1fr 22px;
  }

  .program-method {
    padding-inline: 22px;
  }

  .facilitator-grid article {
    grid-template-columns: 1fr;
  }

  .facilitator-grid img {
    min-height: 0;
    height: 430px;
  }

  .program-investment {
    padding-inline: 22px;
  }

  .program-included {
    justify-self: stretch;
  }

  .program-disclaimer,
  .program-faq {
    width: calc(100% - 44px);
  }
}

/* ================================================================
   POENOTENI VELIKI NASLOVI
   Enaka velikost kot veliki sekcijski naslovi na domači strani.
   ================================================================ */
.card-gallery-heading h2,
.contact-page-form h2,
.detail-booking h2,
.detail-hero h1,
.meditation-heading h2,
.program-page h1,
.program-page h2,
.simple-page h1,
.simple-page-intro h1,
.steps-heading h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

/* ================================================================
   DEVETMESEČNI PROGRAM – KONČNE PRILAGODITVE
   ================================================================ */
.program-hero {
  min-height: 100svh;
  height: 100svh;
  padding-top: 88px;
}

.program-hero-image {
  object-position: center center;
}

.program-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(252, 250, 246, 0.94),
    rgba(252, 250, 246, 0.7) 25%,
    rgba(252, 250, 246, 0.18) 45%,
    rgba(252, 250, 246, 0.02) 66%
  );
}

.program-hero-content {
  width: min(510px, 36vw);
}

.program-hero h1 {
  margin: 14px 0 22px;
}

.program-facts {
  grid-template-columns: repeat(6, 1fr);
}

.program-narrative {
  width: min(900px, 100% - 88px);
  margin: 0 auto;
  padding-inline: 0;
}

.program-narrative p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.program-audience {
  display: block;
  width: 100%;
  padding: 90px max(44px, 50vw - 490px);
}

.program-audience-copy {
  max-width: 980px;
  padding: 0;
}

.program-curriculum {
  display: block;
  width: min(980px, 100% - 88px);
  margin: 0 auto;
  padding-inline: 0;
}

.program-curriculum .section-heading {
  position: static;
  max-width: 820px;
  margin-bottom: 42px;
}

.program-method {
  grid-template-columns: minmax(280px, 0.72fr) minmax(550px, 1.28fr);
  background:
    linear-gradient(rgba(246, 240, 231, 0.84), rgba(246, 240, 231, 0.84)),
    url(../images/ozadje.webp) 50% / cover;
  color: var(--ink);
}

.program-method .eyebrow {
  color: var(--gold-dark) !important;
}

.program-method-steps {
  background: rgba(169, 128, 56, 0.2);
}

.program-method-steps article {
  background: rgba(252, 250, 246, 0.74);
}

.program-method-steps h3 {
  color: var(--ink);
}

.program-method-steps p {
  color: var(--muted);
}

.facilitator-grid {
  gap: 42px;
}

.facilitator-grid article {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.facilitator-grid img {
  width: 100%;
  height: 440px;
  min-height: 0;
  object-fit: cover;
}

.facilitator-grid article > div {
  flex: 1;
}

.program-certificate {
  display: block;
  width: min(900px, 100% - 88px);
  margin: 0 auto;
  padding-inline: 0;
}

.program-application {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(470px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  background:
    linear-gradient(rgba(246, 240, 231, 0.7), rgba(246, 240, 231, 0.7)),
    url(../images/ozadje.webp) 50% / cover;
}

.program-application-intro {
  max-width: 560px;
  justify-self: end;
}

@media (max-width: 760px) {
  .card-gallery-heading h2,
  .contact-page-form h2,
  .detail-booking h2,
  .detail-hero h1,
  .meditation-heading h2,
  .program-page h1,
  .program-page h2,
  .simple-page h1,
  .simple-page-intro h1,
  .steps-heading h2 {
    font-size: 43px;
  }

  .program-hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 76px;
  }

  .program-hero-image {
    object-position: 53% center;
  }

  .program-hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(252, 250, 246, 0.97),
      rgba(252, 250, 246, 0.78) 38%,
      rgba(252, 250, 246, 0.08) 66%,
      transparent 83%
    );
  }

  .program-hero-content {
    width: auto;
    margin: 0 22px 34px;
  }

  .program-facts {
    grid-template-columns: 1fr 1fr;
  }

  .program-facts div:last-child {
    grid-column: auto;
  }

  .program-certificate,
  .program-curriculum,
  .program-narrative {
    width: calc(100% - 44px);
  }

  .program-audience {
    padding: 70px 22px;
  }

  .program-application,
  .program-method {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  .program-application-intro {
    justify-self: stretch;
  }

  .facilitator-grid img {
    height: 400px;
  }
}

/* AKTUALNI DOGODKI – STATUS IN PRIJAVA */
.event-status-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  min-height: 250px;
  padding: clamp(28px, 4vw, 52px);
  background: hsla(0, 0%, 100%, 0.7);
  border: 1px solid rgba(176, 128, 50, 0.25);
  text-align: center;
}

.event-status-card p {
  margin: 0;
}

.event-status-card span,
.event-status-card strong {
  display: block;
}

.event-status-card span {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-status-card strong {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
}

.event-status-card .button {
  align-self: center;
}

@media (max-width: 760px) {
  .event-status-card {
    min-height: 0;
  }
  .program-page .program-hero .program-hero-image {
    left: 0;
    width: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 88% bottom !important;
    transform: none;
  }
}

/* ================================================================
   KONČNE MOBILNE PRILAGODITVE
   Skupna pravila za domačo stran, podstrani, gumbe in sliderje.
   ================================================================ */
@media (max-width: 760px) {
  /* Prepreči vodoravni izhod vsebine iz zaslona. */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  main > *,
  section,
  article,
  figure,
  form,
  .section,
  .detail-article,
  .detail-booking,
  .detail-notices,
  .simple-page-inner,
  .program-page main > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  p,
  li,
  blockquote,
  h1,
  h2,
  h3 {
    overflow-wrap: break-word;
  }

  /* Besedilo v gumbih vedno ostane v eni vrstici. */
  .button,
  button.button,
  a.button {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    padding: 10px 15px;
    font-size: 12px;
    line-height: 1.15;
    white-space: nowrap;
  }

  /* Domači hero se konča znotraj prvega vidnega zaslona. */
  .hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding-top: 76px;
    align-items: flex-end;
  }

  .hero-content {
    width: calc(100% - 40px);
    max-width: 520px;
    margin: 0 20px 24px;
  }

  .hero h1 {
    font-size: clamp(37px, 10.8vw, 48px);
    line-height: 1.04;
  }

  .hero-copy {
    margin: 15px 0 18px;
    font-size: 13px;
    line-height: 1.58;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero-actions .button {
    flex: 0 1 auto;
    padding-inline: 16px;
    font-size: 12px;
  }

  /* Vsi klasični hero bloki podstrani. */
  .detail-hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding-top: 76px;
    align-items: flex-end;
  }

  .detail-hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 22px 30px;
  }

  .detail-hero h1 {
    font-size: clamp(34px, 9.7vw, 43px);
  }

  .detail-hero blockquote {
    max-width: 100%;
  }

  /* Posebni hero devetmesečnega programa. */
  .program-page .program-hero {
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding-top: 76px;
    align-items: flex-end;
  }

  .program-page .program-hero .program-hero-image {
    object-position: 72% center !important;
  }

  .program-page .program-hero-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 22px 30px;
  }

  .program-page .program-hero h1 {
    font-size: clamp(35px, 9.8vw, 45px);
  }

  .program-page .program-hero-lead {
    font-size: 14px;
    line-height: 1.55;
  }

  .program-page .program-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
  }

  /* Mobilni sliderji: majhni puščici zgoraj, vsebina spodaj. */
  .testimonial-slider,
  .card-gallery-slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px 30px;
    grid-template-rows: auto auto;
    width: calc(100% - 40px);
    max-width: none;
    gap: 8px;
    margin-inline: auto;
  }

  .testimonial-slider-viewport,
  .card-gallery-viewport {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    height: auto !important;
    overflow: hidden;
  }

  .testimonial-slider-arrow,
  .card-gallery-arrow {
    position: static;
    grid-row: 1;
    width: 30px;
    height: 30px;
    min-height: 30px;
    padding: 0;
    font-size: 15px;
  }

  .testimonial-slider-prev,
  .card-gallery-arrow-prev {
    grid-column: 2;
  }

  .testimonial-slider-next,
  .card-gallery-arrow-next {
    grid-column: 3;
  }

  .testimonial-slider-track,
  .card-gallery {
    width: 100%;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 22px 18px;
  }

  .testimonial-slide blockquote,
  .service-testimonial-slider .service-testimonial blockquote {
    font-size: 14px;
    line-height: 1.65;
  }

  .card-gallery-item {
    flex: 0 0 min(82vw, 330px);
  }

  /* Preproste strani in video galerija. */
  .simple-page-inner {
    width: calc(100% - 40px);
  }

  .meditation-grid {
    width: 100%;
    margin-inline: 0;
    transform: none;
  }
}

/* Zelo nizki telefoni potrebujejo še nekoliko bolj zgoščen prvi zaslon. */
@media (max-width: 760px) and (max-height: 740px) {
  .hero h1,
  .detail-hero h1,
  .program-page .program-hero h1 {
    font-size: 34px;
  }

  .hero-content,
  .detail-hero-content,
  .program-page .program-hero-content {
    padding-bottom: 18px;
  }

  .hero-copy,
  .program-page .program-hero-lead {
    font-size: 12px;
  }
}


/* ==========================================================
   Dostopnost in berljivost
   ========================================================== */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.contact-location {
  margin: 22px 0;
  color: var(--ink);
}

.simple-page-subtitle {
  margin: 18px 0 12px;
  font-size: clamp(24px, 3vw, 38px);
}

/* Diskreten datum aktualnosti vsebine. */
.page-updated {
  margin: 12px 0 18px;
  color: var(--gold-dark) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.program-hero .page-updated,
.detail-hero .page-updated {
  color: inherit !important;
  opacity: 0.78;
}

@media (min-width: 761px) {
  .form-card input:not([type="checkbox"]),
  .form-card select,
  .form-card textarea {
    font-size: 14px;
  }
}
