/* =========================================================
   components.css — Komponenten raw&royal
   Nav · Hero · Buttons · Hairlines · Placeholder-Media
   ========================================================= */

/* -------------------------------------------------------
   NAV
------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: 64px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background var(--duration-slow) var(--ease-out),
              border-color var(--duration-slow) var(--ease-out);
}

.nav--scrolled {
  background: #fff;
  border-bottom-color: rgba(0,0,0,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Nav über weißer Logo-Sektion */
.nav--on-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.nav--on-light .nav__logo,
.nav--on-light .nav__logo span {
  color: var(--ink);
}

.nav--on-light .nav__logo span {
  color: var(--gold-deep);
}

.nav--on-light .nav__logo-sub {
  color: rgba(10, 10, 10, 0.45);
}

.nav--on-light .nav__links a {
  color: rgba(10, 10, 10, 0.65);
}

.nav--on-light .nav__links a:hover {
  color: var(--ink);
}

.nav--on-light .nav__contact-info {
  color: rgba(10, 10, 10, 0.45);
}

.nav--on-light .nav__contact-info a {
  color: rgba(10, 10, 10, 0.6);
}

.nav--on-light .nav__burger-line {
  background: var(--ink);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Krönchen links/rechts */
.nav__crown {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__crown-img {
  height: 36px;
  width: auto;
}

/* Logo (ausgeblendet, nur Krönchen aktiv) */
.nav__logo {
  display: none;
}

/* Desktop-Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after {
  width: 100%;
}

/* CTA in der Nav */
.nav__cta {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--border-strong);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out) !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

/* Burger-Button */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: var(--radius-pill);
  transform-origin: center;
  transition: transform var(--duration-base) var(--ease-in-out),
              opacity var(--duration-base) var(--ease-in-out),
              width var(--duration-base) var(--ease-in-out);
}

/* Burger → X-Animation */
.nav__burger.is-open .nav__burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__burger.is-open .nav__burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav__burger.is-open .nav__burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile-Menü Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: var(--surface-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  color: var(--paper);
  text-decoration: none;
  letter-spacing: var(--tracking-tight);
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* Responsive Nav */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 64px; /* Nav-Höhe */
  background: var(--ink);
  overflow: hidden;
}

/* Placeholder-Fläche bis echte Video/Bilder kommen */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 175, 127, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(92, 122, 146, 0.04) 0%, transparent 50%),
    var(--surface-dark);
  z-index: 0;
}

/* Körnung — RAW-Geste im Hero */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  opacity: 0.5;
  pointer-events: none;
}

/* Video-Platzhalter — Gold-Hairline, dunkle Fläche */
.hero__media-placeholder {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 1;
}

/* Hero-Inhalt */
.hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--container-padding);
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-32));
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

/* Claim — zweizeilig mit Kontrast raw ↔ royal */
.hero__claim {
  font-family: var(--font-serif);
  font-weight: var(--weight-heavy);
  font-size: var(--text-hero);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--paper);
  max-width: 14ch;
}

.hero__claim em {
  font-style: normal;
  color: var(--gold);
}

/* Subclaim */
.hero__sub {
  margin-top: var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  color: rgba(250, 250, 247, 0.6);
  max-width: 52ch;
}

/* Hero-CTA-Gruppe */
.hero__actions {
  margin-top: var(--space-10);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll-Indikator */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
  opacity: 0.4;
  transition: opacity var(--duration-base) var(--ease-out);
  animation: scroll-bounce 2s var(--ease-in-out) infinite;
}

.hero__scroll-hint:hover { opacity: 0.8; }

.hero__scroll-hint-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--paper);
}

.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero-Entrances — JS setzt .hero--loaded auf <body> */
.hero__claim,
.hero__sub,
.hero__actions {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-cinematic),
              transform var(--duration-slower) var(--ease-cinematic);
}

body.hero--loaded .hero__claim {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 100ms;
}

body.hero--loaded .hero__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

body.hero--loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 440ms;
}

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out),
              color var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-spring);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary — Gold gefüllt */
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--ink);
}

/* Ghost — Rahmen, kein Fill */
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 250, 247, 0.3);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Ghost dark — auf hellem Hintergrund */
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.3);
}

.btn--ghost-dark:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* -------------------------------------------------------
   HAIRLINE / DIVIDER
------------------------------------------------------- */

