/* =====================================================
   Maja Kresnik – Holistična podpora vitalnosti
   Shared stylesheet — CGP brand guidelines applied
   Fonts: Playfair Display + Roboto | Colors: #638154 palette
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');

/* ── Design tokens – CGP ───────────────────────────── */
:root {
  /* Brand greens */
  --green: #638154;
  --green-dark: #5c6359;
  --green-light: #eef2ea;
  /* very light sage for subtle bg */

  /* Warm palette (primarne barve) */
  --beige: #e6d2ba;
  /* warm beige */
  --beige-mid: #dad1c8;
  /* grey-beige */
  --cream: #faead3;
  /* lightest ivory/cream */
  --ivory: #f7f1e9;
  /* warm white */

  /* Champagne gold accent */
  --gold: #c9a870;

  /* Typography colours */
  --text: #0f0f0f;
  /* near-black (CGP) */
  --text-dark: #383838;
  --text-muted: #595959;
  --text-sage: #899084;

  /* Structure */
  --border: #ddd5c8;
  /* warm beige border */
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(99, 129, 84, .05);
  --shadow-md: 0 8px 32px rgba(99, 129, 84, .08);
  --shadow-lg: 0 16px 48px rgba(99, 129, 84, .12);
}

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

body {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.78;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography – CGP hierarchy ───────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

/* H1 → Playfair Display Black */
h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.01em;
}

/* H2 → Playfair Display Bold */
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
}

/* H3 → Playfair Display regular/bold */
h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
}

h4,
h5 {
  font-family: 'Playfair Display', Georgia, serif;
}

h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

p strong {
  font-weight: 500;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
}

@media (max-width: 767px) {
  section {
    padding: 3.5rem 0;
  }
}

/* ── Backgrounds ───────────────────────────────────── */
.bg-sage-light {
  background-color: var(--green-light);
}

.bg-blush {
  background-color: var(--cream);
}

/* ivory/cream tone */
.bg-cream {
  background-color: var(--ivory);
}

.bg-beige {
  background-color: var(--beige);
}

.bg-sage {
  background-color: var(--green);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-size: .97rem;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 52px;
}

/* Primary – brand green filled */
.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* Secondary – green outline */
.btn-outline-sage {
  background-color: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn-outline-sage:hover,
.btn-outline-sage:focus {
  background-color: var(--green);
  color: var(--white);
}

/* Warm/blush ghost */
.btn-blush {
  background-color: var(--cream);
  border: 2px solid transparent;
  color: var(--green-dark);
}

.btn-blush:hover {
  background-color: var(--beige);
  color: var(--green-dark);
}

/* Champagne gold – lead magnet */
.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: #a8895a;
  border-color: #a8895a;
  color: var(--white);
}

/* White – for dark/green backgrounds */
.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: none;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-lg {
  padding: .9rem 2.4rem;
  font-size: 1.02rem;
  min-height: 58px;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  z-index: 1030;
  transition: all .3s ease;
}

.navbar-brand img {
  height: 52px;
  width: auto;
  transition: transform .3s;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: .93rem;
  letter-spacing: .03em;
  color: var(--text) !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: color .2s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .28s;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green) !important;
}

