/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  --crema:        #F4EAD0;
  --crema-light:  #FAF5E6;
  --crema-dark:   #E7D9B6;
  --paper:        #F8EFD6;
  --rosso:        #C23127;
  --rosso-dark:   #8E1F19;
  --verde:        #3E5C4A;
  --verde-dark:   #243A2E;
  --ottone:       #B8934A;
  --ottone-light: #D4B27A;
  --espresso:     #1F1510;
  --espresso-80:  rgba(31, 21, 16, 0.8);
  --espresso-60:  rgba(31, 21, 16, 0.6);
  --espresso-40:  rgba(31, 21, 16, 0.4);
  --espresso-15:  rgba(31, 21, 16, 0.15);
  --terracotta:   #C97B5F;

  --font-display: var(--font-bodoni-moda, 'Bodoni Moda'), 'Times New Roman', serif;
  --font-body:    var(--font-dm-sans, 'DM Sans'), -apple-system, system-ui, sans-serif;
  --font-hand:    var(--font-caveat, 'Caveat'), cursive;

  --container:    1360px;
  --gutter:       clamp(20px, 4vw, 72px);
  --section-y:    clamp(72px, 10vw, 140px);

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Design guardrail:
   Bodoni/display italics and handwritten styles are only for headings, short
   accents, names, or tiny labels. Never use them for long sentences, body
   paragraphs, testimonial copy, card descriptions, or instructional text. */

/* ---------- BASE ---------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--espresso);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, #FBF3DA 0%, var(--crema) 55%, #EFE3C4 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--rosso); color: var(--crema-light); }

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

/* ---------- TYPOGRAPHY PRIMITIVES ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 16;
}
.display em {
  font-style: italic;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.eyebrow-left::after { display: none; }

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--rosso);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
  position: relative;
}
.btn-primary {
  background: var(--rosso);
  color: var(--crema-light);
  border-color: var(--rosso);
}
.btn-primary:hover {
  background: var(--rosso-dark);
  border-color: var(--rosso-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(142, 32, 24, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--crema-light);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--espresso);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--espresso);
  transition: all 0.3s var(--ease-out);
}
.btn-text:hover { color: var(--rosso); border-bottom-color: var(--rosso); gap: 16px; }

.arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow, .btn-text:hover .arrow { transform: translateX(6px); }

/* ---------- EDITION STRIP ---------- */
.edition {
  background: var(--espresso);
  color: var(--crema-light);
  padding: 10px 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 50;
}
.edition .edition-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
}
.edition-inner span { display: inline-flex; align-items: center; gap: 10px; }
.edition-inner .dot { width: 4px; height: 4px; background: var(--ottone); border-radius: 50%; display: inline-block; }
.edition-inner .hide-md { display: none; }
@media (min-width: 780px) { .edition-inner .hide-md { display: inline-flex; } }

.tricolor {
  height: 4px;
  display: flex;
  width: 100%;
}
.tricolor div { flex: 1; }
.tricolor .v { background: var(--verde); }
.tricolor .c { background: var(--crema); }
.tricolor .r { background: var(--rosso); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 10px 30px -20px rgba(31,21,16,0.25);
  background: rgba(244, 234, 208, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-left: clamp(16px, 3vw, 56px);
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  margin-bottom: -4px;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 14;
}
.brand-mark em { font-style: italic; color: var(--rosso); }
.brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--espresso-60);
  letter-spacing: 0.01em;
  display: none;
}
@media (min-width: 640px) { .brand-sub { display: inline; } }

.nav-links {
  display: none;
  gap: 28px;
  font-size: 13px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--rosso);
  transition: all 0.3s var(--ease-out);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--rosso); }
.nav-links a:hover::after { width: 100%; }
@media (min-width: 1180px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 1180px) { .nav-cta { display: inline-flex; } }
.nav-cta.btn { padding: 14px 24px; font-size: 12px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid var(--espresso);
}
@media (min-width: 1180px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 18px; height: 10px; }

.drawer {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  color: var(--crema-light);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--gutter);
  border-bottom: 1px solid rgba(244, 234, 208, 0.15);
}
.drawer-top .brand-mark { color: var(--crema-light); }
.drawer-top .brand-mark em { color: var(--ottone-light); }
.drawer-close {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 16px;
  border: 1px solid var(--crema-light);
}
.drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--gutter);
  gap: 12px;
}
.drawer-links a {
  font-family: var(--font-display);
  font-size: clamp(44px, 11vw, 80px);
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.drawer-links a:hover { color: var(--ottone-light); font-style: italic; }
.drawer-foot {
  padding: 28px var(--gutter) 44px;
  border-top: 1px solid rgba(244, 234, 208, 0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-foot .btn-primary { background: var(--rosso); border-color: var(--rosso); justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 var(--section-y);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; align-items: center; }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-meta .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rosso);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.hero-meta .rule { flex: 1; max-width: 120px; height: 1px; background: var(--espresso-40); }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 18;
  max-width: 11ch;
}
.hero h1 em {
  display: inline-block;
  margin-top: 0.08em;
}
.hero h1 em {
  font-style: italic;
  color: var(--rosso);
  display: inline-block;
  position: relative;
}

.hero-sub {
  max-width: 540px;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--espresso-80);
  margin-bottom: 44px;
}
.hero-sub .mark {
  background: linear-gradient(transparent 60%, rgba(184, 147, 74, 0.35) 60%);
  padding: 0 2px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-sig {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 40px;
  border-top: 1px solid var(--espresso-15);
  max-width: 620px;
}
.hero-sig-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--crema-dark);
  border: 1px solid var(--espresso-15);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--crema), 0 0 0 5px var(--espresso-15);
}
.hero-sig-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.08) saturate(1.02) contrast(1.02);
}
.hero-sig-text { font-size: 14px; color: var(--espresso-60); line-height: 1.55; }
.hero-sig-text strong {
  display: block;
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--rosso);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1;
}

/* Hero portrait */
.hero-portrait {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--espresso-40);
  pointer-events: none;
  z-index: 0;
}
.hero-portrait-frame {
  position: relative;
  z-index: 1;
  background: var(--crema-light);
  padding: 18px 18px 64px;
  box-shadow:
    0 2px 4px rgba(31, 21, 16, 0.08),
    0 24px 44px -24px rgba(31, 21, 16, 0.35);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease-out);
}
.hero-portrait:hover .hero-portrait-frame { transform: rotate(-0.4deg) translateY(-4px); }

.img-ph {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, var(--crema-dark), #DBC99E);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--espresso-15);
}

/* Real photo container (polaroid) */
.hero-portrait-photo {
  position: relative;
  border: 1px solid var(--espresso-15);
  overflow: hidden;
  background: var(--crema);
}
.hero-portrait-photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(31, 21, 16, 0.25);
  pointer-events: none;
  z-index: 2;
}
.hero-portrait-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(0.08) saturate(1.02) contrast(1.02);
}
/* Square variant for the o-meni portrait (polaroid with 1:1 photo) */
.hero-portrait-photo--square { aspect-ratio: 1 / 1; }
.hero-portrait-photo--square img { height: 100%; object-fit: cover; }
.img-ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--espresso-40);
  pointer-events: none;
}
.img-ph-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--espresso-60);
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.img-ph-label span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 8px;
}

.hero-portrait-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  padding: 0 24px;
  font-family: var(--font-hand);
  font-size: 24px;
  color: var(--espresso);
  text-align: center;
  z-index: 2;
}

.hero-stamp {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 118px;
  height: 118px;
  border: 1.5px solid var(--rosso);
  border-radius: 50%;
  background: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosso);
  transform: rotate(8deg);
  z-index: 3;
}
.hero-stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--rosso);
  border-radius: 50%;
}
.hero-stamp-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  text-align: center;
  line-height: 1.15;
  font-weight: 500;
}
.hero-stamp-text strong {
  display: block;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.hero-decor {
  position: absolute;
  font-family: var(--font-display);
  color: var(--espresso-40);
  display: none;
}
@media (min-width: 1200px) { .hero-decor { display: block; } }
.hero-decor-1 {
  bottom: 120px;
  left: -40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ---------- LESSICO MARQUEE ---------- */
.lessico {
  background: var(--verde);
  color: var(--crema-light);
  padding: clamp(32px, 3.5vw, 48px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(244, 234, 208, 0.12);
  border-bottom: 1px solid rgba(244, 234, 208, 0.12);
}
.lessico::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lessico::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  background: linear-gradient(90deg, var(--verde), transparent);
  pointer-events: none;
  z-index: 2;
}
.lessico-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 15%;
  background: linear-gradient(-90deg, var(--verde), transparent);
  pointer-events: none;
  z-index: 2;
}
.lessico-track {
  display: flex;
  width: max-content;
  animation: lessico-marquee 48s linear infinite;
  position: relative;
}
.lessico-group {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
  padding-right: clamp(32px, 4vw, 56px);
  flex-shrink: 0;
}
.lessico-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lessico-item em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--crema-light);
  font-variation-settings: "opsz" 14;
}
.lessico-item span {
  font-family: var(--font-body);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ottone-light);
  margin-top: 4px;
  font-weight: 500;
}
.lessico-sep {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--ottone);
  line-height: 1;
  flex-shrink: 0;
}
.lessico:hover .lessico-track { animation-play-state: paused; }
@keyframes lessico-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lessico-track { animation: none; }
}

/* ---------- SECTION FRAMING ---------- */
.section { padding: var(--section-y) 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: clamp(48px, 6vw, 88px);
  align-items: end;
}
@media (min-width: 860px) { .section-head { grid-template-columns: 1fr 1fr; } }
.section-head .lede { max-width: 520px; color: var(--espresso-80); font-size: 17px; line-height: 1.7; }
.section-head h2 {
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.chapter {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--espresso-60);
  margin-bottom: 18px;
}
.chapter .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 1;
  color: var(--rosso);
}
.chapter .rule { flex: 0 0 60px; height: 1px; background: var(--espresso-40); }

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
  position: relative;
}
.manifesto-head {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.manifesto-head h2 {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.manifesto-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 960px) { .manifesto-body { grid-template-columns: 1.1fr 1fr; } }
.manifesto p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--espresso-80);
  max-width: 560px;
  margin-bottom: 22px;
}
.manifesto-lede {
  font-size: clamp(19px, 1.6vw, 22px) !important;
  line-height: 1.6 !important;
  color: var(--espresso) !important;
  max-width: 560px;
  margin-bottom: 32px !important;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--espresso-15);
  font-weight: 500;
}
.manifesto-lede em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rosso);
  font-weight: 700;
}
.manifesto .has-dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 82px;
  line-height: 0.8;
  float: left;
  margin: 8px 12px -4px 0;
  color: var(--rosso);
  font-variation-settings: "opsz" 14;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--espresso);
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--rosso);
  margin: 36px 0;
  max-width: 560px;
  font-variation-settings: "opsz" 14;
}
.manifesto-quote footer {
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--espresso-60);
}

.manifesto-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
  max-width: 560px;
}
.manifesto-list li {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin-bottom: 14px;
}
.manifesto-list li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--rosso);
  font-size: 14px;
  line-height: 1.85;
}
.manifesto-conclusion {
  font-family: var(--font-body) !important;
  font-style: normal;
  font-weight: 700;
  font-size: 22px !important;
  line-height: 1.5 !important;
  letter-spacing: 0;
  color: var(--rosso) !important;
  margin-top: 8px !important;
  max-width: 560px;
}

.postcard-col { position: relative; }
.postcard {
  background: var(--crema-light);
  padding: 18px 18px 80px;
  box-shadow:
    0 2px 4px rgba(31, 21, 16, 0.08),
    0 28px 50px -28px rgba(31, 21, 16, 0.4);
  position: relative;
  max-width: 420px;
  margin-left: auto;
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease-out);
}
.postcard:hover { transform: rotate(0.5deg); }
.postcard-photo {
  aspect-ratio: 4 / 5;
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  overflow: hidden;
  position: relative;
}
.postcard-photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(31, 21, 16, 0.25);
  pointer-events: none;
  z-index: 2;
}
.postcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.05) saturate(1.02) contrast(1.02);
}
.postcard-stamp-box {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 64px;
  height: 76px;
  background: var(--crema);
  border: 1px solid var(--rosso);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 10px;
  line-height: 1.25;
  color: var(--rosso);
  text-align: center;
  font-weight: 500;
}
.postcard-note {
  position: absolute;
  bottom: 18px;
  left: 28px;
  right: 28px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  z-index: 3;
  line-height: 1.2;
  text-align: center;
}

/* ---------- COURSES ---------- */
.courses {
  background: var(--verde);
  color: var(--crema-light);
  position: relative;
  overflow: hidden;
}
.courses::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.courses > .wrap {
  position: relative;
  z-index: 1;
}
@media (min-width: 1280px) {
  .courses > .wrap {
    max-width: min(1640px, calc(100vw - 96px));
  }
}
.courses-head {
  max-width: 820px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.courses-head .chapter { justify-content: center; }
.courses-head h2 {
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--crema-light);
}
.courses-lede {
  max-width: 580px;
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 234, 208, 0.2);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(244, 234, 208, 0.78);
}

.courses-group { margin-bottom: clamp(56px, 7vw, 96px); }
.courses-group:last-child { margin-bottom: 0; }
.courses-group-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.courses-group-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ottone-light);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.courses-group-intro h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--crema-light);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 16;
}
.courses-group-intro h3 em {
  font-style: italic;
  color: var(--ottone-light);
}
.courses-group-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 234, 208, 0.78);
  max-width: 560px;
  margin: 0 auto;
}
.courses-group-intro p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ottone-light);
}

.course-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 760px) { .course-pair { grid-template-columns: repeat(2, 1fr); } }
.course-pair .course { border: 1px solid rgba(244, 234, 208, 0.18); }
.course-pair .course--alt { border-color: rgba(31, 21, 16, 0.12); }

.course-trio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 760px)  { .course-trio { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .course-trio { grid-template-columns: repeat(3, 1fr); } }
.course-trio .course { border: 1px solid rgba(244, 234, 208, 0.18); }
.course-trio .course--alt { border-color: rgba(31, 21, 16, 0.12); }
.course-trio .course--free { border-color: rgba(244, 234, 208, 0.35); }
.courses .chapter { color: rgba(244, 234, 208, 0.6); }
.courses .chapter .num { color: var(--ottone-light); }
.courses .chapter .rule { background: rgba(244, 234, 208, 0.3); }

.course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(244, 234, 208, 0.18);
  border: 1px solid rgba(244, 234, 208, 0.18);
}
@media (min-width: 760px)  { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .course-grid { grid-template-columns: repeat(4, 1fr); } }

.course {
  background: var(--verde-dark);
  padding: 44px clamp(28px, 2.4vw, 44px) 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.course:hover { background: #182820; }
.course-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--ottone-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.course-num::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
.course-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--crema-light);
  min-height: 76px;
  font-variation-settings: "opsz" 14;
}
.course-title em { font-style: italic; color: var(--ottone-light); }
.course-desc {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  font-weight: 400;
  color: rgba(244, 234, 208, 0.82);
  line-height: 1.55;
  letter-spacing: 0.002em;
}
.course-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 234, 208, 0.55);
  line-height: 1.9;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 234, 208, 0.18);
  flex: 1;
}
.course-price {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 700;
  color: var(--crema-light);
  display: flex;
  align-items: baseline;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 234, 208, 0.18);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.course-price span {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(244, 234, 208, 0.55);
  font-weight: 400;
  line-height: 1.35;
  display: block;
  max-width: 11rem;
}
.course-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ottone-light);
  padding-top: 16px;
  border-top: 1px dashed rgba(244, 234, 208, 0.2);
  transition: all 0.3s var(--ease);
  font-weight: 500;
}
.course-link:hover { color: var(--crema-light); gap: 16px; }
.course-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--rosso);
  color: var(--crema-light);
  padding: 6px 14px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  z-index: 2;
}