.hairline {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.hairline--gold {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* -------------------------------------------------------
   MEDIA PLACEHOLDER
   Für Bilder/Videos, die noch folgen
------------------------------------------------------- */

.media-placeholder {
  position: relative;
  width: 100%;
  background: var(--surface-dark);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(212, 175, 127, 0.04) 100%);
}

.media-placeholder__label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--border-strong);
  position: relative;
  z-index: 1;
}

/* Seitenverhältnis-Helfer */
.ratio-16-9  { aspect-ratio: 16 / 9; }
.ratio-4-3   { aspect-ratio: 4 / 3; }
.ratio-1-1   { aspect-ratio: 1 / 1; }
.ratio-3-4   { aspect-ratio: 3 / 4; }

/* -------------------------------------------------------
   VOLLBILD-PANELS — RAW · ROYAL · IMAGE DNA
------------------------------------------------------- */

.panel {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Wenn echte Bilder kommen:
   background-image: url('../assets/img/raw-hero.jpg');
   background-size: cover;
   background-position: center;
   auf .panel--raw / .panel--royal setzen.
   Der Overlay-Gradient bleibt drauf. */

/* Panel-Inhalt */
.panel__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(var(--space-8), 5vw, var(--space-16)) clamp(var(--space-12), 6vw, var(--space-20));
}

.panel__content--right {
  align-self: flex-end;
  text-align: right;
}

.panel__content--center {
  align-self: center;
  text-align: left;
  padding-bottom: clamp(var(--space-16), 10vw, var(--space-32));
}

/* Große Headline */
.panel__headline {
  font-family: var(--font-serif);
  font-weight: var(--weight-heavy);
  font-size: clamp(80px, 16vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-6);
}

.panel__headline--raw  { color: var(--paper); }
.panel__headline--dna  { color: var(--paper); }

/* Gold-Effekt für ROYAL-Headline */
.panel__headline--royal {
  background: linear-gradient(135deg, #E8C98A 0%, #D4AF7F 45%, #B8915C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-Text */
.panel__sub {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: rgba(250, 250, 247, 0.45);
  max-width: 44ch;
  margin-bottom: var(--space-1);
}

.panel__sub--wide { max-width: 52ch; }

.panel--royal .panel__sub {
  color: rgba(10, 10, 10, 0.45);
}

/* Punch-Line */
.panel__punch {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.panel__punch--left {
  color: rgba(250, 250, 247, 0.22);
}

.panel__punch--left::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(212, 175, 127, 0.45);
  flex-shrink: 0;
}

.panel__punch--right {
  color: rgba(10, 10, 10, 0.25);
  justify-content: flex-end;
}

.panel__punch--right::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(184, 145, 92, 0.45);
  flex-shrink: 0;
}

/* Tags */
.panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.panel__tags--dark {
  justify-content: flex-end;
}

.tag {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 250, 247, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  color: rgba(250, 250, 247, 0.4);
}

.tag--dark {
  border-color: rgba(10, 10, 10, 0.15);
  color: rgba(10, 10, 10, 0.4);
}

/* Bildplatzhalter-Fenster */
.panel__img-hint {
  position: absolute;
  top: clamp(var(--space-8), 4vw, var(--space-12));
  right: clamp(var(--space-8), 4vw, var(--space-12));
  z-index: 2;
  width: clamp(160px, 20vw, 260px);
  height: clamp(110px, 14vw, 180px);
  border: 1px solid rgba(212, 175, 127, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel__img-hint--left {
  right: auto;
  left: clamp(var(--space-8), 4vw, var(--space-12));
  border-color: rgba(184, 145, 92, 0.2);
}

.panel__img-hint span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 175, 127, 0.28);
}

.panel__img-hint--left span {
  color: rgba(184, 145, 92, 0.32);
}

/* -------------------------------------------------------
   PANEL — RAW (dunkel, körnig)
------------------------------------------------------- */

.panel--raw .panel__bg {
  background: #0C0C0B;
}

/* Körnung */
.panel--raw .panel__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Diagonale Linie als Handheld-Geste */
.panel--raw .panel__bg::before {
  content: '';
  position: absolute;
  top: -30%; right: 12%;
  width: 1px; height: 160%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 127, 0.06), transparent);
  transform: rotate(8deg);
}

/* -------------------------------------------------------
   PANEL — ROYAL (hell, ruhig, cinematisch)
------------------------------------------------------- */

