/* =============================================
   DARK MODE
============================================= */
[data-theme="dark"] header {
  background: rgba(28, 25, 23, 0.96);
}

[data-theme="dark"] .mobile-nav {
  background: var(--bg);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #231F1C;
  color: var(--text);
}

[data-theme="dark"] .cta-section {
  background: #0E0C0A;
}

[data-theme="dark"] .cta-section h2 {
  color: #F3EDE5;
}

[data-theme="dark"] .cta-section p {
  color: rgba(243, 237, 229, 0.65);
}

[data-theme="dark"] .cta-direkt {
  color: rgba(243, 237, 229, 0.4);
}

[data-theme="dark"] .cta-direkt a {
  color: rgba(243, 237, 229, 0.65);
}

[data-theme="dark"] footer {
  background: #0E0C0A;
}

.hero-mark-line { stroke: #E8C98A !important; }
.hero-mark-arrow { fill: #E8C98A !important; }
.nav-logo svg g > line { stroke: #E8C98A !important; }
.nav-logo svg g > polygon:last-child { fill: #E8C98A !important; }

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
  padding: 0;
}

.theme-toggle:hover { border-color: var(--accent); }

.theme-toggle svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.theme-toggle:hover svg { stroke: var(--accent); }

.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hero decorative background element */
.hero-deco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
}

[data-theme="dark"] .hero-deco { opacity: 0.07; }

@media (max-width: 900px) {
  .hero-deco { opacity: 0.04; right: -5%; }
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #F7F3EE;
  --bg-dark:     #EDE7DC;
  --accent:      #C9A96E;
  --accent-dark: #A07840;
  --text:        #2C2523;
  --text-light:  #7A6E68;
  --white:       #FDFAF7;
  --border:      #DDD5C8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --padding:   clamp(1.5rem, 5vw, 4rem);
}

[data-theme="dark"] {
  --bg:          #1C1917;
  --bg-dark:     #231F1C;
  --accent:      #C9A96E;
  --accent-dark: #A07840;
  --text:        #F3EDE5;
  --text-light:  #9C9088;
  --white:       #2A2521;
  --border:      #3D3530;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; }

p { color: var(--text-light); max-width: 60ch; }
a { color: inherit; text-decoration: none; }

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
}

section {
  padding: clamp(4rem, 8vw, 8rem) var(--padding);
}

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* =============================================
   HEADER / NAV
============================================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem var(--padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg { width: 26px; height: 26px; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.nav-logo-text span { color: var(--accent); }

.nav-center {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-center a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-center a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--text-light);
  transition: color 0.2s;
  padding: 0.15rem 0.3rem;
}

.lang-switch a.active {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
}

.lang-switch .sep { color: var(--border); }

.nav-cta {
  background: var(--text) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-dark) !important; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  z-index: 101;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.28s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--accent); }

.mobile-lang {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-lang a {
  font-family: var(--font-sans);
  font-size: 0.8rem !important;
  font-weight: 500;
  color: var(--text-light) !important;
}

.mobile-lang a.active {
  color: var(--text) !important;
  border-bottom: 1px solid var(--accent);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  margin-left: 1rem;
}

.btn-outline:hover { border-color: var(--text); }

.hero-btns {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  align-items: stretch;
}

.hero-btns .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.hero-btns .btn-outline { margin-left: 0; }

/* =============================================
   HERO (Startseite)
============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 80%;
  background: radial-gradient(ellipse at center, var(--bg-dark) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-inner h1 { margin-bottom: 1.5rem; max-width: 14ch; }
.hero-inner h1 em { font-style: italic; color: var(--accent); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.13;
  pointer-events: none;
}

[data-theme="dark"] .hero-visual { opacity: 0.2; }
.hero-visual svg { width: 100%; max-width: 420px; height: auto; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 50ch;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--padding);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--accent);
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background: var(--bg);
  padding-left: var(--padding);
  padding-right: var(--padding);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 200%;
  background: radial-gradient(ellipse at right center, var(--bg-dark) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner { max-width: var(--max-width); margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 22ch;
  margin-top: 0.75rem;
}

.page-hero p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  max-width: 52ch;
}

/* =============================================
   PHILOSOPHIE
============================================= */
.philosophie {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophie-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophie-text h2 { margin-bottom: 1.5rem; }
.philosophie-text p { margin-bottom: 1rem; }

blockquote {
  border-left: 2px solid var(--accent);
  padding: 2rem 2.5rem;
  background: var(--white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text);
}

blockquote cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  font-style: normal;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* =============================================
   LEISTUNGEN OVERVIEW (Startseite)
============================================= */
.section-header {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.leistungen-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.leistung-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: background 0.2s;
}

.leistung-card:hover { background: var(--white); }

.leistung-nr {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.leistung-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.leistung-card p { font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   LEISTUNGEN DETAIL PAGE
============================================= */
.leistung-detail-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.leistung-detail-card {
  background: var(--bg);
  padding: 3rem;
  transition: background 0.2s;
}

.leistung-detail-card:hover { background: var(--white); }

.leistung-detail-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.leistung-detail-card p { font-size: 0.92rem; margin-bottom: 1.2rem; }

.leistung-detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.leistung-detail-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1.2rem;
  position: relative;
}

.leistung-detail-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-sans);
}

/* =============================================
   REFERENZEN
============================================= */
.referenzen-coming {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 5rem 2rem;
  border: 1px dashed var(--border);
}

.referenzen-coming h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.referenzen-coming p {
  max-width: 38ch;
  margin: 0 auto;
  font-size: 0.92rem;
}

/* =============================================
   USPs / WARUM UPTRAIL
============================================= */
.warum { background: var(--bg-dark); border-top: 1px solid var(--border); }

.warum-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.warum-left h2 { margin-bottom: 1.5rem; }
.warum-left p { font-size: 1rem; }

.usp-list { display: flex; flex-direction: column; gap: 2rem; }

.usp-item { display: flex; gap: 1.5rem; align-items: flex-start; }

.usp-icon {
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg {
  width: 1rem; height: 1rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-text h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.usp-text p { font-size: 0.9rem; max-width: none; }

/* =============================================
   ÜBER UNS
============================================= */
.ueber-story {
  background: var(--bg);
}

.ueber-story-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.ueber-story-text h2 { margin-bottom: 1.5rem; }
.ueber-story-text p { margin-bottom: 1rem; }

.ueber-values { background: var(--bg-dark); border-top: 1px solid var(--border); }

.ueber-values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.value-card {
  background: var(--bg-dark);
  padding: 2.5rem;
  transition: background 0.2s;
}

.value-card:hover { background: var(--white); }

.value-card .value-nr {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.value-card p { font-size: 0.9rem; max-width: none; }

.ueber-founding {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.ueber-founding-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ueber-founding h2 { margin-bottom: 1.2rem; }
.ueber-founding p { margin: 0 auto 1rem; }

/* =============================================
   KONTAKT
============================================= */
.kontakt-section { background: var(--bg); }

.kontakt-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.kontakt-info h2 { margin-bottom: 1.2rem; }
.kontakt-info > p { margin-bottom: 2.5rem; }

.kontakt-details { display: flex; flex-direction: column; gap: 1.5rem; }

.kontakt-detail-item { display: flex; flex-direction: column; gap: 0.25rem; }

.detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.kontakt-detail-item a,
.kontakt-detail-item span {
  font-size: 0.95rem;
  color: var(--text);
}

.kontakt-detail-item a:hover { color: var(--accent); }

.kontakt-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.7;
}

.form-success {
  display: none;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--text);
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: var(--text);
  color: var(--white);
  text-align: center;
}

.cta-section .label { color: var(--accent); }
.cta-section h2 { color: var(--white); margin-bottom: 1.2rem; }

.cta-section p {
  color: rgba(253, 250, 247, 0.65);
  max-width: none;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.cta-section .btn-accent {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  display: inline-block;
  font-family: var(--font-sans);
}

.cta-section .btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.cta-direkt {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(253, 250, 247, 0.4);
  letter-spacing: 0.05em;
}

.cta-direkt a {
  color: rgba(253, 250, 247, 0.65);
  border-bottom: 1px solid rgba(253, 250, 247, 0.2);
  transition: color 0.2s, border-color 0.2s;
}

.cta-direkt a:hover { color: var(--white); border-color: var(--white); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem var(--padding) 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo svg { width: 20px; height: 20px; }

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(253, 250, 247, 0.45);
}

.footer-logo-text span { color: var(--accent); }

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 247, 0.3);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(253, 250, 247, 0.65); }

.footer-copy {
  font-size: 0.73rem;
  color: rgba(253, 250, 247, 0.18);
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =============================================
   FAQ
============================================= */
.faq-list {
  max-width: var(--max-width);
  margin: 0 auto;
  border: 1px solid var(--border);
}

.faq-item {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.faq-item:last-child { border-bottom: none; }

.faq-item { cursor: pointer; }

.faq-q {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.faq-q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.faq-item.open .faq-q::after { content: '\2212'; }

.faq-a {
  font-size: 0.93rem;
  color: var(--text-light);
  max-width: 72ch;
  margin: 0;
  line-height: 1.75;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
  margin-top: 0.7rem;
}

/* =============================================
   LEISTUNG CARD ICONS
============================================= */
.leistung-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.leistung-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistung-detail-icon {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.leistung-detail-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leistung-icon,
.leistung-detail-icon { display: none; }

/* =============================================
   PROCESS STEPS
============================================= */
.process-steps {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.process-step {
  background: var(--bg);
  padding: 3rem 2.5rem;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.process-step p {
  font-size: 0.9rem;
  max-width: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .philosophie-grid,
  .warum-grid,
  .ueber-story-grid,
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .leistung-detail-grid {
    grid-template-columns: 1fr;
  }

  .process-steps { grid-template-columns: 1fr; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .nav-center,
  .nav-right { display: none; }

  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .leistungen-grid,
  .ueber-values-grid { grid-template-columns: 1fr; }
  .btn-outline { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }

  .leistung-card .leistung-icon,
  .leistung-card .leistung-nr { display: none; }

  .leistung-card p { display: none; max-width: none; }

  .leistung-card { cursor: pointer; user-select: none; }

  .leistung-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .leistung-card h3::after {
    content: '+';
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 0.75rem;
  }

  .leistung-card.open p { display: block; }
  .leistung-card.open h3::after { content: '\2212'; }
}
