/* ═══════════════════════════════════════════════════════════════
   ENKU Integrativ — "Warme Geborgenheit" Design System
   
   Philosophy: Warm Refuge
   Every pixel communicates safety, trust, and quiet competence.
   Parents arrive worried — they should leave feeling held.
   
   Fonts: Outfit (Modern Geometric) + Lora (Warm Serif)
   Palette: Burnt Amber + Warm Cream + Deep Walnut + Soft Terracotta
   ═══════════════════════════════════════════════════════════════ */


:root {
  /* Core Palette */
  --amber: #E8811A;
  --amber-deep: #CF6F0E;
  --amber-light: #F5A623;
  --amber-glow: rgba(232,129,26,.08);
  --cream: #FDF8F2;
  --cream-warm: #F7EDE0;
  --cream-deep: #EDE2D3;
  --walnut: #2C2218;
  --walnut-mid: #4A3D30;
  --walnut-light: #7A6D5F;
  --walnut-mist: #A89D91;
  --terracotta: #C1666B;
  --terracotta-soft: rgba(193,102,107,.08);
  --white: #fff;
  --border: #E8DDD0;
  --border-light: rgba(232,221,208,.5);

  /* Spacing */
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --sh: 0 4px 24px rgba(44,34,24,.05);
  --sh-md: 0 8px 32px rgba(44,34,24,.07);
  --sh-lg: 0 20px 60px rgba(44,34,24,.09);
  --sh-img: 0 16px 48px rgba(44,34,24,.12);
  --sh-glow: 0 0 0 1px var(--border), 0 8px 32px rgba(44,34,24,.06);

  /* Motion */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --dur: .4s;
  --dur-slow: .7s;
}

/* ── Reset ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; scroll-padding-top:90px }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--walnut);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--walnut);
  line-height: 1.18;
  font-weight: 600;
}
h1 { font-size: clamp(36px, 5.5vw, 58px); letter-spacing: -.025em }
h2 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -.02em }
h3 { font-size: clamp(20px, 2.5vw, 24px); letter-spacing: -.01em }
em { color: var(--amber); font-style: italic }
a { color: var(--amber); text-decoration: none; transition: color var(--dur) var(--ease) }
a:hover { color: var(--amber-deep) }
img { max-width: 100%; height: auto; display: block }

/* ── Skip Link ── */
.skip-link { position:absolute; top:-100px; left:0; background:var(--amber); color:#fff; padding:10px 20px; z-index:10000; font-size:14px; border-radius:0 0 8px 0; transition:top .3s }
.skip-link:focus { top:0 }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,242,.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--dur) var(--ease);
}
.nav.scrolled { background: rgba(253,248,242,.96); box-shadow: 0 2px 24px rgba(44,34,24,.06) }
.nav-i { max-width: 1200px; margin: 0 auto; padding: 0 36px; display: flex; align-items: center; justify-content: space-between; height: 80px }
.nl { display: flex; align-items: center; gap: 10px; text-decoration: none }
.nl-logo { height: 52px; width: auto; transition: transform var(--dur) var(--ease) }
.nl:hover .nl-logo { transform: scale(1.03) rotate(-1deg) }
.nl-ic { width:40px; height:40px; background:linear-gradient(135deg,var(--amber),var(--amber-deep)); border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-family:'Lora',serif; font-size:19px; font-weight:600 }
.nl-t { font-family:'Lora',serif; font-size:20px; color:var(--walnut); font-weight:600 }
.nl-t em { font-style:italic; color:var(--amber); font-weight:400 }
.nlinks { display: flex; align-items: center; gap: 2px; list-style: none }
.nlinks a {
  color: var(--walnut-light); padding: 8px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 500; transition: all var(--dur) var(--ease);
  text-decoration: none; letter-spacing: .01em;
}
.nlinks a:hover { background: var(--amber-glow); color: var(--walnut) }
.nlinks a.active { color: var(--amber); font-weight: 600 }
.nlinks .nc {
  background: var(--amber); color: #fff !important;
  padding: 10px 26px; margin-left: 10px; font-weight: 600;
  border-radius: 100px; box-shadow: 0 2px 16px rgba(232,129,26,.2);
  transition: all var(--dur) var(--ease);
}
.nlinks .nc:hover { background: var(--amber-deep); color: #fff !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,129,26,.3) }
.ntog { display: none; background: 0; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; gap: 6px; justify-content: center; align-items: center; border-radius: 12px; transition: background var(--dur) }
.ntog:hover { background: var(--amber-glow) }
.ntog span { display: block; width: 22px; height: 2px; background: var(--walnut); border-radius: 2px; transition: all .3s var(--ease) }

/* ═══ HERO ═══ */
.hero {
  padding: 160px 28px 100px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw;
  background: radial-gradient(ellipse, var(--amber-glow) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -15%; width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, var(--terracotta-soft) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-i { max-width: 740px; margin: 0 auto; position: relative; z-index: 1 }
.hero-logo { display: block; max-width: 180px; height: auto; margin: 0 auto 44px; animation: heroFloat .8s var(--ease-out) both }
.hero h1 { margin-bottom: 24px; animation: heroFloat .8s var(--ease-out) .08s both }
.hero h1 em { color: var(--amber); font-style: italic }
.hero-p { font-size: 19px; color: var(--walnut-light); max-width: 580px; margin: 0 auto 44px; line-height: 1.8; font-weight: 300; animation: heroFloat .8s var(--ease-out) .16s both }
.hbtns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: heroFloat .8s var(--ease-out) .24s both }
.htags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 40px; animation: heroFloat .8s var(--ease-out) .32s both }
.htag {
  background: var(--white); border: 1px solid var(--border); padding: 8px 20px;
  border-radius: 100px; font-size: 12px; color: var(--walnut-mist); font-weight: 500;
  letter-spacing: .02em; transition: all var(--dur) var(--ease);
}
.htag:hover { background: var(--cream-warm); border-color: var(--amber); color: var(--amber-deep); transform: translateY(-2px) }

@keyframes heroFloat { from { opacity: 0; transform: translateY(16px) } to { opacity: 1; transform: translateY(0) } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1) } 50% { opacity:.4; transform:scale(1.5) } }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 16px 38px;
  border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all var(--dur) var(--ease); cursor: pointer; border: 0;
  font-family: 'Outfit', sans-serif; letter-spacing: .01em;
}
.bp {
  background: var(--amber); color: #fff;
  box-shadow: 0 4px 20px rgba(232,129,26,.2), inset 0 1px 0 rgba(255,255,255,.15);
}
.bp:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,129,26,.25) }
.bp:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(232,129,26,.2) }
.bs { background: var(--white); color: var(--walnut); border: 1.5px solid var(--border) }
.bs:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); box-shadow: var(--sh-md) }

