/* =========================================================
   Sascha Schlönvoigt - Coaching & Beratung
   Global styles
   ========================================================= */

/* ---- Rubik (lokal) -------------------------------------- */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/rubik-latin.woff2") format("woff2");
}

/* ---- Design tokens -------------------------------------- */
:root {
  --gold:       #dd9f3e;
  --gold-dark:  #c48b2e;
  --gold-soft:  #f3dca9;
  --ink:        #1e1e1e;
  --ink-soft:   #2b2b2b;
  --muted:      #6b6b6b;
  --line:       #e3ded5;
  --cream:      #f8f6f2;
  --section:    #ededed;
  --white:      #ffffff;

  --shadow-sm: 0 1px 2px rgba(30,30,30,.04), 0 2px 6px rgba(30,30,30,.04);
  --shadow-md: 0 4px 14px rgba(30,30,30,.06), 0 10px 30px rgba(30,30,30,.05);
  --shadow-lg: 0 10px 30px rgba(30,30,30,.08), 0 30px 60px rgba(30,30,30,.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --font-body: "Rubik", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --page-gutter: clamp(18px, 4vw, 36px);
}

/* ---- Reset ---------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0 0 1em; padding-left: 1.1em; }
li { margin-bottom: .35em; color: var(--ink-soft); }

/* ---- Utilities ------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section { padding: clamp(54px, 8vw, 96px) 0; }
.section--alt  { background: var(--cream); }
.section--grey { background: var(--section); }
.section--dark { background: #131313; color: #efeae0; }
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: #c8c1b3; }
.text-gold { color: var(--gold); }

/* ---- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(221,159,62,.28);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--gold::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -120%;
  width: 55%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .65s cubic-bezier(.5,.1,.3,1);
  pointer-events: none;
}
.btn--gold > * { position: relative; z-index: 1; }
.btn--gold svg { transition: transform .35s cubic-bezier(.4,.2,.2,1); }
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(221,159,62,.42);
  background: var(--gold);
}
.btn--gold:hover::before { left: 120%; }
.btn--gold:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(221,159,62,.28); }
.btn--contact:hover svg { transform: translateX(4px); }
.btn--phone svg { color: var(--ink); }
.btn--phone:hover svg { transform: rotate(-14deg) scale(1.08); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ---- Navigation ----------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 120px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.brand__mark {
  width: 100px; height: 100px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__text { line-height: 1.15; }
.brand__name {
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: .04em;
  color: var(--ink);
  display: block;
}
.brand__tag {
  font-size: .95rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  position: relative;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s cubic-bezier(.5,.2,.2,1);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active:not(.nav__cta)::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px !important;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 6px 16px rgba(221,159,62,.28);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(221,159,62,.42);
  background: var(--gold);
}
.nav__cta:active { transform: translateY(0); }
.nav__cta.active { box-shadow: 0 6px 16px rgba(221,159,62,.28); }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }

@media (max-width: 820px) {
  .nav__inner { height: 90px; }
  .brand__mark { width: 70px; height: 70px; }
  .brand__name { font-size: 1.15rem; }
  .brand__tag  { font-size: .78rem; letter-spacing: .22em; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    inset: 90px 0 auto 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav__links.open { max-height: 420px; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links a {
    display: block;
    padding: 18px var(--page-gutter);
    font-size: 1.02rem;
  }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__links a.active:not(.nav__cta) { color: var(--gold); }
  .nav__cta-item { padding: 14px var(--page-gutter); }
  .nav__cta {
    display: block;
    padding: 14px 20px !important;
    text-align: center;
    border-radius: 8px;
  }
}

/* ---- Page header (sub pages) ---------------------------- */
.page-header {
  background: var(--section);
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 9vw, 96px);
  text-align: center;
}
.page-header h1 {
  position: relative;
  display: inline-block;
  padding-top: 22px;
}
.page-header h1::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 48px; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

