/* ============================================================
   Schacher Solutions – Events & Marketing
   ============================================================ */

:root {
  --black: #111111;
  --ink: #1a1a1a;
  --gray: #55534f;
  --gray-light: #8a8783;
  --bg: #ffffff;
  --bg-soft: #f5f4f1;
  --line: #e4e2dd;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --container: 1200px;
  --header-h: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 { color: var(--black); }

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Shared elements ---------- */

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--black);
  margin: 22px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 26px;
  border: 1.5px solid var(--black);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn .arrow { font-size: 14px; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-solid { background: var(--black); color: #fff; }
.btn-solid:hover { background: #2b2b2b; border-color: #2b2b2b; }

.btn-outline { background: transparent; color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}

.text-link .arrow { transition: transform 0.25s ease; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Logo ---------- */

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--black);
  text-decoration: none;
}

.logo-line { display: block; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav > a:not(.btn) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.main-nav > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 0.25s ease;
}

.main-nav > a:not(.btn):hover::after { width: 100%; }

.nav-cta { margin-left: 10px; padding: 13px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 42% 100%, 0 32%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 56px;
  padding-bottom: 110px;
}

.hero-content { max-width: 520px; }

.hero-content .eyebrow { margin-bottom: 0; }

.hero-content .rule { margin: 18px 0 30px; }

.hero h1 {
  font-size: clamp(48px, 6.4vw, 76px);
  margin-bottom: 28px;
}

.hero .lead {
  font-size: 15.5px;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */

.section-gray { background: var(--bg-soft); }

.section-head { margin-bottom: 56px; }

.section-head.center { text-align: center; }

.section-head h2 { font-size: clamp(30px, 3.4vw, 40px); }

/* ---------- Leistungen ---------- */

.services { padding: 90px 0 96px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service {
  padding: 0 32px;
  border-left: 1px solid var(--line);
}

.service:first-child { border-left: none; padding-left: 0; }
.service:last-child { padding-right: 0; }

.service-num {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  display: inline-block;
  margin-bottom: 34px;
}

.num-rule {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  margin-top: 8px;
}

.step-icon svg {
  width: 34px;
  height: 34px;
  color: var(--black);
}

.service h3,
.skill-col h3,
.value h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service p {
  font-size: 13.5px;
  margin-bottom: 26px;
}

/* ---------- Ansatz ---------- */

.approach { padding: 100px 0; }

.approach-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.approach-intro h2 { font-size: clamp(28px, 3vw, 36px); }

.approach-intro p:last-child { font-size: 14px; }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.step { text-align: left; position: relative; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--bg-soft);
  margin-bottom: 30px;
  position: relative;
}

.step-icon svg { width: 30px; height: 30px; }

/* dashed connector between circles */
.step:not(:last-child) .step-icon::after {
  content: '';
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  width: calc(100% + 40px);
  border-top: 1.5px dashed #c9c6c0;
}

.step-num {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 6px;
}

.step h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step p { font-size: 13px; }

/* ---------- Kompetenzen ---------- */

.skills { padding: 88px 0 96px; }

.skills-head { margin-bottom: 52px; }

.skills-head h2 { font-size: clamp(26px, 2.8vw, 34px); }

.skills-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.skill-col {
  padding: 0 32px;
  border-left: 1px solid var(--line);
}

.skill-col:first-child { border-left: none; padding-left: 0; }
.skill-col:last-child { padding-right: 0; }

.skill-col h3 { margin-bottom: 16px; font-size: 12px; }

.skill-col ul {
  list-style: none;
  font-size: 13.5px;
}

.skill-col li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 8px;
}

.skill-col li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--black);
}

/* ---------- Über mich ---------- */

.about { padding: 96px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img { width: 100%; }

.about h2 { font-size: clamp(28px, 3vw, 36px); }

.about-text { max-width: 440px; margin-bottom: 40px; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value { position: relative; padding-right: 20px; }

.value:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 4px;
  bottom: 4px;
  border-right: 1px solid var(--line);
}

.value h3 { font-size: 11.5px; margin-bottom: 6px; }

.value p { font-size: 12.5px; line-height: 1.6; }

/* ---------- CTA ---------- */

.cta-band {
  background: var(--bg-soft);
  padding: 44px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cta-inner p { font-size: 14px; }

/* ---------- Footer ---------- */

.site-footer { padding-top: 70px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 0.9fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-logo { font-size: 27px; }

.footer-contact { font-style: normal; font-size: 13px; }

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--black);
}

.contact-row a {
  color: var(--gray);
  text-decoration: none;
}

.contact-row a:hover { color: var(--black); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.footer-nav a:hover { text-decoration: underline; }

.footer-social { font-size: 13px; }

.social-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--gray);
  text-decoration: none;
  margin-bottom: 14px;
}