/* ═══ SECTIONS ═══ */
.sec { padding: 120px 28px }
.sec-i { max-width: 1160px; margin: 0 auto }
.sec-h { text-align: center; max-width: 640px; margin: 0 auto 64px }
.stag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .18em; color: var(--amber); margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}
.sec-h h2 { margin-bottom: 18px }
.sec-h h2 em { color: var(--amber); font-style: italic }
.sec-h p { font-size: 17px; color: var(--walnut-light); line-height: 1.8; font-weight: 300 }
.sec-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--amber), var(--amber-light)); border-radius: 2px; margin: 20px auto 0 }

.hbadge { display:inline-flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--border); padding:8px 20px; border-radius:100px; font-size:13px; font-weight:600; color:var(--amber-deep); margin-bottom:28px; box-shadow:var(--sh) }
.hdot { width:8px; height:8px; background:var(--amber); border-radius:50%; animation:pulse 2s ease infinite }

/* ═══ ABOUT ═══ */
.about { background: var(--cream) }
.ab-g { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center }
.ab-card {
  background: linear-gradient(145deg, #FFF3E8 0%, #FDEBD3 100%);
  border-radius: var(--r-xl); padding: 52px 44px; color: var(--walnut);
  position: relative; overflow: hidden; border: 1px solid var(--border);
}
.ab-card::before { content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px; background:rgba(232,129,26,.06); border-radius:50% }
.ab-card::after { content:''; position:absolute; bottom:-40px; left:-40px; width:140px; height:140px; background:rgba(232,129,26,.04); border-radius:50% }
.ab-card h3 { color: var(--walnut); font-size: 26px; margin-bottom: 18px; position: relative; z-index: 1 }
.ab-card p { font-size: 15px; line-height: 1.85; color: var(--walnut-light); position: relative; z-index: 1; font-weight: 300 }
.ab-c h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; text-align: left }
.ab-c h2 em { color: var(--amber); font-style: italic }
.ab-c > p { color: var(--walnut-light); font-size: 16px; line-height: 1.8; margin-bottom: 28px; font-weight: 300 }
.ab-bl { list-style: none; display: flex; flex-direction: column; gap: 14px }
.ab-bl li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 400; line-height: 1.65;
  transition: transform .25s var(--ease);
}
.ab-bl li:hover { transform: translateX(6px) }
.ab-bl li::before {
  content: ''; width: 8px; height: 8px; min-width: 8px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0; margin-top: 8px;
  transition: transform .25s var(--ease-bounce);
}
.ab-bl li:hover::before { transform: scale(1.5) }

