/* ============================================================
   BODY – GOLD / ANTHRAZIT (kein Grau)
   1) Horizontaler Gold-Wash
   2) Runder fixer Gold-Spot
   3) Anthrazit-Base
   Typo bleibt unverändert
============================================================ */

:root{
  /* Anthrazit mit warmem Unterton (wichtig gegen „Grau“) */
  --bg-0: #060505;
  --bg-1: #0B0A09;  /* warmes Anthrazit */
  --bg-2: #141210;  /* warmes Graphite */

  /* Gold-Tints */
  --gold-a: rgba(190,150,80,0.22);
  --gold-b: rgba(190,150,80,0.14);
  --gold-c: rgba(190,150,80,0.10);
}

body{
  /* TYPO: exakt wie bei dir */
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-variation-settings: "wght" 320;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(235,235,235,0.54);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  position: relative;
  isolation: isolate;

  /* GOLD / ANTHRAZIT BACKGROUND */
  background:
    /* (1) Horizontaler Gold-Wash (macht es „gold“, nicht grau) */
    linear-gradient(90deg,
      rgba(190,150,80,0.20) 0%,
      rgba(0,0,0,0.00) 38%,
      rgba(0,0,0,0.00) 62%,
      rgba(190,150,80,0.12) 100%
    ),

    /* (2) Runder fixer Gold-Spot (Private Viewing Gefühl) */
    radial-gradient(circle 980px at 50% 22%,
      var(--gold-a) 0%,
      var(--gold-b) 32%,
      rgba(0,0,0,0) 68%
    ),

    /* (3) Base (warmes Anthrazit – NICHT neutral-grau) */
    linear-gradient(180deg,
      var(--bg-0) 0%,
      var(--bg-1) 46%,
      var(--bg-2) 78%,
      var(--bg-0) 100%
    );

  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed;
  background-color: var(--bg-0);
}

/* Optional aber empfehlenswert: Vignette (macht’s „teurer“, ohne grau zu werden) */
body::after{
  content:"";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    1400px 980px at 50% 45%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.42) 72%,
    rgba(0,0,0,0.78) 100%
  );

  opacity: 0.95;
}

/* Optional: Grain sehr subtil (wenn du es willst) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");

  mix-blend-mode: soft-light;
  opacity: 0.40;
}

/* Content über den Layern */
body > *{
  position: relative;
  z-index: 1;
}

/* Mobile: fixed kann ruckeln */
@media (max-width: 900px){
  body{ background-attachment: scroll, scroll, scroll; }
  body::before{ opacity: 0.32; }
  body::after { opacity: 0.90; }
}


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

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   TYPOGRAPHIE – Luxury (nur Raleway) – SAFE DROP-IN
   (nur diese Regeln, keine globalen Tokens/Resets)
============================================================ */

h1, h2, h3, h4, h5, h6{
  font-family: "Raleway", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-style: normal;
  text-transform: none;
  color: rgba(255,255,255,0.94);
  margin: 0 0 0.85rem;
  /* Luxus wirkt ruhiger mit minimal weniger „Technik-Tracking“ */
  letter-spacing: 0.012em;
}

/* H1: mehr „Gallery Statement“ (leicht, aber stabil) */
h1{
  font-weight: 300;
  font-variation-settings: "wght" 260;
  font-size: clamp(2.25rem, 4vw, 3.2rem);
  line-height: 1.10;
  letter-spacing: 0.008em;
  margin-bottom: 0.9rem;
}

/* H2: Gold subtiler + weniger „shouty“ durch kontrolliertes Tracking */
h2{
  font-weight: 300;
  font-variation-settings: "wght" 300;
  font-size: clamp(1.58rem, 2.4vw, 2.08rem);
  line-height: 1.16;
  letter-spacing: 0.045em;              /* wirkt hochwertiger bei UI-Headlines */
  color: rgba(200,161,90,0.90);
  margin-bottom: 1.15rem;
}

/* H3: präzise, aber nicht „laut“ (weniger Spacing, etwas tieferes Weiß) */
h3{
  font-weight: 400;
  font-variation-settings: "wght" 360;
  font-size: clamp(1.16rem, 1.6vw, 1.38rem);
  line-height: 1.26;
  letter-spacing: 0.028em;              /* vorher 0.05em war oft zu „kalt“ */
  color: rgba(235,235,235,0.86);
  margin-bottom: 0.9rem;
}

/* H4–H6: sinnvolle Hierarchie ohne neue Stylestrukturen */
h4{
  font-weight: 450;
  font-variation-settings: "wght" 420;
  font-size: 1.02rem;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: rgba(235,235,235,0.86);
  margin-bottom: 0.75rem;
}

h5, h6{
  font-weight: 500;
  font-variation-settings: "wght" 460;
  font-size: 0.95rem;
  line-height: 1.38;
  letter-spacing: 0.02em;
  color: rgba(235,235,235,0.80);
  margin-bottom: 0.65rem;
}

/* Fließtext: minimal größer + „air“ = luxuriöser, dabei besser lesbar */
p{
  font-weight: 300;
  font-variation-settings: "wght" 320;
  font-size: 0.86rem;                   /* vorher 0.95rem */
  line-height: 1.78;                    /* einen Tick ruhiger */
  letter-spacing: 0.012em;              /* weniger technisch als 0.015em */
  color: rgba(235,235,235,0.74);        /* minimal klarer */
  margin: 0 0 1.25rem;
}

/* Global: small editorial text */
.caption{
  margin: 0.65rem 0 0;
  color: rgba(235,235,235,0.44);
  font-size: 0.86rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Luxus-Overline für Labels (Navigation/Section-Kicker) */
.eyebrow, .overline{
  font-weight: 600;
  font-variation-settings: "wght" 520;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.86);
}



/* ============================================================
   BUTTONS – Luxury (Global)
   Basis + Varianten (.gold / .border)
   ============================================================ */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;

  padding: 0.45rem 1.35rem;
  min-height: 36px;

  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;

  border-radius: 2px;
  border: 1px solid transparent;

  cursor: pointer;
  user-select: none;
  text-decoration: none;

  transition:
    transform 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.btn:focus{
  outline: none;
}

