/* ================================================
   KARL HAUSER ARCHITEKT — Design System
   Modern-minimalistisch · Architektonische Präzision
   ================================================ */

/* --- Design Tokens --- */
:root {
  /* Colors */
  --black: #0A0A0A;
  --white: #F5F3F0;
  --accent: #6B7B8D;
  --accent-light: #8A9BAD;
  --stone: #D4CFC8;
  --stone-light: #E8E4DE;
  --text: #1A1A1A;
  --text-muted: #6A6A6A;
  --text-on-dark: #E0DDD8;
  --text-muted-dark: #9A9590;

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Type Scale */
  --text-hero: clamp(2.5rem, 5vw, 4.25rem);
  --text-section: clamp(1.75rem, 3.5vw, 3rem);
  --text-sub: clamp(1.25rem, 2vw, 1.5rem);
  --text-body: clamp(0.9375rem, 1.1vw, 1.0625rem);
  --text-body-lg: clamp(1rem, 1.3vw, 1.125rem);
  --text-small: 0.875rem;
  --text-overline: 0.75rem;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 120px);
  --section-py-sm: clamp(48px, 6vw, 72px);
  --gap-xl: clamp(48px, 6vw, 80px);
  --gap-lg: clamp(32px, 4vw, 48px);
  --gap-md: 24px;
  --gap-sm: 16px;
  --gap-xs: 8px;

  /* Layout */
  --max-w: 1200px;
  --max-w-text: 680px;
  --max-w-narrow: 560px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);

  /* Shadows */
  --shadow: 0 4px 24px rgba(10, 10, 10, 0.06);
  --shadow-hover: 0 8px 32px rgba(10, 10, 10, 0.10);

  /* Radius */
  --radius: 6px;
  --radius-lg: 8px;
}


/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* --- Typography --- */
.overline {
  font-family: var(--font-mono);
  font-size: var(--text-overline);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.overline--light {
  color: var(--text-muted-dark);
}

h1, h2, h3, .heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.heading-section {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-sub {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.text-body {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  max-width: var(--max-w-text);
}

.text-mono {
  font-family: var(--font-mono);
  font-weight: 700;
}


/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--max-w-text);
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--black);
  color: var(--text-on-dark);
}

.section--stone {
  background: var(--stone-light);
}

.section__header {
  margin-bottom: var(--gap-xl);
}

.section__header .overline {
  margin-bottom: var(--gap-sm);
  display: block;
}

.section__rule {
  border: none;
  height: 1px;
  background: var(--stone);
  margin: 0;
}

.section--dark .section__rule {
  background: rgba(255, 255, 255, 0.12);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--stone);
}

.btn--ghost:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--primary-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--primary-light:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(10, 10, 10, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s var(--ease);
}

.nav__mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile.open a:nth-child(1) { transition-delay: 0.1s; }
.nav__mobile.open a:nth-child(2) { transition-delay: 0.15s; }
.nav__mobile.open a:nth-child(3) { transition-delay: 0.2s; }
.nav__mobile.open a:nth-child(4) { transition-delay: 0.25s; }
.nav__mobile.open a:nth-child(5) { transition-delay: 0.3s; }

.nav__mobile a:hover {
  color: var(--accent-light);
}


/* --- Hero --- */
.hero {
  padding-top: calc(72px + var(--section-py));
  padding-bottom: var(--section-py);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--gap-xl);
  align-items: center;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.hero__content .overline {
  margin-bottom: -8px;
}

.hero__text {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 440px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-top: 8px;
}


/* --- Services / Leistungen --- */
.services__list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--gap-md);
  padding: var(--gap-lg) 0;
  border-top: 1px solid var(--stone);
  transition: background var(--transition);
}

.service-item:last-child {
  border-bottom: 1px solid var(--stone);
}

.service-item__number {
  font-family: var(--font-mono);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  color: var(--accent);
  padding-top: 4px;
}

.service-item__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-item__text {
  color: var(--text-muted);
  font-size: var(--text-body);
  line-height: 1.65;
  max-width: 540px;
}

.service-item__link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
}

.service-item__link:hover {
  color: var(--text);
  gap: 10px;
}

.services__cta {
  margin-top: var(--gap-xl);
  text-align: center;
}


/* --- Trust / Numbers --- */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-lg);
  margin-bottom: var(--gap-xl);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.stat__label {
  font-size: var(--text-small);
  color: var(--text-muted-dark);
  letter-spacing: 0.02em;
}

.trust__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  padding-top: var(--gap-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust__badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}


/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--gap-xl);
  align-items: start;
}

.about__portrait {
  position: relative;
}

.about__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  padding-top: var(--gap-sm);
}

