/* Google Fonts werden per <link> im HTML-Head geladen (nicht @import) */

/* ================================================
   AURESUM GMBH — PREMIUM WEBSITE SYSTEM
   Design Language: Institutional Luxury
   Market: Deutschland · Österreich · Schweiz
================================================ */

:root {
  --gold:          #C6A75E;
  --gold-bright:   #D4B872;
  --gold-dim:      rgba(198,167,94,0.12);
  --gold-line:     rgba(198,167,94,0.18);

  --bg:            #0E0D0B;
  --bg-2:          #13110E;
  --bg-3:          #18150F;
  --surface:       rgba(255,255,255,0.032);
  --surface-hover: rgba(255,255,255,0.058);

  --text:          #EDE8DF;
  --text-muted:    rgba(237,232,223,0.62);
  --text-faint:    rgba(237,232,223,0.36);

  /* Cream section color system */
  --bg-cream:           #F7F4EE;
  --bg-cream-2:         #EDE9E1;
  --text-dark:          #1A1A18;
  --text-dark-muted:    rgba(26,26,24,0.64);
  --text-dark-faint:    rgba(26,26,24,0.36);
  --border-dark:        rgba(26,26,24,0.10);
  --border-dark-2:      rgba(26,26,24,0.14);

  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  --section-y:        200px;
  --section-y-mobile: 110px;
  --container:       1220px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================
   PAGE TRANSITIONS — Progressive Enhancement
   View Transitions API: sanfter Cross-Fade bei
   Seitenwechsel. Kein JS. Kein Fallback nötig —
   ältere Browser ignorieren die Regel stillschweigend.
   Chrome 111+, Edge 111+, Safari 18+
================================================ */

@view-transition {
  navigation: auto;
}

/* ================================================
   RESET
================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: transparent; } /* Mobile: kein blaues Tap-Rechteck */
:focus:not(:focus-visible) { outline: none; }   /* Accessibility: Fokus-Ring nur bei Tastaturnavigation */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Scrollbar — minimal, markenkonform */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(198,167,94,0.18); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(198,167,94,0.35); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ================================================
   FILM GRAIN TEXTURE — LUXURY DETAIL
================================================ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Film grain: deaktiviert auf Mobile — kein visueller Nutzen, unnötige GPU-Last */
@media (max-width: 900px) {
  body::after { display: none; }
}

/* ================================================
   TYPOGRAPHY
================================================ */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(44px, 5.6vw, 96px); }
h2 { font-size: clamp(40px, 5.6vw, 80px); }
h3 { font-size: clamp(24px, 2.8vw, 42px); }

p {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--text-muted);
}

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

.label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

/* ================================================
   LAYOUT
================================================ */

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg);
  z-index: 2;
}

.section--alt  { background: var(--bg-2); }
.section--dark { background: var(--bg-3); }

/* ================================================
   SKIP LINK
================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 99999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

/* ================================================
   HEADER
================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: border-color 0.3s ease, height 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.80);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: -1;
}

.site-header.is-scrolled {
  border-bottom-color: var(--gold-line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: block; line-height: 0; }
.brand-logo {
  height: 158px; /* war 148px — minimal größer für mehr visuelle Präsenz */
  width: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: contrast(1.06); /* minimale visuelle Gewichtung des Schriftzugs */
}

/* Suppress click-focus glow; preserve keyboard accessibility */
.brand:focus { outline: none; }
.brand:focus-visible {
  outline: 1px solid rgba(198,167,94,0.28);
  outline-offset: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.site-nav a::after { display: none; }

.site-nav a:hover { color: rgba(237,232,223,0.78); }

.site-nav a.is-active {
  color: rgba(220,205,178,0.90);
  text-decoration: underline;
  text-decoration-color: rgba(198,167,94,0.70);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid rgba(237,232,223,0.18) !important;
  color: var(--text) !important;
  letter-spacing: 0.10em !important;
  transition: border-color 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  border-color: rgba(237,232,223,0.40) !important;
  color: var(--text) !important;
}

/* ================================================
   BURGER
================================================ */

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  padding: 13px 8px;
  border: 0;
  background: none;
  z-index: 10001;
  box-sizing: content-box;
}

.burger-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.28s var(--ease-out);
  transform-origin: center;
}