.btn:focus-visible{
  outline: 2px solid rgba(200,161,90,0.55);
  outline-offset: 3px;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn:active{
  transform: translateY(0);
}

/* Filled gold */
.btn.gold{
  background: #b8924a;              /* weniger “gelb”, mehr “gold” */
  border-color: #b8924a;
  color: #0b0b0b;
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

.btn.gold:hover{
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(200,161,90,0.10), 0 10px 26px rgba(0,0,0,0.55);
}

/* Outline gold */
.btn.border{
  background: rgba(0,0,0,0.18);
  border-color: rgba(200,161,90,0.55);
  color: #f0f0f0;
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

.btn.glass{
  background: rgba(0,0,0,0.40);
  border-color: rgba(200,161,90,0.60);
  color: rgba(245,245,245,0.96);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn.glass:hover{
  background: rgba(0,0,0,0.52);
  border-color: rgba(200,161,90,0.88);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 10px 26px rgba(0,0,0,0.55);
}

.btn.border:hover{
  border-color: rgba(200,161,90,0.85);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 10px 26px rgba(0,0,0,0.55);
}

/* Optional: disabled look (falls du es mal brauchst) */
.btn[aria-disabled="true"],
.btn:disabled{
  opacity: 0.55;
  pointer-events: none;
  transform: none;
}



/* ============================================================
   LUXE TEXTLINK – Global Secondary Action
   (für "Referenzfotos senden", "Private Anfrage" etc.)
============================================================ */
.luxe-textlink{
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;

  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  font-variation-settings: "wght" 520;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(200,161,90,0.90);
  text-decoration: none;

  position: relative;
  padding: 0.15rem 0;
}

/* Hairline underline (statt border-bottom) */
.luxe-textlink::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02rem;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(200,161,90,0.00),
    rgba(200,161,90,0.55),
    rgba(200,161,90,0.00)
  );
  opacity: 0.55;
  transform: scaleX(0.65);
  transform-origin: left;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* optional: dezenter Pfeil */
.luxe-textlink::before{
  content:"›";
  font-size: 1rem;
  line-height: 1;
  opacity: 0.65;
  transform: translateY(-0.02rem);
}

.luxe-textlink:hover{
  color: rgba(244,219,162,0.95);
}

.luxe-textlink:hover::after{
  opacity: 0.9;
  transform: scaleX(1);
}

.luxe-textlink:focus-visible{
  outline: 2px solid rgba(200,161,90,0.55);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(200, 161, 90, 0.12);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease, border-color 0.4s ease;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.logo img {
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* =========================
   NAV – Desktop (Luxury / compact / readable / square)
   ========================= */

.main-nav{
  position: relative;
  font-family: 'Raleway', sans-serif;
}

/* Burger: Default immer AUS (wird nur im Mobile-MQ aktiviert) */
.menu-toggle{
  display: none;
}

/* kompaktere Rail (weniger hoch als vorher) */
.main-nav > ul{
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: clamp(1.4rem, 2vw, 2.2rem);
  margin: 0;
  padding: 0.55rem 0.95rem;

  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 14px 34px rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.main-nav > ul > li{ position: relative; }

.main-nav > ul > li > a{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  color: rgba(245,245,245,0.92);
  text-decoration: none;

  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-shadow: 0 10px 26px rgba(0,0,0,0.70);
  transition: color 220ms ease, opacity 220ms ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active{
  color: rgba(200,161,90,0.92);
}

.main-nav > ul > li > a::after{
  content:"";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,161,90,0), rgba(200,161,90,0.55), rgba(200,161,90,0));
  opacity: 0;
  transform: scaleX(0.78);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after{
  opacity: 1;
  transform: scaleX(1);
}

/* CTA kompakter */
.main-nav a.cta{
  border: 1px solid rgba(200,161,90,0.65);
  color: rgba(200,161,90,0.92);
  padding: 0.62rem 0.95rem;
  margin-left: 0.15rem;

  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.85rem;

  background: rgba(0,0,0,0.20);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 180ms ease;
}

.main-nav a.cta:hover{
  background: rgba(200,161,90,0.92);
  color: #000;
  border-color: rgba(200,161,90,0.92);
  transform: translateY(-1px);
}

/* =========================
   SUBMENU – Desktop (hover-safe)
   ========================= */
.has-submenu{ position: relative; }

@media (min-width: 901px){

  /* Desktop: Toggle HARD OFF (falls irgendwo !important aktiv ist) */
  .menu-toggle{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .menu-toggle::before,
  .menu-toggle::after{
    content: none !important;
  }

  .submenu{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* Start leicht darunter */

    min-width: 240px;
    width: max-content;

    list-style: none;
    margin: 0;
    padding: 0.45rem 0;

    display: flex;
    flex-direction: column;

    background: rgba(0,0,0,0.96);
    border: 1px solid rgba(200,161,90,0.22);
    box-shadow: 0 10px 26px rgba(0,0,0,0.55);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  /* Hover-Bridge: verhindert „wegklappen“ beim rüberfahren */
  .submenu::before{
    content:"";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: transparent;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .submenu li{ margin: 0; padding: 0; }

  .submenu a{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0.75rem 1.25rem;
    line-height: 1.2;
    font-size: 0.95rem;
    letter-spacing: 0.03em;

    color: #ddd;
    text-align: center;
    white-space: nowrap;

    background: transparent;
    transition: background-color 220ms ease, color 220ms ease;
  }

  .submenu a:hover{
    background: #c8a15a;
    color: #000;
  }

  .submenu li + li{
    border-top: 1px solid rgba(200,161,90,0.10);
  }
}

/* =========================
   MOBILE NAV (<= 900px) – Luxury / editorial / square
   ========================= */
@media (max-width: 900px){

  /* Burger sichtbar – square, clean, mit Open-State (X) */
  .menu-toggle{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 48px;
    height: 48px;

    border-radius: 0;
    border: 1px solid rgba(200,161,90,0.42);
    background: rgba(0,0,0,0.42);

    box-shadow: 0 18px 48px rgba(0,0,0,0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    cursor: pointer;
    transition: transform 180ms ease, border-color 220ms ease, background-color 220ms ease;
  }

  .menu-toggle:hover{
    border-color: rgba(200,161,90,0.62);
    background: rgba(0,0,0,0.55);
    transform: translateY(-1px);
  }
  .menu-toggle:active{ transform: translateY(0); }

  /* falls Icon/Span im Button steckt */
  .menu-toggle i{ display: none !important; }
  .menu-toggle span{ display: none !important; }

  /* Hamburger-Lines */
  .menu-toggle::before,
  .menu-toggle::after{
    content:"";
    position: absolute;
    width: 18px;
    height: 1px;
    background: rgba(245,245,245,0.92);
    transition: transform 220ms ease, opacity 220ms ease;
  }
  .menu-toggle::before{ transform: translateY(-5px); }
  .menu-toggle::after{ transform: translateY(5px); }

  /* Open-State => X (nutzt deine JS-Klasse body.nav-open) */
  body.nav-open .menu-toggle::before{ transform: rotate(45deg); }
  body.nav-open .menu-toggle::after{ transform: rotate(-45deg); }

  .main-nav{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    padding: 1.15rem 1rem 1.4rem;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 9999;
  }

  .main-nav.show{
    display: block;
    animation: fadeInDown 220ms ease forwards;
  }

  /* Listen-Reset (falls globale Marker/Styles existieren) */
  .main-nav ul,
  .main-nav li{
    list-style: none;
  }
  .main-nav li::marker{ content: ""; }

  .main-nav > ul{
    margin: 0 auto;
    padding: 1.1rem 1rem;

    width: min(560px, 100%);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 22px 66px rgba(0,0,0,0.62);

    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .main-nav > ul > li{
    position: relative;
    padding: 0.25rem 0;
  }

  .main-nav > ul > li > a{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0.85rem 0.75rem;
    text-decoration: none;

    color: rgba(245,245,245,0.92);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.95rem;

    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.18);
    transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
  }

  .main-nav > ul > li > a:hover{
    border-color: rgba(200,161,90,0.28);
    color: rgba(200,161,90,0.92);
    background: rgba(0,0,0,0.30);
  }

  /* CTA im Mobile Panel */
  .main-nav a.cta{
    border-color: rgba(200,161,90,0.62) !important;
    color: rgba(200,161,90,0.92) !important;
    background: rgba(0,0,0,0.20) !important;
  }
  .main-nav a.cta:hover{
    background: rgba(200,161,90,0.92) !important;
    color: #000 !important;
  }

  /* Submenu im Flow */
  .submenu{
    position: static;
    transform: none;

    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    margin: 0.55rem 0 0;
    padding: 0.55rem 0.75rem 0.15rem;

    background: rgba(0,0,0,0.20);
    border-left: 1px solid rgba(200,161,90,0.20);
    border-right: 1px solid rgba(200,161,90,0.08);
  }

  .has-submenu.open > .submenu{
    display: grid;
    gap: 0.25rem;
  }

  .submenu a{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0.7rem 0.5rem;
    text-decoration: none;

    color: rgba(235,235,235,0.80);
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    line-height: 1.25;

    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);

    transition: border-color 200ms ease, color 200ms ease, background-color 200ms ease;
  }

  .submenu a:hover{
    color: rgba(200,161,90,0.92);
    border-color: rgba(200,161,90,0.25);
    background: rgba(0,0,0,0.22);
  }

  .main-nav a:focus-visible,
  .submenu a:focus-visible,
  .menu-toggle:focus-visible{
    outline: 2px solid rgba(200,161,90,0.55);
    outline-offset: 3px;
  }
}



/* Animation (kurz, hochwertig) */
@keyframes fadeInDown{
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* === Sprachumschalter (Desktop) === */
.language-float {
  position: fixed;
  top: 160px; /* unterhalb des Headers */
  right: 1.2rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

/* === Button Style === */
.btn-translate {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(200, 161, 90, 0.6);
  color: #c8a15a;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-translate:hover {
  background: #c8a15a;
  color: #000;
  border-color: #c8a15a;
  transform: scale(1.1);
}

/* === Panel === */
.translate-panel {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(200, 161, 90, 0.5);
  border-radius: 4px;
  padding: 0.4rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  text-align: center;
  font-size: 0.85rem;
  color: #c8a15a;
  display: none;
  width: 160px;
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .language-float {
    position: fixed;
    bottom: 40px;   /* Abstand vom unteren Rand */
    right: 1.2rem;
    z-index: 200;   /* UNTER dem mobilen Menü (das hat meist 999 oder 1000) */
    transition: opacity 0.3s ease;
  }

  /* Wenn das Menü aktiv ist → Sprachbutton ausblenden */
  .menu-active .language-float {
    opacity: 0;
    pointer-events: none;
  }
}

/* ===========================
   Skip link (A11y)
=========================== */
.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2000;

  padding: 0.75rem 1rem;
  border-radius: 2px;

  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(200,161,90,0.45);
  color: #f2f2f2;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;

  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus,
.skip-link:focus-visible{
  transform: translateY(0);
  outline: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

/* ===========================
   HERO INTRO – Luxury (New)
=========================== */

.hero-intro{
  position: relative;
  min-height: 92vh;
  height: 92vh;
  max-height: 980px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0b0b0b;
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px){
  .hero-intro{
    height: 88vh;
    min-height: 640px;
  }
}

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

/* HERO – final (nur eine Version behalten!) */

.hero-layer{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1200ms ease;

  /* GPU-stabiler Start */
  transform: translate3d(0,0,0) scale(1.06);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

/* is-active = nur sichtbar */
.hero-layer.is-active{
  opacity: 1;
}

/* Zoom ausschließlich über is-zooming */
@media (prefers-reduced-motion: no-preference){
  .hero-layer.is-zooming{
    animation: heroSlowZoom 6s linear forwards;
  }
	  .hero-layer.is-freeze{
    animation-play-state: paused;
  }

  @keyframes heroSlowZoom{
    from { transform: translate3d(0,0,0) scale(1.06); }
    to   { transform: translate3d(0,0,0) scale(1.36); }
  }

  }


/* Overlays: edel, aber nicht “zu hell/zu dunkel” */
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1000px 820px at 50% 38%, rgba(200,161,90,0.08), rgba(0,0,0,0) 60%),
	linear-gradient(1200px 920px at 25% 38%, rgba(200,161,90,0.08), rgba(0,0,0,0) 100%);
}

.hero-vignette{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(1200px 980px at 35% 42%, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

.hero-grain{
  position: absolute;
  inset: -20%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
 
  transform: rotate(2deg);
  mix-blend-mode: normal;
}
/* Content */
.hero-content{
  position: relative;
  z-index: 10;
  width: min(1100px, calc(100% - 4rem));
  text-align: center;
  padding-top: 2.5rem;
}

.hero-inner{
  margin: 0 auto;
  max-width: 820px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
}

/* Band-Utility */
.hero-band{
  display: inline-block;
  padding: 0.06em 0.28em;         /* minimal vertikal, damit es „gesetzt“ wirkt */
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% 1em;      /* Standard: = Texthöhe */
  background-image: linear-gradient(rgba(12,12,12,0.82), rgba(12,12,12,0.82));
}

/* Kicker */
.hero-kicker{
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(200,161,90,0.90);
}

.hero-band--kicker{
  background-size: 100% 1.35em;   /* statt 5em */
  background-image: linear-gradient(rgba(12,12,12,0.68), rgba(12,12,12,0.68));
}

/* H1 */
.hero-inner h1{
  margin: 0;
  font-weight: 300;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  color: #f2f2f2;

  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.06;
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

/* H1-Band pro Zeile */
.hero-inner h1 .hero-band--h1{
  margin: 0.12em 0;               /* Abstand zwischen den Bändern */
  background-size: 100% 1.25em;   /* statt 2em */
  background-image: linear-gradient(rgba(10,10,10,1), rgba(10,10,10,1)); /* komplett deckend */
}

/* Lead */
.hero-lead{
  margin: 0;
  max-width: 70ch;
  color: rgba(235,235,235,0.88);
  line-height: 1.8;
  font-size: 1.05rem;
	letter-spacing: 0.02em;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

.hero-band--lead{
  background-size: 100% 1.55em;   /* statt 3.4em */
  background-image: linear-gradient(rgba(12,12,12,0.70), rgba(12,12,12,0.70));
}

/* Mobile */
@media (max-width: 700px){
  .hero-content{ width: calc(100% - 2.2rem); }
  .hero-inner{ gap: 0.9rem; }
  .hero-lead{ font-size: 1rem; }
  .hero-inner h1{ letter-spacing: 0.12em; }
}

.hero-actions{
  display: inline-flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}


/* Scroll hint */
.hero-scroll{
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,161,90,0.25);
  border-radius: 999px;
  display: grid;
  place-items: center;
  opacity: 0.85;
  transition: opacity .25s ease, border-color .25s ease;
}

.hero-scroll:hover{
  opacity: 1;
  border-color: rgba(200,161,90,0.45);
}

.hero-scroll span{
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(235,235,235,0.70);
  border-bottom: 2px solid rgba(235,235,235,0.70);
  transform: rotate(45deg);
  margin-top: -2px;
  animation: heroArrow 1.4s ease-in-out infinite;
}

@keyframes heroArrow{
  0%, 100%{ transform: translateY(0) rotate(45deg); opacity: .8; }
  50%{ transform: translateY(5px) rotate(45deg); opacity: 1; }
}

/* Mobile spacing */
@media (max-width: 700px){
  .hero-content{ width: calc(100% - 2.2rem); }
  .hero-lead{ font-size: 1rem; }
}

/* Fix: verhindert "vh-jitter" auf Mobile (URL-Bar) – nur Startseite */
@supports (height: 100svh){
  #home.hero-intro{
    height: 92svh;
    min-height: 92svh;
  }
}

/* ========== HERO BAND: korrektes Wrapping (global) ========== */
.hero-band{
  display: inline;
  padding: 0.10em 0.34em;         /* band padding */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.25;
}

/* H1-Band: ohne "Block-Klotz"-Optik */
.hero-band--h1{
  padding: 0.12em 0.42em 0.10em;
  background-size: 100% 1.25em;
}

/* ========== ARTWORKS HERO: Lesbarkeit (scoped) ========== */
.hero-intro--artworks .hero-content{
  position: relative;
}

/* weicher Scrim hinter dem Text-Cluster (bild bleibt sichtbar, Text wird stabil lesbar) */
.hero-intro--artworks .hero-content::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: min(980px, 92vw);
  height: min(520px, 62vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(520px 280px at 50% 60%,
    rgba(0,0,0,0.78) 10%,
    rgba(0,0,0,0.46) 42%,
    rgba(0,0,0,0.00) 74%
  );
  z-index: -1;
  pointer-events: none;
}

/* etwas stärkere Vignette auf Artworks (Motive oft heller) */
.hero-intro--artworks .hero-vignette{
  background: radial-gradient(1200px 980px at 35% 42%,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.84) 100%
  );
}

/* Mobile Feinschliff: multi-line Bänder wirken sonst schnell "gequetscht" */
@media (max-width: 700px){
  .hero-intro--artworks .hero-band--lead{ background-size: 100% 1.75em; }
  .hero-intro--artworks .hero-band--kicker{ background-size: 100% 1.55em; }
  .hero-intro--artworks .hero-inner h1{ letter-spacing: 0.10em; }
}



/* Translate Dropdown Styling Override */
.goog-te-gadget {
  color: #c8a15a !important;
  font-family: "Raleway", sans-serif !important;
}
.goog-te-gadget-simple {
  background: transparent !important;
  border: none !important;
  color: #f0f0f0 !important;
}
.goog-te-menu-value {
  color: #c8a15a !important;
}


/* ===========================
   AVAILABLE – Private Viewing (Homepage Teaser)
=========================== */

.available-teaser{
  padding: 7rem 2rem;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

.pv{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.pv-copy{
  text-align: left;
}

.pv-kicker{
  margin: 0 0 0.7rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.pv h2{
  margin: 0 0 1rem;
  letter-spacing: 0.06em; /* weniger „schreiend“ */
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.pv-lead{
  margin: 0;
  color:#cfcfcf;
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 40ch; /* Luxus = kürzer, kuratiert */
}

.pv-lead strong{ color:#fff; font-weight: 500; }

.pv-actions{
  margin-top: 1.7rem;
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pv-fine{
  margin-top: 1.1rem;
  color:#8f8f8f;
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 48ch;
}

/* Media: editorial, ohne „Kachel“-Rahmen */
.pv-media{
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 1.2rem;
  align-items: stretch;
}

.pv-main, .pv-small{
  position: relative;
  display:block;
  overflow:hidden;
  border-radius: 2px;
  background: rgba(0,0,0,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.pv-main::after,
.pv-small::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 240px at 50% 15%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

.pv-main img{
  width:100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s ease;
  filter: contrast(1.02) saturate(1.02);
}

.pv-stack{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
}

.pv-small img{
  width:100%;
  height: 250px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s ease;
  filter: contrast(1.02) saturate(1.02);
}

.pv-main:hover img,
.pv-small:hover img{
  transform: scale(1.03);
}

/* Subtiles „golden edge“ nur beim Hover */
.pv-main, .pv-small{
  outline: 1px solid rgba(255,255,255,0.06);
  transition: outline-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.pv-main:hover, .pv-small:hover{
  outline-color: rgba(200,161,90,0.28);
  box-shadow: 0 14px 34px rgba(200,161,90,0.10), 0 10px 30px rgba(0,0,0,0.55);
}
/* Fine-tuning: more luxury */
.pv { align-items: center; } /* falls nicht schon so */

.pv-copy {
  padding-top: 0.4rem;
}

/* Buttons: slightly more premium */
.btn.gold {
  background: #b8924a;         /* minimal weniger „gelb“ */
  border-color: #b8924a;
}
.btn.gold:hover {
  filter: brightness(1.05);
}

.btn.border {
  border-color: rgba(200,161,90,0.55);
}
.btn.border:hover {
  border-color: rgba(200,161,90,0.85);
}

/* Frames: calmer */
.pv-main, .pv-small {
  outline-color: rgba(255,255,255,0.05);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
}
.pv-main:hover, .pv-small:hover{
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 10px 26px rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 980px){
  .pv{
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .pv-copy{
    text-align:center;
  }
  .pv-lead, .pv-fine{
    margin-left:auto;
    margin-right:auto;
  }
  .pv-actions{
    justify-content:center;
  }
  .pv-media{
    grid-template-columns: 1fr;
  }
  .pv-main img{
    height: 380px;
  }
  .pv-small img{
    height: 220px;
  }
}

/* ===========================
   AVAILABLE – Luxe Upgrade
   (unterhalb der bestehenden AVAILABLE-Styles einfügen)
=========================== */

.available-teaser--luxe{
  position: relative;
  overflow: hidden;
  padding: 7.5rem 2rem;

  background:
    radial-gradient(1000px 520px at 14% 30%, rgba(200,161,90,0.12), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 86% 72%, rgba(200,161,90,0.08), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

/* feines „Gallery Grid“ – sehr subtil */
.available-teaser--luxe::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 0.06;
  background:
    linear-gradient(to right, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(to bottom, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 120px 120px;
}

/* goldene Haarlinie als „Runway“ */
.available-teaser--luxe::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(200,161,90,0.00), rgba(200,161,90,0.18), rgba(200,161,90,0.00));
  pointer-events:none;
  opacity: 0.35;
}

/* Layout: etwas „editorialer“ */
.pv--luxe{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3.6rem;
  align-items: center;
}

/* Copy: luxuriöse linke Achse */
.pv-copy--luxe{
  position: relative;
  padding-left: 1.15rem;
}

.pv-copy--luxe::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(200,161,90,0.0), rgba(200,161,90,0.55), rgba(200,161,90,0.0));
  opacity: 0.45;
}

.pv-title{
  margin: 0 0 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.12;
}

.pv-title span{
  display:block;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  color: #c8a15a;
}

.pv-title span:last-child{
  color: #f2f2f2;
  letter-spacing: 0.06em;
}

/* Stats-Liste: kuratiert, „Gallery Plaque“ */
.pv-stats{
  list-style:none;
  margin: 1.35rem 0 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.28);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  max-width: 44ch;
}

.pv-stats li{
  display:flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.42rem 0;
  color: rgba(235,235,235,0.82);
  font-size: 0.95rem;
}

.pv-dot{
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(200,161,90,0.75);
  box-shadow: 0 0 0 3px rgba(200,161,90,0.10);
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

/* Media: Spotlight + Premium Frames */
.pv-media--luxe{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1.25rem;
  align-items: stretch;

  /* JS setzt diese Werte */
  --spot-x: 50%;
  --spot-y: 35%;
}

.pv-media--luxe::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  border-radius: 6px;
  background: radial-gradient(520px 320px at var(--spot-x) var(--spot-y), rgba(200,161,90,0.14), rgba(0,0,0,0) 65%);
  opacity: 0.85;
}

/* Card */
.pv-card{
  position: relative;
  display:block;
  overflow:hidden;
  border-radius: 2px;
  background: rgba(0,0,0,0.25);
  outline: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 34px rgba(0,0,0,0.58);
  transform: translate3d(0,0,0);
  transition: outline-color .35s ease, box-shadow .35s ease, transform .35s ease;
  will-change: transform;
}

.pv-card::before{
  content:"";
  position:absolute;
  inset: 10px;
  border: 1px solid rgba(200,161,90,0.10);
  pointer-events:none;
  opacity: 0.65;
}

.pv-card::after{
  content:"";
  position:absolute;
  inset:-35%;
  background: linear-gradient(120deg, rgba(255,255,255,0.00) 30%, rgba(200,161,90,0.18) 45%, rgba(255,255,255,0.00) 60%);
  transform: translateX(-28%) rotate(8deg);
  opacity: 0;
  pointer-events:none;
  transition: opacity .35s ease, transform .9s ease;
}

.pv-card:hover{
  outline-color: rgba(200,161,90,0.30);
  box-shadow: 0 18px 44px rgba(200,161,90,0.10), 0 12px 34px rgba(0,0,0,0.58);
}

.pv-card:hover::after{
  opacity: 1;
  transform: translateX(18%) rotate(8deg);
}

.pv-card img{
  width:100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s ease;
  filter: contrast(1.02) saturate(1.02);
}

.pv-card--small img{
  height: 250px;
}

.pv-card:hover img{
  transform: scale(1.03);
}

/* Badge */
.pv-badge{
  position:absolute;
  left: 18px;
  bottom: 18px;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(200,161,90,0.30);
  background: rgba(0,0,0,0.55);
  color: rgba(200,161,90,0.92);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Stack */
.pv-stack--luxe{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

/* Responsive */
@media (max-width: 980px){
  .pv--luxe{
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .pv-copy--luxe{
    padding-left: 0;
  }
  .pv-copy--luxe::before{
    display:none;
  }
  .pv-stats{
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }
  .pv-media--luxe{
    grid-template-columns: 1fr;
  }
  .pv-card img{
    height: 380px;
  }
  .pv-card--small img{
    height: 220px;
  }
}

/* ============================================================
   AVAILABLE + COMMISSIONS – Luxurious Black & Gold Extensions
============================================================ */

.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-head .lead {
  max-width: 820px;
  margin: 0.8rem auto 0;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- AVAILABLE --- */
.available {
  background: #101010;
  text-align: center;
  padding: 7rem 2rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
  gap: 1rem;
  align-items: end;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 1.2rem 1.2rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(200,161,90,0.18);
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.filter-item label {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  color: #c8a15a;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.filter-item select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: #0d0d0d;
  border: 1px solid #2b2b2b;
  color: #f0f0f0;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
}

.filter-item select:focus {
  outline: none;
  border-color: #c8a15a;
}

.filter-cta { justify-self: end; white-space: nowrap; }

.available-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.art-card {
  background: #0d0d0d;
  border: 1px solid rgba(200,161,90,0.12);
  box-shadow: 0 0 22px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
  text-align: left;
}

.art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(200,161,90,0.18);
  border-color: rgba(200,161,90,0.28);
}

.art-card__media {
  position: relative;
  display: block;
  overflow: hidden;
}

.art-card__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.art-card:hover .art-card__media img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(200,161,90,0.35);
  background: rgba(0,0,0,0.55);
  color: #c8a15a;
}

.badge--available { color: #c8a15a; }

.art-card__body { padding: 1.35rem 1.25rem 1.5rem; }

.art-title {
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.art-meta {
  font-size: 0.92rem;
  color: #bdbdbd;
  margin-bottom: 1.1rem;
}

.art-card__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.fineprint {
  max-width: 900px;
  margin: 2.5rem auto 0;
  font-size: 0.85rem;
  color: #8a8a8a;
  line-height: 1.6;
}
/* ===========================
   Luxury Lightbox
=========================== */
.lb-lock { overflow: hidden; }

.lux-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lux-lightbox.is-open { display: block; }

.lux-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
}

.lux-lightbox__panel {
  position: absolute;
  inset: 4.5vh 4vw;
  display: grid;
  place-items: center;
}

.lux-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  position: relative;
  border-radius: 2px;
  background: rgba(0,0,0,0.22);
  outline: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.70);
  overflow: hidden;
}

.lux-lightbox__figure::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 280px at 50% 10%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

.lux-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
}

.lux-lightbox__caption {
  padding: 0.9rem 1.1rem 1.1rem;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.7;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.86) 100%);
}

.lux-lightbox__close {
  position: absolute;
  top: 2.5vh;
  right: 3vw;
  width: 44px;
  height: 44px;
  border-radius: 2px;
  border: 1px solid rgba(200,161,90,0.35);
  background: rgba(0,0,0,0.45);
  color: #c8a15a;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.lux-lightbox__close:hover {
  border-color: rgba(200,161,90,0.70);
  background: rgba(0,0,0,0.60);
  transform: translateY(-1px);
}


/* ===========================
   GALLERY (Homepage) – Luxury "Kunst im Raum"
=========================== */

.gallery-luxe{
  padding: 7rem 2rem;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(200,161,90,0.08), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b0b 0%, #0f0f0f 55%, #0b0b0b 100%);
}

.g-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.8rem;
}

.g-kicker{
  margin: 0 0 0.75rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.gallery-luxe h2{
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.g-lead{
  margin: 0 auto;
  color:#cfcfcf;
  line-height: 1.9;
  font-size: 0.95rem;
  max-width: 72ch;
}

.g-actions{
  margin-top: 1.8rem;
  display:flex;
  gap: 1rem;
  justify-content:center;
  flex-wrap: wrap;
}

/* Editorial grid */
.g-grid{
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
  align-items: stretch;
}

.g-item{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(0,0,0,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  outline: 1px solid rgba(255,255,255,0.06);
  transition: outline-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.g-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 240px at 50% 15%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

.g-item img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .9s ease;
  filter: contrast(1.02) saturate(1.02);
}

.g-item--hero{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.g-item--hero img{
  height: 744px; /* 360+gap+360 approx for balanced look */
}

.g-item:hover{
  transform: translateY(-5px);
  outline-color: rgba(200,161,90,0.28);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 10px 26px rgba(0,0,0,0.55);
}

.g-item:hover img{
  transform: scale(1.03);
}

/* Captions */
.g-caption{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.68) 70%, rgba(0,0,0,0.86) 100%);
  display:flex;
  flex-direction: column;
  gap: 0.25rem;
}

.g-caption--compact{
  padding: 1rem 1rem;
}

.g-cap-title{
  color:#fff;
  letter-spacing: 0.06em;
  font-size: 1rem;
}

.g-cap-sub{
  color:#c8a15a;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.g-foot{
  text-align: center;
  margin-top: 2.2rem;
}

.g-fine{
  max-width: 920px;
  margin: 0 auto;
  color:#8f8f8f;
  font-size: 0.75rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 980px){
  .g-grid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g-item--hero{
    grid-column: auto;
    grid-row: auto;
  }
  .g-item--hero img{
    height: 380px;
  }
  .g-item img{
    height: 320px;
  }
}

/* --- COMMISSIONS --- */
.commissions {
  background: #0d0d0d;
  text-align: center;
  padding: 7rem 2rem;
}

.commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.commission-card {
  background: #101010;
  border: 1px solid rgba(200,161,90,0.14);
  box-shadow: 0 0 22px rgba(0,0,0,0.55);
  padding: 2rem 1.8rem;
  text-align: left;
}

.commission-card h3 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.9rem;
  align-items: center; /* <— statt start */
}

.step-no {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200,161,90,0.45);
  color: #c8a15a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.step-txt { color: #cfcfcf; line-height: 1.7; }

.faq {
  border-top: 1px solid rgba(200,161,90,0.12);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
}

.faq summary {
  cursor: pointer;
  color: #c8a15a;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
}

.faq p {
  margin-top: 0.8rem;
  color: #cfcfcf;
  font-size: 0.95rem;
}

.commission-note {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.4rem 1.4rem;
  background: rgba(0,0,0,0.30);
  border: 1px solid rgba(200,161,90,0.14);
}

.commission-note p { margin: 0; color: #c9c9c9; }

/* Responsive */
@media (max-width: 900px) {
  .filter-bar {
    grid-template-columns: 1fr;
  }
  .filter-cta { justify-self: start; }
  .commission-grid {
    grid-template-columns: 1fr;
  }
  .art-card__media img { height: 280px; }
}

/* ===========================
   COMMISSIONS (Luxury / Editorial)
   Add to end of style.css
=========================== */

.commissions-luxe .section-head{
  text-align: center;
  margin-bottom: 2.8rem;
}

.commissions-luxe .luxe-kicker{
  margin: 0 0 0.75rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

.commissions-luxe .section-head h2{
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commissions-luxe .section-head .lead{
  max-width: 58ch;
  margin: 0.8rem auto 0;
  line-height: 1.9;
  color:#cfcfcf;
}

.commissions-luxe .luxe-actions{
  margin-top: 1.8rem;
  display:flex;
  gap: 1rem;
  justify-content:center;
  flex-wrap: wrap;
}

/* Cards: more breathing room */
.commissions-luxe .commission-card{
  padding: 2.4rem 2.2rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(200,161,90,0.14);
  box-shadow: 0 0 22px rgba(0,0,0,0.55);
}

/* Steps: calmer typography */
.commissions-luxe .steps-luxe{
  margin-top: 1.2rem;
  gap: 1rem;
}
.commissions-luxe .step-no{
  border-color: rgba(200,161,90,0.40);
  color: #c8a15a;
}
.commissions-luxe .step-txt{
  color:#d2d2d2;
  line-height: 1.75;
}

/* Primary action: one hero button + textlink */
.commissions-luxe .commission-primary{
  margin-top: 10px;
  display:flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.commissions-luxe .commission-fine{
  margin-top: 1.2rem;
  color:#8f8f8f;
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: 56ch;
}

/* FAQ: less "support UI", more editorial */
.commissions-luxe .faq-list{
  margin-top: 1.1rem;
}

.commissions-luxe .luxe-faq{
  border-top: 1px solid rgba(200,161,90,0.10);
  padding-top: 0.95rem;
  margin-top: 0.95rem;
}

.commissions-luxe .luxe-faq summary{
  cursor: pointer;
  color: #d7b36b;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  list-style: none;
}

.commissions-luxe .luxe-faq summary::-webkit-details-marker{
  display: none;
}

.commissions-luxe .luxe-faq summary::before{
  content: "▸";
  display: inline-block;
  margin-right: 0.6rem;
  color: rgba(200,161,90,0.85);
  transform: translateY(-1px);
}

.commissions-luxe .luxe-faq[open] summary::before{
  content: "▾";
}

.commissions-luxe .luxe-faq p{
  margin: 0.85rem 0 0;
  color:#cfcfcf;
  font-size: 0.95rem;
  line-height: 1.8;
}

.commissions-luxe .commission-secondary{
  margin-top: 1.6rem;
}

/* Note block */
.commissions-luxe .commission-note{
  max-width: 980px;
  margin: 2.6rem auto 0;
  padding: 1.4rem 1.4rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(200,161,90,0.12);
}

.commissions-luxe .commission-note p{
  margin: 0;
  color:#c9c9c9;
  line-height: 1.85;
}

/* Responsive */
@media (max-width: 900px){
  .commissions-luxe .commission-primary{
    justify-content: flex-start;
  }
}
/* ===========================
   EXHIBITIONS – Luxury / Editorial + Marquee Slider
   Scoped: #exhibitions.exhibitions-luxe
   Hinweis: alte .exh-strip/.exh-thumb Regeln bitte entfernen/ignorieren.
=========================== */

#exhibitions.exhibitions-luxe{
  padding: 7rem 2rem;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(200,161,90,0.08), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

#exhibitions.exhibitions-luxe .container{
  max-width: 1180px;
  margin: 0 auto;
}

/* Head */
#exhibitions.exhibitions-luxe .exh-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.8rem;
}

#exhibitions.exhibitions-luxe .exh-kicker{
  margin: 0 0 0.75rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

#exhibitions.exhibitions-luxe h2{
  margin: 0 0 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

#exhibitions.exhibitions-luxe .exh-lead{
  margin: 0 auto;
  color:#cfcfcf;
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 68ch;
}

/* Featured */
#exhibitions.exhibitions-luxe .exh-feature{
  margin: 0 auto;
}

#exhibitions.exhibitions-luxe .exh-link{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.6rem;
  align-items: stretch;
  text-decoration: none;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(200,161,90,0.14);
  box-shadow: 0 0 22px rgba(0,0,0,0.55);
  padding: 1.4rem;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

#exhibitions.exhibitions-luxe .exh-link:hover{
  transform: translateY(-4px);
  border-color: rgba(200,161,90,0.26);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 0 22px rgba(0,0,0,0.55);
}

/* Visual */
#exhibitions.exhibitions-luxe .exh-visual{
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  outline: 1px solid rgba(255,255,255,0.06);
  background: #0b0b0b;
  aspect-ratio: 16 / 9;
}

#exhibitions.exhibitions-luxe .exh-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(700px 260px at 50% 12%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

#exhibitions.exhibitions-luxe .exh-visual img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.02) saturate(1.02);
  transform: translateZ(0);
}

/* Content */
#exhibitions.exhibitions-luxe .exh-body{
  padding: 0.3rem 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

#exhibitions.exhibitions-luxe .exh-eyebrow{
  margin: 0 0 0.7rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 0.78rem;
}

#exhibitions.exhibitions-luxe .exh-title{
  margin: 0 0 0.4rem;
  color: #fff;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 1.35rem;
}

#exhibitions.exhibitions-luxe .exh-sub{
  margin: 0 0 1.1rem;
  color:#cfcfcf;
  line-height: 1.7;
}

#exhibitions.exhibitions-luxe .exh-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #a9a9a9;
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

#exhibitions.exhibitions-luxe .exh-meta-dot{
  color: rgba(200,161,90,0.55);
}

#exhibitions.exhibitions-luxe .exh-text{
  margin: 0 0 1.5rem;
  color:#cfcfcf;
  line-height: 1.85;
}

#exhibitions.exhibitions-luxe .exh-cta{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

#exhibitions.exhibitions-luxe .exh-hint{
  color:#8f8f8f;
  font-size: 0.86rem;
}

/* ===========================
   Marquee Slider (Luxury)
=========================== */

#exhibitions.exhibitions-luxe .exh-marquee{
  --marquee-gap: 0.95rem;
  --marquee-speed: 28s; /* kleiner = schneller */
  margin-top: 1.35rem;
}

#exhibitions.exhibitions-luxe .exh-marquee__mask{
  position: relative;
  overflow: hidden;
  padding: 0.35rem 0;
}

/* Edler Edge-Fade */
#exhibitions.exhibitions-luxe .exh-marquee__mask::before,
#exhibitions.exhibitions-luxe .exh-marquee__mask::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 2;
  pointer-events:none;
}
#exhibitions.exhibitions-luxe .exh-marquee__mask::before{
  left: 0;
  background: linear-gradient(90deg, rgba(11,11,11,1) 0%, rgba(11,11,11,0) 100%);
}
#exhibitions.exhibitions-luxe .exh-marquee__mask::after{
  right: 0;
  background: linear-gradient(270deg, rgba(11,11,11,1) 0%, rgba(11,11,11,0) 100%);
}

/* Track: zwei Listen nebeneinander -> endlos */
#exhibitions.exhibitions-luxe .exh-marquee__track{
  display: flex;
  gap: var(--marquee-gap);
  width: max-content;
  animation: exh-marquee-move var(--marquee-speed) linear infinite;
  will-change: transform;
}

/* Pause bei Hover/Fokus (luxury, kontrolliert) */
#exhibitions.exhibitions-luxe .exh-marquee:hover .exh-marquee__track,
#exhibitions.exhibitions-luxe .exh-marquee:focus-within .exh-marquee__track{
  animation-play-state: paused;
}

#exhibitions.exhibitions-luxe .exh-marquee__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--marquee-gap);
}

/* Cards */
#exhibitions.exhibitions-luxe .exh-marquee__item{
  flex: 0 0 auto;
}

#exhibitions.exhibitions-luxe .exh-marquee__card{
  display: block;
  width: 260px;
  height: 150px;

  border-radius: 2px;
  overflow: hidden;

  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(200,161,90,0.14);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);

  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

