:root{
  --c-bg: #faf7f2;
  --c-bg-alt: #f2ece1;
  --c-dark: #2c2a24;
  --c-dark-alt: #3d3a2f;
  --c-primary: #7a8450;
  --c-primary-dark: #5c6640;
  --c-terracotta: #b9714b;
  --c-terracotta-dark: #9a5936;
  --c-cream: #efe6d4;
  --c-text: #33312a;
  --c-text-muted: #6b6858;
  --c-white: #fffdf9;

  --shadow-sm: 0 1px 2px rgba(44,42,36,0.06), 0 1px 1px rgba(44,42,36,0.04);
  --shadow-md: 0 4px 12px rgba(44,42,36,0.08), 0 2px 4px rgba(44,42,36,0.06);
  --shadow-lg: 0 12px 32px rgba(44,42,36,0.12), 0 4px 12px rgba(44,42,36,0.08);
  --shadow-xl: 0 24px 64px rgba(44,42,36,0.18), 0 8px 24px rgba(44,42,36,0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 42px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Work Sans', sans-serif;
  background:var(--c-bg);
  color:var(--c-text);
  line-height:1.65;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Vollkorn', serif;
  color:var(--c-dark);
  margin:0;
  line-height:1.2;
}
p{margin:0 0 1rem 0;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
button{font-family:inherit;cursor:pointer;}

.u-text-muted{color:var(--c-text-muted);}
.u-hidden{display:none !important;}
.u-text-center{text-align:center;}

.c-eyebrow{
  display:inline-block;
  font-weight:600;
  font-size:0.8rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--c-primary-dark);
  margin-bottom:1rem;
}
.c-eyebrow--light{color:var(--c-cream);}

.s-section-title{
  font-size:clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight:700;
  margin-bottom:1.2rem;
}
.s-section-title--light{color:var(--c-white);}


.c-btn{
  display:inline-flex;
  align-items:center;
  gap:0.6rem;
  padding:0.95rem 1.8rem;
  border-radius:var(--radius-md);
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.3s ease;
  border:2px solid transparent;
  min-height:44px;
}
.c-btn--primary{
  background:var(--c-terracotta);
  color:var(--c-white);
  box-shadow:var(--shadow-md);
}
.c-btn--primary:hover{
  background:var(--c-terracotta-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}
.c-btn--outline{
  background:transparent;
  border-color:var(--c-white);
  color:var(--c-white);
}
.c-btn--outline:hover{
  background:var(--c-white);
  color:var(--c-dark);
  transform:translateY(-2px);
}
.c-btn--dark{
  background:var(--c-dark);
  color:var(--c-white);
}
.c-btn--dark:hover{
  background:var(--c-dark-alt);
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
}


.c-nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(250,247,242,0.9);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(44,42,36,0.06);
  transform:translateY(-100%);
  transition:transform 0.5s ease;
  box-shadow:var(--shadow-sm);
}
.c-nav.is-visible{transform:translateY(0);}
.c-nav__inner{
  max-width:1280px;
  margin:0 auto;
  padding:0.9rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}
.c-nav__logo{
  font-family:'Vollkorn', serif;
  font-weight:700;
  font-size:1.35rem;
  color:var(--c-dark);
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}
.c-nav__logo span{color:var(--c-terracotta);}
.c-nav__side{display:flex;align-items:center;gap:1.8rem;}
.c-nav__link{
  font-weight:500;
  font-size:0.95rem;
  color:var(--c-text);
  transition:color 0.3s ease;
  position:relative;
}
.c-nav__link:hover{color:var(--c-terracotta);}
.c-nav__cta{
  background:var(--c-primary);
  color:var(--c-white);
  padding:0.6rem 1.3rem;
  border-radius:var(--radius-md);
  font-weight:600;
  font-size:0.9rem;
  transition:all 0.3s ease;
}
.c-nav__cta:hover{background:var(--c-primary-dark);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.c-nav__burger{
  display:none;
  width:44px;height:44px;
  border:none;background:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  z-index:101;
}
.c-nav__burger span{
  width:24px;height:2px;background:var(--c-dark);
  transition:all 0.3s ease;
}

@media (max-width:900px){
  .c-nav__side{display:none;}
  .c-nav__burger{display:flex;}
  .c-nav__logo{position:static;transform:none;}
  .c-nav__inner{justify-content:space-between;}
}


.c-mobile-menu{
  position:fixed;
  inset:0;
  background:var(--c-dark);
  z-index:200;
  clip-path:circle(0px at calc(100% - 40px) 40px);
  transition:clip-path 0.6s ease;
  pointer-events:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.c-mobile-menu.is-open{
  clip-path:circle(150% at calc(100% - 40px) 40px);
  pointer-events:auto;
}
.c-mobile-menu__close{
  position:absolute;
  top:1.2rem; right:1.2rem;
  width:44px;height:44px;
  border:none;
  background:rgba(255,255,255,0.1);
  color:var(--c-white);
  border-radius:50%;
  font-size:1.2rem;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.3s ease;
}
.c-mobile-menu__close:hover{background:rgba(255,255,255,0.2);}
.c-mobile-menu__links{
  display:flex;
  flex-direction:column;
  gap:1.8rem;
  text-align:center;
  opacity:0;
  transition:opacity 0.4s ease 0.2s;
}
.c-mobile-menu.is-open .c-mobile-menu__links{opacity:1;}
.c-mobile-menu__links a{
  font-family:'Vollkorn', serif;
  font-size:1.7rem;
  font-weight:600;
  color:var(--c-white);
  transition:color 0.3s ease;
}
.c-mobile-menu__links a:hover{color:var(--c-terracotta);}


.c-cookie-banner{
  position:fixed;
  top:0; left:0; right:0;
  z-index:300;
  background:var(--c-dark);
  color:var(--c-cream);
  transform:translateY(-100%);
  transition:transform 0.5s ease;
  box-shadow:var(--shadow-lg);
}
.c-cookie-banner.is-visible{transform:translateY(0);}
.c-cookie-banner__inner{
  max-width:1280px;
  margin:0 auto;
  padding:1rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  flex-wrap:wrap;
}
.c-cookie-banner__text{margin:0;font-size:0.88rem;flex:1;min-width:220px;}
.c-cookie-banner__text a{color:var(--c-terracotta);text-decoration:underline;}
.c-cookie-banner__actions{display:flex;gap:0.6rem;flex-wrap:wrap;}
.c-cookie-banner__btn{
  padding:0.55rem 1.1rem;
  border-radius:var(--radius-sm);
  font-size:0.85rem;
  font-weight:600;
  border:2px solid transparent;
  transition:all 0.3s ease;
  min-height:40px;
}
.c-cookie-banner__btn--ghost{
  background:transparent;
  border-color:rgba(255,255,255,0.3);
  color:var(--c-white);
}
.c-cookie-banner__btn--ghost:hover{background:rgba(255,255,255,0.1);}
.c-cookie-banner__btn--solid{background:var(--c-terracotta);color:var(--c-white);}
.c-cookie-banner__btn--solid:hover{background:var(--c-terracotta-dark);}

@media (max-width:700px){
  .c-cookie-banner__inner{flex-direction:column;align-items:stretch;}
  .c-cookie-banner__actions{justify-content:stretch;}
  .c-cookie-banner__btn{flex:1;}
}

.c-cookie-modal{
  position:fixed;inset:0;
  background:rgba(44,42,36,0.6);
  z-index:400;
  display:none;
  align-items:center;
  justify-content:center;
  padding:1.5rem;
}
.c-cookie-modal.is-open{display:flex;}
.c-cookie-modal__box{
  background:var(--c-white);
  border-radius:var(--radius-lg);
  padding:2rem;
  max-width:520px;
  width:100%;
  box-shadow:var(--shadow-xl);
  max-height:85vh;
  overflow-y:auto;
}
.c-cookie-modal__box h3{font-size:1.4rem;margin-bottom:0.6rem;}
.c-cookie-modal__row{
  display:flex;justify-content:space-between;align-items:center;
  gap:1rem;
  padding:1rem 0;
  border-bottom:1px solid var(--c-bg-alt);
}
.c-cookie-modal__row input{width:20px;height:20px;}
.c-cookie-modal__actions{display:flex;gap:0.8rem;margin-top:1.5rem;justify-content:flex-end;}


.s-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:8rem 1.5rem 2rem;
  background:linear-gradient(160deg, var(--c-dark) 0%, var(--c-dark-alt) 55%, var(--c-primary-dark) 100%);
  overflow:hidden;
}
.s-hero__shape{
  position:absolute;
  border-radius:50%;
  opacity:0.5;
}
.s-hero__shape--1{
  width:520px;height:520px;
  background:radial-gradient(circle, var(--c-terracotta) 0%, transparent 70%);
  top:-120px; right:-160px;
}
.s-hero__shape--2{
  width:380px;height:380px;
  background:radial-gradient(circle, var(--c-primary) 0%, transparent 70%);
  bottom:-100px; left:-120px;
  opacity:0.4;
}
.s-hero__content{
  position:relative;
  max-width:820px;
  margin:0 auto;
  text-align:center;
  animation:heroEntrance 0.9s ease both;
}
@keyframes heroEntrance{
  from{opacity:0;transform:translateY(28px);}
  to{opacity:1;transform:translateY(0);}
}
.s-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:0.5rem;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:var(--c-cream);
  padding:0.5rem 1.1rem;
  border-radius:100px;
  font-size:0.85rem;
  font-weight:500;
  margin-bottom:1.6rem;
}
.s-hero__title{
  font-size:clamp(2.2rem, 5.5vw, 4rem);
  color:var(--c-white);
  font-weight:700;
  margin-bottom:1.5rem;
}
.s-hero__title span{color:var(--c-terracotta);}
.s-hero__desc{
  font-size:clamp(1rem, 1.6vw, 1.2rem);
  color:rgba(255,255,255,0.82);
  max-width:620px;
  margin:0 auto 2.2rem;
}
.s-hero__actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}
.s-hero__stats{
  position:relative;
  max-width:1100px;
  margin:4rem auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.2rem;
  padding-top:2.4rem;
  border-top:1px solid rgba(255,255,255,0.12);
}
.s-hero__stat{
  display:flex;
  align-items:center;
  gap:0.8rem;
  color:var(--c-white);
}
.s-hero__stat i{
  font-size:1.4rem;
  color:var(--c-terracotta);
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  flex-shrink:0;
}
.s-hero__stat strong{display:block;font-size:1rem;}
.s-hero__stat span{font-size:0.82rem;color:rgba(255,255,255,0.65);}