/* ---------- COURSE ALT (individual 1-on-1) ---------- */
.course--alt {
  background: var(--crema-light);
  color: var(--espresso);
}
.course--alt:hover { background: var(--crema); }
.course--alt .course-num { color: var(--rosso); }
.course--alt .course-title { color: var(--espresso); }
.course--alt .course-title em { color: var(--rosso); }
.course--alt .course-desc { color: var(--espresso-80); }
.course--alt .course-meta {
  color: var(--espresso-60);
  border-top-color: var(--espresso-15);
}
.course--alt .course-price {
  color: var(--espresso);
  border-top-color: var(--espresso-15);
}
.course--alt .course-price span { color: var(--espresso-60); }
.course--alt .course-link {
  color: var(--rosso);
  border-top-color: rgba(31, 21, 16, 0.2);
}
.course--alt .course-link:hover { color: var(--rosso-dark); }

/* ---------- COURSE FREE (Vitalia Zajednica) ---------- */
.course--free {
  background: var(--crema-light);
  color: var(--espresso);
}
.course--free::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--verde);
  z-index: 1;
}
.course--free:hover { background: var(--crema); }
.course--free .course-num { color: var(--verde); }
.course--free .course-title { color: var(--espresso); }
.course--free .course-title em { color: var(--verde); }
.course--free .course-desc { color: var(--espresso-80); }
.course--free .course-meta {
  color: var(--espresso-60);
  border-top-color: var(--espresso-15);
}
.course--free .course-price {
  color: var(--verde);
  border-top-color: var(--espresso-15);
}
.course-ribbon--free {
  background: var(--verde);
  color: var(--crema-light);
}

/* ---------- COURSE TRIO: 3 cards in one row, prominent red CTA buttons ---------- */
.course-trio .course .course-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--rosso);
  color: var(--crema-light) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: none;
  border-top: none !important;
  border-radius: 0;
  text-decoration: none;
  margin-top: auto;
  align-self: stretch;
  transition: all 0.3s var(--ease);
}
.course-trio .course .course-link:hover {
  background: var(--rosso-dark);
  gap: 16px;
}

/* upgrade chip for individualni paket */
.course-upgrade {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  background: rgba(184, 147, 74, 0.12);
  border: 1px solid rgba(184, 147, 74, 0.55);
  color: var(--ottone-light);
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: -6px;
}
.course-upgrade::before {
  content: '+';
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ottone-light);
  line-height: 1;
}

/* ---------- FREE LESSON BAND ---------- */
.band {
  background: var(--rosso);
  color: var(--crema-light);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F4EAD0' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) { .band-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
/* Single-column variant for pages that don't embed a form next to the CTA */
.band-inner--simple { display: block !important; max-width: 720px; margin: 0 auto; text-align: left; }
.band-inner--simple .btn { margin-top: 12px; }
.band h2 {
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--crema-light);
  margin-bottom: 24px;
}
.band h2 em { font-style: italic; color: var(--ottone-light); }
.band .lede {
  max-width: 500px;
  font-size: 17px;
  color: rgba(244, 234, 208, 0.88);
  line-height: 1.65;
}
.band .eyebrow { color: var(--ottone-light); margin-bottom: 20px; }
.band .eyebrow::before, .band .eyebrow::after { background: var(--ottone-light); }

.lesson-form {
  background: var(--crema);
  color: var(--espresso);
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.lesson-form::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(31, 21, 16, 0.25);
  pointer-events: none;
}
.lesson-form label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-60);
  margin-bottom: 10px;
}
.lesson-form input, .lesson-form select, .lesson-form textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 24px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  letter-spacing: 0.002em;
}
.lesson-form textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.55;
}
.lesson-form input:focus, .lesson-form select:focus, .lesson-form textarea:focus { border-color: var(--rosso); }
.lesson-form input::placeholder, .lesson-form textarea::placeholder { color: var(--espresso-40); font-style: italic; font-weight: 400; }
.lesson-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F1510' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
}
.lesson-form option {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--espresso);
  background: var(--crema-light);
}

.form-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
.form-fieldset legend {
  display: block;
  width: 100%;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.5;
  color: var(--espresso-60);
  margin-bottom: 12px;
}
.radio-group {
  display: grid;
  gap: 10px;
}
.radio-group--inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 260px;
}
.lesson-form .radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  color: var(--espresso);
  cursor: pointer;
}
.lesson-form .radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--espresso-60);
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  flex: 0 0 auto;
  cursor: pointer;
}
.lesson-form .radio-option input[type="radio"]:checked {
  border-color: var(--rosso);
  box-shadow: inset 0 0 0 4px var(--crema), inset 0 0 0 10px var(--rosso);
}
.lesson-form .radio-option input[type="radio"]:focus-visible {
  outline: 2px solid var(--rosso);
  outline-offset: 2px;
}
.lesson-form .radio-option--other {
  align-items: center;
}
.lesson-form .radio-option--other input[type="text"] {
  min-width: 0;
  flex: 1 1 auto;
  padding: 4px 0 6px;
  margin: 0;
  font-size: 14px;
}

/* ---------- CUSTOM SELECT ---------- */
.cselect {
  position: relative;
}
.cselect-btn {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  letter-spacing: 0.002em;
}
.cselect.open > .cselect-btn,
.cselect-btn:focus-visible { border-color: var(--rosso); }
.cselect-caret {
  width: 12px;
  height: 8px;
  color: var(--espresso-60);
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
  flex-shrink: 0;
}
.cselect.open .cselect-caret {
  transform: rotate(180deg);
  color: var(--rosso);
}
.cselect-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--crema-light);
  border: 1px solid var(--espresso);
  box-shadow:
    0 4px 8px rgba(31, 21, 16, 0.08),
    0 24px 44px -18px rgba(31, 21, 16, 0.45);
  z-index: 25;
  padding: 8px 0;
  max-height: 280px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.cselect-panel::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(31, 21, 16, 0.18);
  pointer-events: none;
}
.cselect.open .cselect-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cselect-opt {
  padding: 13px 24px 13px 38px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--espresso-80);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  position: relative;
  font-weight: 400;
  letter-spacing: 0.002em;
}
.cselect-opt:hover,
.cselect-opt.keyfocus {
  background: var(--rosso);
  color: var(--crema-light);
}
.cselect-opt[aria-selected="true"] {
  color: var(--espresso);
  font-weight: 500;
}
.cselect-opt[aria-selected="true"]::before {
  content: '✦';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rosso);
  font-family: var(--font-display);
  font-size: 12px;
}
.cselect-opt[aria-selected="true"]:hover::before,
.cselect-opt[aria-selected="true"].keyfocus::before {
  color: var(--ottone-light);
}
.lesson-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.lesson-form .row > div { min-width: 0; }
.lesson-form button {
  width: 100%;
  margin-top: 16px;
  justify-content: center;
}
.lesson-form .fine {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--espresso-60);
  font-style: italic;
}

/* ---------- ABOUT MARIJA ---------- */
.about {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 0.9fr 1.1fr; } }

.about-portrait { position: relative; max-width: 480px; }
.about-portrait::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--rosso);
}
.about-portrait .img-ph {
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
}
.about-portrait-photo {
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 1;
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  overflow: hidden;
}
.about-portrait-photo::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(31, 21, 16, 0.25);
  pointer-events: none;
  z-index: 2;
}
.about-portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.05) saturate(1.02) contrast(1.02);
}
.about-portrait-stamp {
  position: absolute;
  top: -20px;
  right: -10px;
  background: var(--crema);
  border: 1px solid var(--espresso);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  z-index: 2;
  transform: rotate(4deg);
  color: var(--espresso);
}
.about-portrait-stamp strong {
  font-style: normal;
  font-weight: 700;
  color: var(--rosso);
}

.about h2 {
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 20px 0 32px;
}
.about h2 em { font-style: italic; color: var(--rosso); }
.about p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--espresso-80);
  margin-bottom: 20px;
  max-width: 580px;
}
.about-sig {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--espresso-15);
  max-width: 580px;
}
.about-sig-name {
  font-family: var(--font-hand);
  font-size: 42px;
  font-weight: 700;
  color: var(--rosso);
  line-height: 1;
}
.about-sig-meta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--espresso-60);
  line-height: 1.4;
}
.about-cta { margin-top: 36px; }

/* ---------- TESTIMONIALS ---------- */
.voices { background: var(--crema); }
.voices-head {
  max-width: 900px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.voices-head .chapter { justify-content: center; }
.voices-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.voices-stack {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 7vw, 96px);
}
.voices-stack .letter {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  transition: none;
}
.voices-stack .letter:nth-child(even) { flex-direction: row-reverse; }
.voices-stack .letter:hover { transform: none; }
.letter-stamp { display: none; }
.voices-stack .letter-avatar {
  width: clamp(140px, 16vw, 200px);
  height: clamp(140px, 16vw, 200px);
  border-radius: 50%;
  background: var(--crema-dark);
  border: 1px solid var(--espresso-15);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 6px var(--crema-light), 0 0 0 7px var(--espresso-15);
}
.voices-stack .letter-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voices-stack .letter-body {
  flex: 1;
  position: relative;
  min-width: 0;
}
.voices-stack .letter-quote-mark {
  position: absolute;
  top: -36px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  letter-spacing: -16px;
  color: rgba(217, 87, 86, 0.18);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.voices-stack .letter-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--espresso-80);
  margin: 0 0 24px;
  letter-spacing: 0.002em;
}
.voices-stack .letter-quote p { margin: 0 0 16px; }
.voices-stack .letter-quote p:last-child { margin-bottom: 0; }
.voices-stack .letter-quote strong {
  color: var(--espresso);
  font-weight: 700;
}
.voices-stack .letter-name {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .voices-stack .letter,
  .voices-stack .letter:nth-child(even) {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .voices-stack .letter-avatar { width: 140px; height: 140px; }
  .voices-stack .letter-quote-mark { right: 50%; transform: translateX(50%); }
}
.letter-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--espresso-60);
  margin-top: 4px;
}

/* ---------- BLOG / GIORNALE ---------- */
.giornale { background: var(--paper); border-top: 1px solid var(--espresso-15); border-bottom: 1px solid var(--espresso-15); }
.giornale-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.giornale-head .chapter {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosso);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rosso);
  gap: 0;
}
.giornale-head h2 {
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.giornale-lede {
  max-width: 580px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--espresso-15);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--espresso-80);
}
.giornale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  border-top: 2px solid var(--espresso);
  padding-top: 56px;
}
@media (min-width: 780px)  { .giornale-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .giornale-grid { grid-template-columns: repeat(3, 1fr); } }

.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 32px;
  border-right: 1px solid var(--espresso-15);
  color: inherit;
  text-decoration: none;
}
.article:last-child { border-right: none; }
@media (max-width: 779px) {
  .article { border-right: none; padding-right: 0; padding-bottom: 32px; border-bottom: 1px solid var(--espresso-15); }
  .article:last-child { border-bottom: none; }
}

.article-img {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.05) 0 1px, transparent 1px 12px),
    var(--crema-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--espresso-15);
  overflow: hidden;
}
.article-img::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--espresso-40);
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.06) saturate(1.02) contrast(1.02);
  transition: transform 0.6s var(--ease-out);
}
.article-img:has(img)::after { display: none; }
.article-img:has(img) { background: none; }
.article:hover .article-img img { transform: scale(1.03); }
.article-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article-cat::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  font-variation-settings: "opsz" 14;
}
.article h3 em { font-style: italic; color: var(--espresso); }
.article:hover h3 { color: var(--rosso); }
.article:hover h3 em { color: var(--rosso); }
.article-excerpt {
  font-size: 15px;
  color: var(--espresso-80);
  line-height: 1.6;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: var(--espresso-60);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--espresso-15);
}
.article-meta .dot { width: 3px; height: 3px; background: var(--espresso-40); border-radius: 50%; display: inline-block; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: var(--verde);
  color: var(--crema-light);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .chapter { justify-content: center; color: rgba(244, 234, 208, 0.7); }
.newsletter .chapter .num { color: var(--ottone-light); }
.newsletter .chapter .rule { background: rgba(244, 234, 208, 0.3); }
.newsletter h2 {
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--crema-light);
  margin-bottom: 28px;
}
.newsletter h2 em { font-style: italic; color: var(--ottone-light); }
.newsletter p {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244, 234, 208, 0.85);
}
.news-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 600px) { .news-form { flex-direction: row; } }
.news-form input {
  flex: 1;
  padding: 18px 22px;
  background: transparent;
  border: 1px solid var(--crema-light);
  color: var(--crema-light);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: background 0.3s var(--ease);
}
.news-form input::placeholder { color: rgba(244, 234, 208, 0.5); font-style: italic; }
.news-form input:focus { background: rgba(244, 234, 208, 0.08); }
.news-form button {
  background: var(--crema-light);
  color: var(--verde-dark);
  border-color: var(--crema-light);
  padding: 18px 32px;
  white-space: nowrap;
}
.news-form button:hover { background: var(--ottone-light); border-color: var(--ottone-light); color: var(--verde-dark); transform: translateY(-2px); }
.news-fine {
  font-size: 14px;
  color: rgba(244, 234, 208, 0.85);
  margin-top: 28px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ---------- FAQ ---------- */
.faq { background: var(--crema); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (min-width: 960px) { .faq-grid { grid-template-columns: 1fr 1.3fr; } }

.faq-side h2 {
  font-size: clamp(44px, 5.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.faq-side h2 em { font-style: italic; color: var(--rosso); }
.faq-side .lede { margin-top: 28px; color: var(--espresso-80); max-width: 420px; }
.faq-side .btn { margin-top: 40px; }

.faq-list { border-top: 1px solid var(--espresso); }
.faq-item { border-bottom: 1px solid var(--espresso-15); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--espresso);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--rosso); }
.faq-q .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--rosso);
  flex-shrink: 0;
  min-width: 44px;
  padding-top: 2px;
  font-weight: 700;
}
.faq-q .t { flex: 1; }
.faq-q .sign {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--rosso);
  transition: transform 0.3s var(--ease);
  line-height: 1;
  padding-top: 4px;
}
.faq-item.open .sign { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 0 0 40px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 32px 40px;
}
.faq-a p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 620px;
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--espresso);
  color: var(--crema-light);
  padding: clamp(64px, 8vw, 120px) 0 32px;
  position: relative;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244, 234, 208, 0.15);
}
@media (min-width: 860px)  { .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.foot-brand .brand { margin-left: 0; align-items: center; gap: 16px; margin-bottom: 28px; }
.foot-brand .brand-logo { width: 72px; height: 72px; }
.foot-brand .brand-text { gap: 6px; }
.foot-brand .brand-mark { color: var(--crema-light); font-size: 48px; }
.foot-brand .brand-mark em { color: var(--ottone-light); }
.foot-brand .brand-sub {
  display: inline;
  color: rgba(244, 234, 208, 0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.foot-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: rgba(244, 234, 208, 0.7);
  max-width: 360px;
  margin: 18px 0 32px;
  line-height: 1.4;
}
.foot-social { display: flex; gap: 12px; }
.foot-brand .foot-social { margin-left: 88px; }
.foot-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 234, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.foot-social a:hover { background: var(--rosso); border-color: var(--rosso); transform: translateY(-2px); }
.foot-social svg { width: 16px; height: 16px; }

.foot-col h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ottone-light);
  margin-bottom: 24px;
  font-weight: 500;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 234, 208, 0.2);
}
.foot-col ul { display: flex; flex-direction: column; gap: 14px; }
.foot-col a {
  font-size: 15px;
  color: rgba(244, 234, 208, 0.8);
  transition: color 0.3s var(--ease);
}
.foot-col a:hover { color: var(--rosso); font-style: italic; }