#exhibitions.exhibitions-luxe .exh-marquee__card:hover{
  transform: translateY(-3px);
  border-color: rgba(200,161,90,0.22);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 10px 22px rgba(0,0,0,0.45);
}

#exhibitions.exhibitions-luxe .exh-marquee__card:focus-visible{
  outline: 2px solid rgba(200,161,90,0.55);
  outline-offset: 3px;
}

#exhibitions.exhibitions-luxe .exh-marquee__card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(1.02);
}

#exhibitions.exhibitions-luxe .exh-marquee__fine{
  margin: 0.85rem 0 0;
  color: rgba(235,235,235,0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}

/* Animation: bewegt Track um exakt eine Listenbreite (50%) */
@keyframes exh-marquee-move{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  #exhibitions.exhibitions-luxe .exh-marquee__track{
    animation: none;
  }
}

/* Responsive */
@media (max-width: 980px){
  #exhibitions.exhibitions-luxe .exh-link{
    grid-template-columns: 1fr;
  }
  #exhibitions.exhibitions-luxe .exh-visual{
    aspect-ratio: 16 / 10;
  }

  #exhibitions.exhibitions-luxe .exh-marquee__card{
    width: 78vw;
    max-width: 420px;
    height: 210px;
  }

  #exhibitions.exhibitions-luxe .exh-marquee__mask::before,
  #exhibitions.exhibitions-luxe .exh-marquee__mask::after{
    width: 72px;
  }
}

