/* ============================================================================
   stay.on — STYLES
   ----------------------------------------------------------------------------
   Die wichtigsten Stellschrauben (Farben, Schriften, Abstände) stehen ganz
   oben unter :root. Wenn du eine Farbe ändern willst, ändere sie HIER einmal –
   sie wird dann überall automatisch übernommen.
   ============================================================================ */

:root {
  /* ---- DEINE 4 MARKENFARBEN -------------------------------------------- */
  --black: #2A2A29;   /* Warmes Fast-Schwarz */
  --cream: #F9F3EB;   /* Warmes Creme (Hintergrund) */
  --clay:  #C26B4A;   /* Terracotta (Hauptakzent) */
  --sage:  #8E9D84;   /* Salbeigrün (Zweitakzent) */

  /* Abgeleitete Töne (leichte Aufhellungen für Hintergründe/Linien) */
  --cream-2: #F2EADC;          /* etwas dunkleres Creme für Wechselabschnitte */
  --line:    rgba(42,42,41,.12);   /* feine Trennlinien */
  --black-soft: #4A4A47;       /* abgemilderter Fließtext */

  /* ---- SCHRIFTEN ------------------------------------------------------- */
  /* Alles in Satoshi. Beide Variablen zeigen auf dieselbe Schrift, damit
     Überschriften und Fließtext einheitlich Satoshi verwenden. */
  --font-serif: "Satoshi", system-ui, -apple-system, sans-serif;  /* Überschriften */
  --font-sans:  "Satoshi", system-ui, -apple-system, sans-serif;  /* Fließtext */

  /* ---- LAYOUT ---------------------------------------------------------- */
  --maxw: 1140px;          /* maximale Inhaltsbreite */
  --pad:  clamp(20px, 5vw, 48px);
  --radius: 4px;
}

/* ---- GRUNDLAGEN -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---- ABSCHNITTE -------------------------------------------------------- */
.section { padding: clamp(72px, 12vh, 140px) 0; }
.section--alt  { background: var(--cream-2); }
.section--dark { background: var(--black); color: var(--cream); }

.section__label {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--clay);
  margin: 0 0 18px;
}
.section--dark .section__label { color: var(--clay); }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 28px;
  max-width: 18ch;
}

/* ============================ NAVIGATION =============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 243, 235, 0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 22px 0;
}
.nav.is-scrolled {
  background: rgba(249, 243, 235, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-mark { width: 34px; height: 34px; object-fit: contain; }
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .01em;
}

.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  color: var(--black);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 18px; }

/* Sprachumschalter */
.lang-toggle {
  font-family: var(--font-sans);
  background: none;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--black-soft);
  transition: border-color .25s ease;
}
.lang-toggle:hover { border-color: var(--clay); }
.lang-toggle__opt.is-active { color: var(--clay); }
.lang-toggle__sep { margin: 0 4px; opacity: .4; }

/* Burger-Menü (nur mobil sichtbar) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--black);
  transition: transform .3s ease, opacity .3s ease;
}

/* =============================== HERO ================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
/* dezente Hintergrund-Kreise in Markenfarben */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  opacity: .25;
  pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  border-color: var(--sage);
  top: -160px; right: -160px;
}
.hero::after {
  width: 380px; height: 380px;
  border-color: var(--clay);
  bottom: -140px; left: -120px;
  opacity: .2;
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero__logo { width: clamp(120px, 18vw, 168px); margin-bottom: 34px; }
.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2.3vw, 23px);
  color: var(--clay);
  margin: 0 0 22px;
  letter-spacing: .04em;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 26px;
  max-width: 16ch;
}
.hero__subtitle {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 300;
  color: var(--black-soft);
  max-width: 60ch;
  margin: 0 auto 40px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* =============================== BUTTONS ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn--primary { background: var(--clay); color: var(--cream); }
.btn--primary:hover { background: #b05f3f; transform: translateY(-2px); }
.btn--ghost { border-color: var(--black); color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--cream); transform: translateY(-2px); }
.section--dark .btn--ghost { border-color: var(--cream); color: var(--cream); }
.section--dark .btn--ghost:hover { background: var(--cream); color: var(--black); }

/* =============================== ANSATZ ============================== */
.approach__text {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--black-soft);
  max-width: 62ch;
  margin: 0 0 64px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.stat { display: flex; flex-direction: column; gap: 10px; }
.stat__value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--clay);
  line-height: 1;
}
.stat__label { font-size: 15px; color: var(--black-soft); max-width: 26ch; }