.navbar-toggler {
  border: none;
  padding: .5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-sm {
  min-height: 55vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Warm ivory gradient – CGP brand warmth */
  background: linear-gradient(135deg,
      rgba(247, 241, 233, .90) 0%,
      rgba(250, 234, 211, .76) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero .lead {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-dark);
  max-width: 600px;
  line-height: 1.72;
}

/* ── Section labels (Roboto Light Small Caps) ──────── */
.section-label {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: .73rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

/* ── Cards ─────────────────────────────────────────── */
.card-mk {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-mk:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-mk .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-mk h3,
.card-mk .h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.card-mk .card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
  padding-top: 1rem;
}

.card-mk .card-price small {
  font-family: 'Roboto', sans-serif;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 300;
}

.card-mk .card-footer-mk {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Service sections */
.service-section {
  padding: 4.5rem 0;
}

.service-section+.service-section {
  border-top: 1px solid var(--border);
}

/* ── Testimonials ──────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 .85rem;
  line-height: 1.65;
}

.testimonial cite {
  font-family: 'Roboto', sans-serif;
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text-sage);
  font-style: normal;
  text-transform: uppercase;
}

/* Featured testimonial – Milena Kerš style, poveden izpoved */
.testimonial-featured {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 2.25rem 2.5rem;
}

.testimonial-featured blockquote {
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ── Pull quote (Playfair italic) ──────────────────── */
.pull-quote {
  position: relative;
  padding: 2.5rem 2rem 2.5rem 3.5rem;
  border-left: 4px solid var(--gold);
  background: var(--ivory);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: .5rem;
  left: .7rem;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  opacity: .5;
}

.pull-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

/* ── Diagnoses / badge list ────────────────────────── */
.diagnoses-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 1.75rem;
}

.diagnosis-pill {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--beige);
  color: var(--green-dark);
  font-family: 'Roboto', sans-serif;
  font-size: .83rem;
  font-weight: 400;
  padding: .3rem .9rem;
  border-radius: 50px;
}

/* ── Values grid ───────────────────────────────────── */
.value-item {
  padding: 1.5rem;
}

.value-item .value-icon {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: .75rem;
}

.value-item h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.value-item p {
  font-size: .92rem;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

/* ── How-I-work list ───────────────────────────────── */
.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.how-list li:last-child {
  border-bottom: none;
}

.how-list .how-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.05rem;
}

.how-list h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.how-list p {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0;
}

/* ── Pricing table ─────────────────────────────────── */
.price-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:nth-child(even) {
  background: var(--ivory);
}

.price-row .price-name {
  flex: 1;
}

.price-row .price-name strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  display: block;
  margin-bottom: .2rem;
}

.price-row .price-name span {
  font-size: .87rem;
  font-weight: 300;
  color: var(--text-muted);
}

.price-row .price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* ── "Začni tukaj" badge ───────────────────────────── */
.badge-start {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--green);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── Panic/Reset card mockups (on-brand) ───────────── */
.practical-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.practical-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: .1;
  background: currentColor;
}

/* Panic card – warm terracotta-beige */
.panic-card {
  background: linear-gradient(135deg, #fdf5ee 0%, #f5e4d0 100%);
  border: 1px solid #e8c8a8;
  color: #8b4513;
}

/* Reset card – sage green */
.reset-card {
  background: linear-gradient(135deg, #eef2ea 0%, #dce8d4 100%);
  border: 1px solid #a8c09a;
  color: #3d6b3a;
}

.practical-card .card-tag {
  font-family: 'Roboto', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: .4rem;
}

.practical-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.practical-card p {
  font-size: .88rem;
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* ── Gift voucher mockup ───────────────────────────── */
.voucher-mockup {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.voucher-mockup::before,
.voucher-mockup::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  opacity: .45;
}

.voucher-mockup::before {
  left: 1rem;
}

.voucher-mockup::after {
  right: 1rem;
}

.voucher-mockup .voucher-label {
  font-family: 'Roboto', sans-serif;
  font-size: .73rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.voucher-mockup h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.voucher-mockup p {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── FAQ / Accordion ───────────────────────────────── */
.accordion-mk .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

.accordion-mk .accordion-button {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}

.accordion-mk .accordion-button:not(.collapsed) {
  color: var(--green);
  background: var(--green-light);
  box-shadow: none;
}

.accordion-mk .accordion-button::after {
  filter: invert(38%) sepia(20%) saturate(600%) hue-rotate(80deg) brightness(90%);
}

.accordion-mk .accordion-body {
  font-family: 'Roboto', sans-serif;
  font-size: .94rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA banner ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream) 100%);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

/* ── Calendly block ────────────────────────────────── */
.calendly-block {
  background: var(--green);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  color: var(--white);
}

.calendly-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-weight: 700;
}

.calendly-block p {
  color: rgba(255, 255, 255, .82);
  font-weight: 300;
}

/* ── Contact form ──────────────────────────────────── */
.form-mk .form-control,
.form-mk .form-select {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
}

.form-mk .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(99, 129, 84, .12);
}

.form-mk label {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: .35rem;
  color: var(--text-dark);
}

/* ── Map embed ─────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ── Lead magnet ───────────────────────────────────── */
.lead-magnet {
  background: linear-gradient(135deg, var(--ivory) 0%, #f0e8d8 100%);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}

/* ── Photo helpers ─────────────────────────────────── */
.photo-rounded {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}

.photo-hero-portrait {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

/* ── Closing phrase (O Meni) ───────────────────────── */
.closing-phrase {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
  text-align: center;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  padding: 1.75rem 0;
  margin: 2.5rem 0;
  line-height: 1.4;
}

/* ── Footer ────────────────────────────────────────── */
footer {
  background: #1c2419;
  /* very dark green-black */
  color: #b8c4b0;
  padding: 4rem 0 2rem;
}

footer h6 {
  font-family: 'Roboto', sans-serif;
  color: var(--white);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer p,
footer li {
  font-family: 'Roboto', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #b8c4b0;
}

footer a {
  color: #b8c4b0;
}

footer a:hover {
  color: var(--white);
  text-decoration: none;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: .45rem;
}

.footer-disclaimer {
  font-size: .78rem;
  color: #7a9070;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-weight: 300;
}

footer .footer-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
  margin-bottom: .75rem;
}

/* ── Cookie consent banner ─────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1c2419;
  color: #d8e0d4;
  padding: 1.1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  font-size: .87rem;
  font-weight: 300;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .18);
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #d8e0d4;
}

#cookie-banner a {
  color: #9dc494;
}

.btn-cookie-accept {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .5rem 1.5rem;
  font-weight: 500;
  font-size: .87rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}

.btn-cookie-dismiss {
  background: transparent;
  color: #b8c4b0;
  border: 1px solid #3d5438;
  border-radius: 50px;
  padding: .5rem 1.2rem;
  font-weight: 300;
  font-size: .87rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Roboto', sans-serif;
}

/* ── Utilities ─────────────────────────────────────── */
.text-sage {
  color: var(--green) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.text-muted-mk {
  color: var(--text-muted) !important;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.border-sage {
  border-color: var(--green) !important;
}

.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 767px) {
  .btn {
    min-height: 56px;
    width: 100%;
    justify-content: center;
  }

  .btn+.btn {
    margin-top: .75rem;
  }

  .hero {
    min-height: 75vh;
  }

  .cta-banner {
    padding: 2.5rem 1.25rem;
  }

  .calendly-block {
    padding: 2.25rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

/* ── Dev / WIP pasica ──────────────────────────────── */
/* TODO: Odstrani, ko bo stran uradno objavljena z registrirano dejavnostjo */
.dev-banner {
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  padding: .45rem 1rem;
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}

.dev-banner strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Blog / Članki ─────────────────────────────────── */

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}

.article-card-img {
  height: 220px;
  overflow: hidden;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.article-card:hover .article-card-img img {
  transform: scale(1.04);
}

.article-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-family: 'Roboto', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.article-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
  line-height: 1.3;
}

.article-card p {
  font-size: .92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}

.article-card-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.article-meta-sm {
  font-size: .8rem;
  color: var(--text-sage);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

/* Article page header */
.article-header {
  background: var(--ivory);
  padding: 3rem 0 0;
  border-bottom: 1px solid var(--border);
}

.article-header-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.article-header-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Breadcrumb */
.breadcrumb-mk {
  font-family: 'Roboto', sans-serif;
  font-size: .84rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.breadcrumb-mk a {
  color: var(--green);
  text-decoration: none;
}

.breadcrumb-mk a:hover {
  text-decoration: underline;
}

/* Article prose */
.article-prose {
  max-width: 740px;
  margin: 0 auto;
}

.article-prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: .9rem;
  color: var(--green-dark);
}

.article-prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: .6rem;
}

.article-prose p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.article-prose ul,
.article-prose ol {
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-prose li {
  margin-bottom: .4rem;
}

.article-prose strong {
  font-weight: 500;
  color: var(--text);
}

.article-prose a {
  color: var(--green);
  text-underline-offset: 2px;
}

.article-prose a:hover {
  color: var(--green-dark);
}

/* Series navigation box */
.series-nav {
  background: var(--green-light);
  border: 1px solid rgba(99, 129, 84, .2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.series-nav .series-label {
  font-family: 'Roboto', sans-serif;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}

.series-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .9rem;
}

.series-nav li {
  padding: .2rem 0;
  color: var(--text-muted);
}

.series-nav li.active {
  color: var(--text);
  font-weight: 500;
}

.series-nav li.active::before {
  content: '→ ';
  color: var(--green);
}

/* Disclaimer box */
.disclaimer-box {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 3px solid var(--beige);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.5rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .article-header-img img {
    height: 240px;
  }
}