@font-face{font-family:"Barlow Condensed";font-style:normal;font-display:swap;font-weight:400;src:url("fonts/barlow-condensed-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-display:swap;font-weight:500;src:url("fonts/barlow-condensed-latin-500-normal.woff2") format("woff2");}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-display:swap;font-weight:600;src:url("fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");}
@font-face{font-family:"Barlow Condensed";font-style:normal;font-display:swap;font-weight:700;src:url("fonts/barlow-condensed-latin-700-normal.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-display:swap;font-weight:300;src:url("fonts/inter-latin-300-normal.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-display:swap;font-weight:400;src:url("fonts/inter-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-display:swap;font-weight:500;src:url("fonts/inter-latin-500-normal.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-display:swap;font-weight:600;src:url("fonts/inter-latin-600-normal.woff2") format("woff2");}
@font-face{font-family:"Kalam";font-style:normal;font-display:swap;font-weight:400;src:url("fonts/kalam-latin-400-normal.woff2") format("woff2");}
@font-face{font-family:"Kalam";font-style:normal;font-display:swap;font-weight:700;src:url("fonts/kalam-latin-700-normal.woff2") format("woff2");}

:root{
  --bg:#090909;
  --bg-soft:#111;
  --text:#f4f0e8;
  --muted:rgba(255,255,255,.74);
  --gold:#c89b3c;
  --gold-light:#e3bc67;
  --line:rgba(227,188,103,.34);
  --font-title:"Barlow Condensed",Arial,sans-serif;
  --font-body:"Inter",Arial,sans-serif;
  --font-hand:"Kalam",cursive;
}

*{
  box-sizing:border-box;
}

[hidden]{
  display:none!important;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 12% 0%,rgba(227,188,103,.12),transparent 26rem),
    radial-gradient(circle at 90% 20%,rgba(200,155,60,.08),transparent 28rem),
    var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
}

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

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

:focus-visible{
  outline:3px solid var(--gold-light);
  outline-offset:4px;
}

.skip-link{
  position:fixed;
  left:18px;
  top:14px;
  z-index:12000;
  padding:10px 16px;
  background:var(--gold-light);
  color:#080808;
  font-weight:700;
  transform:translateY(-180%);
}

.skip-link:focus{
  transform:translateY(0);
}

/* ================================
   Header / Navigation
================================ */

.site-header{
  min-height:92px;
  padding:14px 5vw;
  background:rgba(8,8,8,.96);
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:auto 1fr;
  gap:28px;
  align-items:center;
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
}

.logo-mark{
  width:66px;
  height:66px;
  border-radius:50%;
  overflow:hidden;
  flex:0 0 auto;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.65));
}

.logo-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.logo-text strong{
  font-family:var(--font-title);
  font-size:31px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.logo-text em{
  margin-top:7px;
  color:var(--gold-light);
  font-family:var(--font-title);
  font-style:normal;
  font-size:15px;
  letter-spacing:.36em;
  text-transform:uppercase;
}

.header-right{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:28px;
}

.main-nav{
  display:flex;
  gap:30px;
  align-items:center;
}

.main-nav a,
.language-button,
.language-menu a{
  font-family:var(--font-title);
  font-size:16px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.82);
  transition:.2s;
}

.main-nav a.active,
.main-nav a:hover,
.language-menu a:hover{
  color:var(--gold-light);
}

.language-switch{
  position:relative;
}

.language-button{
  height:42px;
  padding:0 15px;
  border:1px solid rgba(227,188,103,.45);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}

.language-menu{
  position:absolute;
  right:0;
  top:calc(100% + 9px);
  min-width:168px;
  padding:8px;
  background:#090909;
  border:1px solid var(--line);
  box-shadow:0 18px 36px rgba(0,0,0,.55);
  display:none;
}

.language-switch.open .language-menu{
  display:block;
}

.language-menu a{
  display:block;
  padding:10px 12px;
}

/* ================================
   Buttons
================================ */

.button{
  min-height:48px;
  padding:12px 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-title);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.gold-button{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:#111;
}

.outline-button{
  border:1px solid var(--gold);
  color:var(--gold-light);
}

/* ================================
   Startseite
================================ */

.home-hero{
  min-height:calc(100vh - 92px);
  padding:62px 6vw;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:52px;
  align-items:center;
  border-bottom:1px solid var(--line);
}

.hero-main-title,
.page-title{
  margin:0 0 24px;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:clamp(54px,7vw,104px);
  line-height:1.02;
  font-weight:700;
}

.hero-subline,
.lead{
  max-width:760px;
  color:var(--muted);
  font-size:18px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.home-hero-image{
  border:1px solid rgba(227,188,103,.68);
  background:#050505;
  padding:10px;
  box-shadow:0 28px 70px rgba(0,0,0,.58);
}

.home-hero-image img{
  width:100%;
  height:auto;
  max-height:620px;
  object-fit:contain;
  object-position:center;
  background:#050505;
  filter:brightness(1.04) contrast(1.04);
}

.home-values,
.home-gallery,
.home-contact,
.page-section{
  padding:54px 6vw;
  border-top:1px solid var(--line);
}

.home-values{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:rgba(200,155,60,.18);
}

.home-values article{
  padding:28px;
  background:#090909;
}

.home-values h2,
.gallery-heading h2{
  margin:0 0 10px;
  font-family:var(--font-title);
  font-size:32px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:500;
}

.home-values p{
  margin:0;
  color:var(--muted);
}

.small-title{
  margin:0 0 12px;
  color:var(--gold-light);
  font-family:var(--font-title);
  letter-spacing:.16em;
  text-transform:uppercase;
}

.home-gallery{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:38px;
}

.gallery-row{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.gallery-card,
.galerie-bild{
  margin:0;
  border:1px solid rgba(227,188,103,.68);
  background:#050505;
  padding:7px;
  overflow:hidden;
}

.gallery-card{
  height:245px;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-contact{
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
}

.site-footer-simple{
  padding:24px 6vw;
  background:#050505;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 24px;
  text-align:center;
  color:rgba(255,255,255,.54);
  font-size:14px;
}

.site-footer-simple p{
  margin:0;
}


/* ================================
   Inhaltsseiten
================================ */

.content-grid{
  padding:70px 6vw 88px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:start;
}

.text-card{
  max-width:780px;
}

.text-card p{
  color:var(--muted);
  font-size:18px;
}

.quote{
  margin-top:28px;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:clamp(26px,3vw,38px);
  line-height:1.25;
}

.side-image{
  border:1px solid rgba(227,188,103,.65);
  background:#050505;
  padding:10px;
}

.side-image img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* ================================
   Galerie
================================ */

.galerie-seite,
.contact-page{
  padding:68px 5vw 90px;
}

.galerie-intro{
  max-width:980px;
  margin-bottom:60px;
  border-bottom:1px solid rgba(227,188,103,.26);
  padding-bottom:34px;
}

.fotografen-reihe{
  margin-bottom:72px;
}

.fotograf-name{
  margin:0 0 18px;
  padding-bottom:8px;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:clamp(25px,2.6vw,38px);
  font-weight:700;
  border-bottom:1px solid rgba(227,188,103,.25);
}

.galerie-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
}

.galerie-bild{
  height:260px;
}

.galerie-bild img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  background:#050505;
}

/* ================================
   Kontaktseite
================================ */

.contact-layout{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:38px;
  align-items:start;
}

.contact-form{
  position:relative;
  padding:40px;
  border:1px solid rgba(227,188,103,.38);
  background:rgba(0,0,0,.42);
  box-shadow:0 24px 58px rgba(0,0,0,.48);
}

.contact-form label{
  display:block;
  margin:18px 0 8px;
  color:var(--gold-light);
  font-family:var(--font-title);
  letter-spacing:.12em;
  text-transform:uppercase;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid rgba(227,188,103,.28);
  background:rgba(6,6,6,.72);
  color:var(--text);
  font:16px var(--font-body);
  padding:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--gold-light);
  outline:2px solid rgba(227,188,103,.3);
  outline-offset:1px;
}

.contact-form input{
  height:54px;
}

.contact-form textarea{
  min-height:190px;
  resize:vertical;
}

.form-button-row{
  display:flex;
  justify-content:flex-end;
  margin-top:24px;
}

.form-honeypot{
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}


.contact-send-button:disabled{
  cursor:wait;
  opacity:.62;
}

.form-status{
  min-height:27px;
  margin:18px 0 0;
  color:var(--muted);
}

.form-status.is-success{
  color:#aee8b2;
}

.form-status.is-error{
  color:#ffb2ac;
}

.contact-side-box{
  padding:28px;
  border:1px solid rgba(227,188,103,.58);
  background:linear-gradient(145deg,rgba(227,188,103,.15),rgba(0,0,0,.48));
  box-shadow:0 22px 55px rgba(0,0,0,.58);
}

.contact-side-title{
  margin:0 0 14px;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:31px;
  font-weight:700;
}

.contact-side-box p{
  color:var(--muted);
}

.contact-side-box a{
  color:var(--gold-light);
  font-weight:600;
  word-break:break-word;
}

/* ================================
   Responsive Design
================================ */

@media(max-width:1150px){
  .site-header{
    grid-template-columns:1fr;
  }

  .logo{
    justify-content:center;
  }

  .header-right{
    justify-self:center;
    flex-wrap:wrap;
    justify-content:center;
  }

  .home-hero,
  .content-grid,
  .home-gallery,
  .contact-layout{
    grid-template-columns:1fr;
  }

  .home-hero-image{
    max-width:760px;
  }

  .gallery-row,
  .galerie-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:760px){
  .site-header{
    padding:14px 22px;
  }

  .main-nav{
    gap:16px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .logo-text strong{
    font-size:25px;
  }

  .logo-text em{
    font-size:12px;
  }

  .home-hero,
  .content-grid,
  .home-values,
  .home-gallery,
  .home-contact,
  .galerie-seite,
  .contact-page{
    padding:48px 24px;
  }

  .home-values,
  .home-contact{
    grid-template-columns:1fr;
  }

  .gallery-row,
  .galerie-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .galerie-bild{
    height:240px;
  }

  .contact-form{
    padding:30px 22px;
  }

  .form-button-row,
  .contact-send-button{
    width:100%;
  }

  .language-menu{
    right:auto;
    left:0;
  }
}

/* ================================
   Redaktionelle Startseite
================================ */
.home-v2{
  overflow:hidden;
  background:#080808;
}

.home-v2-hero{
  position:relative;
  min-height:590px;
  height:min(690px,calc(100svh - 95px));
  display:flex;
  align-items:center;
  isolation:isolate;
  border-bottom:1px solid var(--line);
}

.home-v2-hero-image,
.home-v2-hero-shade{
  position:absolute;
  inset:0;
}

.home-v2-hero-image{
  z-index:-2;
  background:#050505;
}

.home-v2-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 42%;
  filter:saturate(.82) contrast(1.04) brightness(1.08);
}

.home-v2-hero-shade{
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.84) 0%,rgba(0,0,0,.6) 40%,rgba(0,0,0,.08) 76%),
    linear-gradient(0deg,rgba(0,0,0,.68) 0%,transparent 50%);
}