@media (max-width: 560px){
  #exhibitions.exhibitions-luxe{
    padding: 5.2rem 1.1rem;
  }
  #exhibitions.exhibitions-luxe .exh-marquee__mask::before,
  #exhibitions.exhibitions-luxe .exh-marquee__mask::after{
    width: 56px;
  }
}


/* ============================================================
   ABOUT (INDEX) – Luxe / Editorial (wie AVAILABLE)
 
============================================================ */

#about.about-luxe{
  position: relative;
  overflow: hidden;

  /* global section spacing ist ok – wir übernehmen es sauber */
  padding: 7rem 2rem;

  /* Falls vorherige Overrides existieren: zurück auf “wie alle Sections” */
  width: auto !important;
  max-width: 1200px !important;
  margin: 0 auto !important;

  /* keine Backgrounds direkt hier, damit Breite nicht sichtbar „abschneidet“ */
  background: none !important;
}

#about.about-luxe::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;                 /* full width wash */
  transform: translateX(-50%);
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(900px 420px at 50% 0%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

/* Subtiles „Gallery Grid“ wie bei AVAILABLE-luxe (sehr fein) */
#about.about-luxe::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events:none;
  z-index: 0;

  opacity: 0.06;
  background:
    linear-gradient(to right, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 120px 120px,
    linear-gradient(to bottom, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 120px 120px;
}

/* 3) Innenlayout: „pv“-Logik (max 1180) */
#about.about-luxe .container.about-grid{
  position: relative;
  z-index: 1;

  max-width: 1180px;            /* wie .pv */
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;

  /* wichtig: nichts „zusammendrücken“ */
  width: 100%;
  min-width: 0;
}

#about.about-luxe .about-text{ min-width: 0; }

#about.about-luxe .about-kicker{
  margin: 0 0 0.7rem;
  color:#c8a15a;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

#about.about-luxe h2{
  margin: 0 0 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

#about.about-luxe .about-subtitle{
  margin: 0 0 1.25rem;
  color: rgba(235,235,235,0.78);
  line-height: 1.85;
  max-width: 64ch;
}

#about.about-luxe .about-lead{
  margin: 0 0 1rem;
  color: rgba(235,235,235,0.74);
  line-height: 1.9;
  max-width: 66ch;
}

#about.about-luxe .about-body{
  margin: 0 0 1.5rem;
  color: rgba(200,200,200,0.66);
  line-height: 1.9;
  max-width: 66ch;
}

/* Pillars: “Gallery Plaque” statt 3 große Hero-Karten */
#about.about-luxe .about-pillars{
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1rem 1.05rem;

  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.28);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);

  max-width: 44ch;
  display: grid;
  gap: 0.55rem;
}

#about.about-luxe .about-pillars li{
  display: flex;
  align-items: baseline;
  gap: 0.7rem;

  color: rgba(235,235,235,0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

#about.about-luxe .about-pillars li::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(200,161,90,0.75);
  box-shadow: 0 0 0 3px rgba(200,161,90,0.10);
  margin-top: 0.45rem;
  flex: 0 0 auto;
}

/* Actions */
#about.about-luxe .about-actions{
  margin-top: 1.7rem;
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

#about.about-luxe .caption{
  margin: 1rem 0 0;
}

/* Bild: dezenter, „pv-card“-Look (nicht riesig) */
#about.about-luxe .about-image{
  margin: 0;
  justify-self: end;

  width: min(420px, 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;

  background: rgba(0,0,0,0.25);
  outline: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 34px rgba(0,0,0,0.58);

  transform: translate3d(0,0,0);
  transition: outline-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

#about.about-luxe .about-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(600px 240px at 50% 15%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

#about.about-luxe .about-image:hover{
  outline-color: rgba(200,161,90,0.28);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 12px 34px rgba(0,0,0,0.58);
  transform: translateY(-2px);
}

#about.about-luxe .about-image img{
  width:100%;
  height: auto;
  display:block;

  /* kontrollierter Portrait-Frame */
  aspect-ratio: 4 / 5;
  object-fit: cover;

  filter: contrast(1.02) saturate(0.98);
  transition: transform .9s ease;
}

#about.about-luxe .about-image:hover img{
  transform: scale(1.02);
}

#about.about-luxe .about-credit{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.86) 100%);
  color: rgba(235,235,235,0.72);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

/* Responsive (wie AVAILABLE) */
@media (max-width: 980px){
  #about.about-luxe{
    padding: 6rem 1.6rem;
  }
  #about.about-luxe .container.about-grid{
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }
  #about.about-luxe .about-pillars{
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  #about.about-luxe .about-actions{
    justify-content: center;
  }
  #about.about-luxe .about-image{
    justify-self: center;
    width: min(520px, 100%);
  }
}

@media (max-width: 600px){
  #about.about-luxe{
    padding: 5rem 1.1rem;
  }
  #about.about-luxe .about-image img{
    aspect-ratio: 3 / 4;
  }
}


/* ============================================================
   NEWS SECTION – Luxuriös, ruhig & elegant
============================================================ */
.news {
  background: #111;
  color: #f0f0f0;
  text-align: center;
  padding: 8rem 2rem;
}

.news h2 {
  color: #c8a15a;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.news h3 {
  color: #bbb;
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  letter-spacing: 0.04em;
}

/* Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Card === */
.news-card {
  background: #0d0d0d;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 22px rgba(200, 161, 90, 0.25);
}

/* === Image === */
.news-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.03);
}

/* === Content === */
.news-content {
  padding: 2rem;
}

.news-content h4 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.news-content p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Button */
.news-content .btn.border {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .news {
    padding: 6rem 1.5rem;
  }
  .news-content {
    padding: 1.5rem;
  }
  .news-content h4 {
    font-size: 1.1rem;
  }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: #111;
  text-align: center;
  padding: 7rem 2rem;
}

.products h2 {
  color: #c8a15a;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.products h3 {
  color: #ccc;
  margin-bottom: 3rem;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #0d0d0d;
  border-radius: 4px;
  padding: 1rem;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h4 {
  color: #fff;
  margin-top: 1rem;
  font-weight: 500;
}
.card p {
  color: #aaa;
  font-size: 0.9rem;
}
/* ============================================================
   CONTACT – Luxury / Elegant (rebuild)
   Scoped to .contact to avoid side effects
   ============================================================ */

.contact{
  position: relative;
  padding: 7rem 2rem;
  overflow: hidden;

  /* Luxe backdrop ähnlich zu deinen anderen Sektionen */
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 86% 72%, rgba(200,161,90,0.06), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

/* subtiler Vignette/Film-Look (passt zu deinen Hero-Overlays) */
.contact::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(1200px 760px at 50% 18%, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.72) 100%);
}

/* feine “Gridline”-Textur (edel, sehr leise) */
.contact::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity: 0.10;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mix-blend-mode: overlay;
}

/* Grid */
.contact .contact-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.2rem;
  align-items: start;
}

/* Cards */
.contact .contact-form,
.contact .contact-info{
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(200,161,90,0.14);
  box-shadow: 0 0 22px rgba(0,0,0,0.55);
  outline: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  padding: 2.05rem 2rem;

  transition:
    transform .35s ease,
    border-color .35s ease,
    outline-color .35s ease,
    box-shadow .35s ease;
}

.contact .contact-form:hover,
.contact .contact-info:hover{
  transform: translateY(-3px);
  border-color: rgba(200,161,90,0.26);
  outline-color: rgba(200,161,90,0.22);
  box-shadow: 0 14px 30px rgba(200,161,90,0.08), 0 0 22px rgba(0,0,0,0.55);
}
/* Headings (Kontakt) – Uppercase + Spacing */
.contact .contact-form h2{
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  /* Farbe kommt weiterhin von deinem globalen h2 (Gold) */
}

.contact .contact-form h3{
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  color: rgba(235,235,235,0.78);
  margin: 0 0 1.35rem;
}

/* Form layout */
.contact #contact-form{
  display: grid;
  gap: 0.65rem;
}

/* Honeypot wirklich weg (Backend prüft company) */
.contact .hp-field{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Hint */
.contact .form-hint{
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  color: rgba(235,235,235,0.62);
}
.contact .form-hint span{
  color: rgba(200,161,90,0.90);
}

/* Labels */
.contact #contact-form label{
  margin-top: 0.7rem;
  display: block;

  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-variation-settings: "wght" 520;
  color: rgba(200,161,90,0.85);
}

.contact #contact-form label:first-of-type{
  margin-top: 0;
}

/* Inputs / Textarea (luxury hairline + soft focus) */
.contact #contact-form input[type="text"],
.contact #contact-form input[type="email"],
.contact #contact-form input[type="tel"],
.contact #contact-form textarea{
  width: 100%;
  padding: 0.85rem 0.95rem;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;

  color: rgba(245,245,245,0.92);
  font-family: inherit;
  font-size: 0.98rem;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.contact #contact-form textarea{
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}
/* Contact Form Fields – fallback wenn .contact wrapper fehlt */
.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select{
  width: 100%;
  box-sizing: border-box;
  padding: 0.88rem 1.05rem;

  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 8px;

  color: rgba(245,245,245,0.92);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.35;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-form select{
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(235,235,235,0.60) 50%),
    linear-gradient(135deg, rgba(235,235,235,0.60) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.10));
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    calc(100% - 2.7rem) 50%;
  background-size: 6px 6px, 6px 6px, 1px 55%;
  background-repeat: no-repeat;
  padding-right: 3.1rem;
  cursor: pointer;
}