@media (max-width:900px){
  .s-hero__stats{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .s-hero{padding:7rem 1.2rem 2rem;}
  .s-hero__stats{grid-template-columns:1fr;}
}


.s-intro{padding:6rem 1.5rem;max-width:1280px;margin:0 auto;}
.s-intro__grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:3.5rem;
  align-items:center;
}
.s-intro__text p{color:var(--c-text-muted);font-size:1.05rem;}
.s-intro__cutout{
  clip-path: ellipse(85% 90% at 50% 50%);
  height:420px;
  overflow:hidden;
  box-shadow:var(--shadow-xl);
}
.s-intro__cutout img{width:100%;height:100%;object-fit:cover;}

@media (max-width:900px){
  .s-intro__grid{grid-template-columns:1fr;}
  .s-intro__cutout{height:300px;}
}

.c-wave-divider{line-height:0;}
.c-wave-divider svg{width:100%;height:80px;display:block;}
.c-wave-divider svg path{fill:var(--c-dark);}
.c-wave-divider--flip{transform:rotate(180deg);}


.s-topics{
  background:var(--c-dark);
  padding:1rem 1.5rem 6rem;
}
.s-topics__header{max-width:700px;margin:0 auto 3rem;text-align:center;}
.s-topics__lead{color:rgba(255,255,255,0.72);font-size:1.05rem;}
.s-topics__grid{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.c-card{
  background:var(--c-white);
  padding:2.2rem;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.c-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);}