.foot-bottom {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 234, 208, 0.5);
}
.foot-credit a {
  color: rgba(244, 234, 208, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 234, 208, 0.25);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.foot-credit a:hover { color: var(--rosso); border-color: var(--rosso); }
.foot-bottom .heart {
  color: var(--rosso);
  font-style: italic;
  text-transform: none;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
  margin-bottom: 40px;
}
.breadcrumb a {
  color: var(--espresso-60);
  transition: color 0.25s var(--ease);
}
.breadcrumb a:hover { color: var(--rosso); }
.breadcrumb .sep {
  width: 24px;
  height: 1px;
  background: var(--espresso-40);
}
.breadcrumb .here { color: var(--rosso); }
.page-hero .chapter { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 700;
  font-variation-settings: "opsz" 16;
  margin-bottom: 32px;
  max-width: 760px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--rosso);
  display: inline-block;
  margin-top: 0.08em;
}
.page-hero .lede {
  max-width: 620px;
  padding-top: 28px;
  border-top: 1px solid var(--espresso-15);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--espresso-80);
}
.page-hero .featured-label {
  margin-top: clamp(64px, 8vw, 104px);
}
.page-hero .featured-article {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--espresso-15);
}

/* ---------- FEATURED ARTICLE ---------- */
.featured-section {
  padding: clamp(56px, 7vw, 104px) 0;
  background: var(--paper);
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.featured-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--espresso);
}
.featured-label .lbl {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.featured-label .lbl em { color: var(--rosso); }
.featured-label .stamp {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--rosso);
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 960px) {
  .featured-article { grid-template-columns: 1.3fr 1fr; align-items: center; }
}

.featured-media {
  position: relative;
}
.featured-media::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--espresso-40);
  pointer-events: none;
}
.featured-media .photo {
  position: relative;
  background: var(--crema-light);
  padding: 16px 16px 20px;
  box-shadow:
    0 2px 4px rgba(31, 21, 16, 0.08),
    0 24px 44px -24px rgba(31, 21, 16, 0.35);
  transform: rotate(-0.6deg);
  transition: transform 0.5s var(--ease-out);
}
.featured-article:hover .featured-media .photo { transform: rotate(0) translateY(-4px); }
.featured-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid var(--espresso-15);
  filter: sepia(0.06) saturate(1.02) contrast(1.02);
}
.featured-media .photo-ph {
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, var(--crema-dark), #DBC99E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--espresso-15);
  padding: 24px;
  text-align: center;
}
.featured-media .photo-ph::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--espresso-40);
  pointer-events: none;
}
.featured-media .photo-ph .eyebrow-ph {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
}
.featured-media .photo-ph .text-ph {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--espresso-60);
  position: relative;
}
.featured-media .photo-caption {
  margin-top: 12px;
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--espresso);
  text-align: center;
}

.featured-body .article-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.featured-body .article-cat::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
.featured-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 14;
}
.featured-body h2 em {
  font-style: italic;
  color: var(--rosso);
}
.featured-body p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 28px;
  max-width: 520px;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--espresso-60);
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--espresso-15);
}
.featured-meta .dot { width: 3px; height: 3px; background: var(--espresso-40); border-radius: 50%; display: inline-block; }

/* ---------- ARTICLES LIST ---------- */
.articles-list { padding: var(--section-y) 0; background: var(--crema); }
.articles-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 2px solid var(--espresso);
}
.articles-list-head h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 700;
  font-variation-settings: "opsz" 14;
}
.articles-list-head h2 em { font-style: italic; color: var(--rosso); }
.articles-list-head .count {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--espresso-60);
}

/* article cards reuse .article structure, but with real images */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 40px;
}
@media (min-width: 780px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.article-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease-out);
}
.article-card:hover { transform: translateY(-4px); }
.article-card .card-img {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--espresso-15);
  background: var(--crema-dark);
}
.article-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.06) saturate(1.02) contrast(1.02);
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .card-img img { transform: scale(1.03); }

/* Placeholder variant for cards without a real image yet */
.article-card .card-img.ph {
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, var(--crema-dark), #DBC99E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: center;
}
.article-card .card-img.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--espresso-40);
  pointer-events: none;
}
.article-card .card-img.ph .eyebrow-ph {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 8px;
  font-weight: 500;
  position: relative;
}
.article-card .card-img.ph .text-ph {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--espresso-60);
  position: relative;
}
.article-card:hover .card-img.ph { transform: none; }
.article-card .card-cat {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.article-card .card-cat::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.article-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  font-variation-settings: "opsz" 14;
}
.article-card h3 em { font-style: italic; color: var(--espresso); }
.article-card:hover h3 { color: var(--rosso); }
.article-card:hover h3 em { color: var(--rosso); }
.article-card .card-excerpt {
  font-size: 15px;
  color: var(--espresso-80);
  line-height: 1.6;
  flex: 1;
}
.article-card .card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: var(--espresso-60);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-top: 16px;
  border-top: 1px solid var(--espresso-15);
  margin-top: auto;
}
.article-card .card-meta .dot { width: 3px; height: 3px; background: var(--espresso-40); border-radius: 50%; display: inline-block; }

/* ---------- COMING SOON CARD ---------- */
.article-card.soon { position: relative; }
.article-card.soon .card-img {
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.04) 0 1px, transparent 1px 12px),
    var(--crema-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.article-card.soon .card-img::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--espresso-40);
  pointer-events: none;
}
.article-card.soon .card-img .soon-label {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--espresso-60);
  text-align: center;
}
.article-card.soon .card-img .soon-label span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 6px;
}
.article-card.soon h3 { color: var(--espresso-40); }
.article-card.soon .card-excerpt { color: var(--espresso-40); font-style: italic; }
.article-card.soon:hover { transform: none; }

/* Active nav state */
.nav-links a[aria-current="page"] { color: var(--rosso); }
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rosso);
  transform: translateX(-50%);
}

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */

.post-header {
  padding: clamp(64px, 8vw, 120px) 0 clamp(64px, 8vw, 120px);
  background: var(--verde);
  color: var(--crema-light);
  position: relative;
  overflow: hidden;
}
.post-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.post-header-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.post-header .breadcrumb {
  color: rgba(244, 234, 208, 0.6);
}
.post-header .breadcrumb a { color: rgba(244, 234, 208, 0.7); }
.post-header .breadcrumb a:hover { color: var(--ottone-light); }
.post-header .breadcrumb .sep { background: rgba(244, 234, 208, 0.3); }
.post-header .breadcrumb .here { color: var(--ottone-light); }

.post-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ottone-light);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.post-cat::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
.post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--crema-light);
  font-variation-settings: "opsz" 16;
  margin-bottom: 32px;
}
.post-title em { font-style: italic; color: var(--ottone-light); }
.post-dek {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  color: rgba(244, 234, 208, 0.88);
  max-width: 680px;
  margin-bottom: 40px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 234, 208, 0.6);
  padding-top: 28px;
  border-top: 1px solid rgba(244, 234, 208, 0.18);
  font-weight: 500;
}
.post-meta .author-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
  border-right: 1px solid rgba(244, 234, 208, 0.18);
}
.post-meta .author-chip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: sepia(0.08) saturate(1.02) contrast(1.02);
}
.post-meta .author-chip span { color: var(--crema-light); }
.post-meta .dot { width: 3px; height: 3px; background: rgba(244, 234, 208, 0.4); border-radius: 50%; display: inline-block; }

/* Body */
.post-body {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--paper);
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.post-prose {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--espresso);
}
.post-prose > p { margin-bottom: 28px; }
.post-prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 88px;
  line-height: 0.8;
  float: left;
  margin: 10px 14px -4px 0;
  color: var(--rosso);
  font-variation-settings: "opsz" 14;
}
.post-prose em { font-style: italic; color: var(--rosso); }
.post-prose strong { font-weight: 600; }
.post-prose a:not(.btn):not(.btn-primary):not(.btn-ghost):not(.btn-text) {
  color: var(--rosso);
  border-bottom: 1px solid var(--rosso);
  transition: all 0.25s var(--ease);
}
.post-prose a:not(.btn):not(.btn-primary):not(.btn-ghost):not(.btn-text):hover {
  color: var(--rosso-dark);
  border-bottom-color: var(--rosso-dark);
}

/* Inline quotes list (the "objections" list at the top of the article) */
.post-quotes-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 28px 32px;
  background: var(--crema-light);
  border-left: 3px solid var(--ottone);
  font-family: var(--font-body);
  font-weight: 500;
}
.post-quotes-list li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--espresso);
  padding: 10px 0;
  position: relative;
}
.post-quotes-list li + li {
  border-top: 1px dashed rgba(31, 21, 16, 0.14);
}
.post-quotes-list li::before {
  content: '“';
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ottone);
  margin-right: 10px;
  line-height: 0;
  vertical-align: -10px;
}

/* Summary section */
.post-summary-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.2;
  margin-top: clamp(64px, 8vw, 96px);
  margin-bottom: 24px;
  border-top: 1px solid var(--espresso-15);
  padding-top: 48px;
  font-variation-settings: "opsz" 14;
  letter-spacing: -0.01em;
}
.post-summary-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.post-summary-list li {
  position: relative;
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--espresso-15);
  font-size: 17px;
  line-height: 1.6;
  color: var(--espresso);
}
.post-summary-list li:last-child { border-bottom: none; }
.post-summary-list li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 16px;
  font-family: var(--font-display);
  color: var(--rosso);
  font-size: 16px;
}

/* Razlog (numbered chapter) */
.post-razlog {
  margin: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--espresso-15);
  padding-top: 40px;
}
.post-razlog .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--rosso);
  display: block;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 14;
}
.post-razlog .razlog-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 18px;
}
.post-razlog h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 14;
}
.post-razlog h2 em { font-style: italic; color: var(--rosso); }
.post-razlog h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.3;
  color: var(--espresso);
  margin: 36px 0 14px;
  font-variation-settings: "opsz" 14;
}
.post-razlog h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--rosso);
  margin-bottom: 14px;
}
.post-razlog h3:first-child { margin-top: 0; }
.post-razlog h3 em { color: var(--rosso); }
.post-razlog p {
  margin-bottom: 26px;
}
.post-razlog p:last-child {
  margin-bottom: 0;
}

/* Inline figure (image + caption) — sits inside the prose column */
.post-figure {
  margin: clamp(48px, 6vw, 72px) 0;
}
.post-figure .figure-img {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, rgba(31,21,16,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, var(--crema-dark), #DBC99E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--espresso-15);
  padding: 24px;
  text-align: center;
}
.post-figure .figure-img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--espresso-40);
  pointer-events: none;
}
.post-figure .figure-img .eyebrow-ph {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
}
.post-figure .figure-img .text-ph {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--espresso-60);
  position: relative;
}
.post-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--espresso-60);
  text-align: left;
  line-height: 1.5;
}
.post-figure figcaption strong {
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  display: inline-block;
  margin-right: 10px;
}
.post-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border: 1px solid var(--espresso-15);
  filter: sepia(0.04) saturate(1.02) contrast(1.02);
}
.post-figure.portrait img {
  aspect-ratio: 3 / 4;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.post-figure .credit {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso-60);
}
.post-figure .credit a {
  color: var(--espresso-80);
  text-decoration: underline;
  text-decoration-color: var(--espresso-15);
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
.post-figure .credit a:hover {
  color: var(--rosso);
  text-decoration-color: currentColor;
}

/* Pull quote */
.post-pullquote {
  margin: clamp(48px, 6vw, 80px) 0;
  padding: 32px 0 32px 36px;
  border-left: 2px solid var(--rosso);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.post-pullquote em { color: var(--rosso); font-style: italic; }
.post-pullquote footer {
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--espresso-60);
}

/* CTA box inside post */
.post-cta-box {
  margin: clamp(64px, 8vw, 96px) 0 0;
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  background: var(--crema-light);
  border: 1px solid var(--espresso-15);
  text-align: center;
  position: relative;
}
.post-cta-box::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(31, 21, 16, 0.2);
  pointer-events: none;
}
.post-cta-box .eyebrow-ph {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  display: block;
  margin-bottom: 16px;
}
.post-cta-box h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 14;
}
.post-cta-box h3 em { font-style: italic; color: var(--rosso); }
.post-cta-box p {
  font-size: 15px;
  color: var(--espresso-80);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.post-cta-box .post-cta-alt { margin-top: 20px; }

/* Author box */
.post-author {
  max-width: 700px;
  margin: clamp(64px, 8vw, 96px) auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--espresso-15);
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  flex-wrap: wrap;
}
.post-author-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--espresso-15);
}
.post-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) saturate(1.02) contrast(1.02);
}
.post-author-info { flex: 1; min-width: 220px; }
.post-author-info .eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 8px;
}
.post-author-info h4 {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 36px;
  color: var(--rosso);
  line-height: 1;
  margin-bottom: 10px;
}
.post-author-info p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--espresso-80);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 460px;
}

/* Share strip */
.post-share {
  max-width: 700px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--espresso-15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.post-share .label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-60);
}
.post-share .icons {
  display: flex;
  gap: 10px;
}
.post-share .icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--espresso-15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  color: var(--espresso-80);
}
.post-share .icons a:hover {
  background: var(--rosso);
  border-color: var(--rosso);
  color: var(--crema-light);
  transform: translateY(-2px);
}
.post-share .icons svg { width: 16px; height: 16px; }

/* Related posts */
.post-related {
  padding: var(--section-y) 0;
  background: var(--crema);
}
.post-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 2px solid var(--espresso);
}
.post-related-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 16;
}
.post-related-head h2 em { font-style: italic; color: var(--rosso); }
.post-related-head .back {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--espresso-80);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--espresso);
  transition: all 0.25s var(--ease);
}
.post-related-head .back:hover { color: var(--rosso); border-bottom-color: var(--rosso); gap: 14px; }

/* ============================================================
   SALES PAGE (Kofer za Italiju, Individualni časovi, Spakuj se)
   ============================================================ */

/* ---------- Section background modifiers ---------- */
.section--cream { background: var(--crema); }
.section--paper { background: var(--paper); border-top: 1px solid var(--espresso-15); border-bottom: 1px solid var(--espresso-15); }
.section--verde {
  background: var(--verde-dark);
  color: var(--crema-light);
  position: relative;
  overflow: hidden;
}
.section--verde::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.section--verde .wrap { position: relative; }
.section--verde .chapter .num { color: var(--ottone-light); }
.section--verde .chapter .rule { background: rgba(244, 234, 208, 0.3); }
.section--verde .chapter > span:last-child { color: rgba(244, 234, 208, 0.72); }
.section--verde .sales-head h2.display,
.section--verde h2.display { color: var(--crema-light); }
.section--verde .sales-head h2.display em,
.section--verde h2.display em { color: var(--ottone-light); }
.section--verde .sales-head-lede { color: rgba(244, 234, 208, 0.82); }

/* Card grids on verde bg: recolor cards + dividers */
.section--verde .outcome-grid,
.section--verde .bonus-grid {
  background: rgba(244, 234, 208, 0.16);
  border-color: rgba(244, 234, 208, 0.16);
}
.section--verde .outcome { background: var(--verde-dark); }
.section--verde .outcome-num { color: var(--ottone-light); }
.section--verde .outcome h3 { color: var(--crema-light); }
.section--verde .outcome h3 em { color: var(--ottone-light); }
.section--verde .outcome p { color: rgba(244, 234, 208, 0.78); }