.contact-form select option{
  background: #0b0b0b;
  color: rgba(245,245,245,0.92);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline: none;
  border-color: rgba(200,161,90,0.55);
  background: rgba(0,0,0,0.44);
  box-shadow: 0 0 0 4px rgba(200,161,90,0.10), inset 0 1px 0 rgba(255,255,255,0.05);
}


.contact #contact-form input::placeholder,
.contact #contact-form textarea::placeholder{
  color: rgba(235,235,235,0.42);
}

.contact #contact-form input:focus,
.contact #contact-form textarea:focus{
  outline: none;
  border-color: rgba(200,161,90,0.55);
  background: rgba(200,161,90,0.05);
  box-shadow:
    0 0 0 3px rgba(200,161,90,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact #contact-form input:focus-visible,
.contact #contact-form textarea:focus-visible{
  outline: 2px solid rgba(200,161,90,0.45);
  outline-offset: 2px;
}
/* Betreff (optional) – eigenes Fine-Tuning */
.contact #contact-form input#subject_detail{
  /* optional: minimal „wertiger“ als Standard-Input */
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.12);
}
.contact #contact-form input#subject_detail:focus{
  background: rgba(200,161,90,0.06);
}

/* CONTACT – Select (Anfrageart) */
.contact #contact-form select{
  width: 100%;
  padding: 0.85rem 3.1rem 0.85rem 0.95rem; /* rechts Platz für Pfeil */
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 2px;

  color: rgba(245,245,245,0.92);
  font-family: inherit;
  font-size: 0.98rem;

  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;

  -webkit-appearance: none;
  appearance: none;

  /* Pfeil/Divider wie in deinem bestehenden Select-Block, aber sauber gescoped */
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(235,235,235,0.60) 50%),
    linear-gradient(135deg, rgba(235,235,235,0.60) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.10));
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    calc(100% - 2.7rem) 50%;
  background-size: 6px 6px, 6px 6px, 1px 55%;
  background-repeat: no-repeat;

  cursor: pointer;
}

/* Placeholder-Look (funktioniert, wenn required + value="" gesetzt ist) */
.contact #contact-form select:invalid{
  color: rgba(235,235,235,0.55);
}

.contact #contact-form select:focus{
  outline: none;
  border-color: rgba(200,161,90,0.55);
  background: rgba(200,161,90,0.05);
  box-shadow:
    0 0 0 3px rgba(200,161,90,0.14),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact #contact-form select:focus-visible{
  outline: 2px solid rgba(200,161,90,0.45);
  outline-offset: 2px;
}

.contact #contact-form select option{
  background: #0b0b0b;
  color: rgba(245,245,245,0.92);
}


/* Privacy checkbox row */
.contact .privacy{
  margin-top: 1.0rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;

  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;

  color: rgba(235,235,235,0.70);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.contact .privacy input[type="checkbox"]{
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: #b8924a; /* passt zu .btn.gold【turn9file3†style.css†L69-L75】 */
}

/* Links im Contact-Bereich */
.contact a{
  color: rgba(200,161,90,0.90);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,161,90,0.22);
  transition: color 220ms ease, border-color 220ms ease;
}
.contact a:hover{
  color: rgba(244,219,162,0.95);
  border-color: rgba(200,161,90,0.55);
}

/* Submit Button spacing */
.contact #submit-btn{
  margin-top: 0.6rem;
  justify-self: start;
  min-width: 190px;
}

/* Status line (optional: Klassen für JS) */
.contact .form-status{
  margin: 0.35rem 0 0;
  min-height: 1.2em;
  font-size: 0.92rem;
  color: rgba(235,235,235,0.70);
}
.contact .form-status.is-success{ color: rgba(200,161,90,0.95); }
.contact .form-status.is-error{ color: rgba(235,235,235,0.92); }

/* Disclaimer */
.contact .form-disclaimer{
  margin-top: 1.2rem;
  font-size: 0.86rem;
  color: rgba(235,235,235,0.58);
  line-height: 1.7;
}
.contact .form-disclaimer a{
  border-bottom-color: rgba(200,161,90,0.18);
}

/* Right column info groups */
.contact .contact-info h2{
 text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 300;
  font-variation-settings: "wght" 300;
}

.contact .info-group{
  padding-top: 1.05rem;
  margin-top: 1.05rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact .info-group:first-of-type{
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.contact .info-group .label{
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.82);
  margin-bottom: 0.35rem;
}

.contact .info-group .text{
  color: rgba(235,235,235,0.74);
  line-height: 1.65;
}

/* Trustline */
.contact .contact-trust{
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(235,235,235,0.66);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .contact{
    padding: 5.8rem 1.6rem;
  }
  .contact .contact-grid{
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .contact #submit-btn{
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 600px){
  .contact{
    padding: 5.2rem 1.2rem;
  }
  .contact .contact-form,
  .contact .contact-info{
    padding: 1.55rem 1.2rem;
  }
  .contact #contact-form input[type="text"],
  .contact #contact-form input[type="email"],
  .contact #contact-form input[type="tel"],
  .contact #contact-form textarea{
    padding: 0.78rem 0.85rem;
  }
}


/* ============================================================
   CONTACT TOPICS – ultra subtle (Breadcrumb/Pills)
   Paste at END of style.css
   ============================================================ */

/* Deep-link Scroll: Ziele nicht unter dem Header */
#contact-work, #contact-commission, #coupon, #kontakt{
  scroll-margin-top: 110px; /* ggf. an Headerhöhe anpassen */
}

/* 1) Topic-Leiste: klein, zentriert, keine „Karten-Optik“ */
.contact-topics{
  width: min(980px, calc(100% - 4rem));
  margin: 1.25rem auto 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;

  /* keine dominante Fläche */
  background: transparent;
}

/* 2) Topic-Item: wirkt wie „caption/breadcrumb“, nicht wie Card */
.topic-card{
  /* falls es ein <div> ist */
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.5rem 0.7rem;
  border-radius: 0; /* square passt zu deinem Luxus-Look */
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.14);
  box-shadow: none;
  backdrop-filter: none;

  transition: border-color 220ms ease, background-color 220ms ease, transform 180ms ease;
}

/* Wenn deine Topics als <a class="topic-card"> gebaut sind */
a.topic-card{
  text-decoration: none;
}

/* Pfeil wie Breadcrumb */
.topic-card::before{
  content: "›";
  opacity: 0.55;
  transform: translateY(-0.02rem);
  color: rgba(235,235,235,0.65);
}

/* 3) Typo: klein, editorial, nicht headline-groß */
.topic-card h2{
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-variation-settings: "wght" 520;
  color: rgba(200,161,90,0.78);
  line-height: 1.2;
}

/* Beschreibung/Buttons im Topic-Bereich entfernen (macht es „unmassiv“) */
.topic-card p,
.topic-card .btn,
.topic-card .luxe-textlink{
  display: none !important;
}

/* Hover: nur minimale Veredelung */
.topic-card:hover{
  border-color: rgba(200,161,90,0.22);
  background: rgba(0,0,0,0.20);
  transform: translateY(-1px);
}

/* Fokus sichtbar, aber fein */
.topic-card:focus,
.topic-card:focus-visible{
  outline: 2px solid rgba(200,161,90,0.35);
  outline-offset: 3px;
}

/* 4) Statt Topic-Card zu markieren: Zielsektion subtil highlighten */
#contact-work:target,
#contact-commission:target,
#coupon:target{
  outline: 1px solid rgba(200,161,90,0.18);
  box-shadow: 0 0 0 4px rgba(200,161,90,0.08);
  border-radius: 2px;
}