.burger.is-active .burger-line:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.is-active .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-active .burger-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ================================================
   MOBILE NAV
================================================ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 10000; /* above consent banner (9999) */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.4vw, 3rem);
  color: var(--text-muted);
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition: color 0.2s ease;
}

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

.mobile-nav-footer {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.mobile-nav-footer::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-line);
  margin: 0 auto 14px;
}

/* ================================================
   HERO
================================================ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 760px;
  max-height: none;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 56% 50%;
  animation: heroCinema 28s var(--ease-out) 1 forwards;
  will-change: transform;
}

@keyframes heroCinema {
  from { transform: scale(1.01) translate3d(0,0,0); }
  to   { transform: scale(1.07) translate3d(-1.8%, -0.6%, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      rgba(0,0,0,0.84) 0%,
      rgba(0,0,0,0.52) 42%,
      rgba(0,0,0,0.10) 100%
    ),
    linear-gradient(180deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.04) 48%,
      rgba(10,10,9,0.98) 100%
    );
}

/* Subtle gold vignette */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 14% 50%,
    rgba(198,167,94,0.06) 0%,
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 110px;
  padding-top: 130px;
  padding-left: clamp(0px, 3vw, 44px); /* linker Safe Space — institutionelle Ruhe */
}

/* Staggered hero entry animations */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: heroReveal 1.1s var(--ease-out) 0.15s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
  flex-shrink: 0;
  animation: heroLineGrow 1s var(--ease-out) 0.2s both;
}

@keyframes heroLineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 36px; opacity: 0.65; }
}

.hero h1 {
  max-width: 720px;
  color: var(--text);
  font-weight: 300;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: heroReveal 1.2s var(--ease-out) 0.32s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  max-width: 488px;
  margin-top: 28px;
  font-size: 1.02rem;
  line-height: 1.76;
  color: rgba(237,232,223,0.68);
  opacity: 0;
  animation: heroReveal 1.2s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
  opacity: 0;
  animation: heroReveal 1.2s var(--ease-out) 0.66s forwards;
}


.hero-scroll {
  position: absolute;
  bottom: 38px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  animation: heroReveal 1.2s var(--ease-out) 1.0s forwards;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold-line), transparent);
  opacity: 0.4;
}

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

/* ================================================
   BUTTONS
================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.btn-arrow::after {
  content: '→';
  font-size: 0.85em;
}

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

.btn-ghost {
  border-color: rgba(237,232,223,0.22);
  color: var(--text-muted);
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(237,232,223,0.38);
  color: var(--text);
}

/* ================================================
   MANIFEST / PHILOSOPHY
================================================ */

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

.manifest-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: start;
}

.manifest-statement {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.028em;
}

.manifest-statement em {
  display: block;
  font-style: italic;
  color: var(--gold);
  margin-top: 4px;
}

.manifest-body p {
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.90;
}
.manifest-body p:last-child { margin-bottom: 0; }

.manifest-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-line);
  margin: 32px 0;
}

/* ================================================
   IMAGE BREAK
================================================ */

.image-break {
  position: relative;
  z-index: 1;
  height: calc(100svh - 72px);
  min-height: 580px;
  max-height: 1080px;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}

.image-break-inner {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: transform;
  transition: filter 1.4s ease;
}

.image-break-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,9,0.08) 0%,
      rgba(10,10,9,0.18) 60%,
      rgba(10,10,9,0.88) 100%
    );
}

.image-break.is-visible .image-break-inner {
  filter: saturate(0.88) contrast(1.04);
}

/* ================================================
   PROZESS — 4 STEPS
================================================ */

.prozess {
  padding: var(--section-y) 0;
  background: var(--bg-2);
}

.prozess-header {
  max-width: 700px;
  margin-bottom: 96px;
}

.prozess-header h2 { margin-top: 0; }

.fuer-wen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.fuer-wen-left .prozess-header { margin-bottom: 0; }

.fuer-wen-text {
  max-width: 560px;
  margin-top: 52px;
}
.fuer-wen-text p {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.84;
}
.fuer-wen-text p + p {
  margin-top: 22px;
}

.fuer-wen-right {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(180px, 17vw, 252px);
  min-height: 100%;
}
.fuer-wen-statement {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(198,167,94,0.14);
  text-align: right;
  user-select: none;
  pointer-events: none;
}