/* ═══ SERVICES ═══ */
.svcs { background: var(--cream-warm) }
.sg { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px }
.sc {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 32px;
  border: 1px solid var(--border); transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.sc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease);
}
.sc:hover::before { transform: scaleX(1) }
.sc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent }
.sc-tag {
  display: inline-block; background: var(--amber-glow); color: var(--amber-deep);
  font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em;
  font-family: 'Outfit', sans-serif;
}
.sc h3 { font-size: 20px; margin-bottom: 10px }
.sc p { color: var(--walnut-light); font-size: 15px; line-height: 1.75; font-weight: 300 }
.sc-link {
  font-size: 13px; color: var(--amber); font-weight: 600; margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; letter-spacing: .01em;
  transition: all .3s var(--ease);
}
.sc-link:hover { gap: 10px; color: var(--amber-deep) }

/* ═══ PROCESS ═══ */
.process { background: var(--cream-warm) }
.pr-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px }
.pr-s {
  background: var(--white); border-radius: var(--r-lg); padding: 36px 24px;
  text-align: center; border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}
.pr-s:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent }
.pr-n {
  width: 48px; height: 48px;
  background: linear-gradient(145deg, var(--amber), var(--amber-light));
  color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; margin: 0 auto 18px;
  font-family: 'Lora', serif;
  box-shadow: 0 4px 16px rgba(232,129,26,.2);
  transition: transform var(--dur) var(--ease-bounce);
}
.pr-s:hover .pr-n { transform: scale(1.08) rotate(-3deg) }
.pr-s h3 { font-size: 18px; margin-bottom: 10px }
.pr-s p { font-size: 14px; color: var(--walnut-light); line-height: 1.7; font-weight: 300 }

/* ═══ FOUNDER ═══ */
.founder { background: var(--cream) }
.fo-g { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start }
.fo-name { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px }
.fo-role { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--walnut-mist); margin-bottom: 24px; font-family: 'Outfit', sans-serif }
.fo-quote {
  font-size: 16px; color: var(--walnut-light); font-style: italic; line-height: 1.85;
  margin-bottom: 26px; padding-left: 22px; border-left: 3px solid var(--amber);
  font-family: 'Lora', serif;
}
.fo-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px }
.fo-tag { background: var(--cream-warm); border: 1px solid var(--border); padding: 6px 16px; border-radius: 100px; font-size: 12px; color: var(--walnut-light); font-weight: 500; transition: all .3s; font-family: 'Outfit', sans-serif }
.fo-tag:hover { border-color: var(--amber); color: var(--amber-deep) }
.fo-phone { display: inline-flex; align-items: center; gap: 8px; background: var(--amber); color: #fff; padding: 14px 30px; border-radius: 100px; font-size: 14px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 20px rgba(232,129,26,.2); transition: all var(--dur) var(--ease) }
.fo-phone:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px) }
.fo-r h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 12px }
.fo-r h2 em { color: var(--amber); font-style: italic }
.fo-r > p { color: var(--walnut-light); font-size: 16px; line-height: 1.8; margin-bottom: 30px; font-weight: 300 }

/* ═══ TESTIMONIALS ═══ */
.testi {
  padding: 22px 28px; border-left: 3px solid var(--amber);
  background: linear-gradient(135deg, var(--amber-glow), transparent);
  border-radius: 0 var(--r) var(--r) 0; margin-bottom: 18px;
  transition: all .3s var(--ease);
}
.testi:hover { transform: translateX(6px); box-shadow: var(--sh) }
.testi p { font-size: 15px; color: var(--walnut); font-style: italic; line-height: 1.8; font-family: 'Lora', serif }
.testi .ta { font-size: 12px; color: var(--walnut-mist); font-style: normal; margin-top: 10px; font-weight: 600; letter-spacing: .03em; font-family: 'Outfit', sans-serif }