/* 5) Mobile: noch weniger Höhe */
@media (max-width: 700px){
  .contact-topics{
    width: calc(100% - 2.2rem);
    gap: 0.45rem;
    margin-top: 1.0rem;
  }
  .topic-card{
    padding: 0.46rem 0.62rem;
  }
  .topic-card h2{
    font-size: 0.70rem;
    letter-spacing: 0.18em;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: #151515;
  text-align: center;
  padding: 7rem 2rem;
}
.gallery h2 {
  color: #c8a15a;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
.gallery h3 {
  color: #ccc;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid img {
  border-radius: 4px;
  transition: transform 0.8s ease, opacity 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.04);
  opacity: 0.9;
}
/* ============================================================
   VITA + EXHIBITIONS – Editorial Luxury (SQUARE / whitespace / stable)
   + CV (Vita) – Meter (Sprachen/Fähigkeiten)
   REPLACE the whole previous block you pasted
   ============================================================ */

/* ------------------------------------------------------------
   BASE (Vita + Exhibitions) – applies to both sections
------------------------------------------------------------ */

:is(#vita, #exhibitions).profil-vita{
  /* Layout Tokens nur für diese Sections */
  --vita-axis-x: 28px;           /* Position der Achse im Timeline-Panel */
  --vita-axis-gap: 34px;         /* Abstand von Achse zu Content */
  --vita-panel-pad: clamp(1.9rem, 2.5vw, 2.7rem);
  --vita-line: rgba(255,255,255,0.06);
  --vita-line-soft: rgba(255,255,255,0.045);
  --vita-gold: rgba(200,161,90,0.80);

  padding: clamp(4.8rem, 6.2vw, 6.6rem) 2rem clamp(5.2rem, 7vw, 7.4rem);
  border-top: 1px solid var(--vita-line);
  background:
    radial-gradient(1100px 640px at 20% 10%, rgba(200,161,90,0.05), rgba(0,0,0,0) 62%),
    radial-gradient(900px 540px at 80% 18%, rgba(255,255,255,0.02), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(8,8,8,0.94) 100%);
}

:is(#vita, #exhibitions).profil-vita .container{
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- HEAD: explizit zentriert ---------- */
:is(#vita, #exhibitions).profil-vita .section-head{
  max-width: 980px;
  margin: 0 auto clamp(2.4rem, 3vw, 3.1rem);
  text-align: center;
}

:is(#vita, #exhibitions).profil-vita .section-head .luxe-kicker{
  margin: 0 0 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.72);
}

:is(#vita, #exhibitions).profil-vita .section-head h2{
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.22;
}

:is(#vita, #exhibitions).profil-vita .section-head .lead{
  margin: 1.05rem auto 0;
  max-width: 74ch;
  color: rgba(235,235,235,0.62);
  line-height: 1.95;
}

/* ---------- GRID ---------- */
:is(#vita, #exhibitions).profil-vita .profil-vita-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(1.8rem, 2.8vw, 2.8rem);
  align-items: start;
}

/* ---------- PANELS (square, ruhig, hochwertig) ---------- */
:is(#vita, #exhibitions).profil-vita .profil-vita-panel{
  border-radius: 0;
  background: rgba(255,255,255,0.010);
  border: 1px solid var(--vita-line);
  box-shadow: 0 28px 74px rgba(0,0,0,0.55);
  padding: var(--vita-panel-pad);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* feine Innenlinie (dezenter + mehr Weißraum) */
:is(#vita, #exhibitions).profil-vita .profil-vita-panel::before{
  content:"";
  position:absolute;
  inset: 18px;
  pointer-events:none;
  border: 1px solid rgba(200,161,90,0.075);
  opacity: 0.9;
}

/* ---------- TIMELINE PANEL ---------- */
/* DC: funktioniert für "Vita Timeline" UND "Ausstellungen Timeline" */
:is(#vita, #exhibitions).profil-vita .profil-vita-panel[aria-label$="Timeline"]{
  padding-left: calc(var(--vita-axis-x) + var(--vita-axis-gap) + 0.5rem);
}

/* Achse: sehr subtil, konstant */
:is(#vita, #exhibitions).profil-vita .profil-vita-panel[aria-label$="Timeline"]::after{
  content:"";
  position:absolute;
  top: 2.4rem;
  bottom: 2.4rem;
  left: var(--vita-axis-x);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(200,161,90,0.14),
    rgba(255,255,255,0.04),
    rgba(200,161,90,0.12)
  );
  opacity: 0.7;
}

/* ---------- YEAR BLOCKS ---------- */
:is(#vita, #exhibitions).profil-vita .profil-year{
  padding: clamp(1.9rem, 2.5vw, 2.7rem) 0;
  border-top: 1px solid var(--vita-line-soft);
}

:is(#vita, #exhibitions).profil-vita .profil-year:first-child{
  border-top: 0;
  padding-top: 0.6rem;
}

/* Head: stabil auf einer Linie (Jahr + Meta) */
:is(#vita, #exhibitions).profil-vita .profil-year__head{
  margin: 0 0 1.15rem;
  display: flex;
  align-items: baseline;
  gap: 1.3rem;
  position: relative;
  min-width: 0;
}

/* Marker sitzt nun auf Höhe der Jahreszahl */
:is(#vita, #exhibitions).profil-vita .profil-year__head::before{
  content:"";
  position:absolute;
  left: calc((var(--vita-axis-x) * -1) - (var(--vita-axis-gap)) - 2px);
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: rgba(200,161,90,0.70);
  box-shadow: 0 0 0 8px rgba(200,161,90,0.055);
}

:is(#vita, #exhibitions).profil-vita .profil-year__label{
  flex: 0 0 auto;
  min-width: 68px;
  color: rgba(200,161,90,0.86);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.15;
}

:is(#vita, #exhibitions).profil-vita .profil-year__meta{
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(235,235,235,0.76);
  letter-spacing: 0.02em;
  line-height: 1.45;

  /* verhindert „komisches Springen“ durch ungünstige Umbrüche */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Liste: weniger UI, mehr Editorial */
:is(#vita, #exhibitions).profil-vita .profil-vita-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
  color: rgba(235,235,235,0.68);
  line-height: 1.7;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-list li{
  position: relative;
  padding-left: 0.95rem;
  min-width: 0;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 0.85em;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.22);
}

/* Link: integriert, kein „Beitrag öffnen“-Button-Look */
:is(#vita, #exhibitions).profil-vita .profil-vita-list a{
  color: rgba(200,161,90,0.82);
  border-bottom: 1px solid rgba(200,161,90,0.20);
  text-decoration: none;
  white-space: nowrap;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-list a:hover{
  color: rgba(200,161,90,0.98);
  border-bottom-color: rgba(200,161,90,0.46);
}

/* ---------- SIDEBAR ---------- */
:is(#vita, #exhibitions).profil-vita .profil-vita-panel--sticky{
  position: sticky;
  top: 110px;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-dl{
  display: grid;
  gap: 1.15rem;
  margin: 1.35rem 0 0;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-dl > div{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--vita-line-soft);
}

:is(#vita, #exhibitions).profil-vita .profil-vita-dl dt{
  margin: 0;
  color: rgba(200,161,90,0.72);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-dl dd{
  margin: 0;
  color: rgba(235,235,235,0.72);
  line-height: 1.7;
}

/* CTA Buttons: dürfen nie überlaufen */
:is(#vita, #exhibitions).profil-vita .profil-vita-actions{
  margin-top: 1.75rem;
  display: grid;
  gap: 0.95rem;
}

:is(#vita, #exhibitions).profil-vita .profil-vita-actions .btn{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: center;
  border-radius: 0;
  padding: 1rem 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  :is(#vita, #exhibitions).profil-vita{
    padding: 3.9rem 1.4rem 5rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-panel--sticky{
    position: static;
  }

  /* Meta darf mobil umbrechen statt ellipsis */
  :is(#vita, #exhibitions).profil-vita .profil-year__meta{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-dl > div{
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-panel[aria-label$="Timeline"]{
    padding-left: calc(var(--vita-axis-x) + 26px);
  }

  :is(#vita, #exhibitions).profil-vita{
    --vita-axis-x: 22px;
    --vita-axis-gap: 26px;
  }

  :is(#vita, #exhibitions).profil-vita .profil-year__head::before{
    left: calc((var(--vita-axis-x) * -1) - (var(--vita-axis-gap)) - 2px);
  }
}

@media (max-width: 600px){
  :is(#vita, #exhibitions).profil-vita{
    padding: 3.2rem 1.1rem 4.4rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-panel{
    padding: 1.25rem 1.15rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-vita-panel::before{
    inset: 14px;
  }

  :is(#vita, #exhibitions).profil-vita .profil-year__head{
    flex-direction: column;
    gap: 0.55rem;
  }

  :is(#vita, #exhibitions).profil-vita .profil-year__label{
    min-width: 0;
  }
}
/* ============================================================
   PATCH – Overflow & Typo (Vita/CV + Exhibitions)
   Place AFTER the main Vita/Exhibitions block
   Ziel:
   - E-Mail/Links brechen sauber (nicht mitten im Wort)
   - keine Ellipsis bei langen Job-Titeln (Meta)
   - Typo minimal ruhiger
============================================================ */

/* 0) Grundsicherung: Grid darf schrumpfen */
:is(#vita, #exhibitions).profil-vita .profil-vita-dl dd{
  min-width: 0;
  font-size: 0.98rem;
}

/* 1) Sidebar Values (E-Mail/Telefon/Links):
      - NICHT 'anywhere' (das bricht zu aggressiv)
      - stattdessen break-word + normal word-break */
:is(#vita, #exhibitions).profil-vita .profil-vita-dl dd a{
  display: inline;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word; /* bricht, wenn nötig */
  word-break: normal;        /* verhindert "MIELKE@CAROG" / harte Brüche */
  hyphens: none;
}

/* Optional (nur falls irgendwo uppercase/spacing auf Values wirkt) */
#vita.profil-vita .profil-vita-dl dd{
  text-transform: none;
  letter-spacing: 0;
}

/* 2) Timeline-Head: keine "..." mehr (Vita + Exhibitions) */
:is(#vita, #exhibitions).profil-vita .profil-year__meta{
  white-space: normal;     /* statt nowrap */
  overflow: visible;
  text-overflow: unset;
  hyphens: auto;
  font-size: 0.95rem;      /* minimal kleiner */
}

/* 3) Liste minimal ruhiger */
:is(#vita, #exhibitions).profil-vita .profil-vita-list{
  font-size: 0.98rem;
}

/* 4) Wenn es schmal wird: Meta unter das Jahr umbrechen */
@media (max-width: 1100px){
  :is(#vita, #exhibitions).profil-vita .profil-year__head{
    flex-wrap: wrap;
  }
  :is(#vita, #exhibitions).profil-vita .profil-year__meta{
    flex-basis: 100%;
  }
}

/* ------------------------------------------------------------
   CV (Vita) – Meter (Sprachen/Fähigkeiten)
   DC: nutzt Vita-Tokens, fällt sauber zurück.
------------------------------------------------------------ */

#vita.profil-vita.profil-cv{
  /* lokale Tokens nur für CV-Module */
  --cv-sep: var(--vita-line-soft, rgba(255,255,255,0.045));
  --cv-gold: var(--vita-gold, rgba(200,161,90,0.80));
  --cv-text: rgba(235,235,235,0.74);

  --cv-meter-size: 10px;
  --cv-meter-gap: 6px;
  --cv-meter-border: rgba(255,255,255,0.14);
  --cv-meter-bg: rgba(255,255,255,0.05);
  --cv-meter-on: rgba(200,161,90,0.55);
  --cv-meter-on-border: rgba(200,161,90,0.35);
  --cv-meter-glow: rgba(200,161,90,0.08);
}

/* links: gestapelte Panels (Beruf/Ausbildung) */
#vita.profil-vita.profil-cv .profil-cv-stack{
  display: grid;
  gap: clamp(1.1rem, 1.6vw, 1.4rem);
}

/* Block-Trenner innerhalb des Sticky-Panels */
#vita.profil-vita.profil-cv .profil-cv-block{
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--cv-sep);
}

#vita.profil-vita.profil-cv .profil-cv-h4{
  margin: 0 0 0.85rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.84rem;
  color: rgba(200,161,90,0.72);
}

/* Meter-Listen */
#vita.profil-vita.profil-cv .profil-cv-meterlist{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

#vita.profil-vita.profil-cv .profil-cv-meterlist li{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

#vita.profil-vita.profil-cv .profil-cv-meterlabel{
  color: var(--cv-text);
  line-height: 1.35;
  min-width: 0;
}

/* 5er-Blocks (Squares) */
#vita.profil-vita.profil-cv .profil-cv-meter{
  display: inline-flex;
  gap: var(--cv-meter-gap);
  align-items: center;
  flex: 0 0 auto;
}

#vita.profil-vita.profil-cv .profil-cv-meter i{
  width: var(--cv-meter-size);
  height: var(--cv-meter-size);
  display: inline-block;
  border-radius: 0;
  border: 1px solid var(--cv-meter-border);
  background: var(--cv-meter-bg);
}

#vita.profil-vita.profil-cv .profil-cv-meter i.on{
  border-color: var(--cv-meter-on-border);
  background: var(--cv-meter-on);
  box-shadow: 0 0 0 3px var(--cv-meter-glow);
}

/* Responsive – orientiert an den bestehenden Vita-Breakpoints */
@media (max-width: 980px){
  #vita.profil-vita.profil-cv .profil-cv-meterlist li{
    grid-template-columns: 1fr;
    gap: 0.55rem;
    align-items: start;
  }
}

@media (max-width: 600px){
  #vita.profil-vita.profil-cv{
    --cv-meter-size: 9px;
    --cv-meter-gap: 5px;
  }
}

/* ============================================================
   PRESSE – Editorial Luxury (SQUARE / whitespace / isolated)
   FIX: Sidebar-Buttons / Grid-Overflow / min-width issues
   Scoped to: #press.profil-presse + .profil-presse-*
   REPLACE the whole previous Presse block with this one
   ============================================================ */

#press.profil-presse{
  position: relative;
  overflow: hidden;
  padding: clamp(4.6rem, 6vw, 6.4rem) 2rem clamp(5.2rem, 7vw, 7.2rem);
  border-top: 1px solid rgba(255,255,255,0.06);

  /* nahe an available-teaser--luxe */
  background:
    radial-gradient(1100px 600px at 18% 26%, rgba(200,161,90,0.10), rgba(0,0,0,0) 62%),
    radial-gradient(900px 520px at 82% 72%, rgba(200,161,90,0.06), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

/* IMPORTANT: verhindert “läuft aus dem Rahmen” durch globale box-model / min-width */
#press.profil-presse,
#press.profil-presse *{
  box-sizing: border-box;
  min-width: 0;
}

#press.profil-presse::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 0.055;
  background:
    linear-gradient(to right, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 140px 140px,
    linear-gradient(to bottom, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 140px 140px;
}

#press.profil-presse::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(200,161,90,0.00),
    rgba(200,161,90,0.18),
    rgba(200,161,90,0.00)
  );
  pointer-events:none;
  opacity: 0.32;
}

#press.profil-presse .container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
#press.profil-presse .section-head{
  max-width: 920px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

#press.profil-presse .section-head .luxe-kicker{
  margin: 0 0 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.78);
}

#press.profil-presse .section-head h2{
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#press.profil-presse .section-head .lead{
  margin: 0.95rem auto 0;
  max-width: 74ch;
  color: rgba(235,235,235,0.62);
  line-height: 1.95;
}

/* Layout (minmax(0,…) = kein Überlaufen in CSS Grid) */
#press.profil-presse .profil-presse-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
  align-items: start;
}

#press.profil-presse .profil-presse-aside{
  min-width: 0;
}

/* Panels */
#press.profil-presse .profil-presse-panel{
  border-radius: 0;
  background: rgba(255,255,255,0.010);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 66px rgba(0,0,0,0.55);
  padding: clamp(1.7rem, 2.2vw, 2.4rem);
  position: relative;
  overflow: hidden; /* clips inner overflow just in case */
}

#press.profil-presse .profil-presse-panel::before{
  content:"";
  position:absolute;
  inset: 16px;
  pointer-events:none;
  border: 1px solid rgba(200,161,90,0.07);
  opacity: 0.85;
}

/* Typography inside */
#press.profil-presse .profil-presse-kicker{
  margin: 0 0 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(200,161,90,0.80);
}

#press.profil-presse .profil-presse-h3{
  margin: 0 0 1.05rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

#press.profil-presse .profil-presse-lead{
  margin: 0 0 1.15rem;
  color: rgba(235,235,235,0.78);
  line-height: 1.9;
}

/* Meta grid */
#press.profil-presse .profil-presse-meta{
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
}

#press.profil-presse .profil-presse-meta > div{
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

#press.profil-presse .profil-presse-meta > div span:first-child{
  color: rgba(200,161,90,0.72);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

#press.profil-presse .profil-presse-meta > div span:last-child{
  color: rgba(235,235,235,0.72);
  line-height: 1.65;
}

/* List rows */
#press.profil-presse .profil-presse-list{
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

#press.profil-presse .profil-presse-list li{
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(235,235,235,0.72);
  line-height: 1.7;
}

#press.profil-presse .profil-presse-list .tag{
  color: rgba(200,161,90,0.72);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.70rem;
}

#press.profil-presse .profil-presse-list .item{
  color: rgba(235,235,235,0.74);
}

/* Actions (FIX: Buttons laufen aus dem Rahmen) */
#press.profil-presse .profil-presse-actions{
  margin-top: 1.7rem;
  display: grid;
  gap: 0.85rem;
}

#press.profil-presse .profil-presse-actions .btn{
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;     /* wenn mal ein langes Wort kommt */
  padding: 0.95rem 0.9rem;

  border-radius: 0;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  line-height: 1.2;
}

/* Fine */
#press.profil-presse .profil-presse-fine{
  margin-top: 1.2rem;
  color: rgba(235,235,235,0.45);
  font-size: 0.75rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 980px){
  #press.profil-presse{
    padding: 3.8rem 1.4rem 4.8rem;
  }

  #press.profil-presse .profil-presse-grid{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  #press.profil-presse .profil-presse-meta > div{
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  #press.profil-presse .profil-presse-list li{
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 600px){
  #press.profil-presse{
    padding: 3.2rem 1.1rem 4.2rem;
  }

  #press.profil-presse .profil-presse-panel{
    padding: 1.25rem 1.1rem;
  }
}


/* Optional: visuelle Hierarchie im Footer */
.footer-social--primary{
  margin-bottom: 1rem;
}
.footer-minihead{
  margin: 0.06rem 0 0.6rem;
  color: rgba(200,161,90,0.9);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}
.social-link.is-cta{
  border-color: rgba(200,161,90,0.35);
}

/* ============================================================
   FOOTER – Carographic by Carolyn Mielke (überarbeitet)
   ============================================================ */
.footer {
  background: #000;
  color: #f0f0f0;
  padding: 5rem 2rem 2rem;
  border-top: 1px solid #222;
  font-family: 'Raleway', sans-serif;
}

/* GRID-Layout mit großzügigem Weißraum */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: left;
}

.footer h4 {
  color: #c8a15a;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.footer address {
  font-style: normal;
  color: #ccc;
  line-height: 1.8;
  font-size: 0.85rem;
	  display: block;
  margin-bottom: 0.35rem;
}
/* Footer: Kontaktlinks im <address> immer untereinander */
.footer address a{
  display: block;
  margin-bottom: 0.35rem;
}
.footer address .footer-line{
  display: block;
	 margin-bottom: 0.35rem;
}


.footer-minihead{
  margin: 1rem 0 0.5rem; 
  opacity: 0.95;
}
.footer-social{
  margin-top: 0.9rem;        /* vorher 1.4rem */
}
.footer-social--primary{
  margin-top: 0.6rem;
  margin-bottom: 0.45rem;
}
.footer a:not(.btn):not(.social-link){
  color: #ccc;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.footer a:not(.btn):not(.social-link):hover{
  color: #c8a15a;
}
.footer a:hover {
  color: #c8a15a;
}