.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold-line);
  gap: 1px;
  border: 1px solid var(--gold-line);
}

/* 3-column variant — replaces inline style="grid-template-columns: repeat(3, 1fr)" */
.prozess-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.prozess-step {
  padding: 60px 40px 56px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  transition: background 0.32s ease;
}

.prozess-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease-out);
}

.prozess-step:hover { background: var(--bg-3); }
.prozess-step:hover::before { transform: scaleX(1); }

.prozess-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(198,167,94,0.14);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  transition: color 0.32s ease;
}
.prozess-step:hover .prozess-num { color: rgba(198,167,94,0.28); }

.prozess-step h3 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.4;
}

.prozess-step p {
  font-size: 0.92rem;
  line-height: 1.80;
}

/* Investment section removed — content merged into Manifest + DACH */

/* ================================================
   DACH — MARKT FOKUS
================================================ */

.dach {
  padding: var(--section-y) 0;
  background: var(--bg-2);
}

.dach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.dach-statement {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 82px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -0.035em;
}

.dach-statement em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.dach-markets {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
  margin-top: 48px;
}

.dach-market {
  padding: 24px 28px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.22s ease;
}
.dach-market:hover { background: var(--bg-3); }

.dach-market-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.015em;
}

.dach-market-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.dach-market-code {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
}

.dach-market-sub {
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* ================================================
   FOUNDER / ÜBER AURESUM
================================================ */

.founder {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.founder-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.founder-image-wrap::before {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-line);
  z-index: 0;
  pointer-events: none;
}

.founder-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 50% 15%;
  filter: saturate(0.88) contrast(1.03);
  display: block;
}

.founder-content p {
  font-size: 1.04rem;
  line-height: 1.92;
  margin-bottom: 22px;
}
.founder-content p:last-of-type { margin-bottom: 0; }

.founder-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
}

