@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("fonts/Lora-Italic-Variable.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --cream: #ffffff;
  --cream-2: #f5f5f5;
  --ink: #000000;
  --ink-soft: #4a5568;
  --blue: #7ca8a4;
  --blue-deep: #7ca8a4;
  --blue-wash: #dbeafe;
  --orange: #ec7100;
  --orange-deep: #ec7100;
  --orange-wash: #feedde;
  --border: #e5e7eb;
  --radius: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 500;
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-name:hover,
.nav-name:focus-visible {
  color: var(--orange-deep);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange-deep);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: var(--cream);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  display: block;
}
.nav-burger:hover span {
  background: var(--orange-deep);
}

@media (max-width: 640px) {
  .nav-name {
    font-size: 13px;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 50;
  }
  .nav-links.active {
    max-height: 300px;
  }
  .nav-links a {
    padding: 12px 28px;
    color: var(--ink-soft);
    display: block;
  }
  .nav-cta {
    font-size: 13px;
    padding: 8px 14px;
  }
  .nav-burger {
    display: flex;
  }
  .nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  .nav-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-wash img {
  width: min(1400px, 150%);
  max-width: none;
  height: auto;
  opacity: 0.92;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 75% at center,
    black 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 75% at center,
    black 55%,
    transparent 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: 0.03em;
  margin: 22px 0 10px;
  line-height: 1.05;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero .tagline {
  font-family: "Space Grotesk", sans-serif;
  color: var(--orange-deep);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  margin-bottom: 26px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.hero p.lede {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, background 0.2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-deep);
}
.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--ink);
  color: var(--cream);
}
.btn:active {
  transform: scale(0.97);
}

/* ---------- Sections generic ---------- */
section {
  padding: 84px 0;
}
section.alt {
  background: var(--cream-2);
}

/* ---------- Über mich ---------- */
.about {
  display: block;
}
.about-text h2 {
  font-size: clamp(26px, 3.4vw, 32px);
  margin: 12px 0 20px;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.credentials {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials li {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.credentials li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- Angebot ---------- */
.offer-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
}
section.alt .offer-card {
  background: #fff;
}
.offer-card .tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 500;
}
.offer-card h3 {
  font-size: 20px;
  margin: 10px 0 12px;
}
.offer-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
}
@media (max-width: 800px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Ansatz / signature ---------- */
.approach {
  display: block;
}
.approach-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.approach-text blockquote {
  font-style: italic;
  color: var(--blue-deep);
  font-size: 19px;
  border-left: 2px solid var(--orange);
  padding-left: 18px;
  margin: 24px 0;
}

/* ---------- Kontakt ---------- */
.contact {
  text-align: center;
}
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  margin: 14px 0;
}
.contact-row a {
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.contact-row a:hover,
.contact-row a:focus-visible {
  color: var(--orange-deep);
}
.contact .btn {
  margin-top: 24px;
}

/* ---------- Footer ---------- */
footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-inner a {
  text-decoration: none;
  color: var(--ink-soft);
}
.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--orange-deep);
}
.footer-links {
  display: flex;
  gap: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 2px;
}