.c-card--glass{
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:var(--shadow-lg);
}
.c-card--glass h3{color:var(--c-white);font-size:1.2rem;margin-bottom:0.7rem;}
.c-card--glass p{color:rgba(255,255,255,0.7);margin:0;font-size:0.95rem;}
.c-card__icon{
  width:56px;height:56px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--c-terracotta), var(--c-primary));
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem;
  color:var(--c-white);
  margin-bottom:1.2rem;
}
@media (max-width:900px){
  .s-topics__grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .s-topics__grid{grid-template-columns:1fr;}
}


.s-gallery{padding:6rem 1.5rem;max-width:1280px;margin:0 auto;}
.s-gallery__header{max-width:600px;margin:0 auto 3rem;text-align:center;}
.s-gallery__grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:200px 200px;
  gap:1.2rem;
}
.s-gallery__item{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.s-gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;}
.s-gallery__item:hover img{transform:scale(1.06);}
.s-gallery__item--tall{grid-row:span 2;}
.s-gallery__item--wide{grid-column:span 2;}
@media (max-width:900px){
  .s-gallery__grid{grid-template-columns:1fr 1fr;grid-template-rows:180px 180px 180px;}
  .s-gallery__item--tall{grid-row:span 1;}
  .s-gallery__item--wide{grid-column:span 2;}
}
@media (max-width:560px){
  .s-gallery__grid{grid-template-columns:1fr;grid-template-rows:auto;}
  .s-gallery__item--wide{grid-column:span 1;}
  .s-gallery__item{height:220px;}
}