.about__text {
  font-size: var(--text-body-lg);
  line-height: 1.7;
  color: var(--text);
  max-width: var(--max-w-text);
}

.about__quote {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent);
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  margin: var(--gap-sm) 0;
}

.about__link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.about__link:hover {
  color: var(--text);
  gap: 10px;
}


/* --- Process / Ablauf --- */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step__number {
  font-family: var(--font-mono);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 400;
  color: var(--accent);
}

.process-step__rule {
  width: 40px;
  height: 1.5px;
  background: var(--stone);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.process-step__text {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.6;
}


/* --- FAQ --- */
.faq__list {
  max-width: var(--max-w-text);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-item:first-child {
  border-top: 1px solid var(--stone);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: var(--text-body-lg);
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item__answer-inner {
  padding-bottom: 24px;
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}


/* --- Contact --- */
.contact__headline {
  text-align: center;
  margin-bottom: 12px;
}

.contact__subtext {
  text-align: center;
  color: var(--text-muted-dark);
  font-size: var(--text-body-lg);
  max-width: var(--max-w-text);
  margin: 0 auto var(--gap-xl);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
}

.contact__form-wrap h3,
.contact__details-wrap h3 {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--gap-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  transition: border-color var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted-dark);
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--accent-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: none;
}

.contact__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.contact__detail-item:hover {
  color: var(--accent-light);
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--accent-light);
}

.contact__detail-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact__detail-text {
  font-size: var(--text-body);
  line-height: 1.5;
}

.contact__map {
  margin-top: var(--gap-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.05);
}


/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--text-muted-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px 24px;
}

.footer__quote {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text-on-dark);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}


/* --- Subpage Layout --- */
.subpage {
  padding-top: calc(72px + var(--gap-xl));
  padding-bottom: var(--section-py);
  min-height: calc(100vh - 72px - 90px);
}

.subpage__header {
  margin-bottom: var(--gap-xl);
}

.subpage__title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: var(--gap-sm);
}

.subpage__rule {
  border: none;
  height: 1px;
  background: var(--stone);
}

.subpage__content {
  max-width: var(--max-w-text);
}

.subpage__content h2 {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  margin-top: var(--gap-lg);
  margin-bottom: var(--gap-sm);
}

.subpage__content p {
  margin-bottom: var(--gap-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.subpage__content p:first-child {
  color: var(--text);
}

.subpage__content strong {
  color: var(--text);
  font-weight: 600;
}

/* Gutachten page specific */
.gutachten__intro {
  font-size: var(--text-body-lg);
  color: var(--text);
  margin-bottom: var(--gap-lg);
  max-width: var(--max-w-text);
}

.gutachten__list {
  margin-bottom: var(--gap-xl);
  max-width: var(--max-w-text);
}

.gutachten__list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone-light);
  font-size: var(--text-body-lg);
  line-height: 1.5;
}

.gutachten__list-item:first-child {
  border-top: 1px solid var(--stone-light);
}

.gutachten__list-marker {
  font-family: var(--font-mono);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

.gutachten__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-sm);
  max-width: 800px;
}

.gutachten__images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Profil page specific */
.profil__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--gap-xl);
  align-items: start;
}

.profil__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.profil__cv {
  display: flex;
  flex-direction: column;
}

.profil__cv-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--gap-md);
  padding: 16px 0;
  border-bottom: 1px solid var(--stone-light);
  font-size: var(--text-body);
  line-height: 1.6;
}

.profil__cv-item:first-child {
  border-top: 1px solid var(--stone-light);
}

.profil__cv-year {
  font-family: var(--font-mono);
  font-size: var(--text-small);
  color: var(--accent);
  padding-top: 2px;
}

.profil__cv-text {
  color: var(--text);
}

.profil__cv-sub {
  padding-left: 20px;
  color: var(--text-muted);
}

/* Legal pages */
.legal {
  max-width: var(--max-w-text);
}

.legal section {
  margin-bottom: var(--gap-lg);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: var(--text-sub);
  font-weight: 600;
  margin-bottom: var(--gap-sm);
  color: var(--text);
}

.legal p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal strong {
  color: var(--text);
}


/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.35s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* --- Responsive --- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .hero {
    padding-top: calc(72px + var(--gap-lg));
    min-height: auto;
  }

  .hero__image-wrap {
    order: -1;
  }

  .hero__content {
    text-align: left;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .about__portrait img {
    max-width: 320px;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .profil__grid {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .profil__portrait img {
    max-width: 320px;
  }

  .trust__stats {
    gap: var(--gap-md);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-item__number {
    padding-top: 0;
  }

  .gutachten__images {
    grid-template-columns: 1fr;
  }

  .profil__cv-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .trust__stats {
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
  }

  .trust__badges {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
