:root{
  --color-forest:#163C2E;
  --color-forest-light:#21573F;
  --color-forest-dark:#0E2A20;
  --color-terracotta:#C85A34;
  --color-terracotta-dark:#A8461F;
  --color-terracotta-light:#E07C51;
  --color-gold:#E3A83B;
  --color-gold-dark:#C98B1F;
  --color-teal:#1B5158;
  --color-teal-dark:#123A3F;
  --color-cream:#F3EEE2;
  --color-paper:#FBF8F1;
  --color-ink:#1D1B18;
  --color-ink-soft:#4A463F;
  --color-border-soft:rgba(29,27,24,.1);

  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-xl:32px;
  --radius-pill:999px;

  --shadow-sm:0 1px 2px rgba(29,27,24,.08), 0 1px 1px rgba(29,27,24,.05);
  --shadow-md:0 6px 16px rgba(29,27,24,.09), 0 2px 6px rgba(29,27,24,.06);
  --shadow-lg:0 16px 40px rgba(29,27,24,.14), 0 6px 16px rgba(29,27,24,.08);
  --shadow-xl:0 28px 70px rgba(29,27,24,.18), 0 10px 26px rgba(29,27,24,.1);

  --space-xs:.5rem;
  --space-sm:1rem;
  --space-md:1.5rem;
  --space-lg:2.5rem;
  --space-xl:4rem;
  --space-2xl:6rem;

  --font-heading:'Schibsted Grotesk', sans-serif;
  --font-body:'Schibsted Grotesk', sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x: hidden;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--color-paper);
  color:var(--color-ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:var(--font-heading);margin:0 0 .6em;line-height:1.15;font-weight:700;}