.s-lecturers{padding:6rem 1.5rem;max-width:1280px;margin:0 auto;}
.s-lecturers__grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:3.5rem;
  align-items:center;
}
.s-lecturers__cutout{
  clip-path: circle(48% at 50% 50%);
  height:440px;
  overflow:hidden;
  box-shadow:var(--shadow-xl);
}
.s-lecturers__cutout img{width:100%;height:100%;object-fit:cover;}
.s-lecturers__text p{color:var(--c-text-muted);font-size:1.03rem;}
@media (max-width:900px){
  .s-lecturers__grid{grid-template-columns:1fr;}
  .s-lecturers__cutout{height:320px;}
}


.s-calculator{
  background:linear-gradient(135deg, var(--c-primary-dark), var(--c-dark));
  padding:6rem 1.5rem;
  position:relative;
  overflow:hidden;
}
.s-calculator__inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
}
.s-calculator__text p{color:rgba(255,255,255,0.75);}
.c-calc-form{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-xl);
}
.c-calc-form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin-bottom:1rem;
}
.c-calc-form label{
  display:flex;flex-direction:column;gap:0.4rem;
  font-size:0.88rem;font-weight:500;color:var(--c-white);
}
.c-calc-form input, .c-calc-form select{
  padding:0.75rem 1rem;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.9);
  color:var(--c-text);
  font-family:inherit;
  min-height:44px;
  transition:border 0.3s ease;
}
.c-calc-form input:focus, .c-calc-form select:focus{outline:none;border-color:var(--c-terracotta);}
.c-calc-form__result{
  margin-top:1.5rem;
  background:rgba(255,255,255,0.08);
  border-radius:var(--radius-md);
  padding:1.2rem;
  color:var(--c-cream);
  font-size:0.92rem;
  min-height:60px;
}
@media (max-width:900px){
  .s-calculator__inner{grid-template-columns:1fr;}
  .c-calc-form__row{grid-template-columns:1fr;}
}


.s-contact-cards{padding:6rem 1.5rem;max-width:1280px;margin:0 auto;}
.s-contact-cards--top{padding-top:2rem;}
.s-contact-cards__header{max-width:600px;margin:0 auto 3rem;text-align:center;}
.s-contact-cards__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.c-card--contact{text-align:center;}
.c-card--contact .c-card__icon--outline{
  margin:0 auto 1.2rem;
  background:transparent;
  border:2px solid var(--c-primary);
  color:var(--c-primary);
}
.c-card--contact h3{margin-bottom:0.6rem;font-size:1.15rem;}
.c-card--contact p{color:var(--c-text-muted);font-size:0.92rem;}
.c-card--contact a{color:var(--c-terracotta);font-weight:600;transition:color 0.3s ease;}
.c-card--contact a:hover{color:var(--c-terracotta-dark);}
@media (max-width:900px){
  .s-contact-cards__grid{grid-template-columns:1fr;}
}


