/* ==========================================================================
   DOMINIC SCHMIDT · INTEGRATIVE GESUNDHEITSBEGLEITUNG
   Design System: Quiet Luxury / Sensorische Reizarmut
   ========================================================================== */

:root {
  --bg-dark: #0b0c0e;
  --bg-card: #121418;
  --bg-card-hover: #181a20;
  --bg-input: #16181e;
  
  --gold: #a3907c;
  --gold-light: #c2af9b;
  --gold-dark: #7a6b5a;
  --gold-glow: rgba(163, 144, 124, 0.15);

  --crimson: #8a2828;
  --crimson-light: #b53838;
  --crimson-glow: rgba(138, 40, 40, 0.2);

  --text-white: #f5f3ef;
  --text-light: #ded8ce;
  --text-muted: #8a8a86;
  --text-dark: #585854;

  --border: rgba(163, 144, 124, 0.16);
  --border-strong: rgba(163, 144, 124, 0.35);

  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  color: var(--text-white);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text-white);
  font-weight: 500;
}

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

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

.text-center {
  text-align: center;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  box-sizing: border-box;
}

.section {
  padding: 7rem 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--gold);
  color: #0b0c0e;
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--gold);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0b0c0e;
  font-weight: 600;
  border: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-large {
  padding: 1.2rem 2.8rem;
  font-size: 1.05rem;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 12, 14, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.nav-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 33px;
  height: 33px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-sub {
  font-size: 12px;
  color: #9c9a94;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-top: 1px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(2.2rem, 3.6vw, 3.6rem);
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 450;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.5rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-desktop {
  display: inline-flex !important;
}

.nav-cta-mobile {
  display: none !important;
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  margin-bottom: 5px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
  padding: calc(90px + 4rem) 0 7rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(163, 144, 124, 0.08) 0%, rgba(138, 40, 40, 0.04) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background-color: rgba(20, 22, 26, 0.85);
  border: 1px solid var(--border);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(163, 144, 124, 0.6);
}

.hero-title {
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4.5rem;
}

.hero-emblem-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-emblem {
  width: 140px;
  height: 140px;
  opacity: 0.9;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  transition: var(--transition);
}

.hero-emblem:hover {
  transform: scale(1.04);
  opacity: 1;
}

.emblem-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   INTRO CARDS
   ========================================================================== */
.section-intro {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e1014 100%);
}

.intro-card {
  padding: 2.5rem;
}

.card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  height: 28px;
}

.card-brush-icon {
  width: 46px;
  height: 22px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.9;
}

.card-brush-icon path {
  fill: #C4B5A0;
  transition: fill 0.3s ease;
}

.intro-card:hover .card-brush-icon {
  transform: translateY(-2px);
  opacity: 1;
}

.intro-card:hover .card-brush-icon path {
  fill: #ded8ce;
}

.intro-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.intro-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PILLARS (DIE 3 SÄULEN)
   ========================================================================== */
.section-pillars {
  background-color: var(--bg-dark);
}

.pillars-intro-header {
  max-width: 860px;
  margin-bottom: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(163, 144, 124, 0.15);
}

section[id] {
  scroll-margin-top: 110px;
}

.pillar-block {
  display: flex;
  gap: 3.5rem;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 110px;
}

.pillar-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pillar-indicator {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-num {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-serif);
}

.pillar-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  margin-top: 0.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pillar-content {
  flex-grow: 1;
}

.pillar-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.pillar-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 860px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

/* THEMATISCHE SÄULEN-BILDKARTE */
.pillar-media-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 1.75rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2.25rem;
  align-items: center;
  transition: var(--transition);
}