p{margin:0 0 1em;color:var(--color-ink-soft);}
ul{margin:0;padding:0;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input,textarea{font-family:inherit;}

.section-eyebrow{
  display:inline-block;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.35rem .9rem;
  border-radius:var(--radius-pill);
  border:1px solid currentColor;
  margin-bottom:1.2rem;
  color:var(--color-forest);
}
.section-eyebrow--light{color:#F3EEE2;border-color:rgba(243,238,226,.5);}
.section-eyebrow--dark{color:var(--color-forest);border-color:var(--color-forest);}

.section-heading{
  font-size:clamp(1.8rem,3.2vw + 1rem,2.75rem);
  color:var(--color-ink);
}
.section-heading--light{color:#F3EEE2;}
.section-lead{
  font-size:clamp(1rem,.4vw + 1rem,1.15rem);
  max-width:640px;
  color:var(--color-ink-soft);
}
.section-lead--light{color:rgba(243,238,226,.85);}

.section-header{
  max-width:760px;
  margin:0 auto var(--space-xl);
  padding:0 1.5rem;
  text-align:center;
}
.section-header--light{color:#F3EEE2;}

.section-closing{
  text-align:center;
  font-weight:600;
  font-size:.95rem;
  color:var(--color-ink-soft);
  max-width:520px;
  margin:var(--space-lg) auto 0;
  padding:0 1.5rem;
}
.section-closing--light{color:rgba(243,238,226,.9);}
.section-closing--dark{color:var(--color-ink);}


.button-primary, .button-secondary, .button-outline-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.9rem 1.9rem;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:1rem;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  min-height:44px;
}
.button-primary{
  background:linear-gradient(135deg,var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
  color:#FBF8F1;
  box-shadow:var(--shadow-md);
}
.button-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);}
.button-primary--light{
  background:#FBF8F1;
  color:var(--color-forest-dark);
}
.button-primary--light:hover{background:var(--color-cream);}
.button-secondary{
  background:transparent;
  color:var(--color-forest);
  border:2px solid var(--color-forest);
}
.button-secondary:hover{background:var(--color-forest);color:#F3EEE2;}
.button-outline-light{
  border:2px solid #F3EEE2;
  color:#F3EEE2;
}
.button-outline-light:hover{background:#F3EEE2;color:var(--color-forest-dark);}


.main-navigation{position:sticky;top:0;z-index:1000;padding:1rem 1rem 0;}
.nav-container{
  max-width:1180px;
  margin:0 auto;
  background:var(--color-paper);
  border-radius:var(--radius-pill);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.65rem .8rem .65rem 1.4rem;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s ease;
}
.nav-logo{display:flex;align-items:center;gap:.6rem;font-weight:800;font-size:1.05rem;color:var(--color-forest);}
.nav-links{display:flex;gap:1.8rem;}
.nav-links a{
  font-weight:600;
  font-size:.95rem;
  color:var(--color-ink-soft);
  position:relative;
  padding:.3rem 0;
  transition:color .25s ease;
}
.nav-links a:hover, .nav-links a.active{color:var(--color-forest);}
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:100%;height:2px;
  background:var(--color-terracotta);
  border-radius:2px;
}
.nav-cta{
  background:var(--color-forest);
  color:#F3EEE2;
  padding:.7rem 1.4rem;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:.9rem;
  transition:background .25s ease, transform .25s ease;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--color-forest-light);transform:translateY(-1px);}
.mobile-menu-toggle{
  display:none;
  font-size:1.4rem;
  color:var(--color-forest);
  width:44px;height:44px;
  align-items:center;justify-content:center;
}

.mobile-menu-overlay{
  position:fixed;
  inset:0;
  background:linear-gradient(150deg,var(--color-forest) 0%, var(--color-teal-dark) 100%);
  z-index:2000;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease;
}
.mobile-menu-overlay.is-open{opacity:1;visibility:visible;}
.mobile-menu-close{
  position:absolute;
  top:1.5rem;right:1.5rem;
  font-size:1.8rem;
  color:#F3EEE2;
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  transition:background .25s ease;
}
.mobile-menu-close:hover{background:rgba(243,238,226,.15);}
.mobile-menu-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.8rem;
}
.mobile-menu-links a{
  font-size:clamp(1.6rem,6vw,2.4rem);
  font-weight:700;
  color:#F3EEE2;
  transition:color .25s ease, transform .25s ease;
}
.mobile-menu-links a:hover{color:var(--color-gold);transform:translateX(6px);}


.welcome-banner{
  background:linear-gradient(135deg,var(--color-forest) 0%, var(--color-teal-dark) 100%);
  color:#F3EEE2;
  padding:6rem 1.5rem 5.5rem;
  overflow:hidden;
  position:relative;
}
.welcome-banner::after{
  content:"";
  position:absolute;
  right:-120px;top:-120px;
  width:420px;height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(227,168,59,.25), transparent 70%);
}
.welcome-banner__content{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:3rem;
  align-items:center;
  position:relative;
  z-index:1;
}
.welcome-banner__heading{
  font-size:clamp(2.2rem,4vw + 1rem,3.6rem);
  margin-bottom:.6em;
}
.welcome-banner__lead{
  font-size:clamp(1rem,.5vw + 1rem,1.2rem);
  color:rgba(243,238,226,.85);
  max-width:520px;
}
.welcome-banner__actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.6rem;}
.welcome-banner__media{position:relative;}
.welcome-banner__media img{
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-xl);
  border:1px solid rgba(243,238,226,.15);
  aspect-ratio:4/3;
  object-fit:cover;
}
.welcome-banner__badge{
  position:absolute;
  bottom:-1.4rem;left:-1.4rem;
  background:var(--color-gold);
  color:var(--color-ink);
  border-radius:var(--radius-lg);
  padding:1rem 1.4rem;
  box-shadow:var(--shadow-lg);
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.welcome-banner__badge-number{font-size:1.8rem;font-weight:800;}
.welcome-banner__badge-label{font-size:.8rem;font-weight:600;}


.key-benefits{padding:var(--space-2xl) 1.5rem;max-width:1180px;margin:0 auto;}
.key-benefits__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}
.benefit-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:2rem 1.6rem;
  box-shadow:var(--shadow-sm);
  border-top:4px solid transparent;
  transition:transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);}