.panel--royal {
  background: var(--paper);
}

.panel--royal .panel__bg {
  background: linear-gradient(155deg, #EEEDE7 0%, var(--paper) 55%);
}

/* Ruhige Horizontale — Stativ-Ruhe */
.panel--royal .panel__bg::before {
  content: '';
  position: absolute;
  top: 38%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 145, 92, 0.1), transparent);
}

/* -------------------------------------------------------
   PANEL — IMAGE DNA (sehr dunkel, still)
------------------------------------------------------- */

.panel--dna .panel__bg {
  background: #080808;
}

.panel--dna .panel__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(212, 175, 127, 0.05) 0%, transparent 60%);
}

/* -------------------------------------------------------
   SECTION-CUT — dünne Trennlinie zwischen Panels
------------------------------------------------------- */

.section-cut {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 127, 0.3), transparent);
}

/* -------------------------------------------------------
   KONTAKT-SECTION
------------------------------------------------------- */

.kontakt {
  background: var(--surface-dark);
}

.kontakt__head {
  margin-bottom: var(--space-16);
}

.kontakt__headline {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--paper);
  margin-bottom: var(--space-4);
  max-width: 20ch;
}

.kontakt__headline em {
  font-style: normal;
  color: var(--gold);
}

/* Kontaktwege-Grid */
.kontakt__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (max-width: 900px) {
  .kontakt__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .kontakt__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Cards */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--paper);
  background: var(--surface-mid);
  transition:
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    transform var(--duration-fast) var(--ease-spring);
}

.contact-card:hover {
  border-color: var(--border-strong);
  background: rgba(212, 175, 127, 0.06);
  transform: translateY(-2px);
  color: var(--paper);
}

.contact-card--muted {
  opacity: 0.45;
}

.contact-card--muted:hover {
  opacity: 1;
}

.contact-card__icon {
  font-size: 18px;
  line-height: 1;
  color: var(--gold);
  font-style: normal;
}

.contact-card__label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
  color: var(--paper);
}

.contact-card__sub {
  font-size: var(--text-xs);
  line-height: var(--leading-snug);
  color: var(--muted);
}

/* -------------------------------------------------------
   KONTAKTFORMULAR
------------------------------------------------------- */

.kontakt__form-wrap {
  max-width: 680px;
}

.kontakt__form-headline {
  font-family: var(--font-sans);
  font-weight: var(--weight-medium);
  font-size: var(--text-lg);
  color: var(--paper);
  margin-bottom: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Honeypot — komplett unsichtbar */
.contact-form__honeypot {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-form__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form__input {
  background: var(--surface-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--paper);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
  width: 100%;
}

.contact-form__input::placeholder {
  color: rgba(107, 107, 104, 0.7);
}

.contact-form__input:hover {
  border-color: rgba(212, 175, 127, 0.35);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 127, 0.04);
}

.contact-form__input.is-error {
  border-color: #C0392B;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: var(--leading-loose);
}

/* DSGVO Checkbox */
.contact-form__field--check {
  gap: var(--space-3);
}

.contact-form__check-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.contact-form__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.contact-form__check-text {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--muted);
}

.contact-form__check-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Fehlertext */
.contact-form__error {
  font-size: var(--text-xs);
  color: #E74C3C;
  min-height: 1em;
}

/* Submit-Zeile */
.contact-form__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.contact-form__note {
  font-size: var(--text-xs);
  color: rgba(107, 107, 104, 0.6);
  max-width: none;
}

/* Feedback-Meldung */
.contact-form__feedback {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  min-height: 1.5em;
}

.contact-form__feedback.is-success {
  color: #27AE60;
}

.contact-form__feedback.is-error {
  color: #E74C3C;
}

/* Submit Loading-State */
.contact-form__submit.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */

.footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-block: var(--space-12);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--space-6) var(--space-16);
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__logo-img {
  width: clamp(120px, 18vw, 200px);
  height: auto;
  display: block;
  /* Logo auf dunklem Footer etwas aufhellen */
  filter: brightness(1.1);
  opacity: 0.9;
  transition: opacity var(--duration-base) var(--ease-out);
}

.footer__logo-img:hover {
  opacity: 1;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  align-items: center;
  justify-content: flex-end;
}

.footer__nav a {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(10,10,10,0.5);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__nav a:hover { color: var(--ink); }

.footer__copy {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: rgba(10,10,10,0.35);
  letter-spacing: var(--tracking-wide);
  max-width: none;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0,0,0,0.07);
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    justify-content: flex-start;
  }
}