/* ---- Hero (home) --------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(520px, 72vh, 720px);
  background: var(--ink);
  overflow: hidden;
}
.hero__inner {
  display: flex;
  align-items: center;
  padding: clamp(40px,6vw,64px) var(--page-gutter);
  justify-content: flex-end;
}
.hero__img {
  position: relative;
  overflow: hidden;
}
.hero__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
  max-width: 620px;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-right: -120px;
  z-index: 2;
}
.hero__card .eyebrow {
  margin-bottom: 18px;
}
.hero__card h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 18px;
  line-height: 1.18;
}
.hero__card p { color: var(--ink-soft); }
.hero__actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}
.hero__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 600px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.hero__phone svg { width: 18px; height: 18px; color: var(--gold); }
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__img {
    min-height: 350px;
    order: -1;
  }
  /* Auf Mobile zeigt das Hero-Bild kein 50/50-Center, sondern den oberen
     Bildbereich mit Gesicht. Sonst wird Saschas Kopf abgeschnitten. */
  .hero__img::before {
    background-position: center 20px;
  }
  .hero__inner {
    padding: clamp(32px,5vw,48px) var(--page-gutter);
    justify-content: center;
  }
  .hero__card {
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero__img { min-height: 260px; }
  .hero__img::before { background-position: center 20px; }
}

/* ---- Cards row ----------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: clamp(54px, 7vw, 84px) 0;
}
.card {
  text-align: center;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: .92rem; color: var(--muted); margin: 0; }
@media (max-width: 820px) {
  .cards { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
}

/* ---- Experience section -------------------------------- */
.experience {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.4fr;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
}
.experience__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.experience__badge {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.experience__badge .num {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.experience__badge .lbl {
  margin-top: 10px;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 14ch;
}
.experience h2 { max-width: 24ch; margin-bottom: 18px; }
.experience__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 10px;
}
.experience__link:hover { color: var(--gold-dark); }
@media (max-width: 820px) {
  .experience { grid-template-columns: 1fr 1fr; }
  .experience > div:nth-child(3) { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .experience { grid-template-columns: 1fr; }
  /* Aus dem Quadrat-Badge wird auf Mobile ein schmales horizontales Banner. */
  .experience__badge {
    aspect-ratio: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 22px 24px;
    gap: 22px;
  }
  .experience__badge .num {
    font-size: 3.6rem;
    flex: 0 0 auto;
  }
  .experience__badge .lbl {
    margin-top: 0;
    max-width: none;
    font-size: .98rem;
    line-height: 1.35;
  }
}

/* ---- Offer (Tätigkeitsfelder) -------------------------- */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.offer__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.offer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.offer__head .card__icon { margin: 0; }
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer__list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.offer__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 24px; height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd9f3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") no-repeat center / contain;
}
.offer__title { text-align: center; }
@media (max-width: 720px) {
  .offer__grid { grid-template-columns: 1fr; }
}

/* ---- Why section --------------------------------------- */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.why__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.why__check {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.why__check li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}
.why__check li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 24px; height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd9f3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") no-repeat center / contain;
}
@media (max-width: 820px) {
  .why { grid-template-columns: 1fr; }
}

/* ---- Values (Wofür ich stehe) -------------------------- */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.values__col {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
}
.values__tag {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 18px;
}
.values__tag--no  { background: var(--ink); }
.values__tag--yes { background: var(--gold); }
.values__col h3 { text-align: center; margin-bottom: 18px; }
.values__list { list-style: none; padding: 0; margin: 0; }
.values__list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.values__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 24px; height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.values__col--no  .values__list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='15' y1='9' x2='9' y2='15'/><line x1='9' y1='9' x2='15' y2='15'/></svg>");
}
.values__col--yes .values__list li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd9f3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>");
}
.values__footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 1.05rem;
  color: var(--ink);
}
@media (max-width: 720px) {
  .values { grid-template-columns: 1fr; }
}