.s-final-cta{
  position:relative;
  background:var(--c-terracotta);
  padding:6rem 1.5rem;
  text-align:center;
  overflow:hidden;
}
.s-final-cta__shape{
  position:absolute;
  width:600px;height:600px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  top:-250px;right:-150px;
}
.s-final-cta__content{position:relative;max-width:640px;margin:0 auto;}
.s-final-cta__content h2{color:var(--c-white);font-size:clamp(1.6rem,3.5vw,2.4rem);margin-bottom:1rem;}
.s-final-cta__content p{color:rgba(255,255,255,0.88);margin-bottom:2rem;}


.s-page-hero{
  position:relative;
  min-height:44vh;
  display:flex;
  align-items:center;
  padding:9rem 1.5rem 3.5rem;
  background:linear-gradient(150deg, var(--c-dark), var(--c-primary-dark));
  overflow:hidden;
}
.s-page-hero--small{min-height:28vh;padding:8.5rem 1.5rem 2.5rem;}
.s-page-hero--alt{background:linear-gradient(150deg, var(--c-dark-alt), var(--c-terracotta-dark));}
.s-page-hero__cutout{
  position:absolute;
  width:420px;height:420px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  right:-140px;top:-140px;
}
.s-page-hero__cutout--square{
  border-radius:36px;
  transform:rotate(20deg);
}
.s-page-hero__content{position:relative;max-width:900px;margin:0 auto;width:100%;}
.s-page-hero__content h1{color:var(--c-white);font-size:clamp(2rem,4.5vw,3.2rem);margin-bottom:0.8rem;}
.s-page-hero__content p{color:rgba(255,255,255,0.78);font-size:1.05rem;max-width:600px;}

.c-breadcrumb{
  font-size:0.85rem;
  color:rgba(255,255,255,0.65);
  margin-bottom:1.2rem;
}
.c-breadcrumb a{color:rgba(255,255,255,0.85);transition:color 0.3s ease;}
.c-breadcrumb a:hover{color:var(--c-white);}
.c-breadcrumb span{margin:0 0.4rem;}


.s-story{
  max-width:1280px;
  margin:0 auto;
  padding:6rem 1.5rem;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:3.5rem;
  align-items:center;
}
.s-story--reverse{grid-template-columns:0.9fr 1.1fr;}
.s-story--reverse .s-story__image{order:-1;}
.s-story__block p{color:var(--c-text-muted);font-size:1.03rem;}
.s-story__cutout{
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  height:400px;
  overflow:hidden;
  box-shadow:var(--shadow-xl);
}
.s-story__cutout--alt{
  clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
}
.s-story__cutout img{width:100%;height:100%;object-fit:cover;}
@media (max-width:900px){
  .s-story, .s-story--reverse{grid-template-columns:1fr;}
  .s-story--reverse .s-story__image{order:0;}
  .s-story__cutout{height:280px;clip-path:ellipse(90% 90% at 50% 50%);}
}


.s-values{background:var(--c-dark);padding:6rem 1.5rem;}
.s-values__header{max-width:600px;margin:0 auto 3rem;text-align:center;}
.s-values__grid{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;
}
@media (max-width:900px){.s-values__grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.s-values__grid{grid-template-columns:1fr;}}


.s-signup{max-width:1280px;margin:0 auto;padding:6rem 1.5rem;}
.s-signup__grid{
  display:grid;grid-template-columns:1.1fr 0.9fr;gap:3.5rem;align-items:start;
}
.s-signup__info p{color:var(--c-text-muted);font-size:1.03rem;}
.s-signup__points{margin-top:1.5rem;display:flex;flex-direction:column;gap:1rem;}
.s-signup__point{display:flex;align-items:flex-start;gap:0.8rem;color:var(--c-text);}
.s-signup__point i{color:var(--c-primary);margin-top:0.2rem;}
.s-signup__form-wrap{
  background:var(--c-white);
  border-radius:var(--radius-lg);
  padding:2.2rem;
  box-shadow:var(--shadow-lg);
}
@media (max-width:900px){.s-signup__grid{grid-template-columns:1fr;}}

