:root {
  /* Ruhige, neutrale Farbpalette mit leicht hochwertigem Kontrast. */
  --bg: #f4f1eb;
  --bg-soft: #ece7df;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #1c1c1a;
  --muted: #5c5b56;
  --line: rgba(28, 28, 26, 0.08);
  --line-strong: rgba(28, 28, 26, 0.16);
  --accent: #1f3b36;
  --accent-soft: #d6e3df;
  --shadow: 0 18px 50px rgba(20, 26, 24, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 227, 223, 0.85), transparent 28%),
    linear-gradient(180deg, #f8f5f0 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(28, 28, 26, 0.04);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.about-grid h2,
.audience-box h2,
.contact-box h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
}

.section-heading p,
.about-copy p,
.audience-copy p,
.contact-box p,
.hero-copy .lead,
.hero-panel p,
.project-body p,
.service-card p,
.step-card p,
.price-card p {
  color: var(--muted);
}

.site-header {
  /* Sticky Header bleibt beim Scrollen sichtbar, ohne aufdringlich zu wirken. */
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(248, 245, 240, 0.78);
  border-bottom: 1px solid rgba(28, 28, 26, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  /* Mobile Navigation wird per JavaScript ein- und ausgeblendet. */
  position: fixed;
  inset: 4.75rem 1rem auto 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a {
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--bg-soft);
  color: var(--text);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: var(--surface-strong);
  box-shadow: 0 8px 20px rgba(28, 28, 26, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  padding-top: 4rem;
}

.hero-grid,
.about-grid,
.audience-box,
.contact-box {
  display: grid;
  gap: 2rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero-copy .lead {
  margin: 1.3rem 0 0;
  max-width: 38rem;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line-strong);
}

.trust-points,
.audience-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.trust-points li,
.audience-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.trust-points li::before,
.audience-list li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-card {
  display: flex;
  align-items: stretch;
}

.hero-panel,
.card,
.step-card,
.audience-box,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.7rem;
  width: 100%;
}

.panel-label,
.price-name {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.panel-stats div {
  padding: 0.95rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(28, 28, 26, 0.06);
}

.panel-stats strong {
  display: block;
  font-size: 1.1rem;
}

.panel-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-grid {
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.services-grid,
.projects-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

.card,
.step-card {
  padding: 1.5rem;
}

.service-card h3,
.project-body h3,
.step-card h3,
.price-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  line-height: 1.25;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-shot {
  /* Platzhalter-Flaechen koennen spaeter einfach durch echte Screenshots ersetzt werden. */
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.shot-barber {
  background: linear-gradient(135deg, #111111, #3a4d49);
}

.shot-salon {
  background: linear-gradient(135deg, #6c756f, #2e2b2a);
}

.shot-shop {
  background: linear-gradient(135deg, #b38d6c, #51423a);
}

.project-body {
  padding: 1.5rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.steps-grid {
  counter-reset: steps;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.audience-box,
.contact-box {
  padding: 1.8rem;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-value {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text) !important;
}

.featured {
  border-color: rgba(31, 59, 54, 0.18);
  background: linear-gradient(180deg, rgba(214, 227, 223, 0.62), rgba(255, 255, 255, 0.82));
  transform: translateY(-4px);
}

.contact-section {
  padding-bottom: 7rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #1f9d68;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(31, 157, 104, 0.28);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

@media (min-width: 720px) {
  .hero-actions,
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-grid,
  .about-grid,
  .audience-box,
  .contact-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