/* ---- CTA strip ----------------------------------------- */
.cta-strip {
  background: var(--ink);
  color: #fff;
}
.cta-strip .container {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0;
}
.cta-strip .container > div:first-child { padding-right: 10px; }
.cta-strip .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}
.cta-strip__phone {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 500;
}
.cta-strip__phone .ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
}
.cta-strip__phone .ico svg { width: 20px; height: 20px; color: #fff; }
@media (max-width: 820px) {
  .cta-strip .container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ---- Footer -------------------------------------------- */
.footer {
  background: #141414;
  color: #aaa;
  padding: 28px 0;
  font-size: .85rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 22px; }
.footer__links a:hover { color: var(--gold); }

/* =========================================================
   About page
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}
.about__stack > * + * { margin-top: clamp(26px, 3vw, 38px); }
.about__imgs { display: grid; gap: 22px; position: sticky; top: 108px; }
.about__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.about__cert {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: #fff;
}
.about__cert img { width: 100%; height: auto; display: block; }

.values-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 8px;
}
.values-inline__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.values-inline__ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(221,159,62,.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.values-inline__ico svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__imgs { position: static; grid-template-columns: 1fr 1fr; }
  .about__cert { grid-column: 1 / -1; }
  .values-inline { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}
.contact-info {
  background: var(--section);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 44px);
}
.contact-info__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(30,30,30,.1);
}
.contact-info__item:last-of-type { border-bottom: 0; }
.contact-info__ico {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
}
.contact-info__ico svg { width: 22px; height: 22px; }
.contact-info__label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info__value {
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info__value a:hover { color: var(--gold); }
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 2px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(30,30,30,.12);
  border-radius: 999px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.contact-socials a svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.contact-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(221,159,62,.08);
}
.contact-info__maps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: .85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.contact-info__maps:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}
.contact-info__maps svg { transition: transform .2s ease; }
.contact-info__maps:hover svg { transform: translate(2px, -2px); }
.contact-hero {
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 820px) {
  .contact-top { grid-template-columns: 1fr; }
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(221,159,62,.15);
}
.field textarea { min-height: 150px; resize: vertical; }
.form-submit { width: 100%; padding: 16px; }
.form-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(221,159,62,.12);
  color: var(--ink);
  font-size: .9rem;
  display: none;
}
.form-message.show { display: block; }
.form-message.error {
  background: rgba(200,40,40,.08);
  color: #8a1f1f;
}
.field-error {
  color: #8a1f1f;
  font-size: .78rem;
  margin-top: 4px;
  display: none;
}
.field.has-error input,
.field.has-error textarea { border-color: #c82828; }
.field.has-error .field-error { display: block; }

.privacy-note h3 { margin-bottom: 14px; }
.privacy-note ul {
  list-style: none;
  padding: 0;
}
.privacy-note li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: .95rem;
}
.privacy-note li::before {
  content: "";
  position: absolute;
  left: 0; top: .7em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
@media (max-width: 820px) {
  .contact-form-section { grid-template-columns: 1fr; }
}

/* =========================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================= */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { margin-top: 40px; font-size: 1.35rem; }
.legal h3 { margin-top: 28px; font-size: 1.05rem; }
.legal p, .legal li { font-size: .95rem; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

.legal-tldr {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 22px 26px 18px;
  margin: 0 0 32px;
  border-radius: 4px;
}
.legal-tldr h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.legal-tldr ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-tldr li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.55;
  font-size: .95rem;
}
.legal-tldr li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-tldr__hint {
  margin: 12px 0 0;
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- 404 Seite ----------------------------------------- */
.not-found { text-align: center; max-width: 720px; margin: 0 auto; }
.not-found__num {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.not-found h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 16px;
}
.not-found p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.not-found__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.not-found__links h2 {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.not-found__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.not-found__links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.not-found__links a:hover { color: var(--gold); }

/* ---- Skip-Link (A11y) ---------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

/* ---- Honeypot ------------------------------------------ */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---- Animations ---------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-up.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---- Foto Ken-Burns Hover ------------------------------ */
.hero__img::before,
.experience__img::before,
.why__img::before,
.about__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 1.2s ease, filter .5s ease;
  will-change: transform;
}
.hero__img:hover::before,
.experience__img:hover::before,
.why__img:hover::before,
.about__photo:hover::before {
  transform: scale(1.06);
  filter: saturate(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .hero__img::before,
  .experience__img::before,
  .why__img::before,
  .about__photo::before { transition: none; }
  .hero__img:hover::before,
  .experience__img:hover::before,
  .why__img:hover::before,
  .about__photo:hover::before { transform: none; filter: none; }
}

/* ---- Erstgespraech / Termin-Seite ---------------------- */
.erstgespraech-intro { text-align: center; max-width: 760px; margin: 0 auto; }
.erstgespraech-features {
  list-style: none;
  padding: 0;
  margin: 28px auto 0;
  display: inline-block;
  text-align: left;
}
.erstgespraech-features li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.erstgespraech-features li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 24px; height: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dd9f3e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>") no-repeat center / contain;
}

.consent-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.consent-box__ico {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(221,159,62,.14);
  color: var(--gold);
  margin-bottom: 18px;
}
.consent-box__ico svg { width: 28px; height: 28px; }
.consent-box h3 { margin: 0 0 14px; font-size: 1.25rem; color: var(--ink); }
.consent-box p { color: var(--ink-soft); margin-bottom: 14px; }
.consent-box__hint { font-size: .88rem; color: var(--muted); }
.consent-box .btn { margin-top: 18px; }

/* ---- Preise / Pricing ---------------------------------- */
.preise-intro,
.preise-faq { max-width: 820px; margin: 0 auto; text-align: center; }
.preise-intro p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }

.pricing { max-width: 920px; margin: 0 auto; }
.pricing__head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.pricing__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pricing__list { display: flex; flex-direction: column; gap: 0; }

.pricing-card {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  padding: clamp(22px, 3vw, 32px) clamp(8px, 2vw, 20px);
  position: relative;
}
.pricing-card + .pricing-card {
  border-top: 1px dashed rgba(221, 159, 62, .55);
}
.pricing-card__ico {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 64px;
}
.pricing-card__ico svg { width: 32px; height: 32px; }
.pricing-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.pricing-card__meta {
  margin: 0 0 10px;
  font-size: .95rem;
  color: #b8b1a3;
}
.pricing-card__desc {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: #c8c1b3;
  max-width: 52ch;
}
.pricing-card__price {
  font-family: var(--font-display, inherit);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
}
.pricing-card__price span {
  display: inline-block;
  margin-left: 2px;
  font-size: .7em;
}

.pricing-card--featured {
  background: linear-gradient(180deg, rgba(221,159,62,.06), rgba(221,159,62,.02));
  border-radius: 6px;
}
.pricing-card--featured::after {
  content: "Beliebt";
  position: absolute;
  top: 14px; right: 14px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.pricing__footnote {
  margin: clamp(24px, 3vw, 36px) auto 0;
  max-width: 720px;
  text-align: center;
  font-size: .85rem;
  color: #9d9586;
  line-height: 1.7;
}

/* ---- FAQ auf Preise-Seite ------------------------------ */
.preise-faq { text-align: left; }
.preise-faq > .eyebrow { display: flex; justify-content: center; }
.preise-faq > h2 { display: block; text-align: center; margin-bottom: clamp(28px, 4vw, 40px); }
.preise-faq__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}
.preise-faq__item {
  padding: 22px 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.preise-faq__item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--ink);
}
.preise-faq__item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .pricing-card {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 8px;
  }
  .pricing-card__ico { width: 52px; height: 52px; flex: 0 0 52px; }
  .pricing-card__ico svg { width: 26px; height: 26px; }
  .pricing-card__body { grid-column: 2; }
  .pricing-card__price {
    grid-column: 1 / -1;
    text-align: left;
    padding-left: 72px;
    font-size: 1.6rem;
  }
  .pricing-card--featured::after { top: 10px; right: 10px; }
}

/* ---- Print --------------------------------------------- */
@media print {
  .nav, .cta-strip, .footer { display: none; }
}