/* ═══ VALUES ═══ */
.vals { margin-top: 30px; display: flex; flex-direction: column; gap: 20px }
.val { display: flex; gap: 16px; align-items: flex-start; transition: transform .25s var(--ease) }
.val:hover { transform: translateX(6px) }
.val-n { width: 34px; height: 34px; min-width: 34px; background: var(--amber-glow); border: 1px solid rgba(232,129,26,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--amber); font-family: 'Lora', serif }
.val h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px }
.val p { font-size: 14px; color: var(--walnut-light); line-height: 1.7; font-weight: 300 }

/* ═══ FAQ ═══ */
.faq-sec { background: var(--cream) }
.faq-list { max-width: 760px; margin: 0 auto }
.fq { border-bottom: 1px solid var(--border) }
.fq:first-child { border-top: 1px solid var(--border) }
.fq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; background: 0; border: 0; width: 100%;
  text-align: left; font-family: 'Outfit', sans-serif; font-size: 16px;
  font-weight: 600; color: var(--walnut); transition: all .3s var(--ease); gap: 16px;
}
.fq-q:hover { color: var(--amber); padding-left: 6px }
.fq-ic { min-width: 34px; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all .4s var(--ease); font-size: 16px; color: var(--walnut-mist) }
.fq.open .fq-ic { background: var(--amber); border-color: var(--amber); color: #fff; transform: rotate(45deg) }
.fq.open .fq-q { color: var(--amber) }
.fq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out) }
.fq.open .fq-a { max-height: 400px }
.fq-a p { color: var(--walnut-light); font-size: 15px; line-height: 1.85; padding: 0 0 24px; font-weight: 300 }

/* ═══ CONTACT ═══ */
.contact { background: linear-gradient(170deg, var(--cream-warm) 0%, var(--cream-deep) 100%) }
.ct-g { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start }
.ct-info h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 14px }
.ct-info h2 em { color: var(--amber); font-style: italic }
.ct-info > p { color: var(--walnut-light); font-size: 16px; line-height: 1.8; margin-bottom: 30px; font-weight: 300 }
.ct-item { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; transition: transform .25s var(--ease) }
.ct-item:hover { transform: translateX(6px) }
.ct-ic {
  width: 50px; height: 50px; min-width: 50px; background: var(--white);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh); border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.ct-item:hover .ct-ic { border-color: var(--amber); box-shadow: 0 4px 16px rgba(232,129,26,.1) }
.ct-ic svg { width: 20px; height: 20px; color: var(--amber) }
.ct-t strong { display: block; font-size: 14px; font-weight: 600 }
.ct-t span, .ct-t a { font-size: 14px; color: var(--walnut-light) }
.ct-t a { color: var(--amber-deep); font-weight: 600 }
.ct-cities { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px }
.ct-city { background: var(--white); border: 1px solid var(--border); padding: 5px 14px; border-radius: 100px; font-size: 12px; color: var(--walnut-mist); font-weight: 500; transition: all .3s; font-family: 'Outfit', sans-serif }
.ct-city:hover { border-color: var(--amber); color: var(--amber-deep) }