.c-form{display:flex;flex-direction:column;gap:1.1rem;}
.c-form h3{margin-bottom:0.5rem;}
.c-form label{display:flex;flex-direction:column;gap:0.4rem;font-size:0.9rem;font-weight:500;}
.c-form input, .c-form select, .c-form textarea{
  padding:0.8rem 1rem;
  border-radius:var(--radius-sm);
  border:1.5px solid var(--c-bg-alt);
  font-family:inherit;
  font-size:0.95rem;
  min-height:44px;
  transition:border 0.3s ease;
  background:var(--c-bg);
}
.c-form input:focus, .c-form select:focus, .c-form textarea:focus{outline:none;border-color:var(--c-primary);}
.c-form textarea{resize:vertical;min-height:100px;}
.c-form__checkbox{flex-direction:row;align-items:flex-start;gap:0.7rem;font-size:0.85rem;font-weight:400;}
.c-form__checkbox input{width:20px;height:20px;flex-shrink:0;margin-top:0.15rem;min-height:auto;}
.c-form__checkbox a{color:var(--c-terracotta);text-decoration:underline;}


.s-schedule{background:var(--c-primary-dark);padding:6rem 1.5rem;}
.s-schedule__header{max-width:600px;margin:0 auto 3rem;text-align:center;}
.s-schedule__list{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:1.2rem;}
.s-schedule__item{
  display:flex;gap:1.5rem;align-items:flex-start;
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-lg);
  padding:1.6rem 1.8rem;
  transition:transform 0.3s ease, background 0.3s ease;
}
.s-schedule__item:hover{transform:translateX(6px);background:rgba(255,255,255,0.1);}
.s-schedule__num{
  font-family:'Vollkorn', serif;
  font-size:1.6rem;font-weight:700;
  color:var(--c-terracotta);
  flex-shrink:0;
}
.s-schedule__item h3{color:var(--c-white);font-size:1.15rem;margin-bottom:0.4rem;}
.s-schedule__item p{color:rgba(255,255,255,0.72);margin:0;font-size:0.92rem;}


.s-cases{max-width:1280px;margin:0 auto;padding:6rem 1.5rem;display:flex;flex-direction:column;gap:5rem;}
.s-case{display:grid;grid-template-columns:0.9fr 1.1fr;gap:3rem;align-items:center;}
.s-case--reverse{grid-template-columns:1.1fr 0.9fr;}
.s-case--reverse .s-case__image{order:2;}
.s-case__image{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  height:340px;
}
.s-case__image img{width:100%;height:100%;object-fit:cover;}
.s-case__text p{color:var(--c-text-muted);}
.s-case__text h2{font-size:clamp(1.4rem,2.5vw,1.9rem);margin-bottom:0.9rem;}
@media (max-width:900px){
  .s-case, .s-case--reverse{grid-template-columns:1fr;}
  .s-case--reverse .s-case__image{order:0;}
  .s-case__image{height:260px;}
}

.s-cta-strip{background:var(--c-dark);padding:4.5rem 1.5rem;}
.s-cta-strip__inner{max-width:750px;margin:0 auto;text-align:center;}
.s-cta-strip__inner h2{color:var(--c-white);font-size:clamp(1.4rem,3vw,2rem);margin-bottom:1.6rem;}


.s-contact-form{max-width:1280px;margin:0 auto;padding:5rem 1.5rem;}
.s-contact-form__grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:3rem;align-items:start;}
@media (max-width:900px){.s-contact-form__grid{grid-template-columns:1fr;}}