.home-v2-hero-content{
  width:min(980px,88vw);
  padding:38px 0;
  margin-left:6vw;
  transform:translateY(-22px);
}

.home-v2-kicker{
  margin:0 0 22px;
  color:var(--gold-light);
  font-family:var(--font-title);
  font-size:15px;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
}

.home-v2-hero h1{
  max-width:900px;
  margin:0;
  color:#f7f3eb;
  font-family:var(--font-title);
  font-size:clamp(48px,6.15vw,88px);
  font-weight:500;
  letter-spacing:-.018em;
  line-height:.91;
  text-wrap:balance;
}

.home-v2-hero h1 em{
  display:inline-block;
  margin-top:.12em;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:.75em;
  font-style:normal;
  font-weight:700;
  letter-spacing:-.025em;
}

.home-v2-hero-lead{
  max-width:760px;
  margin:24px 0 0;
  color:rgba(255,255,255,.82);
  font-size:clamp(17px,1.45vw,21px);
  line-height:1.7;
}

.home-v2-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.home-v2-scroll{
  position:absolute;
  right:5vw;
  bottom:34px;
  margin:0;
  color:rgba(255,255,255,.64);
  font-family:var(--font-title);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  writing-mode:vertical-rl;
}

.home-v2-scroll span{
  margin-top:10px;
  color:var(--gold-light);
}