.social-row strong {
  color: var(--black);
  font-weight: 600;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--black);
  flex-shrink: 0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}

.social-row:hover .social-icon {
  background: var(--black);
}

.social-row:hover .social-icon svg { color: #fff; }

.social-url { color: var(--gray-light); font-size: 12.5px; }

.footer-bottom { border-top: 1px solid var(--line); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12px;
}

.footer-bottom-inner nav { display: flex; gap: 32px; }

.footer-bottom-inner a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
}

.footer-bottom-inner a:hover { color: var(--black); }

/* ---------- Legal pages ---------- */

.legal-page {
  padding: 70px 0 100px;
  max-width: 760px;
}

.legal-page h1 { font-size: clamp(34px, 4vw, 46px); margin-bottom: 36px; }

.legal-page h2 {
  font-size: 20px;
  margin: 40px 0 12px;
}

.legal-page p { margin-bottom: 14px; }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .service:nth-child(3) { border-left: none; padding-left: 0; }
  .service:nth-child(2n) { padding-right: 0; }

  .approach-inner { grid-template-columns: 1fr; gap: 56px; }
  .steps { gap: 20px; }

  .skills-columns { grid-template-columns: 1fr 1fr; gap: 44px 0; }
  .skill-col:nth-child(3) { border-left: none; padding-left: 0; }
  .skill-col:nth-child(2n) { padding-right: 0; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }

  .site-header .logo { font-size: 21px; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 32px 28px;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .main-nav.open { display: flex; }

  .main-nav > a:not(.btn) { padding: 14px 0; }

  .nav-cta { margin: 16px 0 0; }

  .hero-image {
    position: relative;
    width: 100%;
    height: auto;
    order: -1;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  }

  .hero-image img { object-fit: cover; width: 100%; height: 300px; }

  .hero-inner { padding-top: 36px; padding-bottom: 64px; }

  .hero h1 { margin-bottom: 22px; }

  .hero .lead { margin-bottom: 32px; }

  .steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .step:not(:last-child) .step-icon::after { display: none; }

  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-values { grid-template-columns: 1fr; gap: 22px; }
  .value { padding-right: 0; }
  .value:not(:last-child)::after { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .footer-bottom-inner { flex-direction: column; gap: 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 22px; }

  body { font-size: 14.5px; }

  .hero-image img { height: 240px; }

  .hero h1 { font-size: clamp(40px, 12vw, 48px); }

  .hero-actions { flex-direction: column; align-items: stretch; }

  .btn { justify-content: center; text-align: center; }

  .nav-cta { align-self: stretch; }

  .eyebrow { letter-spacing: 0.22em; }

  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .service { border-left: none; padding: 0 0 40px; border-bottom: 1px solid var(--line); }
  .service:last-child { border-bottom: none; padding-bottom: 0; }
  .service p { margin-bottom: 0; }
  .service-num { margin-bottom: 20px; }

  .section-head { margin-bottom: 40px; }

  .approach { padding: 60px 0; }
  .approach-inner { gap: 40px; }

  /* steps as compact horizontal rows */
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 0 20px;
    align-items: start;
  }
  .step-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 0;
    grid-row: 1 / span 3;
  }
  .step-icon svg { width: 24px; height: 24px; }
  .step-num { margin-bottom: 2px; }
  .step h3 { margin-bottom: 6px; }

  .about { padding: 60px 0; }
  .about-inner { gap: 36px; }
  .about-text { margin-bottom: 32px; }

  .skills { padding: 60px 0; }
  .skills-head { margin-bottom: 36px; }
  .skills-columns { grid-template-columns: 1fr; gap: 36px; }
  .skill-col { border-left: none; padding: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }

  .site-footer { padding-top: 52px; }

  .cta-band { padding: 40px 0; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .cta-inner .btn { width: 100%; }
}