.c-accordion-form{display:flex;flex-direction:column;gap:1rem;}
.c-accordion-item{
  border:1.5px solid var(--c-bg-alt);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:box-shadow 0.3s ease;
  background:var(--c-white);
}
.c-accordion-item.is-open{box-shadow:var(--shadow-md);border-color:var(--c-primary);}
.c-accordion-item__head{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.2rem 1.5rem;
  background:none;border:none;
  font-weight:600;font-size:1rem;
  color:var(--c-text);
  min-height:44px;
}
.c-accordion-item__head i{transition:transform 0.3s ease;color:var(--c-text-muted);}
.c-accordion-item.is-open .c-accordion-item__head i{transform:rotate(180deg);color:var(--c-primary);}
.c-accordion-item__body{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.5s ease, padding 0.5s ease;
  padding:0 1.5rem;
  display:flex;flex-direction:column;gap:1rem;
}
.c-accordion-item.is-open .c-accordion-item__body{
  max-height:600px;
  padding:0 1.5rem 1.5rem;
}

.c-info-box{
  background:var(--c-bg-alt);
  border-radius:var(--radius-lg);
  padding:1.8rem;
  margin-bottom:1.2rem;
  box-shadow:var(--shadow-sm);
}
.c-info-box h3{font-size:1.05rem;margin-bottom:0.7rem;display:flex;align-items:center;gap:0.6rem;}
.c-info-box h3 i{color:var(--c-primary);}
.c-info-box p{color:var(--c-text-muted);font-size:0.92rem;}

.s-map{max-width:1280px;margin:0 auto;padding:0 1.5rem 6rem;}
.s-map__cutout{
  height:420px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}


.s-legal{max-width:840px;margin:0 auto;padding:4rem 1.5rem 6rem;}
.s-legal__inner{display:flex;flex-direction:column;gap:2.2rem;}
.c-faq-item h2{font-size:1.3rem;margin-bottom:0.7rem;}
.c-faq-item p{color:var(--c-text-muted);}


.s-thanks{
  position:relative;
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9rem 1.5rem 4rem;
  background:linear-gradient(150deg, var(--c-dark), var(--c-primary-dark));
  overflow:hidden;
  text-align:center;
}
.s-thanks__shape{
  position:absolute;width:500px;height:500px;border-radius:50%;
  background:rgba(255,255,255,0.06);top:-200px;left:-150px;
}
.s-thanks__content{position:relative;max-width:560px;}
.s-thanks__icon{font-size:3.5rem;color:var(--c-terracotta);margin-bottom:1.2rem;}
.s-thanks__content h1{color:var(--c-white);font-size:clamp(1.8rem,4vw,2.6rem);margin-bottom:1rem;}
.s-thanks__content p{color:rgba(255,255,255,0.8);}
.s-thanks__countdown{font-weight:600;color:var(--c-cream);margin-bottom:1.6rem;}


.c-footer{
  background:var(--c-dark);
  padding:4.5rem 1.5rem 2rem;
}
.c-footer__inner{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:2rem;
}
.c-footer__logo{
  font-family:'Vollkorn', serif;
  font-size:1.6rem;font-weight:700;
  color:var(--c-white);
}
.c-footer__logo span{color:var(--c-terracotta);}
.c-footer__links{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.8rem;
}
.c-footer__links a{color:rgba(255,255,255,0.75);font-size:0.92rem;transition:color 0.3s ease;}
.c-footer__links a:hover{color:var(--c-white);}
.c-footer__contact{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1.8rem;
  color:rgba(255,255,255,0.7);font-size:0.9rem;
}
.c-footer__contact i{color:var(--c-terracotta);margin-right:0.4rem;}
.c-footer__bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:1.6rem;
  width:100%;
  display:flex;flex-direction:column;gap:0.8rem;
  color:rgba(255,255,255,0.55);font-size:0.85rem;
}
.c-footer__legal{display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap;}
.c-footer__legal a{color:rgba(255,255,255,0.6);transition:color 0.3s ease;}
.c-footer__legal a:hover{color:var(--c-white);}


.u-reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.u-reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:640px){
  .s-hero, .s-page-hero, .s-signup, .s-cases, .s-story, .s-lecturers, .s-intro, .s-topics, .s-values, .s-calculator, .s-contact-cards, .s-contact-form, .s-legal{
    padding-left:1.2rem;
    padding-right:1.2rem;
  }
}