.section--verde .bonus-card { background: var(--verde-dark); }
.section--verde .bonus-card--community { background: #182820; }
.section--verde .bonus-label { color: var(--ottone-light); }
.section--verde .bonus-card h3 { color: var(--crema-light); }
.section--verde .bonus-card h3 em { color: var(--ottone-light); }
.section--verde .bonus-card p { color: rgba(244, 234, 208, 0.78); }

/* ---------- Sales hero ---------- */
.sales-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 7vw, 104px);
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
}
.sales-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 960px) {
  .sales-hero-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 6vw, 88px); }
}
.sales-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 24px;
}
.sales-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 18;
}
.sales-hero-title em { font-style: italic; color: var(--rosso); }
.sales-hero-dek {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 540px;
  margin-bottom: 36px;
}
.sales-hero-dek strong { color: var(--espresso); font-weight: 600; }
.sales-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}
.sales-hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--espresso-15);
}
.sales-hero-trust-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.9;
  color: var(--rosso);
  font-variation-settings: "opsz" 14;
}
.sales-hero-trust-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--espresso-80);
}
.sales-hero-trust-text em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--espresso-60);
}

/* Video placeholder on the right */
.sales-hero-video { position: relative; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--espresso);
  border: 1px solid var(--espresso);
  overflow: hidden;
}
.video-frame .img-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(244,234,208,0.06) 0 1px, transparent 1px 14px),
    var(--espresso);
}
.video-frame .img-ph-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  color: var(--crema);
  line-height: 1.55;
}
.video-frame .img-ph-label span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ottone-light);
  margin-bottom: 8px;
}
.video-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: none; background: none;
  color: var(--crema);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
}
.video-play svg { width: 100%; height: 100%; display: block; }
.video-play:hover { transform: translate(-50%, -50%) scale(1.06); color: var(--ottone-light); }
.video-caption {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
  text-align: center;
}

/* ---------- Sales prose (scenario section) ---------- */
.sales-prose {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.sales-prose .chapter { justify-content: center; margin-bottom: 24px; }
.sales-prose h2.display {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.sales-prose-lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 640px;
  margin: 48px auto 0;
}
.sales-prose-lede strong { color: var(--rosso); font-weight: 600; }

.scenario-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  text-align: left;
}
.scenario-list li {
  position: relative;
  padding: 20px 0 20px 48px;
  border-bottom: 1px solid var(--espresso-15);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--espresso);
}
.scenario-list li:last-child { border-bottom: none; }
.scenario-list li::before {
  content: '→';
  position: absolute;
  left: 4px; top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--rosso);
}

/* ---------- Sales section heads ---------- */
.sales-head {
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}
.sales-head .chapter { justify-content: center; margin-bottom: 24px; }
.sales-head h2.display {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.sales-head-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Outcome grid (what you'll learn) ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--espresso-15);
  border: 1px solid var(--espresso-15);
}
@media (min-width: 780px)  { .outcome-grid { grid-template-columns: repeat(2, 1fr); } }
.outcome {
  background: var(--paper);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.outcome-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--rosso);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 14;
}
.outcome h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.outcome h3 em { font-style: italic; color: var(--rosso); }
.outcome p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
}

/* ---------- Feature stack (package overview ul) ---------- */
.feature-stack {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
}
.feature-stack li {
  position: relative;
  padding: 22px 0 22px 44px;
  border-bottom: 1px solid var(--espresso-15);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--espresso-80);
}
.feature-stack li:last-child { border-bottom: none; }
.feature-stack li::before {
  content: '✦';
  position: absolute;
  left: 8px; top: 22px;
  color: var(--rosso);
  font-family: var(--font-display);
  font-size: 16px;
}
.feature-stack strong { color: var(--espresso); font-weight: 600; }
.feature-stack em { font-style: italic; color: var(--rosso); font-weight: 600; }

/* ---------- Platform card grid ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 780px)  { .platform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .platform-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.platform-card {
  background: var(--crema-light);
  border: 1px solid var(--espresso-15);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.platform-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.platform-num::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-top: 4px;
  font-variation-settings: "opsz" 14;
}
.platform-card h3 em { font-style: italic; color: var(--rosso); }
.platform-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
}

/* ---------- Module accordion (native <details>) ---------- */
.module-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--espresso-15);
}
.module-item {
  border-bottom: 1px solid var(--espresso-15);
}
.module-item summary {
  list-style: none;
  cursor: pointer;
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "num  title   sign"
    "num  short   sign";
  row-gap: 6px;
  column-gap: 32px;
  align-items: center;
  transition: color 0.25s var(--ease);
}
@media (max-width: 779px) {
  .module-item summary {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num sign"
      "title sign"
      "short sign";
    column-gap: 20px;
    row-gap: 8px;
  }
}
.module-item summary::-webkit-details-marker { display: none; }
.module-num {
  grid-area: num;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
}
.module-title {
  grid-area: title;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.module-short {
  grid-area: short;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--espresso-60);
  line-height: 1.5;
}
.module-sign {
  grid-area: sign;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--espresso-40);
  transition: transform 0.3s var(--ease), color 0.25s var(--ease);
  line-height: 1;
}
.module-item:hover summary .module-title { color: var(--rosso); }
.module-item:hover summary .module-sign { color: var(--rosso); }
.module-item[open] .module-sign { transform: rotate(45deg); color: var(--rosso); }
.module-body {
  padding: 0 0 32px 0;
  max-width: 640px;
}
@media (min-width: 780px)  { .module-body { padding-left: calc(10ch + 32px); } }
.module-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 14px;
}
.module-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.module-body li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--espresso-80);
}
.module-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 1px;
  background: var(--rosso);
}
.module-body em { font-style: italic; color: var(--rosso); }

/* ---------- Bonus grid ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--espresso-15);
  border: 1px solid var(--espresso-15);
}
@media (min-width: 780px)  { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bonus-grid { grid-template-columns: repeat(3, 1fr); } }
.bonus-card {
  background: var(--paper);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ottone);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bonus-label::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.bonus-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.bonus-card h3 em { font-style: italic; color: var(--rosso); }
.bonus-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
}
.bonus-card--community { background: var(--crema-light); }

/* ---------- Pricing (course-grid--two modifier) ---------- */
.course-grid--two {
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .course-grid--two { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1280px) {
  .course-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 960px; margin: 0 auto; }
}
.course-subnote {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(244, 234, 208, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 234, 208, 0.14);
  margin-top: auto;
}
.courses-note {
  text-align: center;
  max-width: 640px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 234, 208, 0.78);
}
.courses-note a { color: var(--ottone-light); text-decoration: underline; text-underline-offset: 3px; }
.courses-note a:hover { color: var(--crema-light); }

/* ---------- Voices grid (testimonials on sales page) ---------- */
.voices-head {
  max-width: 820px;
  margin: 0 auto clamp(56px, 7vw, 88px);
  text-align: center;
}
.voices-head .chapter { justify-content: center; margin-bottom: 24px; }
.voices-head h2.display {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.voices-head .voices-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 620px;
  margin: 0 auto;
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 780px)  { .voices-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1200px) { .voices-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.voice {
  position: relative;
  background:
    linear-gradient(180deg, rgba(250, 245, 230, 0.78), rgba(248, 239, 214, 0.96));
  border: 1px solid var(--espresso-15);
  border-radius: 6px;
  padding: 42px 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 18px 42px -34px rgba(31, 21, 16, 0.45);
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  color: rgba(194, 49, 39, 0.16);
  pointer-events: none;
}
.voice-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.72;
  color: var(--espresso-80);
  letter-spacing: 0;
}
.voice-quote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--rosso);
}
.voice-sig {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rosso);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--espresso-15);
  margin-top: auto;
}

/* ---------- Author wrap on sales page ---------- */
.author-wrap { max-width: 780px; margin: 0 auto; }

/* ---------- Outcome list (used on verde "Šta te čeka") ---------- */
.outcome-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
}
.outcome-list li {
  position: relative;
  padding: 24px 0 24px 56px;
  border-bottom: 1px solid rgba(244, 234, 208, 0.18);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--crema-light);
}
.outcome-list li:last-child { border-bottom: none; }
.outcome-list li::before {
  counter-increment: outcome;
  content: counter(outcome, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--ottone-light);
  line-height: 1;
}
.outcome-list { counter-reset: outcome; }
.outcome-list li strong { color: var(--ottone-light); font-weight: 600; }

/* ---------- Screenshot strip after outcomes ---------- */
.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: clamp(48px, 6vw, 72px) 0 0;
}
@media (min-width: 720px)  { .screenshot-strip { grid-template-columns: repeat(5, 1fr); } }
.screenshot-strip .img-ph {
  aspect-ratio: 3 / 4;
  background:
    repeating-linear-gradient(135deg, rgba(244,234,208,0.06) 0 1px, transparent 1px 12px),
    rgba(0,0,0,0.18);
  border-color: rgba(244,234,208,0.18);
}
.screenshot-strip .img-ph::after { border-color: rgba(244,234,208,0.3); }
.screenshot-strip .img-ph-label { color: rgba(244,234,208,0.7); }
.screenshot-strip .img-ph-label span { color: var(--ottone-light); }

/* ---------- Image placeholder slot inside platform/bonus/community cards ---------- */
.platform-card-img,
.bonus-card-img {
  aspect-ratio: 4 / 3;
  margin: -36px -28px 8px;
  border: none;
  border-bottom: 1px solid var(--espresso-15);
}
.section--verde .bonus-card-img { border-bottom-color: rgba(244, 234, 208, 0.18); }
.bonus-card-img { margin: -40px -32px 8px; }
.platform-card-img .img-ph-label,
.bonus-card-img .img-ph-label {
  font-size: 12px;
}

/* ---------- Bonus list (numbered list inside bonus card 2) ---------- */
.bonus-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  counter-reset: bonusitem;
}
.bonus-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
}
.bonus-list li::before {
  counter-increment: bonusitem;
  content: counter(bonusitem) ".";
  position: absolute;
  left: 4px; top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--rosso);
}
.section--verde .bonus-list li::before { color: var(--ottone-light); }

/* ---------- Community block ---------- */
.community-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 880px) { .community-block { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.community-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 20px;
}
.community-text p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--espresso-80);
}
.community-text p strong { color: var(--espresso); font-weight: 600; }
.community-img {
  aspect-ratio: 4 / 3;
}

/* ---------- Course features list (pricing card bullets) ---------- */
.course-features {
  list-style: none;
  margin: 8px 0 24px;
  padding: 0;
  flex: 1;
}
.course-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid rgba(244, 234, 208, 0.14);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 234, 208, 0.86);
}
.course-features li:first-child { border-top: none; }
.course-features li::before {
  content: '✦';
  position: absolute;
  left: 6px; top: 10px;
  color: var(--ottone-light);
  font-family: var(--font-display);
  font-size: 12px;
}
.course-features li strong { color: var(--crema-light); font-weight: 600; }

/* Override course-title sizing for big price display on pricing card */
.courses .course-title em { font-style: italic; color: var(--ottone-light); }

/* Adjust outcome-list color for verde bg specifically */
.section--verde .outcome-list li { color: var(--crema-light); }
.section--verde .outcome-list li strong { color: var(--ottone-light); }

/* ============================================================
   SALES PAGE v2 — refined placeholders + alternating rows
   ============================================================ */

/* ---------- Sales-page tighter section pacing ---------- */
.sales-page .section { padding: clamp(56px, 7vw, 96px) 0; }
.sales-page .sales-hero { padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 7vw, 88px); }

/* ---------- Refined placeholder (designer-grade, no wireframe) ---------- */
.ph {
  background: linear-gradient(135deg, var(--crema) 0%, var(--crema-dark) 100%);
  border: 1px solid var(--espresso-15);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,147,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(31,21,16,0.06);
  pointer-events: none;
}
.ph-caption {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--espresso-60);
  text-align: center;
  padding: 28px;
  line-height: 1.5;
  max-width: 88%;
}
.ph-caption small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--espresso-40);
  margin-bottom: 10px;
}

/* Aspect variants */
.ph--landscape { aspect-ratio: 4 / 3; }
.ph--video     { aspect-ratio: 16 / 9; }
.ph--portrait  { aspect-ratio: 3 / 4; }
.ph--square    { aspect-ratio: 1 / 1; }
.ph--circle    { aspect-ratio: 1 / 1; border-radius: 50%; }
.ph--circle::after { border-radius: 50%; inset: 14px; }
.ph--banner    { aspect-ratio: 5 / 2; }

/* Device variant (darker, suggests screen content) */
.ph--device {
  background: linear-gradient(160deg, #2D2218 0%, #1F1510 100%);
  border-color: var(--espresso);
}
.ph--device::before {
  background: radial-gradient(ellipse at 30% 20%, rgba(244,234,208,0.05) 0%, transparent 50%);
}
.ph--device::after { border-color: rgba(244,234,208,0.08); }
.ph--device .ph-caption { color: rgba(244,234,208,0.5); }
.ph--device .ph-caption small { color: var(--ottone-light); }

/* Photo variant (warm scene tint) */
.ph--photo {
  background: linear-gradient(150deg, #E9D9B4 0%, #D6C49A 50%, #C2A87A 100%);
}
.ph--photo .ph-caption { color: rgba(31,21,16,0.5); }
.ph--photo .ph-caption small { color: rgba(192,76,67,0.7); }

/* Product variant (object on cream — for guidebook, app, priručnik) */
.ph--product {
  background: linear-gradient(135deg, #F8F2DF 0%, #E5D5AC 100%);
}

/* On verde bg */
.section--verde .ph {
  background: linear-gradient(135deg, rgba(244,234,208,0.08) 0%, rgba(244,234,208,0.04) 100%);
  border-color: rgba(244,234,208,0.18);
}
.section--verde .ph::after { border-color: rgba(244,234,208,0.08); }
.section--verde .ph-caption { color: rgba(244,234,208,0.55); }
.section--verde .ph-caption small { color: var(--ottone-light); }
.section--verde .ph--photo {
  background: linear-gradient(150deg, rgba(244,234,208,0.18) 0%, rgba(184,147,74,0.18) 100%);
}
.section--verde .ph--photo .ph-caption { color: rgba(244,234,208,0.65); }
.section--verde .ph--device {
  background: linear-gradient(160deg, #18241D 0%, #0E1612 100%);
  border-color: rgba(244,234,208,0.12);
}

/* ---------- Sales hero v2 (text-left + device-mockup right) ---------- */
.sales-hero-v2 {
  padding: clamp(40px, 5vw, 72px) 0 clamp(64px, 7vw, 88px);
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
}
.sales-hero-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 960px) { .sales-hero-v2-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 6vw, 80px); } }

/* Hero device mockup: shows laptop + small phone overlay */
.hero-device-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 300px;
}
.hero-device-laptop {
  position: absolute;
  inset: 5% 4% 26% 0;
}
.hero-device-phone {
  position: absolute;
  width: 31%;
  right: 3%;
  bottom: 3%;
  z-index: 2;
}
.course-screen {
  position: relative;
  background: #181310;
  border: 10px solid #241a14;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 28px 50px -30px rgba(31, 21, 16, 0.55),
    0 0 0 1px rgba(244, 234, 208, 0.22) inset;
}
.hero-device-laptop.course-screen,
.hero-device-phone.course-screen {
  position: absolute;
}
.course-screen::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -20px;
  height: 20px;
  background: linear-gradient(180deg, #7E7161, #4D4136);
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}
.course-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-screen--phone {
  aspect-ratio: 9 / 17.5;
  border-width: 8px;
  border-radius: 24px;
}
.course-screen--phone::after { display: none; }
.course-screen--phone img {
  height: 100%;
  object-fit: cover;
  object-position: 34% center;
  background: #ADDDE0;
}
.course-box-card {
  position: absolute;
  left: 3%;
  bottom: 0;
  width: 28%;
  z-index: 3;
  padding: 10px;
  background: var(--crema-light);
  border: 1px solid var(--espresso-15);
  transform: rotate(-5deg);
  box-shadow: 0 18px 32px -24px rgba(31, 21, 16, 0.45);
}
.course-box-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 560px) {
  .hero-device-stage { min-height: 240px; }
  .course-box-card { width: 34%; }
  .hero-device-phone { width: 34%; }
}