/* ═══ FORM ═══ */
.ct-form {
  background: var(--white); border-radius: var(--r-xl); padding: 44px;
  box-shadow: var(--sh-lg); border: 1px solid var(--border-light);
}
.ct-form h3 { font-size: 24px; margin-bottom: 8px }
.ct-form > p { color: var(--walnut-light); font-size: 14px; margin-bottom: 28px; font-weight: 300 }
.fg { margin-bottom: 18px }
.fg label { display: block; font-size: 11px; font-weight: 600; color: var(--walnut-mid); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .12em; font-family: 'Outfit', sans-serif }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 14px 20px; border: 1.5px solid var(--border);
  border-radius: 14px; font-family: 'Outfit', sans-serif; font-size: 15px;
  color: var(--walnut); background: var(--cream); outline: 0;
  transition: all .3s var(--ease);
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-glow); background: var(--white) }
.fg textarea { resize: vertical; min-height: 110px }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
.ct-sub {
  width: 100%; background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #fff; border: 0; padding: 17px; border-radius: 100px; font-size: 15px;
  font-weight: 600; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all var(--dur) var(--ease); margin-top: 10px;
  box-shadow: 0 4px 24px rgba(232,129,26,.2); letter-spacing: .02em;
}
.ct-sub:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,129,26,.3) }
.ct-sub:active { transform: translateY(0) }
.ct-hint { font-size: 12px; color: var(--walnut-mist); text-align: center; margin-top: 14px; line-height: 1.5; font-weight: 300 }
.ct-next { margin-top: 32px; padding: 28px; background: var(--cream-warm); border-radius: var(--r-lg); border: 1px solid var(--border) }
.ct-next h4 { font-size: 17px; margin-bottom: 16px }
.ct-next ol { list-style: none; counter-reset: step }
.ct-next ol li { counter-increment: step; padding: 7px 0; font-size: 14px; color: var(--walnut-light); display: flex; gap: 12px; align-items: flex-start; line-height: 1.65; font-weight: 300 }
.ct-next ol li::before { content: counter(step); min-width: 26px; height: 26px; background: linear-gradient(135deg, var(--amber), var(--amber-light)); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 2px; font-family: 'Outfit', sans-serif }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  padding: 88px 28px; text-align: center;
  background: linear-gradient(135deg, #FDEBD3 0%, #FFF3E8 40%, #FEF5EC 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; top:-100px; right:-100px; width:360px; height:360px; background:radial-gradient(circle,var(--amber-glow) 0%,transparent 70%); border-radius:50% }
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; position: relative }
.cta-banner p { color: var(--walnut-light); font-size: 17px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; font-weight: 300 }

/* ═══ SCHOOL BENEFITS ═══ */
.school-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px }
.school-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; position: relative; transition: all var(--dur) var(--ease); overflow: hidden;
}
.school-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--amber),var(--amber-light)); transform:scaleX(0); transform-origin:left; transition:transform var(--dur) var(--ease) }
.school-card:hover::before { transform: scaleX(1) }
.school-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent }
.school-card h3 { font-size: 18px; margin-bottom: 10px }
.school-card p { font-size: 14px; color: var(--walnut-light); line-height: 1.75; font-weight: 300 }

/* ═══ PAGE HERO ═══ */
.page-hero {
  padding: 148px 28px 68px; text-align: center; position: relative;
  background: var(--cream); overflow: hidden;
}
.page-hero::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(170deg,var(--cream) 0%,var(--cream-warm) 60%,var(--cream-deep) 100%); opacity:.5 }
.page-hero > * { position: relative; z-index: 1 }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 18px }
.page-hero h1 em { color: var(--amber); font-style: italic }
.page-hero p { font-size: 18px; color: var(--walnut-light); max-width: 620px; margin: 0 auto; line-height: 1.8; font-weight: 300 }

/* ═══ PAGE CONTENT ═══ */
.page-content { padding: 88px 28px }
.page-content-i { max-width: 820px; margin: 0 auto }
.page-content h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 18px; margin-top: 56px }
.page-content h2:first-child { margin-top: 0 }
.page-content h3 { font-size: 22px; margin-bottom: 14px; margin-top: 40px }
.page-content p { color: var(--walnut-light); margin-bottom: 18px; line-height: 1.85; font-weight: 300 }
.page-content ul, .page-content ol { margin-bottom: 18px; padding-left: 24px }
.page-content li { color: var(--walnut-light); margin-bottom: 10px; line-height: 1.75; font-weight: 300 }
.page-content li strong { color: var(--walnut); font-weight: 600 }

/* ═══ LEGAL ═══ */
.legal-content { padding: 148px 28px 88px }
.legal-content-i { max-width: 820px; margin: 0 auto }
.legal-content h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 36px }
.legal-content h2 { font-size: 23px; margin: 44px 0 16px }
.legal-content p { color: var(--walnut-light); margin-bottom: 16px; line-height: 1.85; font-weight: 300 }