.home-v2-section-number{
  margin:0;
  color:rgba(227,188,103,.48);
  font-family:var(--font-title);
  font-size:14px;
  letter-spacing:.18em;
}

.home-v2-intro{
  max-width:1320px;
  margin:0 auto;
  padding:clamp(96px,10vw,150px) 7vw clamp(90px,9vw,135px);
  display:block;
}

.home-v2-intro h2,
.home-v2-gallery-heading h2,
.home-v2-contact h2{
  margin:0;
  color:var(--text);
  font-family:var(--font-title);
  font-weight:500;
  line-height:1.03;
  text-wrap:balance;
}

.home-v2-intro-heading{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.home-v2-intro-heading .small-title{
  margin-bottom:18px;
}

.home-v2-intro h2{
  max-width:860px;
  margin:0 auto;
  font-size:clamp(40px,4.6vw,68px);
  line-height:1.08;
}

.home-v2-intro-copy{
  max-width:900px;
  margin:clamp(58px,6vw,82px) auto 0;
  padding-top:36px;
  border-top:1px solid rgba(227,188,103,.4);
}

.home-v2-intro-copy p{
  margin:0 0 24px;
  color:var(--muted);
  font-size:18px;
  line-height:1.82;
}

.home-v2-intro-copy p:first-child{
  color:var(--text);
  font-size:20px;
}

.home-v2-intro-copy p:last-child{
  margin-bottom:0;
}

.home-v2-principles{
  max-width:1320px;
  margin:0 auto clamp(94px,10vw,150px);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(227,188,103,.35);
  border-bottom:1px solid rgba(227,188,103,.35);
}

.home-v2-principles article{
  position:relative;
  min-height:320px;
  padding:44px clamp(28px,3vw,48px) 42px;
}

.home-v2-principles article+article{
  border-left:1px solid rgba(227,188,103,.26);
}

.home-v2-principles span{
  color:var(--gold);
  font-family:var(--font-title);
  font-size:13px;
  letter-spacing:.18em;
}

.home-v2-principles h2{
  margin:68px 0 15px;
  color:var(--gold-light);
  font-family:var(--font-title);
  font-size:clamp(30px,3vw,43px);
  font-weight:500;
}

.home-v2-principles p{
  margin:0;
  color:var(--muted);
}

.home-v2-gallery{
  max-width:1500px;
  margin:0 auto;
  padding:0 5vw clamp(105px,12vw,170px);
  display:grid;
  grid-template-columns:minmax(320px,430px) minmax(0,1fr);
  gap:clamp(76px,8vw,132px);
  align-items:center;
}

.home-v2-gallery-heading{
  max-width:430px;
  padding-right:8px;
}

.home-v2-gallery-heading h2{
  margin-bottom:28px;
  color:var(--gold-light);
  font-size:clamp(42px,4.5vw,66px);
  line-height:1.08;
}

.home-v2-gallery-heading .small-title{
  margin-top:0;
  margin-bottom:18px;
}

.home-v2-gallery-heading>p:not(.small-title):not(.home-v2-section-number){
  max-width:470px;
  color:var(--muted);
  font-size:18px;
}

.home-v2-gallery-heading .button{
  margin-top:22px;
}

.home-v2-mosaic{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-template-rows:repeat(8,58px);
  gap:14px;
}

.home-v2-shot{
  margin:0;
  overflow:hidden;
  border:1px solid rgba(227,188,103,.5);
  background:#050505;
}

.home-v2-shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .65s ease,filter .5s ease;
}