/* ---------- Scenario composite (left text | center circle photo | right text) ---------- */
.scenario-composite {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 880px) {
  .scenario-composite {
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(32px, 4vw, 56px);
  }
}
.scenario-col {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--espresso);
}
.scenario-col p { margin-bottom: 24px; }
.scenario-col p:last-child { margin-bottom: 0; }
.scenario-col p::before {
  content: '·';
  color: var(--rosso);
  font-weight: 700;
  margin-right: 10px;
  font-size: 22px;
  vertical-align: -2px;
}
.scenario-col strong { font-weight: 600; color: var(--espresso); }
.scenario-col--right { text-align: left; }
.scenario-photo { width: 320px; max-width: 100%; }
@media (min-width: 1080px) { .scenario-photo { width: 380px; } }
.sales-photo {
  position: relative;
  margin: 0;
  background: var(--crema-light);
  padding: 12px;
  border: 1px solid var(--espresso-15);
  box-shadow: 0 24px 42px -30px rgba(31, 21, 16, 0.4);
}
.sales-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.sales-photo--circle {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}
.sales-photo--circle img {
  border-radius: 50%;
  object-position: center;
}
.scenario-tail {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--espresso);
  max-width: 720px;
  margin: clamp(40px, 5vw, 56px) auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--espresso-15);
}
.scenario-tail strong { color: var(--rosso); font-weight: 600; }

/* ---------- Proof screenshots ---------- */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  max-width: 980px;
  align-items: center;
}
@media (min-width: 720px) { .proof-strip { grid-template-columns: 0.82fr 1fr 1fr; } }
.proof-strip figure {
  background: var(--crema-light);
  border: 1px solid var(--espresso-15);
  padding: 10px;
  box-shadow: 0 20px 40px -28px rgba(31, 21, 16, 0.35);
  transform: rotate(-1deg);
}
.proof-strip figure:nth-child(2) { transform: rotate(1.4deg); }
.proof-strip figure:nth-child(3) { transform: rotate(-0.7deg); }
.proof-strip img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* ---------- Outcome rows (icon + text cards, stacked) ---------- */
.outcome-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.outcome-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  border-radius: 4px;
}
@media (min-width: 600px) { .outcome-row { grid-template-columns: 72px 1fr; gap: 32px; padding: 28px 36px; } }
.section--verde .outcome-row {
  background: rgba(244,234,208,0.06);
  border-color: rgba(244,234,208,0.18);
}
.outcome-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rosso);
  color: var(--crema-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.outcome-icon svg { width: 26px; height: 26px; }
.section--verde .outcome-icon { background: var(--ottone); color: var(--espresso); }
.outcome-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--espresso);
}
.outcome-text strong { font-weight: 600; color: var(--rosso); }
.section--verde .outcome-text { color: var(--crema-light); }
.section--verde .outcome-text strong { color: var(--ottone-light); }

/* ---------- Package overview card (icon + text bullets) ---------- */
.package-card {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 56px);
  max-width: 720px;
  margin: 0 auto;
  border-radius: 4px;
}
.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.package-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed var(--espresso-15);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--espresso);
}
.package-list li:last-child { border-bottom: none; }
.package-list li:first-child { padding-top: 8px; }
.package-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosso);
}
.package-icon svg { width: 22px; height: 22px; }
.package-list strong { font-weight: 600; color: var(--rosso); }

/* ---------- Feature row (alternating image-text two-col) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--espresso-15); }
.section--verde .feature-row + .feature-row { border-top-color: rgba(244,234,208,0.18); }
@media (min-width: 880px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 88px); }
  .feature-row--reverse .feature-media { order: 2; }
}
.feature-media { width: 100%; }
.sales-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--crema-light);
  border: 1px solid var(--espresso-15);
  box-shadow: 0 24px 44px -30px rgba(31, 21, 16, 0.38);
}
.sales-media img {
  width: 100%;
  height: auto;
  display: block;
}
.sales-media--screen {
  padding: 10px;
  border-radius: 6px;
}
.sales-media--screen img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(31, 21, 16, 0.08);
}
.sales-media--module {
  padding: 10px;
  border-radius: 4px;
  background: var(--crema-light);
}
.sales-media--module img {
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
}
.sales-media--product {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  padding: 18px;
  background: linear-gradient(135deg, var(--crema-light), var(--paper));
}
.sales-media--product img {
  max-height: 360px;
  object-fit: contain;
}
.sales-media--phone {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 28px;
  background: #1F1510;
}
.sales-media--phone img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
}
.sales-media--app {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 8px;
  background: #1F1510;
}
.sales-media--app img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  background: #ADDDE0;
}
.section--verde .sales-media {
  background: rgba(244, 234, 208, 0.06);
  border-color: rgba(244, 234, 208, 0.18);
  box-shadow: 0 24px 50px -32px rgba(0, 0, 0, 0.45);
}
.section--verde .sales-media--product {
  background: rgba(244, 234, 208, 0.9);
}
.feature-text { max-width: 480px; }
.feature-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: 24px;
  text-transform: uppercase;
  font-variation-settings: "opsz" 14;
}
.feature-text h3 em { font-style: italic; color: var(--rosso); text-transform: none; }
.feature-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 16px;
}
.feature-text p:last-child { margin-bottom: 0; }
.feature-text strong { color: var(--espresso); font-weight: 600; }
.section--verde .feature-text h3 { color: var(--crema-light); }
.section--verde .feature-text h3 em { color: var(--ottone-light); }
.section--verde .feature-text p { color: rgba(244,234,208,0.82); }
.section--verde .feature-text strong { color: var(--crema-light); }

/* ---------- Module timeline (vertical numbered list, NOT accordion) ---------- */
.module-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: clamp(32px, 5vw, 56px);
}
.module-timeline::before {
  content: '';
  position: absolute;
  left: clamp(20px, 3vw, 28px);
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: repeating-linear-gradient(180deg, var(--espresso-40) 0 4px, transparent 4px 10px);
}
.module-step {
  position: relative;
  padding: 32px 0;
}
.module-step + .module-step { border-top: 1px solid var(--espresso-15); }
.module-step-num {
  position: absolute;
  left: calc(-1 * clamp(32px, 5vw, 56px) + clamp(20px, 3vw, 28px));
  transform: translateX(-50%);
  top: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--rosso);
  color: var(--rosso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  z-index: 2;
}
.module-step-num::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(192,76,67,0.18);
  pointer-events: none;
}
.module-step-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 8px;
  display: block;
}
.module-step h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--espresso);
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 14;
}
.module-step-intro {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 18px;
}
.module-step-intro strong { color: var(--espresso); font-weight: 600; }
.module-step-cap {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--espresso-60);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.module-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  columns: 1;
}
@media (min-width: 720px) { .module-step-list { columns: 2; column-gap: 32px; } }
.module-step-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--espresso-80);
  break-inside: avoid;
}
.module-step-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--rosso);
}
.module-step-banner { margin-top: 8px; }

/* ---------- Pricing v2 (lighter cards, on cream not verde) ---------- */
.pricing-section { background: var(--crema); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 780px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.pricing-ribbon {
  background: var(--rosso);
  color: var(--crema-light);
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 10px 0;
}
.pricing-card-body { padding: 36px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 18px;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.95;
  color: var(--espresso);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 18;
}
.pricing-price em {
  font-style: italic;
  color: var(--rosso);
}
.pricing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.pricing-features li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso-80);
  border-bottom: 1px dashed var(--espresso-15);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0; top: 12px;
  color: var(--rosso);
  font-weight: 600;
  font-size: 16px;
}
.pricing-features strong { color: var(--rosso); font-weight: 600; }
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--rosso);
  color: var(--crema-light);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s var(--ease);
}
.pricing-cta:hover { background: var(--rosso-dark); }
.pricing-subnote {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--espresso-60);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.pricing-subnote a {
  color: var(--rosso);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-cards {
  width: 214px;
  height: auto;
  margin: 18px auto 0;
  opacity: 0.88;
}
.pricing-zirog {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--espresso-60);
  max-width: 640px;
  margin: clamp(32px, 4vw, 48px) auto 0;
}
.pricing-zirog a { color: var(--rosso); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sales pricing: homepage-inspired dark course cards ---------- */
.section--verde.pricing-section {
  background: var(--verde);
}
.section--verde.pricing-section .pricing-grid {
  max-width: 980px;
  gap: 0;
  border: 1px solid rgba(244, 234, 208, 0.26);
  background: rgba(36, 58, 46, 0.72);
}
.section--verde.pricing-section .pricing-card {
  background: var(--verde-dark);
  color: var(--crema-light);
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.section--verde.pricing-section .pricing-card + .pricing-card {
  border-left: 1px solid rgba(244, 234, 208, 0.26);
}
.section--verde.pricing-section .pricing-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: min(220px, 70%);
  z-index: 2;
  background: var(--rosso);
  color: var(--crema-light);
  letter-spacing: 0;
}
.section--verde.pricing-section .pricing-card-body {
  padding: clamp(32px, 4vw, 48px);
}
.section--verde.pricing-section .pricing-card--featured .pricing-card-body {
  padding-top: clamp(60px, 5vw, 72px);
}
.section--verde.pricing-section .pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ottone-light);
  letter-spacing: 0;
}
.section--verde.pricing-section .pricing-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.section--verde.pricing-section .pricing-price {
  font-family: var(--font-body);
  font-size: clamp(36px, 5vw, 46px);
  font-weight: 700;
  color: var(--crema-light);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.section--verde.pricing-section .pricing-price em {
  color: inherit;
  font-style: normal;
}
.section--verde.pricing-section .pricing-features {
  margin-bottom: 34px;
  padding-top: 4px;
  border-top: 1px solid rgba(244, 234, 208, 0.18);
}
.section--verde.pricing-section .pricing-features li {
  color: rgba(244, 234, 208, 0.82);
  border-bottom-color: rgba(244, 234, 208, 0.16);
}
.section--verde.pricing-section .pricing-features li::before {
  content: "\2192";
  color: var(--ottone-light);
}
.section--verde.pricing-section .pricing-features strong {
  color: var(--ottone-light);
}
.section--verde.pricing-section .pricing-cta {
  background: var(--rosso);
  color: var(--crema-light);
  letter-spacing: 0;
  border: 1px solid rgba(244, 234, 208, 0.22);
  min-height: 54px;
}
.section--verde.pricing-section .pricing-cta:hover {
  background: var(--rosso-dark);
}
.section--verde.pricing-section .pricing-subnote {
  color: rgba(244, 234, 208, 0.64);
}
.section--verde.pricing-section .pricing-subnote strong,
.section--verde.pricing-section .pricing-subnote a {
  color: var(--crema-light);
}
.section--verde.pricing-section .pricing-cards {
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(250, 245, 230, 0.92);
  opacity: 1;
}
.section--verde.pricing-section .pricing-zirog {
  color: rgba(244, 234, 208, 0.72);
}
.section--verde.pricing-section .pricing-zirog a {
  color: var(--ottone-light);
}

@media (max-width: 779px) {
  .section--verde.pricing-section .pricing-grid {
    gap: 18px;
    border: 0;
    background: transparent;
  }
  .section--verde.pricing-section .pricing-card {
    border: 1px solid rgba(244, 234, 208, 0.24);
  }
  .section--verde.pricing-section .pricing-card + .pricing-card {
    border-left: 1px solid rgba(244, 234, 208, 0.24);
  }
  .section--verde.pricing-section .pricing-ribbon {
    width: 100%;
  }
}

/* ============================================================
   THANK-YOU PAGE TEMPLATE
   ============================================================ */

.thank-hero {
  padding: clamp(72px, 9vw, 128px) 0 clamp(56px, 8vw, 96px);
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
  text-align: center;
}
.thank-hero-inner { max-width: 720px; margin: 0 auto; }
.thank-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--rosso);
  color: var(--crema-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 56px;
  position: relative;
}
.thank-icon::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(192, 76, 67, 0.4);
  border-radius: 50%;
}
.thank-icon::before {
  content: '';
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(192, 76, 67, 0.18);
  border-radius: 50%;
}
.thank-icon svg { width: 44px; height: 44px; }
.thank-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rosso);
  margin-bottom: 24px;
  padding: 8px 18px;
  border-top: 1px solid var(--rosso);
  border-bottom: 1px solid var(--rosso);
}
.thank-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 18;
}
.thank-h1 em { font-style: italic; color: var(--rosso); }
.thank-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 580px;
  margin: 0 auto 12px;
}
.thank-sub strong { color: var(--espresso); font-weight: 600; }
.thank-sub a:not(.btn):not(.btn-primary):not(.btn-ghost):not(.btn-text) { color: var(--rosso); text-decoration: underline; text-underline-offset: 3px; }

.thank-steps-section {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--paper);
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.thank-steps-head {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-bottom: clamp(32px, 5vw, 56px);
  font-variation-settings: "opsz" 14;
}
.thank-steps-head em { font-style: italic; color: var(--rosso); }
.thank-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  counter-reset: thankstep;
}
.thank-steps li {
  position: relative;
  padding: 24px 0 24px 72px;
  border-bottom: 1px solid var(--espresso-15);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--espresso);
}
.thank-steps li:last-child { border-bottom: none; }
.thank-steps li::before {
  counter-increment: thankstep;
  content: counter(thankstep, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  color: var(--rosso);
  line-height: 1;
  font-variation-settings: "opsz" 14;
}
.thank-steps strong { color: var(--rosso); font-weight: 600; }
.thank-steps a { color: var(--rosso); text-decoration: underline; text-underline-offset: 3px; }

.thank-tail {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--crema);
  text-align: center;
}
.thank-tail-inner { max-width: 600px; margin: 0 auto; }
.thank-tail h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 14;
}
.thank-tail h2 em { font-style: italic; color: var(--rosso); }
.thank-tail p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin-bottom: 28px;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.social-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--espresso-15);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  background: var(--paper);
  transition: all 0.25s var(--ease);
}
.social-strip a:hover { border-color: var(--rosso); color: var(--rosso); }
.social-strip a strong { font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: 44px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.4s var(--ease-out), box-shadow 0.3s var(--ease);
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--rosso);
  opacity: 0.22;
  transition: opacity 0.3s var(--ease);
}
.contact-card:hover {
  border-color: var(--rosso);
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -28px rgba(31,21,16,0.32);
}
.contact-card:hover::before { opacity: 1; }
.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--crema-dark);
  color: var(--rosso);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-card-icon svg { width: 26px; height: 26px; }
.contact-card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--espresso);
  font-variation-settings: "opsz" 14;
}
.contact-card h3 em { font-style: italic; color: var(--rosso); }
.contact-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso-80);
}
.contact-card .contact-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--espresso);
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.contact-card .contact-link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.contact-card .contact-link:hover { color: var(--rosso); }
.contact-card .contact-link:hover::after { transform: translateX(4px); }

/* Page hero variant with image alongside (used on /kontakt/) */
.page-hero--with-media .page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  margin-top: 8px;
}
@media (min-width: 880px) {
  .page-hero--with-media .page-hero-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 6vw, 80px); }
}
.page-hero--with-media .page-hero-text { max-width: 560px; }
.page-hero--with-media h1 {
  font-size: clamp(36px, 4.2vw, 60px);
  margin-bottom: 28px;
}
.page-hero--with-media .lede {
  padding-top: 24px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--espresso-80);
}

/* Clean lesson-form variant: no card bg, just bottom-border inputs */
.lesson-form.lesson-form--clean {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.lesson-form--clean::before { display: none; }
.lesson-form--clean textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 24px;
  outline: none;
  resize: vertical;
  min-height: 100px;
  letter-spacing: 0.002em;
  transition: border-color 0.3s var(--ease);
}
.lesson-form--clean textarea:focus { border-color: var(--rosso); }
.lesson-form--clean textarea::placeholder { color: var(--espresso-40); font-style: italic; font-weight: 400; }