/* ============================= LEISTUNGEN ============================ */
.services__group { margin-top: 56px; }
.services__group:first-of-type { margin-top: 40px; }
.services__group-title {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.section--alt .service { background: var(--cream); }
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42,42,41,.08);
  border-color: rgba(194,107,74,.4);
}
.service__marker {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  position: relative;
  transition: background .3s ease;
}
.service__marker::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  background: var(--clay);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.service:hover .service__marker::after { transform: translate(-50%, -50%) scale(1.5); }
.service__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 500;
  margin: 14px 0 14px;
  line-height: 1.2;
}
.service__text { font-size: 16px; color: var(--black-soft); margin: 0; line-height: 1.65; }

/* ============================== ÜBER MICH =========================== */
.about__inner {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about__media {
  position: sticky;
  top: 120px;
  max-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.about__logo { width: clamp(140px, 16vw, 200px); }
.about__role {
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--sage);
  font-weight: 500;
  margin: -16px 0 28px;
}
.about__text { color: var(--black-soft); margin: 0 0 22px; max-width: 60ch; }
.about__text--accent {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 2vw, 23px);
  color: var(--black);
  line-height: 1.5;
}
.about__stations-label {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black-soft);
  margin: 40px 0 16px;
  font-weight: 500;
}
.about__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 36px;
}
.about__logo-item {
  height: 22px;
  width: auto;
  opacity: .5;
  transition: opacity .3s ease;
}
.about__logo-item--tall { height: 38px; }
.about__logo-item:hover { opacity: .85; }

/* =============================== KONTAKT ============================= */
.contact__text {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(249,243,235,.78);
  max-width: 58ch;
  margin: 0 0 56px;
}
/* E-Mail als großer, typografischer Klick-Link */
.contact__email {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 2.8vw, 30px);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--cream);
  position: relative;
  margin: 4px 0 56px;
  word-break: break-word;
}
.contact__email::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  width: 100%; height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.contact__email:hover { color: var(--clay); }
.contact__email:hover::after { transform: scaleX(1); }

/* Schlichte Detailzeile unter feiner Trennlinie – keine Kästchen */
.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(249,243,235,.16);
}
.contact__detail { display: flex; flex-direction: column; gap: 10px; }
.contact__detail-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}
.contact__detail-value {
  font-size: 19px;
  color: var(--cream);
  font-weight: 400;
}
.contact__detail-value--link { transition: color .25s ease; }
.contact__detail-value--link:hover { color: var(--clay); }

/* Kleines LinkedIn-Logo, inline neben dem Text */
.contact__linkedin-inline { display: inline-flex; align-items: center; gap: 9px; }
.contact__linkedin-mark { width: 20px; height: 20px; flex-shrink: 0; }

/* =============================== FOOTER ============================= */
.footer { background: var(--black); color: var(--cream); padding: 48px 0; border-top: 1px solid rgba(249,243,235,.1); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.footer__logo { width: 96px; margin-bottom: 12px; }
.footer__tagline { font-size: 14px; color: rgba(249,243,235,.6); margin: 0; }
.footer__meta { text-align: right; }
.footer__links { display: flex; gap: 24px; justify-content: flex-end; margin-bottom: 12px; }
.footer__links a { font-size: 14px; color: rgba(249,243,235,.7); transition: color .25s ease; }
.footer__links a:hover { color: var(--clay); }
.footer__copy { font-size: 13px; color: rgba(249,243,235,.45); margin: 0; }

/* ====================== ANIMATION (Einblenden) ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ====================== RECHTSSEITEN (Impressum/Datenschutz) ======= */
.legal { padding: 140px 0 100px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--clay);
  margin-bottom: 40px;
  transition: gap .25s ease;
}
.legal__back:hover { gap: 12px; }
.legal h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.legal__updated { color: var(--black-soft); font-size: 14px; margin: 0 0 48px; }
.legal h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(21px, 2.6vw, 27px);
  margin: 48px 0 14px;
}
.legal h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 8px;
}
.legal p, .legal li { color: var(--black-soft); max-width: 72ch; }
.legal a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal__note {
  background: var(--cream-2);
  border-left: 3px solid var(--clay);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 40px;
  font-size: 15px;
}
.legal__note strong { color: var(--black); }
.legal__placeholder {
  background: rgba(194,107,74,.12);
  border-radius: 3px;
  padding: 1px 6px;
  font-weight: 500;
  color: #9a4e30;
}

/* ========================== RESPONSIVE ============================= */
@media (max-width: 860px) {
  body { font-size: 16px; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -12px 0 40px rgba(42,42,41,.12);
    transition: right .35s ease;
  }
  .nav__links.is-open { right: 0; }
  .nav__links a { font-size: 20px; font-family: var(--font-serif); }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .stats { grid-template-columns: 1fr; gap: 28px; }
  .services__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { position: static; max-width: 280px; }
  .contact__details { gap: 28px 48px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
  .footer__links { justify-content: flex-start; }
}