.home-v2-shot:hover img{
  transform:scale(1.035);
  filter:saturate(1.08);
}

.home-v2-shot-a{grid-column:1/4;grid-row:1/6;}
.home-v2-shot-b{grid-column:4/7;grid-row:1/4;}
.home-v2-shot-b{background:#050505;}
.home-v2-shot-b img{object-fit:contain;}
.home-v2-shot-c{grid-column:4/7;grid-row:4/9;}
.home-v2-shot-d{grid-column:1/3;grid-row:6/9;}
.home-v2-shot-e{grid-column:3/4;grid-row:6/9;}

.home-v2-contact{
  padding:clamp(70px,8vw,115px) 8vw;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:50px;
  align-items:end;
  border-top:1px solid var(--line);
  background:
    radial-gradient(circle at 84% 50%,rgba(227,188,103,.13),transparent 25rem),
    #0c0b09;
}

.home-v2-contact>div{
  max-width:950px;
}

.home-v2-contact h2{
  font-size:clamp(40px,5vw,72px);
}

.home-v2-contact div>p:last-child{
  max-width:650px;
  margin:24px 0 0;
  color:var(--muted);
  font-size:18px;
}

@media(max-width:1050px){
  .home-v2-gallery{grid-template-columns:1fr;gap:48px;}
  .home-v2-gallery-heading{max-width:720px;padding-right:0;}
  .home-v2-mosaic{width:100%;}
}

@media(max-width:760px){
  .home-v2-hero{height:auto;min-height:680px;align-items:center;}
  .home-v2-hero-image img{object-position:62% center;}
  .home-v2-hero-shade{background:linear-gradient(0deg,rgba(0,0,0,.95) 0%,rgba(0,0,0,.52) 72%,rgba(0,0,0,.18));}
  .home-v2-hero-content{width:auto;margin:0;padding:48px 24px 58px;transform:translateY(-12px);}
  .home-v2-hero h1{font-size:clamp(43px,12.5vw,64px);line-height:.95;}
  .home-v2-hero-lead{font-size:16px;line-height:1.58;}
  .home-v2-scroll{display:none;}
  .home-v2-actions .button{width:100%;}
  .home-v2-intro{padding:82px 24px 76px;}
  .home-v2-intro-copy{margin-top:44px;padding-top:28px;}
  .home-v2-intro-copy p{font-size:16px;line-height:1.72;}
  .home-v2-intro-copy p:first-child{font-size:18px;}
  .home-v2-principles{margin:0 24px 90px;grid-template-columns:1fr;}
  .home-v2-principles article{min-height:auto;padding:34px 24px;}
  .home-v2-principles article+article{border-left:0;border-top:1px solid rgba(227,188,103,.26);}
  .home-v2-principles h2{margin-top:30px;}
  .home-v2-gallery{padding:0 24px 94px;}
  .home-v2-mosaic{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(5,170px);gap:10px;}
  .home-v2-shot-a{grid-column:1/3;grid-row:1/3;}
  .home-v2-shot-b{grid-column:1;grid-row:3;}
  .home-v2-shot-c{grid-column:2;grid-row:3/5;}
  .home-v2-shot-d{grid-column:1;grid-row:4;}
  .home-v2-shot-e{grid-column:1/3;grid-row:5;}
  .home-v2-contact{padding:72px 24px;grid-template-columns:1fr;align-items:start;}
  .home-v2-contact .button{width:100%;}
}

@media(max-width:520px){
  .logo-mark{
    width:56px;
    height:56px;
  }

  .header-right{
    gap:18px;
  }

  .button{
    width:100%;
  }

  .gallery-row,
  .galerie-grid{
    grid-template-columns:1fr;
  }

  .gallery-card,
  .galerie-bild{
    height:310px;
  }
}

/* ================================
   Bildvergrößerung / Lightbox
   Mac + iPhone + Handy
================================ */

.galerie-bild img,
.gallery-card img{
  cursor:zoom-in;
  -webkit-tap-highlight-color:transparent;
}

body.lightbox-active{
  overflow:hidden;
  touch-action:none;
}

.lightbox-overlay{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  height:100dvh;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:30px;
  overscroll-behavior:contain;
}

.lightbox-overlay.open{
  display:flex;
}

.lightbox-overlay img{
  max-width:94vw;
  max-height:88vh;
  object-fit:contain;
  border:1px solid rgba(227,188,103,.7);
  background:#050505;
  box-shadow:0 30px 80px rgba(0,0,0,.8);
}

.lightbox-close{
  position:fixed;
  top:22px;
  right:28px;
  color:#fff;
  font-size:42px;
  line-height:1;
  cursor:pointer;
  z-index:10000;
  font-family:Arial,sans-serif;
  background:transparent;
  border:none;
  padding:0;
}

.lightbox-close:hover{
  color:var(--gold-light);
}

/* Pfeile in der Lightbox */

.lightbox-arrow{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:54px;
  border:1px solid rgba(227,188,103,.8);
  border-radius:50%;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:52px;
  line-height:1;
  cursor:pointer;
  z-index:10000;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Arial,sans-serif;
  padding:0;
  -webkit-tap-highlight-color:transparent;
}

.lightbox-arrow:hover{
  color:var(--gold-light);
  border-color:var(--gold-light);
}

.lightbox-prev{
  left:24px;
}

.lightbox-next{
  right:24px;
}

/* Handy-Anpassung für Lightbox */

@media(max-width:760px){
  .lightbox-overlay{
    padding:18px;
  }

  .lightbox-overlay img{
    max-width:84vw;
    max-height:82vh;
  }

  .lightbox-close{
    top:14px;
    right:18px;
    font-size:38px;
  }

  .lightbox-arrow{
    width:46px;
    height:46px;
    font-size:42px;
  }

  .lightbox-prev{
    left:10px;
  }

  .lightbox-next{
    right:10px;
  }
}

@media(max-width:420px){
  .lightbox-overlay img{
    max-width:82vw;
    max-height:80vh;
  }

  .lightbox-arrow{
    width:42px;
    height:42px;
    font-size:38px;
  }

  .lightbox-prev{
    left:6px;
  }

  .lightbox-next{
    right:6px;
  }
}
/* ================================
   Neue Team-Galerie: Das sind wir
================================ */
.team-page{
  padding:72px 6vw 96px;
}

.team-hero{
  max-width:920px;
  margin:0 auto 58px;
  text-align:center;
}

.team-hero .page-title{
  margin-bottom:18px;
}

.team-hero .lead{
  margin:0 auto;
}

.team-grid{
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.member-card{
  position:relative;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(227,188,103,.46);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
  box-shadow:0 24px 58px rgba(0,0,0,.42);
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}

.member-card:hover,
.member-card:focus-visible{
  transform:translateY(-8px);
  border-color:var(--gold-light);
  box-shadow:0 34px 74px rgba(0,0,0,.62),0 0 0 1px rgba(227,188,103,.14);
  outline:none;
}

.member-image-wrap{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  background:#050505;
}

.member-image-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 52%,rgba(0,0,0,.74) 100%);
  pointer-events:none;
}

