/* =========================================================
   promilz.de – Future Leadership Camp Day
   Farben & Schrift nach Milz-Hausstil
   ========================================================= */

@font-face { font-family: "Carlito"; src: url("fonts/carlito-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Carlito"; src: url("fonts/carlito-latin-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Carlito"; src: url("fonts/carlito-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Carlito"; src: url("fonts/carlito-latin-700-italic.woff2") format("woff2"); font-weight: 700; font-style: italic; font-display: swap; }

:root {
  --orange: #F39400;
  --orange-dark: #D98300;
  --graphite: #3A3936;
  --graphite-deep: #2B2A28;
  --paper: #FBFAF6;
  --line: #E6E3DA;
  --muted: #6E6C66;
  --white: #FFFFFF;

  --font: "Calibri", "Carlito", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --wrap: 1180px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3, .h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--orange); color: var(--white); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.btn:hover { background: var(--orange-dark); }
.btn--small { padding: 9px 18px; font-size: 1rem; }
.btn--big { padding: 16px 34px; font-size: 1.15rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(78vh, 720px); display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,42,40,.15) 0%, rgba(43,42,40,.55) 55%, rgba(43,42,40,.88) 100%); }
.hero__content { position: relative; padding-top: 120px; padding-bottom: 64px; }
.hero h1 { max-width: 14ch; margin-bottom: .45em; }
.facts { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 12px 34px; font-size: 1.15rem; }
.facts li { display: flex; align-items: center; gap: 10px; }
.facts .ico { width: 1.5em; height: 1.5em; fill: var(--orange); }

/* ---------- Sektionen ---------- */
.section { padding: 88px 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--graphite); color: var(--white); }
.section__title { margin-bottom: 1em; }
.section__title::after { content: ""; display: block; width: 64px; height: 4px; background: var(--orange); margin-top: 16px; }

/* Intro + Zitat */
.intro { display: grid; grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: start; }
.lead { font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.4; font-weight: 700; margin-bottom: 1.4em; max-width: 36ch; }
.intro__text p:not(.lead) { max-width: 62ch; }
.quote { margin: 0; background: var(--paper); border-left: 5px solid var(--orange); padding: 34px 32px; }
.quote blockquote { margin: 0 0 24px; font-style: italic; font-size: 1.12rem; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 16px; }
.quote figcaption img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.quote figcaption span { display: flex; flex-direction: column; font-size: 1rem; line-height: 1.35; }
.quote figcaption em { color: var(--muted); }

/* Bild-Banner */
.banner { position: relative; min-height: 460px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,42,40,.85) 0%, rgba(43,42,40,.5) 55%, rgba(43,42,40,.1) 100%); }
.banner__content { position: relative; padding-top: 64px; padding-bottom: 64px; }
.banner h2 { max-width: 16ch; }
.banner p { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.6em; }

/* Tagesablauf */
.split p { max-width: 64ch; }
.timeline { list-style: none; counter-reset: step; margin: 48px 0 56px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.timeline li { counter-increment: step; position: relative; padding: 56px 32px 0 0; }
.timeline li::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: var(--white); font-weight: 700;
  display: grid; place-items: center; z-index: 1;
}
.timeline li::after { content: ""; position: absolute; top: 19px; left: 40px; right: 0; height: 2px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 56px; }

.price { background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--orange); padding: 40px; }
.price__rows { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 28px; }
.price__row { display: flex; flex-direction: column; padding: 22px 24px; background: var(--paper); border-radius: var(--radius); }
.price__row span { font-weight: 700; }
.price__row strong { font-size: 2.4rem; line-height: 1.1; margin: 6px 0; }
.price__row small { color: var(--muted); font-size: .98rem; }
.price__row--early { background: var(--graphite); color: var(--white); }
.price__row--early strong { color: var(--orange); }
.price__row--early small { color: #CFCDC6; }
.price__note { color: var(--muted); font-size: 1rem; max-width: 72ch; }
.price .btn { margin-top: 12px; }

/* Karussell */
.carousel { position: relative; overflow: hidden; background: var(--graphite-deep); }
.carousel__track { display: flex; transition: transform .6s ease; }
.carousel__track img { flex: 0 0 100%; width: 100%; aspect-ratio: 3 / 1; object-fit: cover; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--graphite); display: grid; place-items: center;
}
.carousel__btn:hover { background: var(--orange); color: var(--white); }
.carousel__btn .ico { width: 28px; height: 28px; }
.carousel__btn--prev { left: 20px; }
.carousel__btn--next { right: 20px; }
.carousel__dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.carousel__dots button { width: 28px; height: 4px; border: 0; padding: 0; background: rgba(255,255,255,.55); cursor: pointer; }
.carousel__dots button[aria-selected="true"] { background: var(--orange); }

/* Veranstalter */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.person { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }
.person img { width: 200px; height: 250px; object-fit: cover; border-bottom: 5px solid var(--orange); }
.person h3 { margin-bottom: .15em; font-size: 1.6rem; }
.person__role { color: var(--orange-dark); font-weight: 700; margin-bottom: .8em; }
.person p:last-child { font-size: 1.05rem; }

/* Ahaus */
.ahaus { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.ahaus__img img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.ahaus__text { padding: 72px clamp(24px, 5vw, 80px); max-width: 680px; }
.ahaus__text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.textlink { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--orange-dark); text-decoration: underline; text-underline-offset: 4px; }
.textlink:hover { color: var(--graphite); }

/* Abschluss-Button */
.final-cta { background: var(--graphite); padding: 72px 0; }
.final-cta__inner { display: flex; justify-content: center; }

/* Footer */
.footer { background: var(--graphite-deep); color: #D9D7D0; font-size: .95rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--orange); }
.footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding-top: 20px; padding-bottom: 24px; }
.footer__company { color: #A9A7A0; font-size: .9rem; }
.footer__bottom nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .people { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .intro, .two, .ahaus { grid-template-columns: 1fr; gap: 40px; }
  .timeline { grid-template-columns: 1fr; gap: 32px; margin: 36px 0 44px; }
  .timeline li { padding: 0 0 0 60px; }
  .timeline li::after { top: 40px; left: 19px; right: auto; bottom: -32px; width: 2px; height: auto; }
  .price { padding: 28px 22px; }
  .price__rows { grid-template-columns: 1fr; }
  .ahaus__img img { min-height: 260px; }
  .ahaus__text { padding: 48px 24px; }
  .carousel__track img { aspect-ratio: 16 / 9; }
  .carousel__btn { width: 42px; height: 42px; }
}
@media (max-width: 560px) {
  body { font-size: 1.06rem; }
  .hero__content { padding-bottom: 44px; }
  .facts { flex-direction: column; gap: 10px; }
  .person { grid-template-columns: 1fr; }
  .person img { width: 160px; height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .carousel__track, .btn { transition: none; }
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal-top { background: var(--graphite); }
.legal-top a { display: inline-block; color: var(--white); text-decoration: none; padding: 18px 0; font-weight: 700; }
.legal-top a:hover { color: var(--orange); }
.legal { padding: 64px 0 88px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.4em; }
.legal p, .legal li { font-size: 1.05rem; }
.legal ul { padding-left: 1.2em; }
.legal a { color: var(--orange-dark); }
.legal .muted { color: var(--muted); font-size: .95rem; }