.pillar-media-card:hover {
  border-color: rgba(163, 144, 124, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pillar-media-img-box {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #0b0c0e;
}

.pillar-media-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-media-card:hover .pillar-media-img-box img {
  transform: scale(1.03);
}

.pillar-media-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pillar-media-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.pillar-media-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

.pillar-cards {
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 28px;
  padding: 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background-color: rgba(163, 144, 124, 0.06);
  border: 1px solid rgba(163, 144, 124, 0.24);
  border-radius: 3px;
  align-self: center;
  margin-top: auto;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 0.5px rgba(163, 144, 124, 0.1);
  transition: var(--transition);
}

.feature-card:hover .card-footer-badge {
  border-color: rgba(163, 144, 124, 0.4);
  background-color: rgba(163, 144, 124, 0.1);
  color: var(--text-white);
}

/* ==========================================================================
   BRIDGE (RESONANZRAUM)
   ========================================================================== */
.section-bridge {
  background: linear-gradient(180deg, #0e1014 0%, #15181f 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 0;
}

.section-bridge .section-title {
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  font-weight: 400;
  color: #E8E6E3;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.bridge-container {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bridge-status {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-top: -0.5rem;
  margin-bottom: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bridge-lead {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.bridge-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.bridge-actions {
  margin-top: 2.5rem;
}

.enso-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.enso-image {
  max-width: 320px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  transition: var(--transition);
}

.enso-image:hover {
  transform: scale(1.03);
}

/* RESONANZRAUM VISUAL CARD */
.bridge-visual-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.bridge-visual-card:hover {
  border-color: rgba(163, 144, 124, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.bridge-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #0b0c0e;
}

.bridge-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bridge-visual-card:hover .bridge-photo {
  transform: scale(1.03);
}

.bridge-logo-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(11, 12, 14, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-logo-overlay .enso-image {
  height: 42px;
  width: auto;
}

.bridge-card-caption {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bridge-caption-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.bridge-caption-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.section-about {
  background-color: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1.6fr;
  gap: 4rem;
  align-items: start;
}

.about-image-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.about-image-container:hover {
  border-color: rgba(163, 144, 124, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about-image-caption {
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-caption-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-white);
}

.about-caption-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* BIOLOGISCHE CO-REGULATION: BOYKA */
.about-coregulation {
  margin-top: 4.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.25rem;
}

.coregulation-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: start;
}

.coregulation-media {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #0b0c0e;
  align-self: flex-start;
}

.coregulation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-coregulation:hover .coregulation-media img {
  transform: scale(1.03);
}

.coregulation-title {
  font-size: 1.4rem;
  margin: 0.35rem 0 0.75rem;
  line-height: 1.25;
  color: var(--text-white);
}

.coregulation-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.coregulation-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0;
}

.coregulation-option-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.coregulation-option-item strong {
  color: var(--text-white);
  font-weight: 500;
}

.option-bullet {
  color: var(--gold);
  font-weight: bold;
  line-height: 1.4;
  flex-shrink: 0;
}

.coregulation-subnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 1.15rem;
  margin-bottom: 0;
  opacity: 0.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   PROCESS / ABLAUF CARDS
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.process-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.process-card:hover {
  border-color: rgba(163, 144, 124, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.process-card h3 {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.section-faq {
  background-color: #0e1014;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 1.6rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT / INQUIRY BOX
   ========================================================================== */
.section-contact {
  background-color: var(--bg-dark);
}

.contact-box {
  background: linear-gradient(180deg, var(--bg-card) 0%, #171920 100%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.2rem, 4vw, 3.5rem);
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.contact-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
  box-sizing: border-box;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(163, 144, 124, 0.22);
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 16px; /* 16px verhindert automatisches iOS-Zooming beim Tippen */
  transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
  background-color: rgba(255, 255, 255, 0.07);
}

.service-tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.service-tile-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  cursor: pointer;
  min-height: 48px;
  transition: var(--transition);
  box-sizing: border-box;
  width: 100%;
}

.service-tile-label:hover {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(163, 144, 124, 0.4);
}

.service-tile-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
}

.service-tile-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-tile-title {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.35;
}

.service-tile-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.service-tile-label:has(input:checked) {
  background-color: rgba(163, 144, 124, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(163, 144, 124, 0.15);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-label:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--text-white) !important;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.form-privacy {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-top: 1rem;
}

/* ==========================================================================
   FORM SUCCESS STATE (RUHIGE BESTÄTIGUNG)
   ========================================================================== */
.form-success-state {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: rgba(18, 20, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  animation: fadeInSuccess 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSuccess {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(163, 144, 124, 0.12);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.success-icon {
  width: 28px;
  height: 28px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.success-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.success-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.success-badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   FOOTER (MINIMAL & SYMMETRISCH)
   ========================================================================== */
.site-footer {
  background-color: #08090a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 42px 0 32px;
}

.footer-container-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand-minimal {
  max-width: 560px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 6px;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-white);
  font-weight: 500;
}

.footer-brand-person {
  color: var(--gold-light);
  font-weight: 400;
}

.footer-text-minimal {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding-left: calc(32px + 0.85rem);
  margin: 0;
}

.footer-meta-minimal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.footer-contact-link {
  font-size: 0.88rem;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--text-white);
  text-decoration: underline;
}

.footer-legal-inline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.footer-legal-inline a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-inline a:hover {
  color: var(--text-white);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom-row {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-row p {
  font-size: 0.76rem;
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container-minimal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-meta-minimal {
    align-items: flex-start;
    text-align: left;
  }
  .footer-text-minimal {
    padding-left: 0;
  }
}

/* ==========================================================================
   LEGAL MODAL (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 8, 10, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  cursor: default;
  color: var(--text-light);
  line-height: 1.7;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.modal-content h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.modal-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal-content strong {
  color: var(--text-white);
}

.modal-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.modal-content a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1250px) and (min-width: 1025px) {
  .nav-menu {
    gap: 0.95rem;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .nav-cta {
    padding: 0.5rem 0.95rem;
    font-size: 0.8rem;
    margin-left: 0.3rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 0;
  }

  .nav-container {
    padding: 18px 1.5rem;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-cta-mobile {
    display: inline-flex !important;
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero-section {
    padding-top: calc(75px + 2.5rem);
    padding-bottom: 5rem;
  }

  .hero-badge {
    margin-top: 1rem;
    font-size: 0.78rem;
    padding: 0.45rem 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .pillar-block {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pillar-indicator {
    flex-direction: row;
    gap: 1rem;
  }

  .pillar-tag {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 0;
  }

  .bridge-container,
  .about-grid,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-heading {
    margin-top: 0;
  }

  .contact-box {
    padding: 2.5rem 1.5rem;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .coregulation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .pillar-media-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-box {
    padding: 2.2rem 1.25rem;
    border-radius: 8px;
  }

  .form-submit .btn {
    width: 100%;
    min-height: 48px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  html {
    scroll-padding-top: 85px;
  }

  .pillar-block,
  section[id] {
    scroll-margin-top: 85px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .contact-box {
    padding: 1.8rem 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .service-tile-label {
    padding: 0.9rem 0.95rem;
  }
}