.founder-meta-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.founder-meta-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.founder-title {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ================================================
   CONTACT CTA
================================================ */

.contact-cta {
  padding: var(--section-y) 0;
  background: var(--bg-3);
}

.contact-cta-inner {
  max-width: 820px;
}

.contact-cta h2 { margin-bottom: 24px; }

.contact-cta > .contact-cta-inner > p {
  max-width: 580px;
  font-size: 1.06rem;
  line-height: 1.88;
  margin-bottom: 48px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}


.contact-details {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-detail-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.contact-detail-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

a.contact-detail-value:hover { color: var(--gold); }

/* ================================================
   CREAM / LIGHT SECTIONS — FULL COLOR SYSTEM
================================================ */

/* ── Targeted section spacing overrides ──────────── */
/* Dark/compact sections: tighter than global 200px  */
#saeulen        { padding: 160px 0; }
#fuer-wen       { padding: 160px 0; }
#dach           { padding: 170px 0; }
/* ─────────────────────────────────────────────────── */

.section--cream { background: var(--bg-cream); }

.section--cream h1,
.section--cream h2,
.section--cream h3,
.section--cream .manifest-statement,
.section--cream .dach-statement { color: var(--text-dark); }

.section--cream p,
.section--cream .manifest-body p,
.section--cream .prozess-step p,
.section--cream .dach-market-sub { color: var(--text-dark-muted); }

.section--cream strong { color: var(--text-dark); }

.section--cream .manifest-statement em { color: var(--gold); }
.section--cream .dach-statement em     { color: var(--gold); }

.section--cream .manifest-divider {
  background: rgba(198,167,94,0.32);
}

/* Prozess steps on cream */
.section--cream .prozess-grid {
  background: var(--border-dark);
  border-color: var(--border-dark);
}

.section--cream .prozess-step {
  background: var(--bg-cream);
}

.section--cream .prozess-step:hover { background: var(--bg-cream-2); }

.section--cream .prozess-step h3 { color: var(--text-dark); }

.section--cream .prozess-step::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

/* DACH on cream */
.section--cream .dach-markets {
  background: var(--border-dark);
  border-color: var(--border-dark);
}

.section--cream .dach-market { background: var(--bg-cream); }
.section--cream .dach-market:hover { background: var(--bg-cream-2); }
.section--cream .dach-market-name { color: var(--text-dark); }

/* ================================================
   FOUNDER PULL QUOTE
================================================ */

.pull-quote-section {
  padding: 160px 0;
  background: var(--bg-3);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.pull-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(198,167,94,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pull-quote-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.pull-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.75;
  margin-bottom: 20px;
  opacity: 0.45;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.42;
  color: var(--text);
  letter-spacing: -0.022em;
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: 36px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Decorative line under quote mark */
.pull-quote-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold-line);
}

/* Founder on cream */
.section--cream .founder-content p   { color: var(--text-dark-muted); }
.section--cream .founder-meta        { border-top-color: var(--border-dark); }
.section--cream .founder-meta-line   { background: var(--gold); }
.section--cream .founder-name        { color: var(--text-dark); }
.section--cream .founder-title       { color: var(--text-dark-faint); }
.section--cream .founder-image-wrap::before { border-color: var(--border-dark-2); }

/* Ghost button on cream */
.section--cream .btn-ghost {
  border-color: rgba(26,26,24,0.22);
  color: rgba(26,26,24,0.62);
}
.section--cream .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .pull-quote-section { padding: 80px 0; }
}

/* ================================================
   FOOTER
================================================ */

.site-footer {
  padding: 22px 0;
  background: #0A0906;
  border-top: 1px solid var(--gold-line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(237,232,223,0.22);
}

/* Institutionelle Legitimation — sichtbar, nicht aufdringlich */
.footer-legal {
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid rgba(198,167,94,0.08);
  text-align: center;
  font-size: 0.60rem;
  letter-spacing: 0.08em;
  color: rgba(237,232,223,0.20);
  text-transform: uppercase;
}

.footer-legal a {
  color: rgba(198,167,94,0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ================================================
   BACK TO TOP
================================================ */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(198,167,94,0.28);
  background: linear-gradient(145deg, rgba(26,24,18,0.92), rgba(8,7,5,0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 3px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(198,167,94,0.07);
  color: rgba(198,167,94,0.85);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease,
              border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  z-index: 900;
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(198,167,94,0.50);
  box-shadow: 0 4px 18px rgba(0,0,0,0.55), inset 0 1px 0 rgba(198,167,94,0.12);
  color: var(--gold);
}

/* ================================================
   CUSTOM CURSOR (desktop only)
================================================ */

.cursor {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.3s ease,
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor.is-on   { opacity: 0.7; }
.cursor.is-link {
  width: 32px;
  height: 32px;
  opacity: 0.20;
  background: var(--text);
}

/* ================================================
   REVEAL SYSTEM
================================================ */

.reveal {
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.982);
  transition:
    opacity    1.15s var(--ease-out),
    transform  1.15s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }

/* ================================================
   SUBPAGE HERO
================================================ */

.page-hero {
  min-height: 100svh;
  padding: clamp(120px, 15vh, 180px) 0 clamp(72px, 9vh, 110px);
  background: var(--bg);
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 22px;
  letter-spacing: -0.032em;
}

.page-hero .lead {
  max-width: 640px;
  margin-top: 28px;
  font-size: 1.12rem;
  line-height: 1.90;
  color: rgba(237,232,223,0.68);
}

/* ================================================
   CONTENT / LEGAL PAGES
================================================ */

.content-area {
  padding: var(--section-y) 0;
  background: var(--bg);
}

.content-area h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-line);
}

.content-area h2 {
  font-family: var(--font-body);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 48px;
  margin-bottom: 18px;
  line-height: 1.4;
}

.content-area h2:first-of-type { margin-top: 0; }

.content-area p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.88;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.content-area a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(198,167,94,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.content-area a:hover { text-decoration-color: var(--gold); }

.content-area ul {
  margin: 0 0 18px 0;
  max-width: 760px;
}

.content-area ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.content-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ================================================
   RESPONSIVE — 1100px
================================================ */

@media (max-width: 1100px) {
  /* FEHLER 1: Burger-Menü bis 1100px (iPhone Pro Max quer = 932px) */
  .site-nav { display: none; }
  .burger { display: flex; }

  .manifest-inner,
  .founder-inner,
  .dach-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .prozess-grid { grid-template-columns: 1fr 1fr; }
  .prozess-grid--three { grid-template-columns: repeat(3, 1fr); }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .founder-inner { grid-template-columns: 1fr; }
  .founder-image-wrap {
    max-width: 440px;
    margin: 0 auto;
  }
  .founder-image-wrap img {
    height: clamp(360px, 52vw, 480px);
  }
}

/* ================================================
   RESPONSIVE — 900px
================================================ */

@media (max-width: 900px) {
  :root { --section-y: var(--section-y-mobile); }

  .prozess-grid { grid-template-columns: 1fr; }
  .prozess-grid--three { grid-template-columns: 1fr; }

  /* fuer-wen: dekoratives Rechts-Element auf Mobile ausblenden */
  .fuer-wen-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fuer-wen-right {
    display: none;
  }

  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  /* FIX A1: ID-Overrides (160/170px) auf mobilen Section-Rhythmus angleichen */
  #saeulen,
  #fuer-wen,
  #dach { padding: var(--section-y) 0; }

  /* FIX B4: Back-to-Top größeres Tap-Target auf Tablet/Mobile */
  .back-to-top { width: 44px; height: 44px; }
}

/* FIX B2: Tablet-Hochformat 769–900px — Prozess & Säulen 2-spaltig statt gestapelt */
@media (min-width: 769px) and (max-width: 900px) {
  .prozess-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================
   RESPONSIVE — 768px
================================================ */

@media (max-width: 768px) {
  .container { width: 88%; }

  .hero {
    max-height: none;
    min-height: 92svh;
    align-items: flex-end;
  }

  .hero-content {
    padding-bottom: 64px;
    padding-top: 100px;
    padding-left: 8px; /* linker Atemraum: verfügbare Breite 322px — Immobilienvermögen. passt sicher */
  }

  .hero h1 {
    line-height: 1.10; /* mehr Luft zwischen H1-Zeilen */
  }

  .hero-sub {
    margin-top: 34px;  /* war 28px — Atemraum H1 → Body */
  }

  .hero-actions {
    margin-top: 44px;  /* war 56px — Body → CTA Balance */
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll { display: none; }

  .image-break {
    height: 62svh;
    min-height: 420px;
    max-height: none;
  }

  .founder-image-wrap img { height: 380px; }

  .page-hero {
    min-height: 100svh;
    padding: 104px 0 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-hero .lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  /* Section-Rhythmus: großzügige Desktop-Abstände auf Mobile reduzieren */
  .prozess-header { margin-bottom: 52px; }
  .manifest-inner { gap: 40px; }
}

/* ================================================
   RESPONSIVE — 480px
================================================ */

@media (max-width: 480px) {
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 92px;  /* 72px Header + 20px Atemraum */
    padding-bottom: 0;
  }

  /* Hero H1: clamp — 320px sicher (30px), wächst bis ~38px für mehr Präsenz auf 412/430px */
  .hero h1 { font-size: clamp(30px, calc(6px + 7.5vw), 38px); }

  /* Subpage Hero H1: 36px — kontrollierte Zeilenumbrüche auf 375px */
  .page-hero h1 { font-size: 36px; }

  /* Hero Precision Pass: Abstände komprimieren damit CTA above fold bleibt */
  .hero-sub     { margin-top: 20px; font-size: 0.88rem; line-height: 1.62; }  /* war 34px (768px) */
  .hero-actions { margin-top: 24px; }  /* war 44px (768px) */
  .hero-actions .btn {
    padding: 11px 20px;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }

  /* Hero eyebrow: reduce letter-spacing + shorten line to prevent overflow at 375px */
  .hero-eyebrow {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .hero-eyebrow::before {
    width: 18px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   FIX B1 — HERO auf niedrigen Laptop-Viewports
   Greift nur bei Höhe ≤800px (z.B. 1366×768).
   1440×900 / 1536×864 bleiben unberührt (Höhe >800).
   Ziel: CTA oberhalb der Fold, ohne gedrückte Optik.
================================================ */

@media (min-width: 1101px) and (max-height: 800px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
    align-items: flex-end;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(44px, 4.4vw, 72px);
  }

  .hero-sub {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .hero-actions {
    margin-top: 32px;
  }
}

/* ================================================
   FEHLER 3 — HANDY QUERFORMAT eigene Hero-Regel
   Wenig Höhe → kompakter Hero, kein weißer Balken
================================================ */

@media (max-width: 1100px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100svh;
    max-height: none;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 76px;
    padding-bottom: 28px;
    padding-left: 8px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    gap: 10px;
  }

  .hero-eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    font-size: clamp(28px, 4.4vw, 40px);
    line-height: 1.05;
  }

  .hero-sub {
    max-width: 540px;
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 10px;
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
    min-height: 42px;
    padding: 10px 22px;
    font-size: 0.62rem;
  }
}

/* ================================================
   FEHLER 4 — MOBILE MENÜ im Querformat kompakt
================================================ */

@media (max-width: 1100px) and (max-height: 520px) and (orientation: landscape) {
  .mobile-nav {
    align-items: center;
    overflow-y: auto;
  }

  .mobile-nav-inner {
    padding: 24px 0;
  }

  .mobile-nav a {
    padding: 6px 0;
    font-size: clamp(1.35rem, 4vw, 1.9rem);
    line-height: 1.02;
  }

  .mobile-nav-footer {
    display: none;
  }
}

/* ================================================
   A2 LANDSCAPE — Page-Hero Querformat ohne Leerflächen
================================================ */

@media (max-width: 1100px) and (max-height: 520px) and (orientation: landscape) {
  .page-hero {
    min-height: 100svh;
    padding: 72px 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-hero .label {
    margin-bottom: 12px;
    font-size: 0.50rem;
    letter-spacing: 0.16em;
    gap: 8px;
  }

  .page-hero .label::before {
    width: 18px;
  }

  .page-hero h1 {
    margin-top: 0;
    max-width: 620px;
    font-size: clamp(26px, 3.8vw, 38px);
    line-height: 0.98;
  }

  .page-hero .lead {
    max-width: 520px;
    margin-top: 14px;
    font-size: 0.74rem;
    line-height: 1.50;
  }
}

/* ================================================
   DANKE-SEITE — Tablet Hochformat: Inhalt zentriert, Footer am Ende
================================================ */

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  body.page-danke {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
  }

  body.page-danke main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ================================================
   TABLET / IPAD MASTER RULE — Hero füllt Viewport
================================================ */

@media (min-width: 768px) and (max-width: 1100px) and (min-height: 700px),
       (min-width: 1101px) and (max-width: 1400px) and (min-height: 801px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: none;
    align-items: flex-end;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: clamp(80px, 10vh, 130px);
  }
}

/* ================================================
   REDUCED MOTION
================================================ */

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

  .reveal,
  .btn,
  .site-header,
  .prozess-step {
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-bg,
  .marquee-track { animation: none !important; }

  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero-actions,
  .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .cursor { display: none !important; }
}


/* ================================================
   GRUNDSÄTZE PAGE
   Institutional thought leadership — essay format
================================================ */

.grundsaetze-inner {
  max-width: 820px;
}

.grundsatz {
  margin-bottom: 0;
}

.grundsatz .label {
  display: block;
  margin-bottom: 20px;
}

.grundsatz h2 {
  margin-bottom: 40px;
}

.section--cream .grundsatz h2 em {
  color: var(--gold);
}

.grundsatz-body p {
  font-size: 1.06rem;
  line-height: 1.88;
  max-width: 680px;
}

.grundsatz-body p + p {
  margin-top: 22px;
}

.grundsatz-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin: 100px 0;
}

@media (max-width: 900px) {
  .grundsatz-divider {
    margin: 64px 0;
  }
}


/* ================================================
   COOKIE CONSENT BANNER
   Institutionell, minimal, kein aggressives Design
================================================ */

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10001; /* über mobile-nav (10000) — Banner immer erreichbar */
  background: #161512;
  border-top: 1px solid rgba(198,167,94,0.18);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.consent-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.81rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  font-family: var(--font-body);
}

.consent-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,167,94,0.3);
}

.consent-text a:hover {
  border-bottom-color: var(--gold);
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.consent-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 9px 20px;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.consent-btn--primary {
  background: rgba(198,167,94,0.10);
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.4);
}

.consent-btn--primary:hover {
  background: rgba(198,167,94,0.20);
  border-color: var(--gold);
}

.consent-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(160,153,142,0.28);
}

.consent-btn--ghost:hover {
  color: var(--text);
  border-color: rgba(160,153,142,0.5);
}

/* Back-to-top: shift above consent banner when banner is visible */
body.consent-active .back-to-top {
  bottom: 120px;
}