.contact-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: clamp(32px, 5vw, 56px) clamp(28px, 4vw, 48px);
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 14;
}
.contact-form-wrap h2 em { font-style: italic; color: var(--rosso); }
.contact-form-wrap .contact-form-lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--espresso-80);
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .lesson-form {
    padding: 34px 24px;
  }
  .lesson-form .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--espresso-60);
}

.form-status.is-success { color: var(--verde); font-weight: 700; }
.form-status.is-error { color: var(--rosso); font-weight: 700; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(64px, 8vw, 96px);
  background: linear-gradient(180deg, var(--crema) 0%, var(--paper) 100%);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 880px) { .about-hero-grid { grid-template-columns: 1.1fr 1fr; } }
.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 20px;
}
.about-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 18;
}
.about-hero-title em { font-style: italic; color: var(--rosso); }
.about-hero-dek {
  font-family: var(--font-body);
  font-style: normal;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 480px;
}
.about-hero-dek strong { color: var(--espresso); font-weight: 600; }
.about-hero-portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--espresso-15);
}
.about-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.04) saturate(1.02) contrast(1.02);
}

/* Story section: 2-col grid on desktop, image-left + text-right */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .about-story-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(48px, 6vw, 80px);
  }
}
.about-story-media {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .about-story-media { max-width: none; position: sticky; top: 110px; }
}
.about-story {
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--espresso);
}
.about-story p { margin-bottom: 28px; }
.about-story p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 0.8;
  float: left;
  margin: 8px 14px -4px 0;
  color: var(--rosso);
  font-variation-settings: "opsz" 14;
}
.about-story em { font-style: italic; color: var(--rosso); }
.about-story strong { font-weight: 600; }
.about-story blockquote {
  margin: 40px 0;
  padding-left: 32px;
  border-left: 2px solid var(--rosso);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--espresso);
}
.about-story blockquote em { color: var(--rosso); }
.about-story blockquote footer {
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-60);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--espresso-15);
  border: 1px solid var(--espresso-15);
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 760px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--paper);
  padding: 40px 24px 32px;
  text-align: center;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 26px;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--rosso);
  opacity: 0.5;
}
.stat-num {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--rosso);
  margin: 8px 0 14px;
  font-variation-settings: "opsz" 18;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
  line-height: 1.5;
}

/* About methodology — two-column text + image */
.about-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .about-method { grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 6vw, 80px); }
  .about-method--reverse .about-method-text { order: 2; }
}
.about-method-text { max-width: 540px; }
.about-method-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  margin-bottom: 18px;
  display: block;
}
.about-method h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 14;
}
.about-method h2 em { font-style: italic; color: var(--rosso); }
.about-method p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 18px;
}
.about-method p:last-child { margin-bottom: 0; }
.about-method p strong { color: var(--espresso); font-weight: 600; }
.about-method-media {
  width: 100%;
}

/* ============================================================
   LEGAL PAGES (politika privatnosti, uslovi korišćenja)
   ============================================================ */

.legal-page-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  text-align: center;
}
.legal-page-hero .breadcrumb { justify-content: center; }
.legal-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 18;
}
.legal-page-hero h1 em { font-style: italic; color: var(--rosso); }
.legal-page-hero .lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 640px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--espresso-15);
}

.legal-section {
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 128px);
  background: var(--paper);
}
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--espresso);
}
.legal-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--espresso-60);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--espresso-15);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}
.legal-meta strong { color: var(--espresso); font-weight: 500; }
.legal-prose h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.3;
  color: var(--espresso);
  margin: 48px 0 18px;
  padding-top: 32px;
  border-top: 1px solid var(--espresso-15);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.legal-prose h2:first-child,
.legal-prose .legal-meta + h2 { margin-top: 0; padding-top: 0; border-top: none; }
.legal-prose p { margin-bottom: 18px; }
.legal-prose strong { font-weight: 600; }
.legal-prose em { font-style: italic; color: var(--rosso); }
.legal-prose a {
  color: var(--rosso);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--espresso-15);
  transition: text-decoration-color 0.25s var(--ease);
}
.legal-prose a:hover { text-decoration-color: currentColor; }
.legal-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.legal-prose ul li {
  position: relative;
  padding: 4px 0 4px 22px;
}
.legal-prose ul li::before {
  content: '·';
  position: absolute;
  left: 6px; top: 4px;
  color: var(--rosso);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}

/* ============================================================
   ZAJEDNICA (Vitalia community / Skool group)
   ============================================================ */

/* Reusable larger button (also useful elsewhere) */
.btn-lg {
  padding: 18px 32px;
  font-size: 15px;
  letter-spacing: 0.06em;
}

/* ---------- Hero ---------- */
.zaj-hero {
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 80px);
}
.zaj-hero-wrap .breadcrumb { margin-bottom: 28px; }
.zaj-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 920px) {
  .zaj-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    gap: clamp(48px, 5vw, 88px);
  }
}
.zaj-hero-text { text-align: left; }
.zaj-hero-text .chapter { margin-bottom: 22px; }
.zaj-hero-h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.zaj-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--espresso-80);
  max-width: 540px;
  margin: 0 0 32px;
}
.zaj-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 28px 32px 28px 8px;
}
.zaj-hero-polaroid {
  position: relative;
  max-width: 540px;
  width: 100%;
}
.zaj-hero-polaroid::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--espresso-40);
  pointer-events: none;
  z-index: 0;
}
.zaj-hero-polaroid-frame {
  position: relative;
  z-index: 1;
  background: var(--crema-light);
  padding: 18px 18px 56px;
  box-shadow: 0 2px 4px rgba(31, 21, 16, 0.08), 0 24px 44px -24px rgba(31, 21, 16, 0.4);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease-out);
}
.zaj-hero-polaroid:hover .zaj-hero-polaroid-frame { transform: rotate(-0.4deg) translateY(-4px); }
.zaj-hero-polaroid-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--espresso-15);
  background: #1a1a1a;
}
.zaj-hero-polaroid-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  text-align: center;
  z-index: 2;
}
.zaj-hero-polaroid .hero-stamp {
  top: -22px;
  right: -22px;
  width: 104px;
  height: 104px;
}
.zaj-hero-polaroid .hero-stamp-text { font-size: 14px; }
.zaj-hero-polaroid .hero-stamp-text strong { font-size: 22px; }
.zaj-stat-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.zaj-stat-strip li {
  flex: 1 1 140px;
  padding: 18px 20px;
  text-align: left;
  border-right: 1px solid var(--espresso-15);
}
.zaj-stat-strip li:last-child { border-right: none; }
.zaj-stat-strip li strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--rosso);
  margin-bottom: 6px;
}
.zaj-stat-strip li span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--espresso-60);
}
@media (max-width: 720px) {
  .zaj-stat-strip li { flex: 1 1 50%; border-bottom: 1px solid var(--espresso-15); }
  .zaj-stat-strip li:nth-child(2n) { border-right: none; }
  .zaj-stat-strip li:nth-last-child(-n+2) { border-bottom: none; }
}
.zaj-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.zaj-hero-fine {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--espresso-60);
  max-width: 460px;
  margin: 0;
}

/* ---------- Section heads (shared inside zajednica) ---------- */
.zaj-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.zaj-section-head .chapter { justify-content: center; margin-bottom: 20px; }
.zaj-section-head .display { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 20px; }
.zaj-section-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 600px;
  margin: 0 auto;
}
.section--verde .zaj-section-lede { color: rgba(244, 234, 208, 0.82); }

/* ---------- Intro / positioning ---------- */
.zaj-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .zaj-intro-grid { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
}
.zaj-intro-eyebrow .chapter { margin-bottom: 16px; }
.zaj-intro-caveat {
  font-family: var(--font-hand);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--rosso);
  line-height: 1.1;
  margin: 0;
}
.zaj-intro-text .display {
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.zaj-intro-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--espresso-80);
  margin-bottom: 18px;
  max-width: 60ch;
}
.zaj-intro-sign {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--rosso);
  margin-top: 8px !important;
}

/* ---------- Three pillars ---------- */
.zaj-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .zaj-pillar-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.zaj-pillar {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  border-top: 3px solid var(--rosso);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.zaj-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(31, 21, 16, 0.18);
}
.zaj-pillar-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  display: grid;
  place-items: center;
  color: var(--rosso);
}
.zaj-pillar-icon svg { width: 28px; height: 28px; }
.zaj-pillar-tag {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
}
.zaj-pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.01em;
}
.zaj-pillar p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Community categories ---------- */
.zaj-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .zaj-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .zaj-cat-grid { grid-template-columns: repeat(4, 1fr); } }
.zaj-cat {
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s var(--ease);
}
.zaj-cat:hover { background: var(--crema-dark); }
.zaj-cat-emoji { font-size: 28px; line-height: 1; }
.zaj-cat h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--espresso);
  margin: 0;
  letter-spacing: 0;
}
.zaj-cat p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Classroom tiers ---------- */
.zaj-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 880px) { .zaj-tier-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.zaj-tier {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: clamp(32px, 3.2vw, 44px);
  padding-top: calc(clamp(32px, 3.2vw, 44px) + 4px);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(10, 22, 16, 0.55), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
.zaj-tier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ottone-light);
  opacity: 0.55;
}
.zaj-tier--paid::before { background: var(--rosso); opacity: 1; }
.zaj-tier--unlock {
  background: var(--verde-dark);
  color: var(--crema-light);
  border-color: rgba(184, 147, 74, 0.35);
}
.zaj-tier--unlock::before { background: var(--ottone-light); opacity: 1; }
.zaj-tier-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--crema);
  color: var(--espresso);
  border: 1px solid var(--espresso-15);
  align-self: flex-start;
  margin-bottom: 18px;
}
.zaj-tier--paid .zaj-tier-tag { background: var(--rosso); color: var(--crema-light); border-color: var(--rosso); }
.zaj-tier--unlock .zaj-tier-tag { background: var(--ottone-light); color: var(--espresso); border-color: var(--ottone); }
.zaj-tier {
  color: var(--espresso);
}
.zaj-tier h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.zaj-tier--unlock { color: var(--crema-light); }
.zaj-tier--unlock h3 { color: var(--ottone-light); }
.zaj-tier-lede {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--espresso-80);
  margin: 0 0 22px;
}
.zaj-tier--unlock .zaj-tier-lede { color: rgba(244, 234, 208, 0.82); }
.zaj-tier ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.zaj-tier li {
  padding: 14px 0;
  border-top: 1px solid var(--espresso-15);
}
.zaj-tier li:last-child { border-bottom: 1px solid var(--espresso-15); }
.zaj-tier li strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--espresso);
  margin-bottom: 4px;
}
.zaj-tier li span {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--espresso-80);
}
.zaj-tier-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--rosso);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: color 0.25s var(--ease);
}
.zaj-tier-link:hover { color: var(--rosso-dark); }
.zaj-tier-note {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 234, 208, 0.78);
  margin: 0;
}

/* ---------- Gamification ladder ---------- */
.zaj-ladder {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zaj-ladder-row {
  display: grid;
  grid-template-columns: 88px 1fr 48px;
  gap: 24px;
  align-items: center;
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: 22px 24px;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
}
.zaj-ladder-row:hover { transform: translateX(4px); background: var(--crema-dark); }
.zaj-ladder-row--top { background: var(--rosso); border-color: var(--rosso-dark); color: var(--crema-light); }
.zaj-ladder-row--top:hover { background: var(--rosso-dark); }
.zaj-ladder-num { text-align: center; }
.zaj-ladder-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--espresso-60);
  margin-bottom: 2px;
}
.zaj-ladder-row--top .zaj-ladder-label { color: rgba(244, 234, 208, 0.7); }
.zaj-ladder-value {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--rosso);
}
.zaj-ladder-row--top .zaj-ladder-value { color: var(--crema-light); }
.zaj-ladder-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.3;
  color: var(--espresso);
  margin: 0 0 4px;
  letter-spacing: 0;
}
.zaj-ladder-row--top .zaj-ladder-text h4 { color: var(--crema-light); }
.zaj-ladder-text h4 em { font-style: normal; color: var(--rosso); font-weight: 600; }
.zaj-ladder-row--top .zaj-ladder-text h4 em { color: var(--ottone-light); }
.zaj-ladder-text p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--espresso-80);
  margin: 0;
}
.zaj-ladder-row--top .zaj-ladder-text p { color: rgba(244, 234, 208, 0.85); }
.zaj-ladder-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  color: var(--ottone);
  justify-self: end;
}
.zaj-ladder-icon svg { width: 24px; height: 24px; }
.zaj-ladder-icon--star { color: var(--rosso); }
.zaj-ladder-row--top .zaj-ladder-icon--top { color: var(--crema-light); }
.zaj-ladder-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--espresso-60);
  margin: 32px auto 0;
  max-width: 600px;
}
@media (max-width: 600px) {
  .zaj-ladder-row { grid-template-columns: 64px 1fr; gap: 16px; padding: 18px 18px; }
  .zaj-ladder-icon { display: none; }
  .zaj-ladder-value { font-size: 32px; }
}

/* ---------- 2-step join ---------- */
.zaj-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) { .zaj-steps { grid-template-columns: 1fr 1fr; gap: 48px; } }
.zaj-step {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.zaj-step-num {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 600;
}
.zaj-step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.005em;
}
.zaj-pill {
  display: inline-block;
  background: var(--rosso);
  color: var(--crema-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78em;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}
.zaj-step p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
}
.zaj-step em { font-style: italic; color: var(--rosso); font-weight: 500; }
.zaj-step-media {
  margin-top: 10px;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.zaj-step-img {
  margin-top: 10px;
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--espresso-15);
  background: var(--crema);
  box-shadow: 0 18px 36px -22px rgba(31, 21, 16, 0.35);
}

/* ---------- Closing CTA ---------- */
.zaj-close-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.zaj-close-wrap .chapter { justify-content: center; margin-bottom: 24px; }
.zaj-close-wrap .display { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin-bottom: 24px; }
.zaj-close-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0 auto 36px;
  max-width: 580px;
}
.zaj-close-caveat {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rosso);
  margin: 28px 0 0;
}

/* ============================================================
   INDIVIDUALNI ČASOVI (1:1 lessons)
   ============================================================ */

/* ---------- Hero (2-col: text left + polaroid right) ---------- */
.ind-hero {
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 80px);
}
.ind-hero-wrap .breadcrumb { margin-bottom: 28px; }
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 920px) {
  .ind-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    gap: clamp(48px, 5vw, 88px);
  }
}
.ind-hero-text { text-align: left; }
.ind-hero-text .chapter { margin-bottom: 22px; }
.ind-hero-h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.ind-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--espresso-80);
  max-width: 540px;
  margin: 0 0 32px;
}
.ind-stat-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.ind-stat-strip li {
  flex: 1 1 140px;
  padding: 18px 20px;
  text-align: left;
  border-right: 1px solid var(--espresso-15);
}
.ind-stat-strip li:last-child { border-right: none; }
.ind-stat-strip li strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--rosso);
  margin-bottom: 6px;
}
.ind-stat-strip li span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--espresso-60);
}
@media (max-width: 720px) {
  .ind-stat-strip li { flex: 1 1 50%; border-bottom: 1px solid var(--espresso-15); }
  .ind-stat-strip li:nth-child(2n) { border-right: none; }
  .ind-stat-strip li:nth-last-child(-n+2) { border-bottom: none; }
}
.ind-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.ind-hero-fine {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--espresso-60);
  max-width: 460px;
  margin: 0;
}