/* === SOCIAL ICONS – Fine Art Edition === */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
   gap: 1rem;                      /* mehr Luft */
  margin-top: 1.4rem;
}

.footer-social a {
  color: #d6b76e;               /* etwas wärmeres Gold */
     font-size: 1.05rem;   /* vorher 0.95rem */
  line-height: 1;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0.85;
  transform: translateY(0);
}

/* sanfter Hover-Effekt mit Glow & Aufleuchten */
.footer-social a:hover {
  color: #f4dba2;
  opacity: 1;
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(244, 219, 162, 0.4);
}

/* Icons gleichmäßig ausrichten */
.footer-social i {
  transition: transform 0.3s ease, filter 0.4s ease;
	 display: inline-block;
  transform: translateY(1px);
	
}

.footer-social a:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 5px rgba(244, 219, 162, 0.5));
}
.footer a:focus-visible{
  outline: 2px solid rgba(200,161,90,0.55);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Abstand für kleinere Viewports */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
    gap: 1.2rem;
  }
}

/* === BOTTOM === */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.04em;
}
.footer-bottom p {
  margin: 0;
}

.footer-line{ display:block; }

.footer-note{
  margin: 1rem 0 0;
  color: #aaa;
  line-height: 1.7;
  font-size: 0.75rem;
  max-width: 52ch;
}
.footer-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}
.footer-cta .btn{
  margin-bottom: 0;      /* Footer-Link-Regel hatte margin-bottom */
  display: inline-flex;  /* Button-Layout sicherstellen */
}
/* Listen statt <br> */
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li{ margin-bottom: 0.4rem; }

/* Screenreader-only (für Iconlinks) */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-columns {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* ============================================================
   ANIMATIONEN + BARREIREFREIHEIT
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #c8a15a;
  outline-offset: 3px;
}

/* optional Fallback für alte Browser */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[role="button"]:focus {
  outline: 2px solid #c8a15a;
  outline-offset: 3px;
}

/* ===========================
   SUB-BANNER (Unterseiten Placeholder)
   =========================== */
.sub-banner.hero-intro{
  height: 42vh;
  min-height: 320px;
  max-height: 320px;

  /* flacher Look: Content eher unten statt perfekt zentriert */
  place-items: end center;

  /* hero-intro setzt max-width/padding bereits neutral – hier absichern */
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 900px){
  .sub-banner.hero-intro{
    height: 38vh;
    min-height: 260px;
    max-height: 320px;
  }
}
/* ===========================
   SUB BANNER – Luxury (Clean)
=========================== */

.sub-banner__content{
  position: relative;
  z-index: 10;
  width: min(1100px, calc(100% - 4rem));
  margin: 0 auto;

  /* Abstand unter fixed Header */
  padding-top: clamp(5.6rem, 10vh, 7.2rem);
  padding-bottom: clamp(2.2rem, 3.5vh, 3.1rem);

  text-align: center; /* Subbanner wirkt hochwertiger zentriert */
}

@media (max-width: 700px){
  .sub-banner__content{
    width: calc(100% - 2.2rem);
    padding-bottom: 2.1rem;
  }
}

.sub-banner__inner{
  max-width: 860px;
  margin: 0 auto;
}
/* SUB-BANNER – Kicker wie HERO (Band + Typo) */
.sub-banner__kicker{
  margin: 0 0 0.85rem;
  text-align: center;
  text-shadow: 0 10px 24px rgba(0,0,0,0.55);
}

/* WICHTIG: Typo + Farbe auf dem Span erzwingen */
.sub-banner__kicker .hero-band.hero-band--kicker{
  /* wie hero-kicker */
  font-size: 0.78rem;
  text-transform: uppercase !important;
  letter-spacing: 0.32em !important;
  color: rgba(200,161,90,0.88) !important;
  font-weight: 400;

  /* Band wie Hero */
  display: inline-block;
  padding: 0.06em 0.30em;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% 1.35em;
  background-image: linear-gradient(rgba(12,12,12,0.68), rgba(12,12,12,0.68));
}

/* Title */
.sub-banner__inner h1{
  margin: 0;
   font-weight: 300;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  line-height: 1.06;
 font-size: clamp(2.0rem, 3.6vw, 3.15rem);

  color: rgba(245,245,245,0.94);
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

/* Optional: kleine Unterzeile */
.sub-banner__inner .sub-banner__lead{
  margin: 0.95rem auto 0;
  max-width: 70ch;
  color: rgba(235,235,235,0.76);
  font-size: 1.02rem;
  line-height: 1.75;
  text-shadow: 0 10px 26px rgba(0,0,0,0.55);
}

/* Mobile Typo */
@media (max-width: 520px){
  .sub-banner__kicker .hero-band.hero-band--kicker{ letter-spacing: 0.18em; }
  .sub-banner__inner h1{ letter-spacing: 0.03em; }
}


/* ===========================
   LEGAL PAGE (Impressum Content)
   =========================== */
.legal-page{
  position: relative;
  max-width: none;
  margin: 0;
  padding: 6.5rem 2rem;

  background:
    radial-gradient(1000px 520px at 18% 18%, rgba(200,161,90,0.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px 520px at 86% 72%, rgba(200,161,90,0.06), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(14,14,14,0.72) 55%, rgba(10,10,10,0.85) 100%);
  overflow: hidden;
}

.legal-page__inner{
  max-width: 980px;
  margin: 0 auto;
}

.legal-page__head{
  margin-bottom: 2.6rem;
}

.legal-page__lead{
  margin: 0.35rem 0 0;
  max-width: 78ch;
  color: rgba(235,235,235,0.82);
}

.legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 2.6rem;
}
/* IMPRESSUM: wenn eine 3. Card in der legal-grid hängt, soll sie vollbreit laufen */
.legal-card--wide{
  grid-column: 1 / -1;
}

@media (max-width: 980px){
  .legal-grid{
    grid-template-columns: 1fr;
  }
}

.legal-card{
  position: relative;
  overflow: hidden;

  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(200,161,90,0.22);
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  padding: 1.7rem 1.8rem;
}

.legal-card::before{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  opacity: 0.10;
  background: radial-gradient(700px 360px at 22% 18%, rgba(200,161,90,0.28), rgba(0,0,0,0) 60%);
}

.legal-address{
  margin: 0.9rem 0 0;
  font-style: normal;
  color: #ccc;
}

.legal-list{
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.legal-list li{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-list span{
  color: rgba(235,235,235,0.72);
  font-size: 0.80rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-bullets{
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #ccc;
}

.legal-mini{
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200,161,90,0.14);
}

.legal-page a{
  color: rgba(200,161,90,0.92);
  border-bottom: 1px solid rgba(200,161,90,0.22);
  transition: color 220ms ease, border-color 220ms ease;
}

.legal-page a:hover{
  color: #f2f2f2;
  border-bottom-color: rgba(200,161,90,0.45);
}

.legal-block{
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(200,161,90,0.14);
}

.legal-block h3{
  margin: 0 0 0.8rem;
  color: rgba(200,161,90,0.90);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.98rem;
  font-weight: 400;
}

.legal-muted{
  color: rgba(235,235,235,0.74);
}
/* ===========================
   Datenschutz: Ergänzungen zum Legal-Layout
   =========================== */

.legal-page--privacy .legal-page__head h2{
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 400;
}

/* TOC */
.legal-toc{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.6rem 0 2.2rem;
  padding: 1rem;

  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(200,161,90,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

@media (max-width: 980px){
  .legal-toc{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .legal-toc{ grid-template-columns: 1fr; }
}

.legal-toc a{
  display: block;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
  border-bottom: none;
  color: rgba(235,235,235,0.82);
}

.legal-toc a:hover{
  background: rgba(200,161,90,0.08);
  border-color: rgba(200,161,90,0.22);
  color: #f2f2f2;
}

/* Section spacing / anchors */
.legal-section{
  scroll-margin-top: 110px; /* für fixed Header */
}

.legal-section h4{
  margin: 1.2rem 0 0.5rem;
  font-weight: 500;
  color: rgba(235,235,235,0.90);
}

/* Definition list (Verantwortlich-Karte) */
.legal-dl{
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.legal-dl > div{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-dl dt{
  margin: 0;
  color: rgba(235,235,235,0.72);
  font-size: 0.80rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.legal-dl dd{
  margin: 0;
  color: rgba(235,235,235,0.72);
  line-height: 1.75;
}
.legal-page--terms .legal-form{
margin-top: 1rem;
padding: 1.25rem 1.2rem;
background: rgba(255,255,255,0.02);
border: 1px solid rgba(255,255,255,0.08);
}

.legal-page--terms .legal-form p{
margin: 0 0 0.75rem;
color: rgba(235,235,235,0.76);
line-height: 1.75;
}

.legal-page--terms .legal-form p:last-child{
margin-bottom: 0;
}


/* ============================================================
   COMMISSIONS – Process + FAQ (minimal additions, scoped)
   ============================================================ */
#process, #faq{
  scroll-margin-top: 110px; /* falls dein Header sticky ist */
}

/* Sidebar-Buttons: nie über den Rahmen */
#process .commission-primary .btn,
#faq .commission-primary .btn{
  width: 100%;
  white-space: normal;
  text-align: center;
}

/* ============================================================
   COMMISSIONS – Detail Gallery (scoped, luxe, square)
   Add below your existing commissions rules
   ============================================================ */

.commissions.commissions-luxe .commission-media{
  margin-top: 1.2rem;
}

.commissions.commissions-luxe .commission-media-grid{
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1.05rem);
  grid-template-columns: repeat(12, 1fr);
}

/* Tile */
.commissions.commissions-luxe .media-tile{
  position: relative;
  display: block;
  grid-column: span 4;     /* 3 pro Reihe */
  border-radius: 0;        /* square */
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  transform: translateZ(0);
}

/* Varianten für „kuratiertes“ Grid */
.commissions.commissions-luxe .media-tile.is-wide{ grid-column: span 8; }
.commissions.commissions-luxe .media-tile.is-tall{ grid-column: span 4; grid-row: span 2; }

/* Bild */
.commissions.commissions-luxe .media-tile img{
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;        /* Grundformat */
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 260ms ease, opacity 260ms ease;
}

/* Für „tall“ etwas anderes Verhältnis */
.commissions.commissions-luxe .media-tile.is-tall img{
  aspect-ratio: 3 / 4;
}

/* Hover – sehr subtil (keine UI-Optik) */
@media (hover:hover){
  .commissions.commissions-luxe .media-tile:hover img{
    transform: scale(1.03);
  }
  .commissions.commissions-luxe .media-tile:hover{
    border-color: rgba(200,161,90,0.22);
  }
}

/* Responsive */
@media (max-width: 980px){
  .commissions.commissions-luxe .media-tile{ grid-column: span 6; }      /* 2 pro Reihe */
  .commissions.commissions-luxe .media-tile.is-wide{ grid-column: span 12; }
  .commissions.commissions-luxe .media-tile.is-tall{ grid-column: span 6; grid-row: auto; }
}

@media (max-width: 600px){
  .commissions.commissions-luxe .media-tile{ grid-column: span 12; }     /* 1 pro Reihe */
  .commissions.commissions-luxe .media-tile.is-tall{ grid-column: span 12; }
}


/* ============================================================
   STATEMENT – Luxe / Editorial (isoliert, kollisionsfrei)
   Scope: #statement.statement-luxe
============================================================ */

#statement.statement-luxe{
   position: relative;
  overflow: hidden;

  /* full width, nicht eingekastelt */
  width: 100%;
  max-width: none;


  /* vertikales Spacing, X-Padding kommt über .container */
  padding: clamp(4.2rem, 6vw, 6.2rem) 0 !important;

  background: none !important;
}
/* Container zentriert den Inhalt */
#statement.statement-luxe > .container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Full-width Backdrop wie bei deinen Luxe-Sections */
#statement.statement-luxe::before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(1000px 520px at 16% 22%, rgba(200,161,90,0.10), rgba(0,0,0,0) 62%),
    radial-gradient(900px 520px at 86% 72%, rgba(200,161,90,0.06), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #0b0b0b 0%, #101010 55%, #0b0b0b 100%);
}

/* sehr subtil: Grid-Textur */
#statement.statement-luxe::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:100vw;
  transform:translateX(-50%);
  pointer-events:none;
  z-index:0;

  opacity: 0.06;
  background:
    linear-gradient(to right, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 140px 140px,
    linear-gradient(to bottom, rgba(200,161,90,0.35) 1px, transparent 1px) 0 0 / 140px 140px;
}

/* Safety: Box-model + Grid shrink (klassischer Fehler bei 2-Spalten) */
#statement.statement-luxe,
#statement.statement-luxe *{
  box-sizing: border-box;
  min-width: 0;
}

#statement.statement-luxe .container{
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Head */
#statement.statement-luxe .statement-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.6rem;
}

#statement.statement-luxe .statement-kicker{
  margin: 0 0 0.75rem;
  color: rgba(200,161,90,0.82);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

#statement.statement-luxe .statement-lead{
  margin: 0.95rem auto 0;
  max-width: 74ch;
  color: rgba(235,235,235,0.70);
  line-height: 1.95;
}

/* Grid */
#statement.statement-luxe .statement-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  align-items: start;
}

/* Panels */
#statement.statement-luxe .stm-panel{
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(200,161,90,0.14);
  outline: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.60);
  border-radius: 2px;
  padding: clamp(1.7rem, 2.4vw, 2.4rem);
  overflow: hidden;
  position: relative;
}

#statement.statement-luxe .stm-panel::before{
  content:"";
  position:absolute;
  inset: 16px;
  pointer-events:none;
  border: 1px solid rgba(200,161,90,0.075);
  opacity: 0.8;
}

/* Copy */
#statement.statement-luxe .stm-text{
  color: rgba(235,235,235,0.78);
  line-height: 1.95;
  margin: 0 0 1.1rem;
}

#statement.statement-luxe .stm-plaque{
  margin: 1.35rem 0 0;
  max-width: 52ch;
}

/* Actions */
#statement.statement-luxe .stm-actions{
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