.member-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(.88) contrast(1.04);
  transition:transform .55s ease,filter .4s ease;
}

.member-card:hover .member-image-wrap img,
.member-card:focus-visible .member-image-wrap img{
  transform:scale(1.045);
  filter:saturate(1) contrast(1.06);
}

.member-card[data-member="angel"] .member-image-wrap img{
  object-position:58% center;
}

.member-card-content{
  position:relative;
  padding:24px 24px 26px;
}

.member-number{
  position:absolute;
  right:20px;
  top:18px;
  margin:0;
  color:rgba(227,188,103,.46);
  font-family:var(--font-title);
  font-size:14px;
  letter-spacing:.16em;
}

.member-card h2{
  margin:0 0 10px;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:clamp(31px,3vw,44px);
  line-height:1;
}

.member-card span{
  color:var(--muted);
  font-family:var(--font-title);
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.member-card span b{
  color:var(--gold-light);
  font-size:18px;
  margin-left:6px;
}

/* Persönliche Galerieseiten */
.artist-page{
  padding:64px 5vw 94px;
}

.artist-header{
  max-width:1180px;
  margin:0 auto 46px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
  padding-bottom:30px;
  border-bottom:1px solid rgba(227,188,103,.28);
}

.artist-avatar{
  width:118px;
  height:118px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid var(--gold);
  padding:4px;
  background:#050505;
}

.artist-avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

.artist-title-wrap .small-title{
  margin-bottom:4px;
}

.artist-title{
  margin:0;
  color:var(--gold-light);
  font-family:var(--font-hand);
  font-size:clamp(46px,6vw,78px);
  line-height:1;
}

.artist-back{
  white-space:nowrap;
}

.artist-gallery{
  max-width:1380px;
  margin:0 auto;
}

.artist-story{
  max-width:1180px;
  margin:0 auto 70px;
  display:grid;
  grid-template-columns:minmax(260px,340px) minmax(0,1fr);
  column-gap:clamp(34px,5vw,70px);
  row-gap:0;
  align-items:start;
  padding:clamp(26px,3.5vw,48px);
  border:1px solid rgba(227,188,103,.48);
  background:linear-gradient(145deg,rgba(227,188,103,.07),rgba(0,0,0,.52) 42%);
  box-shadow:0 28px 72px rgba(0,0,0,.46);
}

.artist-page:has(.artist-story) > .artist-header{
  display:none;
}

.artist-story-image{
  grid-column:1;
  grid-row:1/4;
  margin:0;
  padding:9px;
  border:1px solid rgba(227,188,103,.62);
  background:#050505;
  box-shadow:0 26px 68px rgba(0,0,0,.58);
}

.artist-story-image img{
  width:100%;
  height:auto;
  max-height:500px;
  object-fit:contain;
  object-position:center;
  background:#050505;
}

.artist-story-image figcaption{
  padding:10px 5px 2px;
  color:var(--muted);
  font-size:13px;
}

.artist-bio{
  grid-column:2;
  padding:8px 0 0;
}

.artist-bio p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:17px;
}