.benefit-card--forest{border-top-color:var(--color-forest);}
.benefit-card--terracotta{border-top-color:var(--color-terracotta);}
.benefit-card--gold{border-top-color:var(--color-gold);}
.benefit-card--teal{border-top-color:var(--color-teal);}
.benefit-card__icon{
  width:52px;height:52px;
  border-radius:var(--radius-md);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
  margin-bottom:1.2rem;
  background:var(--color-cream);
  color:var(--color-forest);
}
.benefit-card--terracotta .benefit-card__icon{color:var(--color-terracotta);}
.benefit-card--gold .benefit-card__icon{color:var(--color-gold-dark);}
.benefit-card--teal .benefit-card__icon{color:var(--color-teal);}
.benefit-card h3{font-size:1.15rem;margin-bottom:.5rem;}
.benefit-card p{font-size:.95rem;margin:0;}


.service-showcase{
  background:linear-gradient(135deg,var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
  padding:var(--space-2xl) 0;
  color:#FBF8F1;
}
.service-showcase .section-header{padding:0 1.5rem;}
.service-showcase__track{
  display:flex;
  gap:1.6rem;
  overflow-x:auto;
  padding:1rem 1.5rem 2rem;
  scroll-snap-type:x mandatory;
  max-width:1180px;
  margin:0 auto;
  scrollbar-width:thin;
}
.service-showcase__track::-webkit-scrollbar{height:8px;}
.service-showcase__track::-webkit-scrollbar-thumb{background:rgba(251,248,241,.4);border-radius:4px;}
.showcase-card{
  flex:0 0 300px;
  scroll-snap-align:start;
  background:#FBF8F1;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  color:var(--color-ink);
  transition:transform .3s ease;
}
.showcase-card:hover{transform:translateY(-6px);}
.showcase-card img{width:100%;height:180px;object-fit:cover;}
.showcase-card__body{padding:1.4rem 1.5rem 1.6rem;}
.showcase-card__index{
  font-weight:800;
  font-size:1.5rem;
  color:var(--color-terracotta);
  display:block;
  margin-bottom:.3rem;
}
.showcase-card h3{font-size:1.1rem;margin-bottom:.4rem;}
.showcase-card p{font-size:.9rem;margin:0;}


.process-timeline{
  padding:var(--space-2xl) 1.5rem;
  background:var(--color-teal);
  color:#F3EEE2;
}
.process-timeline .section-header{color:#F3EEE2;}
.process-timeline .section-eyebrow{color:#F3EEE2;border-color:rgba(243,238,226,.5);}
.process-timeline .section-heading{color:#F3EEE2;}
.process-timeline__track{
  max-width:900px;
  margin:0 auto;
  position:relative;
  padding-left:0;
}
.process-timeline__track::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;bottom:0;
  width:2px;
  background:rgba(243,238,226,.3);
  transform:translateX(-50%);
}
.timeline-entry{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  margin-bottom:2.6rem;
  width:100%;
}
.timeline-entry__marker{
  position:absolute;
  left:50%;top:0;
  transform:translateX(-50%);
  width:40px;height:40px;
  border-radius:50%;
  background:var(--color-gold);
  color:var(--color-ink);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  box-shadow:var(--shadow-md);
  z-index:2;
}
.timeline-entry__card{
  background:rgba(251,248,241,.06);
  border:1px solid rgba(243,238,226,.18);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.8rem;
  width:calc(50% - 3rem);
  backdrop-filter:blur(2px);
}
.timeline-entry__card h3{color:#F3EEE2;font-size:1.1rem;}
.timeline-entry__card p{color:rgba(243,238,226,.8);font-size:.95rem;margin:0;}
.timeline-entry--left .timeline-entry__card{margin-right:auto;}
.timeline-entry--right .timeline-entry__card{margin-left:auto;}


.course-structure{
  background:linear-gradient(120deg,var(--color-gold) 0%, var(--color-gold-dark) 100%);
  padding:var(--space-xl) 1.5rem;
}
.course-structure__grid{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
  text-align:center;
}
.course-structure__item{
  background:rgba(251,248,241,.35);
  border-radius:var(--radius-lg);
  padding:2rem 1rem;
  border:1px solid rgba(29,27,24,.08);
}
.course-structure__number{
  display:block;
  font-size:clamp(2rem,3vw + 1rem,2.8rem);
  font-weight:800;
  color:var(--color-ink);
}
.course-structure__label{font-weight:600;font-size:.9rem;color:var(--color-ink-soft);}


.audience-preview{
  max-width:1180px;
  margin:0 auto;
  padding:var(--space-2xl) 1.5rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}
.audience-preview__media img{border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);aspect-ratio:4/3;object-fit:cover;}
.audience-preview__text p{max-width:480px;}


.closing-cta{
  background:linear-gradient(135deg,var(--color-forest-dark) 0%, var(--color-forest) 100%);
  color:#F3EEE2;
  padding:var(--space-2xl) 1.5rem;
  text-align:center;
}
.closing-cta--terracotta{background:linear-gradient(135deg,var(--color-terracotta-dark) 0%, var(--color-terracotta) 100%);}
.closing-cta--teal{background:linear-gradient(135deg,var(--color-teal-dark) 0%, var(--color-teal) 100%);}
.closing-cta--forest{background:linear-gradient(135deg,var(--color-forest-dark) 0%, var(--color-forest) 100%);}
.closing-cta__content{max-width:640px;margin:0 auto;}
.closing-cta__content h2{font-size:clamp(1.6rem,2.5vw + 1rem,2.4rem);color:#F3EEE2;}
.closing-cta__content p{color:rgba(243,238,226,.85);margin-bottom:1.6rem;}


.page-footer{
  background:var(--color-ink);
  color:var(--color-cream);
  padding:var(--space-xl) 1.5rem var(--space-md);
  margin-top:auto;
}
.page-footer--simple{padding:var(--space-md) 1.5rem;}
.page-footer__grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2.5rem;
  padding-bottom:2rem;
  border-bottom:1px solid rgba(243,238,226,.12);
}
.nav-logo--footer{color:#F3EEE2;margin-bottom:.8rem;}
.page-footer__brand p{color:rgba(243,238,226,.65);font-size:.9rem;}
.page-footer__links h4, .page-footer__contact h4{color:#F3EEE2;font-size:.95rem;margin-bottom:1rem;}
.page-footer__links{display:flex;flex-direction:column;gap:.6rem;}
.page-footer__links a{color:rgba(243,238,226,.7);font-size:.9rem;transition:color .25s ease;}
.page-footer__links a:hover{color:var(--color-gold);}
.page-footer__contact p{color:rgba(243,238,226,.75);font-size:.9rem;display:flex;gap:.6rem;align-items:flex-start;}
.page-footer__contact a{color:rgba(243,238,226,.85);}
.page-footer__contact a:hover{color:var(--color-gold);}
.page-footer__bottom{
  max-width:1180px;
  margin:0 auto;
  padding-top:1.4rem;
  font-size:.82rem;
  color:rgba(243,238,226,.55);
  text-align:center;
}


.page-hero{padding:7rem 1.5rem 4.5rem;text-align:center;}
.page-hero__content{max-width:720px;margin:0 auto;}
.page-hero__content h1{font-size:clamp(2rem,3.5vw + 1rem,3rem);}
.page-hero--teal{background:linear-gradient(135deg,var(--color-teal) 0%, var(--color-teal-dark) 100%);color:#F3EEE2;}
.page-hero--teal h1{color:#F3EEE2;}
.page-hero--teal p{color:rgba(243,238,226,.85);}
.page-hero--gold{background:linear-gradient(135deg,var(--color-gold) 0%, var(--color-gold-dark) 100%);color:var(--color-ink);}
.page-hero--gold h1{color:var(--color-ink);}
.page-hero--gold p{color:var(--color-ink-soft);}
.page-hero--terracotta{background:linear-gradient(135deg,var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);color:#FBF8F1;}
.page-hero--terracotta h1{color:#FBF8F1;}
.page-hero--terracotta p{color:rgba(251,248,241,.85);}
.page-hero--forest{background:linear-gradient(135deg,var(--color-forest) 0%, var(--color-forest-dark) 100%);color:#F3EEE2;}
.page-hero--forest h1{color:#F3EEE2;}
.page-hero--forest p{color:rgba(243,238,226,.85);}


.audience-groups{
  max-width:1180px;
  margin:0 auto;
  padding:var(--space-2xl) 1.5rem;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
}
.audience-card{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns:150px 1fr;
  transition:transform .3s ease, box-shadow .3s ease;
}
.audience-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.audience-card img{width:100%;height:100%;object-fit:cover;}
.audience-card__body{padding:1.6rem;border-left:4px solid transparent;}
.audience-card--forest .audience-card__body{border-left-color:var(--color-forest);}
.audience-card--terracotta .audience-card__body{border-left-color:var(--color-terracotta);}
.audience-card--gold .audience-card__body{border-left-color:var(--color-gold);}
.audience-card--teal .audience-card__body{border-left-color:var(--color-teal);}
.audience-card h3{font-size:1.1rem;}
.audience-card p{font-size:.92rem;margin:0;}


.content-split{
  max-width:1180px;
  margin:0 auto;
  padding:var(--space-2xl) 1.5rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}
.content-split--reverse .content-split__media{order:2;}
.content-split--reverse .content-split__text{order:1;}
.content-split__media img{border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);aspect-ratio:4/3;object-fit:cover;}
.content-split__text p{max-width:520px;}


.prep-checklist{background:var(--color-cream);padding:var(--space-2xl) 1.5rem;}
.prep-checklist__grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.6rem;
}
.prep-item{
  background:#fff;
  border-radius:var(--radius-md);
  padding:1.8rem 1.4rem;
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease;
}
.prep-item:hover{transform:translateY(-4px);}
.prep-item i{font-size:1.6rem;color:var(--color-terracotta);margin-bottom:.8rem;}
.prep-item h3{font-size:1rem;}
.prep-item p{font-size:.88rem;margin:0;}


.prirucka-section{
  max-width:1180px;
  margin:0 auto;
  padding:var(--space-2xl) 1.5rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}
.prirucka-section__media img{border-radius:var(--radius-xl);box-shadow:var(--shadow-lg);aspect-ratio:4/3;object-fit:cover;}


.faq-section{max-width:820px;margin:0 auto;padding:var(--space-2xl) 1.5rem;}
.faq-list{display:flex;flex-direction:column;gap:1rem;}
.faq-item{
  background:#fff;
  border:1px solid var(--color-border-soft);
  border-radius:var(--radius-md);
  padding:1.2rem 1.5rem;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.faq-item:has([open]){box-shadow:var(--shadow-md);border-color:var(--color-terracotta);}
.faq-item summary{
  font-weight:700;
  font-size:1.02rem;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"\002B";
  font-size:1.4rem;
  color:var(--color-terracotta);
  flex-shrink:0;
  transition:transform .3s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{margin-top:.9rem;font-size:.95rem;}


.contact-section{max-width:1180px;margin:0 auto;padding:var(--space-2xl) 1.5rem;}
.contact-section__grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;}
.contact-info__item{
  display:flex;gap:1rem;align-items:flex-start;
  margin-bottom:1.4rem;
  padding-bottom:1.4rem;
  border-bottom:1px solid var(--color-border-soft);
}
.contact-info__item i{font-size:1.2rem;color:var(--color-terracotta);margin-top:.2rem;}
.contact-info__item h4{margin-bottom:.2rem;font-size:1rem;}
.contact-info__item p{margin:0;font-size:.94rem;}
.building-instructions{
  background:var(--color-cream);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.7rem;
  margin-top:1.4rem;
  border-left:4px solid var(--color-gold);
}
.building-instructions h4{display:flex;align-items:center;gap:.5rem;margin-bottom:.7rem;}
.building-instructions p{font-size:.92rem;}

.inquiry-form-wrapper{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-md);
}
.inquiry-form{display:flex;flex-direction:column;gap:1.2rem;}
.inquiry-form:has(:focus){box-shadow:0 0 0 3px rgba(200,90,52,.12);border-radius:var(--radius-lg);}
.form-field{display:flex;flex-direction:column;gap:.4rem;}
.form-field label{font-weight:600;font-size:.9rem;}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea{
  padding:.85rem 1rem;
  border:1.5px solid var(--color-border-soft);
  border-radius:var(--radius-sm);
  font-size:.95rem;
  transition:border-color .25s ease, box-shadow .25s ease;
  background:var(--color-paper);
}
.form-field input:focus, .form-field textarea:focus{
  outline:none;
  border-color:var(--color-terracotta);
  box-shadow:0 0 0 3px rgba(200,90,52,.12);
}
.form-field--checkbox{flex-direction:row;align-items:flex-start;gap:.7rem;}
.form-field--checkbox input{margin-top:.3rem;width:20px;height:20px;flex-shrink:0;}
.form-field--checkbox label{font-weight:400;font-size:.88rem;color:var(--color-ink-soft);}
.form-field--checkbox label a{color:var(--color-terracotta);font-weight:600;}

.map-section{max-width:1180px;margin:0 auto 4rem;padding:0 1.5rem;}
.map-section iframe{border-radius:var(--radius-lg);box-shadow:var(--shadow-md);}


.thanks-page{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--color-forest) 0%, var(--color-teal-dark) 100%);
  color:#F3EEE2;
  text-align:center;
  padding:5rem 1.5rem;
}
.thanks-page__content{max-width:560px;}
.thanks-page__icon{font-size:3rem;color:var(--color-gold);margin-bottom:1.4rem;}
.thanks-page__content h1{font-size:clamp(2.2rem,4vw + 1rem,3.2rem);color:#F3EEE2;}
.thanks-page__content p{color:rgba(243,238,226,.85);margin-bottom:2rem;}


.legal-page{max-width:1180px;margin:0 auto;padding:6rem 1.5rem var(--space-2xl);}
.legal-page__header{text-align:center;margin-bottom:3rem;}
.legal-page__header h1{font-size:clamp(2rem,3.5vw + 1rem,2.8rem);}
.legal-page__header p{color:var(--color-ink-soft);font-weight:600;}
.legal-page__layout{display:grid;grid-template-columns:260px 1fr;gap:3rem;align-items:start;}
.legal-sidebar{
  position:sticky;
  top:6.5rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  padding:1.4rem;
  background:var(--color-cream);
  border-radius:var(--radius-lg);
  border:1px solid var(--color-border-soft);
}
.legal-sidebar__title{font-weight:700;font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.4rem;color:var(--color-ink-soft);}
.legal-sidebar a{
  font-size:.88rem;
  padding:.5rem .7rem;
  border-radius:var(--radius-sm);
  color:var(--color-ink-soft);
  transition:background .25s ease, color .25s ease;
}
.legal-sidebar a:hover{background:#fff;color:var(--color-forest);}
.legal-sidebar a.is-active{background:var(--color-forest);color:#F3EEE2;}
.legal-content section{margin-bottom:2.6rem;padding-bottom:2.6rem;border-bottom:1px solid var(--color-border-soft);}
.legal-content section:last-child{border-bottom:none;}
.legal-content h2{font-size:1.35rem;color:var(--color-forest);}
.legal-content p{font-size:.96rem;}


section:has(.highlighted){background:var(--color-cream);}


@media (max-width:1024px){
  .welcome-banner__content{grid-template-columns:1fr;}
  .welcome-banner__media{order:-1;}
  .key-benefits__grid{grid-template-columns:repeat(2,1fr);}
  .audience-groups{grid-template-columns:1fr;}
  .prep-checklist__grid{grid-template-columns:repeat(2,1fr);}
  .course-structure__grid{grid-template-columns:repeat(2,1fr);}
  .content-split, .prirucka-section, .audience-preview{grid-template-columns:1fr;}
  .content-split--reverse .content-split__media{order:1;}
  .content-split--reverse .content-split__text{order:2;}
  .contact-section__grid{grid-template-columns:1fr;}
  .legal-page__layout{grid-template-columns:1fr;}
  .legal-sidebar{position:static;}
}

@media (max-width:768px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .mobile-menu-toggle{display:flex;}
  .key-benefits__grid{grid-template-columns:1fr;}
  .prep-checklist__grid{grid-template-columns:1fr;}
  .course-structure__grid{grid-template-columns:1fr;}
  .audience-card{grid-template-columns:1fr;}
  .audience-card img{height:180px;}
  .process-timeline__track::before{left:20px;}
  .timeline-entry__marker{left:20px;transform:none;}
  .timeline-entry__card{width:calc(100% - 3.5rem);margin-left:3.5rem !important;margin-right:0 !important;}
  .page-footer__grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:480px){
  .page-footer__grid{grid-template-columns:1fr;}
  .welcome-banner{padding:5.5rem 1.2rem 4rem;}
  .showcase-card{flex:0 0 260px;}
}