#statement.statement-luxe .stm-fine{
  margin: 1.1rem 0 0;
  color: rgba(235,235,235,0.52);
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: 62ch;
}

/* Portrait */
#statement.statement-luxe .stm-portrait{
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

#statement.statement-luxe .stm-frame{
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  border-radius: 2px;

  background: rgba(0,0,0,0.22);
  outline: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
}

#statement.statement-luxe .stm-frame img{
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  filter: contrast(1.02) saturate(0.95);
}

#statement.statement-luxe .stm-caption{
  margin: 0;
  color: rgba(235,235,235,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px){
  #statement.statement-luxe{
    padding: 6rem 1.6rem;
  }

  #statement.statement-luxe .statement-grid{
    grid-template-columns: 1fr;
  }

  #statement.statement-luxe .statement-head{
    margin-bottom: 2.0rem;
  }

  #statement.statement-luxe .stm-panel--media{
    text-align: center;
  }

  #statement.statement-luxe .stm-frame{
    margin: 0 auto;
    max-width: 560px;
  }

  #statement.statement-luxe .stm-actions{
    justify-content: center;
  }
}


/* ============================================================
   ERROR 404
   ============================================================ */
#error-404.contact{
  padding: 3.2rem 2rem 4.2rem; /* statt 6.2 / 6.8 */
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(200,161,90,0.07), rgba(0,0,0,0) 62%),
    linear-gradient(180deg, #0b0b0b 0%, #0a0a0a 100%);
}

#error-404.contact::after{
  background: radial-gradient(1200px 700px at 50% 10%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.62) 100%);
}

/* Buttons in der Card linksbündig (nicht zentriert) */
#error-404 .hero-actions{
  justify-content: flex-start;
  gap: 0.8rem;
}

/* 404-Zahl als klare Hierarchie */
#error-404 .contact-form h2{
  font-size: 2.2rem;
  letter-spacing: 0.14em;
	text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Untertitel etwas kompakter */
#error-404 .contact-form h3{
  margin-bottom: 1.0rem;
}

/* „Beliebt“-Panel: Links etwas kompakter */
#error-404 .contact-info .text{
  line-height: 1.55;
}

/* Optional: Cards minimal kompakter */
@media (min-width: 981px){
  #error-404 .contact-form,
  #error-404 .contact-info{
    padding: 1.75rem 1.75rem;
  }
}


/* ============================================================
   COMMISSIONS – MATERIALITÄT & DETAILS (scoped / compact / non-click)
   Scope: #details.commissions-details + .details-*
   ============================================================ */

#details.commissions-details{
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 5.6vw, 6.0rem) 2rem clamp(4.4rem, 6.4vw, 6.6rem);
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(1100px 650px at 20% 20%, rgba(200,161,90,0.08), rgba(0,0,0,0) 62%),
    radial-gradient(900px 520px at 78% 72%, rgba(255,255,255,0.03), rgba(0,0,0,0) 64%),
    linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(8,8,8,0.95) 100%);
}

#details.commissions-details .container{
  max-width: 1180px;
  margin: 0 auto;
}

/* Header: wie deine anderen Commissions-Sektionen */
#details.commissions-details .section-head{
  max-width: 920px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

/* Panel: „paper“ / square */
#details.commissions-details .details-panel{
  border-radius: 0;
  background: rgba(255,255,255,0.010);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 66px rgba(0,0,0,0.55);
  padding: clamp(1.2rem, 1.8vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

#details.commissions-details .details-panel::before{
  content:"";
  position:absolute;
  inset: 16px;
  pointer-events:none;
  border: 1px solid rgba(200,161,90,0.07);
  opacity: 0.85;
}

/* MOSAIC: bewusst begrenzt (nicht „riesig“), sauber skaliert */
#details.commissions-details .details-mosaic{
  position: relative;
  width: min(1040px, 100%);
  margin: 0 auto;

  /* Größe deckeln, damit es nicht den View sprengt */
  max-height: clamp(520px, 56vh, 680px);
  overflow: hidden;

  display: grid;
  gap: 12px;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: 1fr;
  grid-template-areas:
    "tall  wide   wide"
    "tall  wide2  square"
    "tall2 wide2  square2";
}

/* Layout-Targets */
#details.commissions-details .details-item{ margin: 0; }
#details.commissions-details .is-tall   { grid-area: tall; }
#details.commissions-details .is-wide   { grid-area: wide; }
#details.commissions-details .is-square { grid-area: square; }
#details.commissions-details .is-wide2  { grid-area: wide2; }
#details.commissions-details .is-square2{ grid-area: square2; }
#details.commissions-details .is-tall2  { grid-area: tall2; }

/* Rahmen / Look: square + subtil */
#details.commissions-details .details-item{
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55);
  overflow: hidden;
  position: relative;
}

/* „Copy-Schutz light“: nicht anklickbar/ziehbar/markierbar */
#details.commissions-details .details-mosaic,
#details.commissions-details .details-item,
#details.commissions-details .details-item img{
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

#details.commissions-details .details-item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* wichtig: keine Klicks, kein „Open image in new tab“ über UI */
  pointer-events: none;
}

/* optionales, sehr subtiles Watermark-Feeling (ohne Text) */
#details.commissions-details .details-item::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(600px 280px at 20% 15%, rgba(200,161,90,0.06), rgba(0,0,0,0) 60%);
  opacity: 0.9;
}

/* Fine print */
#details.commissions-details .details-fine{
  margin: 1.05rem auto 0;
  max-width: 86ch;
  color: rgba(235,235,235,0.45);
  font-size: 0.75rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Responsive */
@media (max-width: 980px){
  #details.commissions-details{
    padding: 3.8rem 1.4rem 4.8rem;
  }

  #details.commissions-details .details-mosaic{
    max-height: none;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "wide  wide"
      "tall  square"
      "wide2 wide2"
      "tall2 square2";
  }
}

@media (max-width: 600px){
  #details.commissions-details{
    padding: 3.2rem 1.1rem 4.2rem;
  }

  #details.commissions-details .details-panel{
    padding: 1.1rem 1.0rem;
  }

  #details.commissions-details .details-mosaic{
    grid-template-columns: 1fr;
    grid-template-areas:
      "wide"
      "tall"
      "wide2"
      "square"
      "tall2"
      "square2";
  }

  #details.commissions-details .details-fine{
    text-align: left;
  }
}
/* Deep-link Scroll: Ziele nicht unter dem Header */
#contact-work, #contact-commission, #coupon, #kontakt{
  scroll-margin-top: 110px;
}

/* ============================================================
   COUPON – Lux, klar, kompakt (NO rounded corners)
   ============================================================ */

#coupon{ scroll-margin-top: 110px; }

.coupon-luxe{
  position: relative;
  padding: clamp(44px, 5vw, 66px) 0;
}

.coupon-luxe__inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
}

/* dezenter Lux-Glow (ohne Rahmen-Linien) */
.coupon-luxe::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(900px 420px at 50% 0%,
      rgba(200,161,90,0.16),
      rgba(0,0,0,0) 65%);
  opacity: .9;
}

.coupon-luxe__head{
  text-align: center;
  margin-bottom: clamp(20px, 2.6vw, 30px);
}

.coupon-luxe__kicker{
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.78);
}

.coupon-luxe__title{
  margin: 0 0 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,161,90,0.92);
  font-size: clamp(2.0rem, 3.2vw, 2.6rem);
}

.coupon-luxe__lead{
  margin: 0 auto;
  max-width: 72ch;
  line-height: 1.55;
  color: rgba(235,235,235,0.82);
  font-size: 1.02rem;
}

/* 2-Spalten Layout: links Hero, rechts Content */
.coupon-luxe__grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  margin-top: 22px;
}

@media (max-width: 980px){
  .coupon-luxe__grid{
    grid-template-columns: 1fr;
  }
}

/* HERO (Hochformat, NICHT beschneiden) */
.coupon-luxe__hero{ margin: 0; }

.coupon-luxe__hero-frame{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  padding: 14px;
}

.coupon-luxe__hero-frame img{
  display:block;
  width: 100%;
  height: 620px;                 /* kompakt, kein Full-Size */
  object-fit: contain;           /* WICHTIG: kein Crop */
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

@media (max-width: 980px){
  .coupon-luxe__hero-frame img{ height: 380px; }
}

.coupon-luxe__hero-cap{
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235,235,235,0.68);
}

/* Steps: sauber, lesbar, ohne „Ziffern-Leiste“ */
.coupon-steps{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.coupon-step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.coupon-step__no{
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border: 1px solid rgba(200,161,90,0.35);
  color: rgba(200,161,90,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-indent: 0.12em;
}

.coupon-step__txt{
  color: rgba(240,240,240,0.82);
  line-height: 1.45;
  font-size: 1.0rem;
}

.coupon-step__muted{
  color: rgba(240,240,240,0.55);
  font-size: 0.95em;
}

/* Buttons: kompakter + edler */
.coupon-luxe__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 10px;
}

.coupon-luxe__btn{
  min-width: 180px;
  padding: 0.85rem 1.05rem;
  letter-spacing: 0.16em;
  border-radius: 0 !important; /* NO rounded corners */
}

.coupon-luxe__note{
  margin: 0 0 18px;
  color: rgba(235,235,235,0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Coupon Products: clean luxury cards (no rounded corners) --- */
.coupon-products{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

/* Card */
.coupon-card{
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(212,175,55,.16);
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
  min-height: 240px;
}

/* Square thumbnail (no crop) */
.coupon-thumb{
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  padding: 10px;
  aspect-ratio: 1 / 1;
}

.coupon-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;          /* IMPORTANT: no cropping */
  display: block;
  filter: saturate(.92) contrast(1.02);
}

/* Header: fixed structure prevents ugly line breaks */
.coupon-card__head{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding-top: 2px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Title: keep in one line, no hyphenation */
.coupon-card__title{
  margin: 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(212,175,55,.92);
  white-space: nowrap;          /* prevents WERTGUTSCHEI- */
  hyphens: none;
  -webkit-hyphens: none;
  overflow: hidden;
  text-overflow: ellipsis;      /* only if extremely narrow */
}

/* Price right-aligned, stable */
.coupon-card__price{
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.62);
  white-space: nowrap;
}

/* Description: clean wrapping, no weird hyphenation */
.coupon-card__desc{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
  font-size: 14px;

  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;    /* breaks only when needed */
  word-break: normal;

  display: -webkit-box;         /* clamp for tidy cards */
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA: elegant, minimal, always bottom */
.coupon-card__cta{
  justify-self: start;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,175,55,.9);
  text-decoration: none;
  padding: 8px 0 2px;
  border-bottom: 1px solid rgba(212,175,55,.28);
  width: fit-content;
}

.coupon-card__cta:hover{
  border-bottom-color: rgba(212,175,55,.6);
}
/* Responsive */
@media (max-width: 980px){
  .coupon-products{ grid-template-columns: 1fr; }
  .coupon-card{ min-height: unset; }
  .coupon-thumb{ aspect-ratio: 16 / 9; } /* optional: more compact on mobile */
  .coupon-thumb img{ object-fit: contain; }

  /* Consent-Modal auf Mobile etwas luftiger + sicher im Viewport */
  .gt-consent{
    width: min(560px, calc(100vw - 1.5rem));
    padding: 1.25rem 1.25rem 1.1rem;
  }
}

/* ===== Google Translate Consent (2-Klick) ===== */
.gt-consent-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 4000;
}

/* Modal */
.gt-consent{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100vh - 2.5rem);
  overflow: auto;

  background: rgba(0,0,0,0.90);
  border: 1px solid rgba(200,161,90,0.35);
  box-shadow: 0 24px 72px rgba(0,0,0,0.65);
  border-radius: 10px;

  padding: 1.45rem 1.6rem 1.25rem; /* mehr Luft */
  z-index: 4100;
  color: rgba(245,245,245,0.92);
}

.gt-consent h3{
  margin: 0 0 0.85rem;           /* mehr Abstand zur Copy */
  color: #c8a15a;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

/* Textblöcke */
.gt-consent p{
  margin: 0.25rem 0 1.15rem;     /* mehr vertikaler Abstand */
  line-height: 1.6;              /* weniger „gedrängt“ */
  font-size: 0.98rem;
  color: rgba(235,235,235,0.86);
}

/* Buttons */
.gt-consent-actions{
  display: flex;
  gap: 1rem;                     /* Buttons weiter auseinander */
  flex-wrap: wrap;
  margin-top: 0.35rem;
  margin-bottom: 0.9rem;         /* Abstand zum Footer */
}

.gt-consent .btn{
  padding: 0.7rem 1.25rem;       /* Buttons etwas „höher“ */
}

/* Footer (Datenschutz / Widerruf) */
.gt-consent-foot{
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(235,235,235,0.72);

  display: flex;                 /* statt „untereinander“ */
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.gt-consent-foot a{
  color: rgba(200,161,90,0.92);
  text-decoration: none;
}

.gt-consent-foot a:hover{
  text-decoration: underline;
}

.gt-linklike{
  background: transparent;
  border: 0;
  padding: 0;
  color: rgba(200,161,90,0.92);
  cursor: pointer;
  text-decoration: underline;
}

/* HOME: stabilisiert Compositing (Hero-Transform + globale fixed Layer) */
body.page-home{
  background-attachment: scroll, scroll, scroll; /* statt fixed */
}

/* HOME: globalen Grain komplett raus (Hero hat eigenen Grain) */
body.page-home::before{
  content: none;
}

/* HOME: Vignette nicht fixed (sonst Re-Compositing bei Zoom) */
body.page-home::after{
  position: fixed;
}
/* HOME: verhindert Jitter durch backdrop-filter über animiertem Hero */
body.page-home .main-nav > ul{
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* HOME: 1–2px Overscan gegen Subpixel-Seams */
body.page-home #home.hero-intro .hero-layer{
  inset: -2px;
}


body.page-artworks{
  background: none;
  background-color: var(--bg-0);
}

body.page-artworks::before,
body.page-artworks::after{
  content: none;
}