/* ═══ DANKE ═══ */
.danke-hero { padding: 160px 28px 100px; background: var(--cream); text-align: center; min-height: 50vh; display: flex; align-items: center; justify-content: center; position: relative }
.danke-hero::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(170deg,var(--cream) 0%,var(--cream-warm) 40%,var(--cream-deep) 100%); opacity:.5 }
.danke-hero > * { position: relative; z-index: 1 }
.danke-content { max-width: 580px }
.danke-ic { width: 80px; height: 80px; background: linear-gradient(145deg, var(--amber), var(--amber-light)); border-radius: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; box-shadow: 0 8px 28px rgba(232,129,26,.2); animation: heroFloat .6s var(--ease-out) both }
.danke-ic svg { width: 36px; height: 36px; color: #fff }

/* ═══ IMAGES ═══ */
.sec-img { width: 100%; border-radius: var(--r-lg); object-fit: cover; box-shadow: var(--sh-img) }
.sec-img-wide { width: 100%; max-height: 420px; border-radius: var(--r-lg); object-fit: cover; box-shadow: var(--sh-img); transition: all .5s var(--ease) }
.sec-img-wide:hover { box-shadow: var(--sh-lg); transform: scale(1.008) }
.sec-img-hero { width: 100%; max-height: 380px; border-radius: var(--r-xl); object-fit: cover; box-shadow: var(--sh-img); margin-top: 72px; margin-bottom: 20px; animation: heroFloat .8s var(--ease-out) .5s both }

/* ═══ FOOTER ═══ */
.footer {
  background: #FEF5EC; color: var(--walnut-light);
  padding: 72px 28px 36px; position: relative;
}
.footer::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent 0%,var(--amber) 50%,transparent 100%); opacity:.3 }
.footer-i { max-width: 1200px; margin: 0 auto }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 52px; margin-bottom: 48px }
.footer h4 { color: var(--walnut); font-size: 16px; margin-bottom: 20px; font-family: 'Lora', serif; letter-spacing: .01em }
.footer p { font-size: 14px; line-height: 1.8; font-weight: 300; color: var(--walnut-light) }
.footer-links { list-style: none }
.footer-links li { margin-bottom: 12px }
.footer-links a { color: var(--walnut-light); font-size: 14px; transition: all .3s var(--ease); text-decoration: none; font-weight: 300 }
.footer-links a:hover { color: var(--amber); padding-left: 6px }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; color: var(--walnut-light) }
.footer-contact-item svg { width: 16px; height: 16px; min-width: 16px; color: var(--amber); margin-top: 3px }
.footer-contact-item a { color: var(--walnut-light) }
.footer-contact-item a:hover { color: var(--amber) }
.footer-logo { height: 48px; width: auto; margin-bottom: 20px }
.footer-cities { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px }
.footer-city { background: rgba(232,129,26,.06); border: 1px solid rgba(232,129,26,.1); padding: 4px 14px; border-radius: 100px; font-size: 11px; color: var(--walnut-mist); transition: all .3s; font-family: 'Outfit', sans-serif }
.footer-city:hover { background: rgba(232,129,26,.1); color: var(--amber-deep) }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--walnut-mist) }
.footer-bottom a { color: var(--walnut-mist); text-decoration: none; margin-left: 24px; transition: color .3s }
.footer-bottom a:hover { color: var(--amber) }

/* ═══ WHATSAPP ═══ */
#waBtn {
  position: fixed; bottom: 28px; left: 28px; z-index: 9998;
  width: 58px; height: 58px; background: #25D366; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
  text-decoration: none; transition: all .3s var(--ease);
  animation: heroFloat 1s var(--ease-out) 1.2s both;
}
#waBtn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,.4) }
#waBtn svg { width: 28px; height: 28px; fill: #fff }
#waBtn::after {
  content: ''; position: absolute; inset: -5px; border-radius: 22px;
  border: 2px solid rgba(37,211,102,.25);
  animation: waPulse 3s ease infinite;
}
@keyframes waPulse { 0%,100% { transform:scale(1); opacity:.5 } 50% { transform:scale(1.12); opacity:0 } }