/* Hero polaroid (right side of 2-col hero) — same vibe as zajednica */
.ind-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 28px 32px 28px 8px;
}
.ind-hero-polaroid {
  position: relative;
  max-width: 540px;
  width: 100%;
}
.ind-hero-polaroid::before {
  content: '';
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--espresso-40);
  pointer-events: none;
  z-index: 0;
}
.ind-hero-polaroid-frame {
  position: relative;
  z-index: 1;
  background: var(--crema-light);
  padding: 18px 18px 56px;
  box-shadow: 0 2px 4px rgba(31, 21, 16, 0.08), 0 24px 44px -24px rgba(31, 21, 16, 0.4);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease-out);
}
.ind-hero-polaroid:hover .ind-hero-polaroid-frame { transform: rotate(-0.4deg) translateY(-4px); }
.ind-hero-polaroid-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--espresso-15);
  background: #1a1a1a;
}
.ind-hero-polaroid-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  text-align: center;
  z-index: 2;
}
.ind-hero-polaroid .hero-stamp {
  top: -22px;
  right: -22px;
  width: 104px;
  height: 104px;
}
.ind-hero-polaroid .hero-stamp-text { font-size: 14px; }
.ind-hero-polaroid .hero-stamp-text strong { font-size: 22px; }

/* ---------- Section heads ---------- */
.ind-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.ind-section-head .chapter { justify-content: center; margin-bottom: 20px; }
.ind-section-head .display { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 20px; }
.ind-section-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 600px;
  margin: 0 auto;
}
.section--verde .ind-section-lede { color: rgba(244, 234, 208, 0.82); }

/* ---------- Za koga (fit cards) ---------- */
.ind-fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 760px) { .ind-fit-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.ind-fit-card {
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: clamp(28px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ind-fit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -20px rgba(31, 21, 16, 0.18);
}
.ind-fit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  display: grid;
  place-items: center;
  color: var(--rosso);
}
.ind-fit-icon svg { width: 26px; height: 26px; }
.ind-fit-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.005em;
}
.ind-fit-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Process (4 steps) ---------- */
.ind-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) { .ind-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1100px) { .ind-steps { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
/* Widen the wrap for this section so 4 cards have more room than the default 1360px container allows. */
@media (min-width: 1100px) {
  .ind-process > .wrap { max-width: 1520px; padding-left: clamp(20px, 2.4vw, 40px); padding-right: clamp(20px, 2.4vw, 40px); }
}
.ind-step {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  padding: clamp(22px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.ind-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rosso);
  opacity: 0.85;
}
.ind-step-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--rosso);
}
.ind-step-icon {
  position: absolute;
  top: clamp(22px, 1.8vw, 28px);
  right: clamp(22px, 1.8vw, 28px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  display: grid;
  place-items: center;
  color: var(--rosso);
}
.ind-step-icon svg { width: 22px; height: 22px; }
.ind-step h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0;
  padding-right: 60px;
  letter-spacing: -0.005em;
}
.ind-step p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
}
.ind-step p a {
  color: var(--rosso);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--espresso-15);
  transition: text-decoration-color 0.2s var(--ease);
}
.ind-step p a:hover { text-decoration-color: currentColor; }

/* ---------- Includes grid ---------- */
.ind-includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 640px) { .ind-includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ind-includes-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.ind-include {
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s var(--ease);
}
.ind-include:hover { background: var(--crema-dark); }
.ind-include-icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--rosso);
  margin-bottom: 4px;
}
.ind-include-icon svg { width: 24px; height: 24px; }
.ind-include h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--espresso);
  margin: 0;
}
.ind-include p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Price card ---------- */
.ind-price-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--crema-light);
  color: var(--espresso);
  padding: clamp(40px, 4vw, 56px) clamp(32px, 3.5vw, 48px);
  border: 1px solid rgba(184, 147, 74, 0.4);
  box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  text-align: center;
  position: relative;
}
.ind-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ottone-light);
}
.ind-price-tag {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  font-weight: 600;
  margin-bottom: 16px;
}
.ind-price-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.ind-price-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(72px, 8vw, 112px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--espresso);
}
.ind-price-currency {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--rosso);
  line-height: 1;
  margin-top: 12px;
}
.ind-price-period {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--espresso-60);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 32px;
}
.ind-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  border-top: 1px solid var(--espresso-15);
  border-bottom: 1px solid var(--espresso-15);
}
.ind-price-list li {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--espresso);
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--espresso-15);
  position: relative;
}
.ind-price-list li:first-child { border-top: none; }
.ind-price-check {
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  color: var(--verde);
}
.ind-price-cta { width: 100%; justify-content: center; }
.ind-price-fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--espresso-60);
  margin: 16px 0 0;
}

/* ---------- Teacher teaser ---------- */
.ind-teacher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 920px) { .ind-teacher-grid { grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 5vw, 88px); } }
.ind-teacher-text .chapter { margin-bottom: 18px; }
.ind-teacher-text .display { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin-bottom: 24px; }
.ind-teacher-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 16px;
  max-width: 56ch;
}
.ind-teacher-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--rosso);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.25s var(--ease);
}
.ind-teacher-link:hover { color: var(--rosso-dark); }
.ind-teacher-frame {
  position: relative;
  background: var(--crema-light);
  padding: 16px 16px 24px;
  box-shadow: 0 2px 4px rgba(31, 21, 16, 0.08), 0 24px 44px -24px rgba(31, 21, 16, 0.35);
  transform: rotate(1.5deg);
  max-width: 380px;
  margin: 0 auto;
}
.ind-teacher-frame .ph { aspect-ratio: 3 / 4; width: 100%; }
.ind-teacher-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--espresso-15);
}
.ind-teacher-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  text-align: center;
}

/* ---------- Teeachie platform section ---------- */
.ind-platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 820px) { .ind-platform-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.ind-platform-card {
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ind-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -22px rgba(31, 21, 16, 0.22);
}
.ind-platform-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  border-bottom: 1px solid var(--espresso-15);
  background: #f6f7f8;
}
.ind-platform-card-body {
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ind-platform-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  color: var(--rosso);
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  border-radius: 50%;
  margin-bottom: 4px;
}
.ind-platform-icon svg { width: 20px; height: 20px; }
.ind-platform-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.005em;
}
.ind-platform-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--espresso-80);
  margin: 0;
}
.ind-platform-footer {
  max-width: 1080px;
  margin: clamp(40px, 4vw, 64px) auto 0;
  padding-top: clamp(32px, 3vw, 48px);
  border-top: 1px solid var(--espresso-15);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 760px) { .ind-platform-footer { grid-template-columns: 1.5fr auto; gap: 32px; } }
.ind-platform-note {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
  max-width: 56ch;
}
.ind-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  justify-self: start;
}
.ind-platform-link:hover {
  background: var(--espresso);
  color: var(--crema-light);
}
@media (min-width: 760px) { .ind-platform-link { justify-self: end; } }

/* Green-theme overrides for Teeachie section when used as section--verde */
.section--verde .ind-platform-footer { border-top-color: rgba(244, 234, 208, 0.18); }
.section--verde .ind-platform-note { color: rgba(244, 234, 208, 0.78); }
.section--verde .ind-platform-link {
  color: var(--crema-light);
  border-color: rgba(244, 234, 208, 0.4);
}
.section--verde .ind-platform-link:hover {
  background: var(--crema-light);
  color: var(--espresso);
  border-color: var(--crema-light);
}

/* ---------- FAQ (native details) ---------- */
.ind-faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--espresso-15);
}
.ind-faq-item {
  border-bottom: 1px solid var(--espresso-15);
}
.ind-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.4;
  color: var(--espresso);
  position: relative;
  transition: color 0.2s var(--ease);
}
.ind-faq-item summary::-webkit-details-marker { display: none; }
.ind-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  color: var(--rosso);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.ind-faq-item[open] summary::after { content: '−'; }
.ind-faq-item summary:hover { color: var(--rosso); }
.ind-faq-body {
  padding: 0 48px 22px 0;
}
.ind-faq-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin: 0;
  max-width: 60ch;
}

/* ---------- Apply form ---------- */
.ind-apply-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 920px) { .ind-apply-wrap { grid-template-columns: 0.85fr 1.15fr; gap: clamp(48px, 5vw, 88px); } }
.ind-apply-text .chapter { margin-bottom: 18px; }
.ind-apply-text .display { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin-bottom: 20px; }
.ind-apply-lede {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0 0 18px;
  max-width: 50ch;
}
.ind-apply-aside {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--espresso-60);
  margin: 24px 0 0;
}
.ind-apply-aside a {
  color: var(--rosso);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--espresso-15);
}
.ind-apply-aside a:hover { text-decoration-color: currentColor; }

/* ============================================================
   SPAKUJ SE ZA ITALIJU (VSL funnel · /italijanski-za-putovanja/)
   ============================================================ */

/* ---------- Hero ---------- */
.spk-hero {
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  padding: clamp(48px, 6vw, 96px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.spk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(184, 147, 74, 0.08), transparent 50%),
                    radial-gradient(circle at 0% 80%, rgba(194, 49, 39, 0.05), transparent 45%);
  pointer-events: none;
}
.spk-hero-wrap { position: relative; }
.spk-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .spk-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 5vw, 88px);
  }
}
.spk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--rosso);
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--rosso);
  border-radius: 999px;
  margin-bottom: 24px;
}
.spk-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosso);
  box-shadow: 0 0 0 0 rgba(194, 49, 39, 0.4);
  animation: spk-pulse 2.4s ease-out infinite;
}
@keyframes spk-pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 49, 39, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(194, 49, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 49, 39, 0); }
}
.spk-hero .spk-hero-h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.spk-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--espresso-80);
  max-width: 540px;
  margin: 0 0 28px;
}
.spk-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.spk-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso);
}
.spk-hero-bullets li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--verde);
  margin-top: 1px;
}

/* Hero email-capture card on the right */
.spk-hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}
.spk-hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--crema-light);
  border: 1px solid rgba(184, 147, 74, 0.4);
  padding: clamp(32px, 3.4vw, 44px) clamp(28px, 3vw, 40px);
  box-shadow: 0 40px 80px -36px rgba(31, 21, 16, 0.4), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.spk-hero-card-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rosso);
}
.spk-hero-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosso);
  background: rgba(194, 49, 39, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 600;
}

/* Spakuj form (used in hero card AND bottom CTA) */
.spk-form { display: flex; flex-direction: column; gap: 0; }
.spk-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-60);
  margin-bottom: 8px;
}
.spk-form input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  outline: none;
  margin-bottom: 22px;
  transition: border-color 0.3s var(--ease);
}
.spk-form input::placeholder { color: var(--espresso-40); font-style: italic; font-weight: 400; }
.spk-form input:focus { border-color: var(--rosso); }
.spk-form-cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.spk-form-fine {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--espresso-60);
  margin: 14px 0 0;
}

/* Inverse form on verde bg (final CTA) */
.spk-form--inverse .spk-form-label { color: rgba(244, 234, 208, 0.6); }
.spk-form--inverse input {
  color: var(--crema-light);
  border-bottom-color: rgba(244, 234, 208, 0.4);
}
.spk-form--inverse input::placeholder { color: rgba(244, 234, 208, 0.4); }
.spk-form--inverse input:focus { border-bottom-color: var(--ottone-light); }
.spk-form--inverse .spk-form-fine { color: rgba(244, 234, 208, 0.55); }

/* ---------- Section heads (shared) ---------- */
.spk-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.spk-section-head .chapter { justify-content: center; margin-bottom: 20px; }
.spk-section-head .display { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 20px; }
.spk-section-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 600px;
  margin: 0 auto;
}
.section--verde .spk-section-lede,
.section--verde .spk-final-lede { color: rgba(244, 234, 208, 0.82); }

/* ---------- Šta ćeš naučiti ---------- */
.spk-learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 760px) { .spk-learn-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.spk-learn-card {
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.spk-learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -22px rgba(31, 21, 16, 0.2);
}
.spk-learn-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--rosso);
}
.spk-learn-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  display: grid;
  place-items: center;
  color: var(--rosso);
}
.spk-learn-icon svg { width: 26px; height: 26px; }
.spk-learn-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 4px 0 0;
  letter-spacing: -0.005em;
}
.spk-learn-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Trening preview ---------- */
.spk-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 920px) {
  .spk-preview-grid { grid-template-columns: 1fr 1fr; gap: clamp(48px, 5vw, 88px); }
}
.spk-preview-text .chapter { margin-bottom: 18px; }
.spk-preview-text .display { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 22px; }
.spk-preview-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 24px;
  max-width: 56ch;
}
.spk-preview-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.spk-preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso);
}
.spk-preview-list li svg { width: 20px; height: 20px; color: var(--verde); flex-shrink: 0; margin-top: 1px; }
.spk-preview-cta { align-self: flex-start; }

.spk-preview-media { position: relative; }
.spk-preview-screen {
  position: relative;
  display: block;
  background: var(--espresso);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(31, 21, 16, 0.45);
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.spk-preview-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  transition: background 0.3s var(--ease);
}
.spk-preview-screen:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 64px -28px rgba(31, 21, 16, 0.55);
}
.spk-preview-screen:hover::after { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%); }
.spk-preview-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.spk-preview-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  color: var(--rosso);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 2;
}
.spk-preview-screen:hover .spk-preview-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.spk-preview-play svg { width: 36px; height: 36px; margin-left: 4px; }
.spk-preview-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--crema-light);
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.spk-preview-caption {
  display: block;
  margin-top: 14px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso-80);
  text-align: center;
}

/* ---------- Marija ---------- */
.spk-marija-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 920px) {
  .spk-marija-grid { grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 5vw, 88px); }
}
.spk-marija-text .chapter { margin-bottom: 18px; }
.spk-marija-text .display { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 22px; }
.spk-marija-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 16px;
  max-width: 56ch;
}
.spk-marija-sign {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rosso);
  margin-top: 8px !important;
}
.spk-marija-frame {
  position: relative;
  background: var(--crema-light);
  padding: 16px 16px 48px;
  box-shadow: 0 2px 4px rgba(31, 21, 16, 0.08), 0 24px 44px -24px rgba(31, 21, 16, 0.35);
  transform: rotate(-1.5deg);
  max-width: 360px;
  margin: 0 auto;
}
.spk-marija-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--espresso-15);
}
.spk-marija-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  text-align: center;
}

/* ---------- Final CTA ---------- */
.spk-final-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.spk-final-wrap .chapter { justify-content: center; margin-bottom: 22px; }
.spk-final-wrap .display { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin-bottom: 20px; }
.spk-final-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 540px;
}
.spk-final-wrap .spk-form { max-width: 440px; margin: 0 auto; text-align: left; }

/* ============================================================
   TRENING (post-submission viewing page · /trening/)
   Standalone VSL: minimal logo-only header, no nav, no footer link soup.
   ============================================================ */

/* ---------- Minimal topbar (logo only, no nav, no CTA) ---------- */
.trn-topbar {
  background: var(--crema);
  padding: clamp(20px, 2vw, 28px) 0;
  border-bottom: 1px solid var(--espresso-15);
}
.trn-topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trn-topbar .brand { text-decoration: none; }

/* ---------- Minimal footer ---------- */
.trn-foot {
  background: var(--espresso);
  color: rgba(244, 234, 208, 0.6);
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 13px;
}
.trn-foot-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Hero ---------- */
.trn-hero {
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  padding: clamp(48px, 6vw, 88px) 0 clamp(40px, 5vw, 64px);
  text-align: center;
}
.trn-hero-wrap { max-width: 760px; margin: 0 auto; }
.trn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--verde);
  background: rgba(62, 92, 74, 0.1);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 28px;
}
.trn-hero-eyebrow svg {
  width: 16px;
  height: 16px;
}
.trn-hero .trn-hero-h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.trn-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  color: var(--espresso-80);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Video frame ---------- */
.trn-video-section { padding-top: clamp(32px, 4vw, 56px); padding-bottom: clamp(48px, 6vw, 96px); }
.trn-video-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 1px solid var(--espresso-15);
  box-shadow: 0 40px 80px -36px rgba(31, 21, 16, 0.5);
}
.trn-video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.trn-video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Mask Loom's "share link" + "open in Loom" icons in the top-right corner.
   Loom's embed params don't reliably hide them, so we paint over with a soft
   gradient that matches the video's warm interior tone. Pointer-events: auto
   ensures the masked icons can't be clicked through. */