/* -------------------------------------------------------
   NAV — Logo-Untertitel + Kontaktinfo
------------------------------------------------------- */

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--weight-normal);
  letter-spacing: 0.08em;
  color: rgba(250, 250, 247, 0.45);
  text-transform: none;
}

.nav__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(10,10,10,0.45);
  gap: 2px;
}

.nav__contact-info a {
  color: rgba(10,10,10,0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__contact-info a:hover {
  color: var(--gold-deep);
}

@media (max-width: 900px) {
  .nav__contact-info { display: none; }
}

/* -------------------------------------------------------
   HERO — drei Vollbild-Sektionen (vertikal, Onepager)
------------------------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1a1a;
}

.hero__bg--dark { background: #000; }

/* Körnung auf allen Hero-Abschnitten */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  width: 100%;
}

.hero__content--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Claim-Stile pro Sektion */
.hero__claim--kino {
  font-family: var(--font-serif);
  font-weight: var(--weight-heavy);
  font-size: clamp(48px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

.hero__claim--licht {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(32px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7);
}

.hero__claim--raw {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(40px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}

.hero__sub--right {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
  text-align: right;
  max-width: none;
}

.hero__sub--right strong {
  color: white;
  display: block;
}

/* Erste Sektion bekommt Nav-Abstand */
.hero:first-of-type {
  padding-top: 64px;
}

/* Ghost-White Button (auf dunklem Hintergrund) */
.btn--ghost-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: border-color var(--duration-base), background var(--duration-base);
}

.btn--ghost-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Outline Button (auf hellem Hintergrund) */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10,10,10,0.4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-block;
  transition: border-color var(--duration-base), background var(--duration-base);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: rgba(10,10,10,0.05);
}

/* -------------------------------------------------------
   ROYAL ANNOUNCE — Portfolio-Ankündigung
------------------------------------------------------- */

.panel--royal-announce {
  background: var(--paper);
  padding: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-8), 6vw, var(--space-20));
  min-height: auto;
}

.panel--royal-announce .panel__content {
  position: relative;
  z-index: 1;
}

.panel__headline--royal-announce {
  font-family: var(--font-serif);
  font-weight: var(--weight-heavy);
  font-size: clamp(60px, 13vw, 160px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-8);
}

.panel__headline-sub {
  font-weight: var(--weight-normal);
  font-style: normal;
}

.panel--royal-announce .panel__sub {
  color: rgba(10,10,10,0.5);
  margin-bottom: var(--space-2);
}

.panel--royal-announce .panel__sub strong {
  color: var(--ink);
}

/* -------------------------------------------------------
   FULLSCREEN — FREESTYLE & STYLE (je Vollbild, vertikal)
------------------------------------------------------- */