/* ═══ REVEAL ═══ */
.rv { opacity: 0; transform: translateY(24px); transition: all var(--dur-slow) var(--ease-out) }
.rv.v { opacity: 1; transform: translateY(0) }
.rv.v .sc:nth-child(1), .rv.v .pr-s:nth-child(1) { transition-delay: .05s }
.rv.v .sc:nth-child(2), .rv.v .pr-s:nth-child(2) { transition-delay: .12s }
.rv.v .sc:nth-child(3), .rv.v .pr-s:nth-child(3) { transition-delay: .19s }
.rv.v .sc:nth-child(4), .rv.v .pr-s:nth-child(4) { transition-delay: .26s }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media(max-width:900px) {
  .nlinks { display:none!important }
  .ntog { display:flex!important }
  .nlinks.active { display:flex!important; flex-direction:column; position:absolute; top:80px; left:0; right:0; background:var(--white); padding:16px 20px; border-bottom:1px solid var(--border); box-shadow:var(--sh-lg); gap:2px; z-index:999; max-height:calc(100vh - 80px); overflow-y:auto }
  .nlinks.active a { padding:13px 18px; border-radius:12px; font-size:15px }
  .nlinks.active .nc { text-align:center; margin:8px 0 0; padding:14px 18px }
  .hero { padding:116px 20px 64px!important }
  .hero h1 { font-size:30px!important }
  .hero-p { font-size:16px!important }
  .hbtns { flex-direction:column; gap:10px }
  .hbtns .btn { width:100%; text-align:center; justify-content:center }
  .htags { display:none!important }
  .sec { padding:80px 20px!important }
  .ab-g,.fo-g,.ct-g { grid-template-columns:1fr!important; gap:36px!important }
  .sg { grid-template-columns:1fr!important }
  .pr-g { grid-template-columns:1fr 1fr!important }
  .fr { grid-template-columns:1fr!important }
  .school-benefits { grid-template-columns:1fr!important }
  .footer-grid { grid-template-columns:1fr!important; gap:36px; text-align:center }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center }
  .footer-cities { justify-content:center }
  .page-hero { padding:108px 20px 52px!important }
  .legal-content { padding:108px 20px 64px!important }
  .sec-img-hero { max-height:260px }
  .ct-form { padding:32px 24px }
}
@media(max-width:768px) {
  .ab-g { gap:28px!important }
  .ab-card { padding:40px 32px }
  .fo-g { gap:32px!important }
  .ct-g { gap:40px!important }
  .ct-form { padding:30px 22px }
  .school-benefits { gap:16px }
  .school-card { padding:26px 22px }
  .pr-g { gap:14px }
  .pr-s { padding:28px 20px }
  .sc { padding:28px 24px }
  .sec-h { margin-bottom:48px }
  .sec-img-wide { max-height:300px }
  .sec-img-hero { max-height:220px; margin-top:56px }
  .hero-logo { max-width:150px; margin-bottom:32px }
  .cta-banner { padding:64px 20px }
  .testi { padding:18px 20px }
  .fq-q { font-size:15px; padding:20px 0 }
  .page-content { padding:64px 20px }
  .legal-content-i { padding:0 }
}
@media(max-width:480px) {
  .pr-g { grid-template-columns:1fr!important }
  .nav-i { padding:0 18px!important }
  .hero h1 { font-size:26px!important }
  .ct-form { padding:28px 20px }
  .ab-card { padding:36px 28px }
  #waBtn { bottom:20px; left:20px; width:52px; height:52px; border-radius:16px }
}

/* ═══ JOBS PAGE – inline grid override ═══ */
@media(max-width:768px) {
  .sc > div[style*="grid-template-columns"] { grid-template-columns:1fr!important; gap:24px!important }
  .sc { padding:32px 24px!important }
}

/* ═══ STICKY MOBILE CTA BAR ═══ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: rgba(253,248,242,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(44,34,24,.08);
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.sticky-cta.show { transform: translateY(0) }
.sticky-cta-i {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.sticky-cta .btn { flex: 1; padding: 13px 16px; font-size: 13px; text-align: center; justify-content: center; }
.sticky-cta .btn-tel { background: var(--white); color: var(--walnut); border: 1.5px solid var(--border); display: inline-flex; align-items: center; gap: 6px; }
.sticky-cta .btn-tel svg { width: 14px; height: 14px; color: var(--amber); }
@media(min-width:901px) { .sticky-cta { display: none!important } }
@media(max-width:900px) { .sticky-cta { display: block } #waBtn { bottom: 76px } }

/* ═══ SELECT STYLING ═══ */
.fg select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%237A6D5F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center;
  padding-right: 44px;
}