.trn-video-aspect::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(120px, 14%, 180px);
  height: clamp(48px, 7vw, 72px);
  background:
    radial-gradient(ellipse at top right, rgba(31, 21, 16, 0.95) 0%, rgba(31, 21, 16, 0.75) 55%, rgba(31, 21, 16, 0) 100%);
  z-index: 2;
}
.trn-video-fine {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--espresso-60);
  margin: 28px auto 0;
  max-width: 520px;
}

/* ---------- Priručnik download ---------- */
.trn-prirucnik-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 880px) {
  .trn-prirucnik-grid { grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 5vw, 88px); }
}
.trn-prirucnik-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  background: rgba(194, 49, 39, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
}
.trn-prirucnik-text .display {
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.trn-prirucnik-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 22px;
  max-width: 56ch;
}
.trn-prirucnik-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trn-prirucnik-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso);
}
.trn-prirucnik-list li svg {
  width: 20px;
  height: 20px;
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 1px;
}
.trn-prirucnik-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trn-prirucnik-cta-icon {
  width: 20px;
  height: 20px;
}
.trn-prirucnik-fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--espresso-60);
  margin: 14px 0 0 !important;
}
.trn-prirucnik-media {
  display: flex;
  justify-content: center;
}
.trn-prirucnik-media img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(31, 21, 16, 0.25));
}

/* ---------- Upsell (hidden until 80% playback) ---------- */
.trn-upsell {
  display: none;
}
.trn-upsell.is-revealed {
  display: block;
  animation: trn-upsell-in 0.8s var(--ease-out) both;
}
@keyframes trn-upsell-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trn-upsell-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.trn-upsell-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ottone-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.trn-upsell-head .display {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.trn-upsell-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(244, 234, 208, 0.82);
  max-width: 600px;
  margin: 0 auto;
}
.trn-upsell-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--crema-light);
  border: 1px solid rgba(184, 147, 74, 0.4);
  padding: clamp(32px, 3.4vw, 48px);
  position: relative;
  box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.5);
}
.trn-upsell-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ottone-light);
}
.trn-upsell-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rosso);
  background: rgba(194, 49, 39, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
}
.trn-upsell-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.trn-upsell-card p {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--espresso-80);
  margin: 0 0 22px;
  max-width: 56ch;
}
.trn-upsell-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trn-upsell-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--espresso);
}
.trn-upsell-list li svg {
  width: 18px;
  height: 18px;
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Tail ---------- */
.trn-tail-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.trn-tail .display {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.trn-tail-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 580px;
  margin: 0 auto 32px;
}
.trn-tail-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   DŽEPNI PRIRUČNIK (evergreen lead magnet · /dzepni-prirucnik/)
   Sister VSL to /italijanski-za-putovanja/. PDF deliverable, no video.
   ============================================================ */

/* ---------- Hero ---------- */
.dz-hero {
  background: var(--crema);
  border-bottom: 1px solid var(--espresso-15);
  padding: clamp(48px, 6vw, 96px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.dz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(184, 147, 74, 0.08), transparent 50%),
                    radial-gradient(circle at 0% 80%, rgba(194, 49, 39, 0.05), transparent 45%);
  pointer-events: none;
}
.dz-hero-wrap { position: relative; }
.dz-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 940px) {
  .dz-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 5vw, 88px);
  }
}
.dz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--rosso);
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--rosso);
  border-radius: 999px;
  margin-bottom: 24px;
}
.dz-hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rosso);
  box-shadow: 0 0 0 0 rgba(194, 49, 39, 0.4);
  animation: dz-pulse 2.4s ease-out infinite;
}
@keyframes dz-pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 49, 39, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(194, 49, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 49, 39, 0); }
}
.dz-hero .dz-hero-h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.dz-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--espresso-80);
  max-width: 540px;
  margin: 0 0 28px;
}
.dz-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dz-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso);
}
.dz-hero-bullets li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--verde);
  margin-top: 1px;
}

/* Hero email-capture card */
.dz-hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}
.dz-hero-card-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--crema-light);
  border: 1px solid rgba(184, 147, 74, 0.4);
  padding: clamp(32px, 3.4vw, 44px) clamp(28px, 3vw, 40px);
  box-shadow: 0 40px 80px -36px rgba(31, 21, 16, 0.4), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.dz-hero-card-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rosso);
}
.dz-hero-card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosso);
  background: rgba(194, 49, 39, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 600;
}

/* Form (used in hero card and final CTA) */
.dz-form { display: flex; flex-direction: column; gap: 0; }
.dz-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--espresso-60);
  margin-bottom: 8px;
}
.dz-form input {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--espresso);
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  outline: none;
  margin-bottom: 22px;
  transition: border-color 0.3s var(--ease);
}
.dz-form input::placeholder { color: var(--espresso-40); font-style: italic; font-weight: 400; }
.dz-form input:focus { border-color: var(--rosso); }
.dz-form-cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dz-form-cta-icon {
  width: 20px;
  height: 20px;
}
.dz-form-fine {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--espresso-60);
  margin: 14px 0 0;
}
/* Inverse form on verde bg */
.dz-form--inverse .dz-form-label { color: rgba(244, 234, 208, 0.6); }
.dz-form--inverse input {
  color: var(--crema-light);
  border-bottom-color: rgba(244, 234, 208, 0.4);
}
.dz-form--inverse input::placeholder { color: rgba(244, 234, 208, 0.4); }
.dz-form--inverse input:focus { border-bottom-color: var(--ottone-light); }
.dz-form--inverse .dz-form-fine { color: rgba(244, 234, 208, 0.55); }

/* ---------- Section heads (shared) ---------- */
.dz-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.dz-section-head .chapter { justify-content: center; margin-bottom: 20px; }
.dz-section-head .display { font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 20px; }
.dz-section-lede {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--espresso-80);
  max-width: 600px;
  margin: 0 auto;
}
.section--verde .dz-section-lede,
.section--verde .dz-final-lede { color: rgba(244, 234, 208, 0.82); }

/* ---------- Šta je unutra (10 cards) ---------- */
.dz-inside-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 640px) { .dz-inside-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 960px) { .dz-inside-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1200px) { .dz-inside-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }
.dz-inside-card {
  background: var(--crema);
  border: 1px solid var(--espresso-15);
  padding: clamp(22px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dz-inside-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -20px rgba(31, 21, 16, 0.18);
}
.dz-inside-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--espresso-15);
  display: grid;
  place-items: center;
  color: var(--rosso);
  margin-bottom: 4px;
}
.dz-inside-icon svg { width: 20px; height: 20px; }
.dz-inside-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.25;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.005em;
}
.dz-inside-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--espresso-80);
  margin: 0;
}

/* ---------- Cover preview ---------- */
.dz-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 880px) {
  .dz-preview-grid { grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 5vw, 88px); }
}
.dz-preview-text .chapter { margin-bottom: 18px; }
.dz-preview-text .display { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 22px; }
.dz-preview-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 24px;
  max-width: 56ch;
}
.dz-preview-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.dz-preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--espresso);
}
.dz-preview-list li svg { width: 20px; height: 20px; color: var(--verde); flex-shrink: 0; margin-top: 1px; }
.dz-preview-cta { align-self: flex-start; }

.dz-preview-media { display: flex; justify-content: center; }
.dz-preview-media img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(31, 21, 16, 0.25));
}

/* ---------- Marija ---------- */
.dz-marija-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 920px) {
  .dz-marija-grid { grid-template-columns: 1.2fr 0.8fr; gap: clamp(48px, 5vw, 88px); }
}
.dz-marija-text .chapter { margin-bottom: 18px; }
.dz-marija-text .display { font-size: clamp(32px, 3.6vw, 50px); line-height: 1.05; margin-bottom: 22px; }
.dz-marija-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--espresso-80);
  margin-bottom: 16px;
  max-width: 56ch;
}
.dz-marija-sign {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--rosso);
  margin-top: 8px !important;
}
.dz-marija-frame {
  position: relative;
  background: var(--crema-light);
  padding: 16px 16px 48px;
  box-shadow: 0 2px 4px rgba(31, 21, 16, 0.08), 0 24px 44px -24px rgba(31, 21, 16, 0.35);
  transform: rotate(-1.5deg);
  max-width: 360px;
  margin: 0 auto;
}
.dz-marija-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--espresso-15);
}
.dz-marija-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--espresso);
  text-align: center;
}

/* ---------- Final CTA ---------- */
.dz-final-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.dz-final-wrap .chapter { justify-content: center; margin-bottom: 22px; }
.dz-final-wrap .display { font-size: clamp(36px, 5vw, 60px); line-height: 1.05; margin-bottom: 20px; }
.dz-final-lede {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 560px;
}
.dz-final-wrap .dz-form { max-width: 440px; margin: 0 auto; text-align: left; }

/* ============================================================
   BAND · free-consultation form readability bumps
   The consultation form lives in the rosso .band section. Default
   .lesson-form labels are 10px caps tracked at 0.22em which reads
   too thin against rosso. Bump size, slacken tracking, increase
   contrast on labels and textarea so the form is easy to skim.
   ============================================================ */

.band .lesson-form {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
}
.band .lesson-form label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--espresso-80);
  margin-bottom: 12px;
  font-weight: 600;
}
.band .lesson-form input,
.band .lesson-form textarea {
  font-size: 17px;
  padding: 14px 0 16px;
  margin-bottom: 28px;
}
.band .lesson-form textarea {
  min-height: 110px;
}
.band .lesson-form .row { gap: 28px; margin-bottom: 0; }
.band .lesson-form button[type="submit"] {
  margin-top: 12px;
  padding: 18px 28px;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.band .lesson-form .fine {
  font-size: 12.5px;
  margin-top: 18px;
}

/* ============================================================
   IND-APPLY · green-themed application form
   Section flips to dark green to match the newsletter that
   follows, form content is cream-on-green with pill-style
   radio buttons.
   ============================================================ */

.ind-apply {
  background: var(--verde-dark);
  color: var(--crema-light);
  position: relative;
  overflow: hidden;
}
.ind-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l60 60M60 0L0 60' stroke='%23F4EAD0' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.ind-apply > .wrap { position: relative; }

.ind-apply .ind-apply-text .chapter { color: rgba(244, 234, 208, 0.7); }
.ind-apply .ind-apply-text .chapter .num { color: var(--ottone-light); }
.ind-apply .ind-apply-text .chapter .rule { background: rgba(244, 234, 208, 0.3); }
.ind-apply .ind-apply-text .chapter > span:last-child { color: rgba(244, 234, 208, 0.72); }

.ind-apply .ind-apply-text .display { color: var(--crema-light); }
.ind-apply .ind-apply-text .display em { color: var(--ottone-light); }

.ind-apply .ind-apply-lede { color: rgba(244, 234, 208, 0.85); }
.ind-apply .ind-apply-aside { color: rgba(244, 234, 208, 0.6); }
.ind-apply .ind-apply-aside a {
  color: var(--ottone-light);
  text-decoration-color: rgba(244, 234, 208, 0.3);
}
.ind-apply .ind-apply-aside a:hover { text-decoration-color: var(--ottone-light); }

/* Form card -------------------------------------------------- */
.ind-apply .lesson-form,
.ind-apply .lesson-form.lesson-form--clean {
  background: rgba(244, 234, 208, 0.04);
  border: 1px solid rgba(244, 234, 208, 0.18);
  border-radius: 4px;
  padding: clamp(28px, 3.5vw, 44px);
  color: var(--crema-light);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}
.ind-apply .lesson-form::before,
.ind-apply .lesson-form.lesson-form--clean::before { display: none; }

/* Top-level field labels ------------------------------------ */
.ind-apply .lesson-form > label {
  color: var(--ottone-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Inputs ---------------------------------------------------- */
.ind-apply .lesson-form input,
.ind-apply .lesson-form textarea {
  border-bottom: 1px solid rgba(244, 234, 208, 0.28);
  color: var(--crema-light);
  font-size: 16px;
  padding: 12px 0 14px;
  margin-bottom: 26px;
}
.ind-apply .lesson-form input:focus,
.ind-apply .lesson-form textarea:focus {
  border-bottom-color: var(--ottone-light);
}
.ind-apply .lesson-form input::placeholder,
.ind-apply .lesson-form textarea::placeholder {
  color: rgba(244, 234, 208, 0.35);
}
.ind-apply .lesson-form input:-webkit-autofill,
.ind-apply .lesson-form input:-webkit-autofill:hover,
.ind-apply .lesson-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--crema-light);
  -webkit-box-shadow: 0 0 0 1000px var(--verde-dark) inset;
  caret-color: var(--crema-light);
  transition: background-color 9999s ease-in-out 0s;
}

/* Fieldsets / legends --------------------------------------- */
.ind-apply .form-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
.ind-apply .form-fieldset legend {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.4;
  color: var(--crema-light);
  margin-bottom: 14px;
  padding: 0;
}

/* Radio pills ----------------------------------------------- */
.ind-apply .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ind-apply .lesson-form .radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 10px 18px;
  border: 1px solid rgba(244, 234, 208, 0.28);
  border-radius: 999px;
  background: rgba(244, 234, 208, 0.04);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--crema-light);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  position: relative;
}
.ind-apply .lesson-form .radio-option:hover {
  background: rgba(244, 234, 208, 0.1);
  border-color: rgba(244, 234, 208, 0.55);
}
.ind-apply .lesson-form .radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}
.ind-apply .lesson-form .radio-option:has(input[type="radio"]:checked) {
  background: var(--ottone-light);
  border-color: var(--ottone-light);
  color: var(--verde-dark);
  font-weight: 600;
}
.ind-apply .lesson-form .radio-option:has(input[type="radio"]:focus-visible) {
  outline: 2px solid var(--ottone-light);
  outline-offset: 3px;
}
.ind-apply .lesson-form .radio-option > span {
  line-height: 1;
}

/* "Other:" radio with inline text input --------------------- */
.ind-apply .lesson-form .radio-option--other {
  flex-wrap: nowrap;
  gap: 8px;
  padding-right: 14px;
}
.ind-apply .lesson-form .radio-option--other input[type="text"] {
  flex: 0 1 160px;
  min-width: 0;
  width: 160px;
  margin: 0;
  padding: 4px 0 5px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 234, 208, 0.4);
  color: inherit;
}
.ind-apply .lesson-form .radio-option--other:has(input[type="radio"]:checked) input[type="text"] {
  border-bottom-color: rgba(36, 58, 46, 0.4);
}
.ind-apply .lesson-form .radio-option--other input[type="text"]:focus {
  border-bottom-color: var(--verde-dark);
}

/* Submit / status / fine print ------------------------------ */
.ind-apply .lesson-form button[type="submit"] {
  margin-top: 8px;
  background: var(--ottone-light);
  border-color: var(--ottone-light);
  color: var(--verde-dark);
  padding: 18px 28px;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.ind-apply .lesson-form button[type="submit"]:hover {
  background: var(--crema-light);
  border-color: var(--crema-light);
  color: var(--verde-dark);
  transform: translateY(-1px);
}
.ind-apply .lesson-form .fine {
  color: rgba(244, 234, 208, 0.6);
}
.ind-apply .form-status { color: rgba(244, 234, 208, 0.85); }
.ind-apply .form-status.is-success { color: var(--ottone-light); }
.ind-apply .form-status.is-error    { color: #F4B7B2; }

/* Honeypot stays invisible regardless ----------------------- */
.ind-apply .form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive: tighten gap on narrow screens ----------------- */
@media (max-width: 600px) {
  .ind-apply .lesson-form .radio-option {
    padding: 9px 14px;
    font-size: 13.5px;
  }
  .ind-apply .lesson-form .radio-option--other input[type="text"] {
    width: 120px;
    flex-basis: 120px;
  }
}