.fullscreen {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.fullscreen__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Platzhalter-Hintergründe — werden durch echte Bilder ersetzt:
   .fullscreen__bg--freestyle { background-image: url('../assets/img/freestyle-bg.jpg'); background-size: cover; background-position: center; }
   .fullscreen__bg--style     { background-image: url('../assets/img/style-bg.jpg'); background-size: cover; background-position: center; }
*/
.fullscreen__bg--freestyle {
  background: #111;
}

.fullscreen__bg--style {
  background: #f0efea;
}

/* Körnung auf FREESTYLE */
.fullscreen__bg--freestyle::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.fullscreen__content {
  position: relative;
  z-index: 2;
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fullscreen__content--right {
  align-items: flex-end;
  text-align: right;
}

.fullscreen__mode {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: var(--space-2);
}

.fullscreen__mode--dark {
  color: var(--ink);
}

.fullscreen__tagline {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: rgba(250,250,247,0.75);
  line-height: var(--leading-snug);
  max-width: none;
}

.fullscreen__tagline--dark {
  color: rgba(10,10,10,0.65);
}

.fullscreen__detail {
  font-size: var(--text-sm);
  color: rgba(250,250,247,0.4);
  max-width: none;
}

.fullscreen__detail--dark {
  color: rgba(10,10,10,0.4);
}

.fullscreen__content a {
  margin-top: var(--space-4);
  align-self: flex-start;
}

.fullscreen__content--right a {
  align-self: flex-end;
}

/* -------------------------------------------------------
   CLAIM SECTION — Abschluss-Statement
------------------------------------------------------- */

.claim-section {
  background: var(--ink);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  text-align: center;
}

.claim-section__text {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: rgba(250,250,247,0.6);
  margin-bottom: var(--space-4);
  max-width: none;
}

.claim-section__quote {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  color: var(--paper);
  font-style: italic;
  line-height: var(--leading-snug);
  max-width: 36ch;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* -------------------------------------------------------
   KONTAKT — zusätzliche Elemente
------------------------------------------------------- */

.kontakt__sub {
  font-size: var(--text-sm);
  color: rgba(250,250,247,0.5);
  max-width: none;
  margin-top: var(--space-1);
}

.contact-card__mode {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kontakt__form-sub {
  font-family: var(--font-serif);
  font-weight: var(--weight-normal);
  font-size: var(--text-base);
  color: rgba(250,250,247,0.6);
  display: block;
  margin-top: var(--space-2);
}

/* -------------------------------------------------------
   LOGO-SEKTION — groß, zentriert, weißer Hintergrund
------------------------------------------------------- */

.logo-section {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) var(--container-padding);
  padding-top: calc(64px + clamp(var(--space-12), 6vw, var(--space-20))); /* Nav-Höhe */
  text-align: center;
}

.logo-section__img {
  width: clamp(260px, 45vw, 520px);
  height: auto;
  display: block;
}

.logo-section__sub {
  margin-top: var(--space-4);
  font-family: var(--font-sans);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  font-weight: var(--weight-bold);
  color: var(--ink);
  letter-spacing: 0.01em;
  max-width: none;
}

/* -------------------------------------------------------
   HERO — Foto-Hintergrund
------------------------------------------------------- */

.hero__bg {
  background-size: cover;
  background-position: center;
}

/* Dunkler Gradient-Overlay damit Text lesbar bleibt */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

/* Parallax vertikal + horizontal — beide per JS gesteuert */
.hero__bg--parallax-v,
.hero__bg--parallax-h {
  background-position: center center;
  will-change: background-position;
}

/* Style-Section: Serif-Headline */
.fullscreen__mode--serif {
  font-family: var(--font-serif);
  color: white;
  text-transform: none;
  letter-spacing: -0.02em;
}

/* Claim-Varianten */
.hero__claim--serif {
  font-family: var(--font-serif);
  font-weight: var(--weight-heavy);
  font-size: clamp(48px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero__claim--sans {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(32px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}

/* Erste Hero-Section: Nav-Abstand */
.hero--kino {
  padding-top: 64px;
}

/* -------------------------------------------------------
   PANEL-HALF — ~1/2 Screenhöhe, schwarz oder weiß
------------------------------------------------------- */

.panel-half {
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: clamp(var(--space-16), 9vw, var(--space-24)) clamp(var(--space-8), 6vw, var(--space-20));
}

.panel-half--dark  { background: #000; }
.panel-half--light { background: var(--paper); }

.panel-half__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.panel-half__content--right {
  align-items: flex-end;
  text-align: right;
}

.panel-half__claim {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(40px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.panel-half__claim--serif {
  font-family: var(--font-serif);
  text-transform: none;
}

.panel-half__claim--white { color: white; }
.panel-half__claim--dark  { color: var(--ink); }

.panel-half__claim-sub {
  font-weight: var(--weight-normal);
  font-size: 0.55em;
  display: block;
  letter-spacing: -0.01em;
}

.panel-half__sub {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  max-width: none;
}

.panel-half__sub--light { color: rgba(255,255,255,0.65); }
.panel-half__sub--dark  { color: rgba(10,10,10,0.55); }

.panel-half__sub strong {
  display: block;
}

.panel-half--dark  .panel-half__sub strong { color: white; }
.panel-half--light .panel-half__sub strong { color: var(--ink); }

.panel-half__content a { align-self: flex-start; }
.panel-half__content--right a { align-self: flex-end; }

/* -------------------------------------------------------
   FULLSCREEN — Ken Burns Diashow
------------------------------------------------------- */

.fullscreen {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Ken Burns Container */
.kenburns {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kenburns__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-color: #1a1a1a;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  /* transform-Zoom läuft als Animation auf dem Element selbst */
  transform-origin: center center;
}

.kenburns__slide--active {
  opacity: 1;
}

/* Freestyle: rauszoomen (größer → kleiner) */
.kenburns--zoomout .kenburns__slide--active {
  animation: kb-zoomout 6s ease-in-out forwards;
}

/* Style: reinzoomen (kleiner → größer) */
.kenburns--zoomin .kenburns__slide--active {
  animation: kb-zoomin 6s ease-in-out forwards;
}

@keyframes kb-zoomout {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0);  }
}

@keyframes kb-zoomin {
  from { transform: scale(1.0);  }
  to   { transform: scale(1.12); }
}

/* Overlay — dunkelt Bild ab damit Text lesbar */
.fullscreen__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.15) 100%);
}

.fullscreen__overlay--light {
  background: linear-gradient(to top, rgba(240,239,234,0.75) 0%, rgba(240,239,234,0.3) 50%, rgba(240,239,234,0.1) 100%);
}

.fullscreen__content {
  position: relative;
  z-index: 2;
  padding: clamp(var(--space-8), 5vw, var(--space-16));
  padding-bottom: clamp(var(--space-16), 8vw, var(--space-24));
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fullscreen__content--right {
  align-items: flex-end;
  text-align: right;
}

.fullscreen__mode {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--space-2);
  /* Schein nach außen: lesbar auf hellen und dunklen Bildern */
  text-shadow:
    0 0 40px rgba(0,0,0,0.6),
    0 0 80px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.8);
}

.fullscreen__mode--serif {
  font-family: var(--font-serif);
  color: white;
  text-transform: none;
  letter-spacing: -0.02em;
}

.fullscreen__tagline {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: white;
  line-height: var(--leading-snug);
  max-width: none;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
}

.fullscreen__detail {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  max-width: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.fullscreen__content a { margin-top: var(--space-4); align-self: flex-start; }
.fullscreen__content--right a { align-self: flex-end; }

/* -------------------------------------------------------
   FRAGEN? — Fixed Background (Parallax)
------------------------------------------------------- */

.fragen {
  position: relative;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  overflow: hidden;
}

.fragen__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/img/fragen.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Fixed/Parallax */
}

/* Dunkler Overlay über fragen.jpg */
.fragen__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.fragen__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.fragen__head {
  margin-bottom: var(--space-12);
}

.fragen__headline {
  font-family: var(--font-sans);
  font-weight: var(--weight-heavy);
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: white;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.fragen__lead {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  line-height: var(--leading-loose);
}

.fragen__sub {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  max-width: none;
  margin-top: var(--space-1);
}

/* Kachel-Grid */
.fragen__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

@media (max-width: 1100px) { .fragen__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .fragen__grid { grid-template-columns: repeat(2, 1fr); } }

.fragen__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  text-decoration: none;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  transition: border-color var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-spring);
}

.fragen__card:hover {
  border-color: var(--gold);
  background: rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

.fragen__card--muted { opacity: 0.7; }
.fragen__card--muted:hover { opacity: 1; }

.fragen__card-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: white;
  letter-spacing: 0.02em;
}

.fragen__card-mode {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fragen__card-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  line-height: var(--leading-snug);
}

/* -------------------------------------------------------
   CLAIM-BAND — ~1/3 Höhe, schwarz
------------------------------------------------------- */

.claim-band {
  background: var(--ink);
  min-height: 33vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(var(--space-12), 6vw, var(--space-20)) clamp(var(--space-8), 6vw, var(--space-20));
  text-align: center;
}

.claim-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: 720px;
}

.claim-band__text {
  font-size: var(--text-base);
  color: rgba(250,250,247,0.55);
  max-width: none;
}

.claim-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  color: var(--paper);
  font-style: italic;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
}

/* -------------------------------------------------------
   KONTAKT — Formular links, Bild rechts
------------------------------------------------------- */

.kontakt {
  background: var(--surface-dark);
}

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

@media (max-width: 860px) {
  .kontakt__inner { grid-template-columns: 1fr; }
  .kontakt__img-col { display: none; }
}

.kontakt__form-col {
  padding: clamp(var(--space-12), 6vw, var(--space-20));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

.kontakt__headline {
  font-family: var(--font-serif);
  font-weight: var(--weight-bold);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  color: var(--paper);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

.kontakt__form-sub {
  font-size: var(--text-base);
  color: rgba(250,250,247,0.55);
  margin-top: calc(-1 * var(--space-4));
}

.kontakt__img-col {
  position: relative;
  overflow: hidden;
}

.kontakt__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