.artist-story > .small-title{
  grid-column:2;
  margin:2px 0 12px;
}

.artist-profile-title{
  grid-column:2;
  margin:0 0 22px;
  color:var(--gold-light);
  font-family:var(--font-title);
  font-size:clamp(34px,4vw,56px);
  font-weight:500;
  line-height:1.08;
  letter-spacing:.02em;
}

.artist-bio .artist-bio-closing,
.artist-bio p:last-child{
  margin-top:28px;
  padding:20px 22px;
  border-top:1px solid rgba(227,188,103,.38);
  border-left:3px solid var(--gold-light);
  color:var(--text);
  font-style:italic;
}

/* Rechtliche Seiten */
.legal-page{
  width:min(1040px,calc(100% - 48px));
  margin:0 auto;
  padding:64px 0 92px;
}

.legal-page .page-title{
  font-size:clamp(48px,7vw,82px);
}

.legal-intro{
  max-width:800px;
  color:var(--muted);
  font-size:18px;
}

.legal-warning{
  margin:30px 0 38px;
  padding:20px 22px;
  border-left:4px solid var(--gold-light);
  background:rgba(227,188,103,.1);
  color:var(--text);
}

.legal-section{
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}

.legal-section h2{
  margin:0 0 14px;
  color:var(--gold-light);
  font-family:var(--font-title);
  font-size:30px;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.legal-section h3{
  margin:26px 0 8px;
  color:var(--text);
  font-family:var(--font-title);
  font-size:23px;
}

.legal-section p,
.legal-section li{
  color:var(--muted);
}

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

.legal-placeholder{
  display:inline-block;
  padding:1px 7px;
  border:1px dashed var(--gold-light);
  background:rgba(227,188,103,.08);
  color:var(--gold-light);
  font-weight:600;
}

@media(max-width:1280px){
  .team-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}

@media(max-width:900px){
  .team-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .artist-story{grid-template-columns:1fr;padding:24px;}
  .artist-story-image{grid-column:1;grid-row:auto;width:min(100%,360px);margin:0 auto 26px;}
  .artist-story > .small-title,.artist-profile-title,.artist-bio{grid-column:1;}
}

@media(max-width:760px){
  .team-page{padding:50px 24px 72px;}
  .artist-page{padding:48px 24px 72px;}
  .artist-header{grid-template-columns:88px 1fr;gap:18px;}
  .artist-avatar{width:88px;height:88px;}
  .artist-back{grid-column:1/-1;width:100%;}
  .legal-page{width:min(100% - 40px,1040px);padding:48px 0 72px;}
}

@media(max-width:540px){
  .team-grid{grid-template-columns:1fr;}
  .member-image-wrap{aspect-ratio:5/5.8;}
}


/* Elke: sämtliche Hoch- und Querformate vollständig anzeigen, ohne Beschnitt. */
main[data-cms-member="elke"] .artist-gallery .galerie-bild{
  height:auto;
  min-height:0;
  overflow:visible;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#050505;
}
main[data-cms-member="elke"] .artist-gallery .galerie-bild img{
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  object-position:center center;
}
\n\n/* Startseite 2026-08-08: ruhiger, ausgewogener Textsatz */\n.home-v2-intro{\n  max-width:1320px;\n  padding:clamp(82px,9vw,132px) 6vw clamp(72px,8vw,112px);\n  grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);\n  gap:clamp(52px,7vw,110px);\n  align-items:start;\n}\n.home-v2-intro-heading{max-width:520px;}\n.home-v2-intro h2{\n  max-width:520px;\n  font-size:clamp(42px,4.2vw,64px);\n  line-height:1.04;\n  letter-spacing:-.015em;\n}\n.home-v2-intro-copy{\n  max-width:760px;\n  padding:30px 0 0;\n}\n.home-v2-intro-copy p{\n  max-width:72ch;\n  margin:0 0 24px;\n  font-size:17px;\n  line-height:1.78;\n}\n.home-v2-intro-copy p:first-child{\n  font-size:19px;\n  line-height:1.72;\n}\n.home-v2-principles{\n  max-width:1320px;\n  margin-bottom:clamp(90px,9vw,138px);\n}\n.home-v2-principles article{\n  min-height:255px;\n  padding:38px clamp(28px,3vw,44px) 38px;\n}\n.home-v2-principles h2{\n  margin:18px 0 16px;\n  font-size:clamp(28px,2.5vw,38px);\n}\n.home-v2-principles p{\n  font-size:16px;\n  line-height:1.72;\n}\n.home-v2-gallery{\n  padding-bottom:clamp(90px,10vw,140px);\n}\n.home-v2-gallery-heading h2{\n  font-size:clamp(42px,4.8vw,68px);\n  line-height:1.04;\n}\n.home-v2-gallery-heading>p:not(.small-title):not(.home-v2-section-number){\n  line-height:1.7;\n}\n@media(max-width:1050px){\n  .home-v2-intro{grid-template-columns:1fr;gap:38px;}\n  .home-v2-intro-heading,.home-v2-intro h2{max-width:720px;}\n  .home-v2-intro-copy{grid-column:1;max-width:820px;}\n}\n@media(max-width:760px){\n  .home-v2-intro{padding:74px 24px 62px;gap:26px;}\n  .home-v2-intro-copy{margin-top:0;padding-top:24px;}\n  .home-v2-intro h2{font-size:clamp(38px,10vw,52px);}\n  .home-v2-intro-copy p,.home-v2-intro-copy p:first-child{font-size:16px;line-height:1.7;}\n  .home-v2-principles{margin:0 24px 78px;}\n  .home-v2-principles article{padding:30px 24px;}\n  .home-v2-principles h2{margin-top:0;}\n  .home-v2-gallery-heading h2{font-size:clamp(38px,10vw,54px);}\n}\n