:root{
  --violet:#4b1f3f;
  --violet-dark:#3a1731;
  --gold:#c9b06a;
  --gold-soft:rgba(201,176,106,0.86);

  --ink:#0a111a;
  --ink-soft:#0f1722;
  --ink-edge:#1a2432;

  --ochre:#d6a15a;
  --ochre-light:#e6bc7a;
  --ochre-dark:#b8833f;
  --menu-light:#f6f1e8;
  --menu-light-strong:#efe5d2;

  --paper:#f7f4ee;
  --paper-warm:#f3ede2;
  --paper-ochre:#eee4d2;
  --paper-ochre-soft:#f4ebde;

  --text-light:rgba(255,255,255,0.96);
  --text-light-soft:rgba(255,255,255,0.82);

  --shadow-soft:0 14px 30px rgba(0,0,0,0.16);
  --shadow-strong:0 24px 56px rgba(0,0,0,0.24);
  --shadow-dark:0 30px 70px rgba(0,0,0,0.4);

  --site-width:90%;
  --site-max:1680px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  min-height:100%;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Barlow Condensed", Arial, sans-serif;
  font-style:normal;
  font-weight:300;
  letter-spacing:0.02em;
  color:var(--text-light);
  background-color:var(--ink-soft);
  background-image:
    radial-gradient(
      circle at 50% 45%,
      var(--ink) 0%,
      var(--ink-soft) 56%,
      var(--ink-edge) 100%
    );
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
}

body,
button,
input,
textarea,
select{
  font-family:"Barlow Condensed", Arial, sans-serif;
  font-style:normal;
}

body.page-home,
body.page-artist{
  color:var(--text-light);
  background-color:var(--ink-soft);
  background-image:
    radial-gradient(
      circle at 50% 45%,
      var(--ink) 0%,
      var(--ink-soft) 56%,
      var(--ink-edge) 100%
    );
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
}

body.page-contact,
body.page-exhibitions,
body.page-videos{
  color:var(--violet-dark);
  background-color:var(--paper);
  background-image:
    radial-gradient(
      circle at 50% 32%,
      #fbf7ef 0%,
      var(--paper-ochre-soft) 28%,
      var(--paper) 58%,
      var(--paper-ochre) 100%
    );
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
}

body.lightbox-open,
body.menu-open{
  overflow:hidden;
}

/* Header */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  z-index:300;
  transition:background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.header.is-scrolled{
  background:rgba(12,18,28,0.74);
  box-shadow:0 10px 28px rgba(0,0,0,0.16);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.page-contact .header.is-scrolled,
.page-exhibitions .header.is-scrolled,
.page-videos .header.is-scrolled{
  background:rgba(248,244,237,0.88);
}

.logo-center{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  display:block;
  text-decoration:none;
}

.logo{
  height:56px;
  width:auto;
  display:block;
}

@keyframes instagramLuxuryGlow{
  0%{
    filter:drop-shadow(0 0 0 rgba(201,176,106,0));
  }
  50%{
    filter:drop-shadow(0 0 8px rgba(201,176,106,0.22));
  }
  100%{
    filter:drop-shadow(0 0 0 rgba(201,176,106,0));
  }
}

@keyframes instagramLuxuryFloat{
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.02);
  }
  100%{
    transform:scale(1);
  }
}

.instagram-link{
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  display:block;
  text-decoration:none;
  z-index:340;
  animation:instagramLuxuryGlow 3.6s ease-in-out infinite;
}

.instagram-icon{
  display:block;
  width:40px;
  height:40px;
  object-fit:contain;
  animation:instagramLuxuryFloat 3.6s ease-in-out infinite;
  transition:transform .22s ease, opacity .22s ease, filter .22s ease;
}

.instagram-link:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}

/* Hamburger */
.burger{
  position:absolute;
  left:24px;
  top:50%;
  transform:translateY(-50%);
  width:72px;
  height:72px;
  border:0;
  background:none !important;
  background-color:transparent !important;
  border-radius:0 !important;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:9px;
  padding:0;
  box-shadow:none !important;
  appearance:none;
  -webkit-appearance:none;
  z-index:340;
  transition:transform .22s ease, opacity .22s ease;
}

.burger:focus,
.burger:active,
.burger:focus-visible{
  background:none !important;
  background-color:transparent !important;
  box-shadow:none !important;
  border:0 !important;
}

.burger span{
  display:block;
  width:40px;
  height:3px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  box-shadow:0 2px 6px rgba(0,0,0,0.14);
  transition:
    transform .35s ease,
    opacity .35s ease,
    width .25s ease,
    background-color .25s ease;
}

.page-contact .burger span,
.page-exhibitions .burger span,
.page-videos .burger span{
  background:var(--violet-dark);
}

.header.is-scrolled .burger span{
  background:rgba(255,255,255,0.92);
}

.page-contact .header.is-scrolled .burger span,
.page-exhibitions .header.is-scrolled .burger span,
.page-videos .header.is-scrolled .burger span{
  background:var(--violet-dark);
}

.burger.is-open span:nth-child(1){
  transform:translateY(12px) rotate(45deg);
}

.burger.is-open span:nth-child(2){
  opacity:0;
}

.burger.is-open span:nth-child(3){
  transform:translateY(-12px) rotate(-45deg);
}

button.burger,
button.burger:hover,
button.burger:focus,
button.burger:active{
  background:none !important;
  background-color:transparent !important;
  box-shadow:none !important;
  border:0 !important;
}

/* Menü */
.menu{
  position:fixed;
  top:108px;
  left:50%;
  width:520px;
  max-width:calc(100vw - 40px);
  height:auto;
  transform:translate(-50%, -8px);
  opacity:0;
  pointer-events:none;
  z-index:320;
  background:
    linear-gradient(
      180deg,
      rgba(246,241,232,0.98),
      rgba(239,229,210,0.98)
    );
  border:none;
  border-radius:0;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  transition:
    transform .32s cubic-bezier(.18,.82,.28,1),
    opacity .28s ease;
}

.menu.is-open{
  transform:translate(-50%, 0);
  opacity:1;
  pointer-events:auto;
}

.menu-close{
  position:absolute;
  top:10px;
  right:10px;
  width:38px;
  height:38px;
  border:0;
  background:transparent;
  color:var(--violet-dark);
  font-size:30px;
  line-height:1;
  cursor:pointer;
  padding:0;
  appearance:none;
  -webkit-appearance:none;
}

.menu-inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:16px;
  padding:34px 34px 28px;
}

.menu-inner a,
.menu-inner a:visited{
  position:relative;
  display:block;
  width:auto;
  min-width:0;
  white-space:normal;
  text-decoration:none;
  text-align:left;
  font-weight:300;
  font-size:28px;
  line-height:1.05;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--violet-dark);
  padding-left:0;
  transition:color .2s ease, padding-left .2s ease, opacity .2s ease;
}

.menu-overlay{
  position:fixed;
  inset:0;
  z-index:310;
  background:rgba(0,0,0,0.14);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.menu-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

/* Main / Sections */
.page-artwork{
  padding-top:120px;
  padding-bottom:70px;
  min-height:100vh;
}

.page-section{
  scroll-margin-top:120px;
}

.page-anchor{
  width:100%;
  height:1px;
  padding:0;
  margin:0;
}

.gallery-wrap{
  width:var(--site-width);
  max-width:var(--site-max);
  margin:0 auto;
  padding:0 0 72px;
}

.gallery-section-title,
.artist-title{
  margin:0 0 28px;
  padding:0;
  text-align:left;
  font-size:42px;
  line-height:1;
  font-weight:300;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

.page-home .gallery-section-title,
.page-home .artist-title,
.page-artist .gallery-section-title,
.page-artist .artist-title{
  color:var(--text-light);
}

.page-contact .gallery-section-title,
.page-exhibitions .gallery-section-title,
.page-videos .gallery-section-title{
  color:var(--violet-dark);
}

.gallery{
  columns:4;
  column-gap:24px;
}

.gallery-item{
  display:block;
  break-inside:avoid;
  margin:0 0 24px 0;
  border:0;
  background:transparent;
  padding:0;
  cursor:zoom-in;
  appearance:none;
  -webkit-appearance:none;
  box-shadow:none;
  border-radius:0;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  width:100%;
}

.gallery-item img{
  display:block;
  width:100%;
  height:auto;
  box-shadow:var(--shadow-soft);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    filter .28s ease,
    opacity .28s ease;
}

/* Textabschnitte */
.content-section{
  width:var(--site-width);
  max-width:var(--site-max);
  margin:0 auto;
  padding:0 0 70px;
}

.content-inner{
  max-width:980px;
  padding:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
}

.content-inner p{
  margin:0 0 16px;
  font-size:24px;
  line-height:1.45;
  font-weight:300;
  letter-spacing:0.03em;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,0.82);
  opacity:0;
  pointer-events:none;
  transition:opacity .32s ease;
}

.lightbox.visible{
  opacity:1;
  pointer-events:auto;
}

.lightbox-close{
  position:absolute;
  top:-14px;
  right:-14px;
  z-index:10002;
  border:0;
  background:rgba(30,20,40,0.7);
  color:rgba(255,255,255,0.8);
  font-size:16px;
  line-height:1;
  cursor:pointer;
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s, color .2s;
}
.lightbox-close:hover{
  background:rgba(201,169,110,0.9);
  color:#fff;
}
.lightbox-img-wrap{
  position:relative;
  display:inline-block;
  line-height:0;
}

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10001;
  border:0;
  background:transparent;
  color:transparent;
  width:54px;
  height:80px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0.75;
  transition:opacity 0.2s ease;
}
.lightbox-nav:hover{
  opacity:1;
}
.lightbox-nav::before{
  content:'';
  display:block;
  width:28px;
  height:28px;
  border-top:3px solid #c9a96e;
  border-right:3px solid #c9a96e;
}
.lightbox-prev::before{
  transform:rotate(-135deg);
  margin-left:6px;
}
.lightbox-next::before{
  transform:rotate(45deg);
  margin-right:6px;
}

.lightbox-prev{
  left:18px;
}

.lightbox-next{
  right:18px;
}

.lightbox-stage{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:60px 20px 56px;
  overflow:auto;
}

#lightboxImage{
  max-width:90vw;
  max-height:76vh;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
  box-shadow:0 28px 80px rgba(0,0,0,0.52);
  opacity:0;
  transform:scale(.96);
  transform-origin:center center;
  transition:
    opacity .22s ease,
    transform .22s ease;
  touch-action:none;
  cursor:zoom-in;
}

.lightbox.show-content #lightboxImage{
  opacity:1;
  transform:scale(1);
}

.lightbox.is-zoomed #lightboxImage{
  cursor:grab;
}

.lightbox.is-zoomed #lightboxImage:active{
  cursor:grabbing;
}

.lightbox-caption{
  min-height:0;
  max-width:min(92vw, 900px);
  padding:4px 12px 0;
  color:rgba(255,255,255,0.98);
  font-size:18px;
  line-height:1.2;
  font-weight:300;
  letter-spacing:0.03em;
  text-align:center;
  text-shadow:0 2px 8px rgba(0,0,0,0.6);
}

.lightbox-caption strong{
  display:block;
  margin:0;
  padding:0;
  font-weight:400;
  line-height:0;
  color:#fff;
}


/* Footer */
.footer{
  padding:24px 18px 30px;
  text-align:center;
  font-size:15px;
  letter-spacing:0.05em;
}

.page-home .footer,
.page-artist .footer{
  color:rgba(255,255,255,0.72);
}

.page-contact .footer,
.page-exhibitions .footer,
.page-videos .footer{
  color:rgba(58,23,49,0.82);
}

.footer-separator{
  display:inline-block;
  margin:0 10px;
  opacity:.6;
}

.footer-copy{
  opacity:.9;
}

/* Links */
a,
a:visited{
  color:inherit;
}

a:hover,
a:active{
  color:inherit;
}

/* Fokus */
.burger:focus-visible,
.menu-close:focus-visible,
.menu-inner a:focus-visible,
.gallery-item:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.print-link:focus-visible,
.contact-submit:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
}

.menu-inner a:focus-visible{
  color:var(--gold);
}

/* Artist */
.artist-layout{
  width:var(--site-width);
  max-width:1400px;
  margin:0 auto;
  padding:0 0 80px;
}

.artist-hero{
  text-align:center;
  margin:0 0 42px;
}

.artist-title{
  text-align:center;
  margin-bottom:24px;
}

.artist-portrait-wrap{
  display:flex;
  justify-content:center;
}

.artist-portrait-image{
  display:block;
  width:100%;
  max-width:240px;
  height:auto;
  box-shadow:var(--shadow-dark);
}

.artist-panel{
  max-width:1180px;
  margin:0 auto;
  padding:40px 42px 44px;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  box-shadow:var(--shadow-soft);
}

.artist-intro{
  max-width:860px;
  margin:0 auto 34px;
  text-align:center;
}

.artist-intro p{
  margin:0;
  font-size:28px;
  line-height:1.4;
  font-weight:300;
  letter-spacing:0.03em;
  color:var(--text-light);
}

.artist-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
}

.artist-block{
  min-width:0;
}

.artist-block-title{
  margin:0 0 18px;
  font-size:30px;
  line-height:1.08;
  font-weight:300;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-light);
}

.artist-vita p,
.artist-materials p,
.artist-statement p{
  margin:0 0 16px;
  font-size:22px;
  line-height:1.45;
  font-weight:300;
  letter-spacing:0.03em;
  color:var(--text-light-soft);
}

.artist-subtitle{
  margin:28px 0 10px;
  font-size:22px;
  line-height:1.15;
  font-weight:400;
  letter-spacing:0.05em;
  color:var(--text-light);
}

.print-link-wrap{
  margin:24px 0 0;
  text-align:left;
}

.print-link{
  border:0;
  background:transparent;
  color:var(--text-light-soft);
  font-size:15px;
  line-height:1.3;
  cursor:pointer;
  padding:0;
  letter-spacing:0.06em;
  text-transform:uppercase;
  text-decoration:underline;
  opacity:.82;
}

/* Kontakt */
.contact-page{
  max-width:980px;
}

.contact-address{
  margin:0 0 28px;
}

.contact-address p{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.4;
  font-weight:300;
  color:var(--violet-dark);
}

.contact-map{
  margin:0 0 34px;
  box-shadow:var(--shadow-soft);
}

.contact-map iframe{
  display:block;
  width:100%;
}

.contact-form{
  display:block;
}

.form-row{
  margin:0 0 18px;
}

.form-row label{
  display:block;
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
  font-weight:300;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--violet-dark);
}

.form-row input,
.form-row textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(58,23,49,0.18);
  background:rgba(255,255,255,0.86);
  font-size:22px;
  line-height:1.3;
  font-weight:300;
  letter-spacing:0.02em;
  color:var(--violet-dark);
  appearance:none;
  -webkit-appearance:none;
}

.form-row textarea{
  resize:vertical;
  min-height:160px;
}

.form-row input:focus,
.form-row textarea:focus{
  outline:2px solid var(--gold);
  outline-offset:2px;
  border-color:var(--gold);
}

.contact-submit{
  border:0;
  padding:12px 18px;
  background:var(--violet-dark);
  color:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1.2;
  font-weight:300;
  letter-spacing:0.08em;
  text-transform:uppercase;
  box-shadow:var(--shadow-soft);
  transition:opacity .2s ease, transform .2s ease;
}

.form-message{
  margin:0 0 24px;
  padding:14px 16px;
  font-size:20px;
  line-height:1.4;
  font-weight:300;
}

.form-message-success{
  background:rgba(201,176,106,0.18);
  border:1px solid rgba(201,176,106,0.45);
  color:var(--violet-dark);
}

.form-message-error{
  background:rgba(75,31,63,0.08);
  border:1px solid rgba(75,31,63,0.22);
  color:var(--violet-dark);
}

/* Ausstellungen */
.exhibitions-page{
  max-width:980px;
  margin:0 auto;
  padding:34px 36px 38px;
  background:transparent;
  box-sizing:border-box;
}

.exhibition-panel{
  margin:0 0 28px;
}

.exhibition-kicker{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.3;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--violet);
}

.exhibition-title{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.05;
  font-weight:300;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--violet);
}

.exhibition-date,
.exhibition-location,
.exhibition-link{
  margin:0 0 14px;
  font-size:24px;
  line-height:1.4;
  font-weight:300;
  color:var(--violet-dark);
}

.exhibition-subtitle{
  margin:20px 0 10px;
  font-size:24px;
  line-height:1.15;
  font-weight:400;
  letter-spacing:0.04em;
  color:var(--violet-dark);
}

.exhibition-image-placeholder{
  margin:0 0 28px;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(58,23,49,0.28);
  background:rgba(255,255,255,0.18);
  color:var(--violet);
  font-size:16px;
  line-height:1.3;
  text-align:center;
}

/* Videos */
.videos-page{
  max-width:1200px;
  margin:0 auto;
  padding:34px 0 38px;
  background:transparent;
  box-shadow:none;
}

.videos-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:34px;
}

.video-card{
  margin:0 auto;
  width:100%;
  max-width:960px;
}

.video-title{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.1;
  font-weight:300;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--violet);
}

.video-embed{
  position:relative;
  width:100%;
  padding-top:56.25%;
  background:transparent;
  transition:transform .28s ease, filter .28s ease;
}

.video-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  box-shadow:var(--shadow-soft);
  background:transparent;
  transition:box-shadow .28s ease;
}

.video-placeholder{
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(58,23,49,0.28);
  background:transparent;
  color:var(--violet);
  font-size:16px;
  line-height:1.3;
  text-align:center;
  box-shadow:var(--shadow-soft);
  transition:transform .28s ease, box-shadow .28s ease;
}

/* Hover nur auf Geräten mit Maus */
@media (hover:hover){
  .instagram-link:hover{
    opacity:.95;
    animation-play-state:paused;
  }

  .instagram-link:hover .instagram-icon{
    animation-play-state:paused;
    transform:scale(1.05);
    filter:drop-shadow(0 0 10px rgba(201,176,106,0.3));
  }

  .burger:hover{
    transform:translateY(-50%) scale(1.05);
  }

  .burger:hover span{
    width:44px;
  }

  .menu-close:hover{
    opacity:.7;
  }

  .menu-inner a:hover{
    color:var(--gold);
    opacity:1;
    padding-left:14px;
  }

  .menu-inner a:hover::before{
    content:"—";
    position:absolute;
    left:0;
    top:0;
    color:var(--gold);
  }

  .gallery-item:hover img{
    transform:scale(1.04);
    box-shadow:var(--shadow-strong);
    filter:saturate(1.03);
    position:relative;
    z-index:3;
  }

  .lightbox-nav:hover{
    background:rgba(255,255,255,0.22);
  }

  .print-link:hover{
    color:var(--gold);
    opacity:1;
  }

  .contact-submit:hover{
    opacity:.92;
    transform:translateY(-1px);
  }

  .video-card:hover .video-embed{
    transform:translateY(-4px) scale(1.01);
    filter:saturate(1.02);
  }

  .video-card:hover .video-embed iframe{
    box-shadow:var(--shadow-strong);
  }

  .video-card:hover .video-placeholder{
    transform:translateY(-4px) scale(1.01);
    box-shadow:var(--shadow-strong);
  }
}

/* Responsive */
@media (max-width:900px){
  body,
  body.page-home,
  body.page-artist,
  body.page-contact,
  body.page-exhibitions,
  body.page-videos{
    background-attachment:scroll;
  }

  .header{
    height:82px;
  }

  .logo{
    height:46px;
  }

  .instagram-link{
    right:18px;
  }

  .instagram-icon{
    width:32px;
    height:32px;
  }

  .page-section{
    scroll-margin-top:100px;
  }

  .gallery-wrap,
  .content-section,
  .artist-layout{
    width:92%;
  }

  .gallery{
    columns:3;
    column-gap:18px;
  }

  .gallery-item img{
    width:100%;
    height:auto;
  }

  .menu{
    top:96px;
    max-width:calc(100vw - 28px);
  }

  .menu-inner{
    padding:22px 20px 20px;
    gap:12px;
  }

  .menu-inner a,
  .menu-inner a:visited{
    font-size:24px;
    line-height:1.08;
  }

  .gallery-section-title,
  .artist-title{
    margin:0 0 18px;
    font-size:34px;
  }

  .content-inner p{
    font-size:21px;
    line-height:1.45;
  }

  .burger{
    width:62px;
    height:62px;
    left:18px;
  }

  .burger span{
    width:36px;
    height:3px;
  }

  .artist-panel{
    padding:28px 24px 30px;
  }

  .artist-intro p{
    font-size:24px;
  }

  .artist-columns{
    grid-template-columns:1fr;
    gap:28px;
  }

  .artist-block-title{
    font-size:26px;
  }

  .artist-vita p,
  .artist-materials p,
  .artist-statement p{
    font-size:20px;
  }

  .videos-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
}

@media (max-width:640px){
  body.page-home{
    background-color:var(--ink-soft);
    background-image:
      radial-gradient(
        circle at 50% 45%,
        var(--ink) 0%,
        var(--ink-soft) 56%,
        var(--ink-edge) 100%
      );
    color:var(--text-light);
  }

  body.page-home .gallery-section-title,
  body.page-home .artist-title,
  body.page-home .footer{
    color:var(--text-light);
  }

  body.page-home .burger span{
    background:rgba(255,255,255,0.92);
  }

  .page-home .header.is-scrolled{
    background:rgba(12,18,28,0.74);
  }

  .page-home .header.is-scrolled .burger span{
    background:rgba(255,255,255,0.92);
  }

  .page-section{
    scroll-margin-top:90px;
  }

  .gallery-wrap,
  .content-section,
  .artist-layout{
    width:92%;
  }

  .gallery{
    columns:2;
    column-gap:12px;
  }

  .gallery-item{
    margin-bottom:12px;
    width:100%;
  }

  .gallery-item img{
    display:block;
    width:100%;
    height:auto;
  }

  .menu{
    top:88px;
    max-width:calc(100vw - 20px);
  }

  .menu-inner{
    padding:20px 18px 18px;
    gap:10px;
  }

  .menu-inner a,
  .menu-inner a:visited{
    font-size:21px;
    line-height:1.08;
  }

  .menu-close{
    top:8px;
    right:8px;
    width:34px;
    height:34px;
    font-size:28px;
  }

  .gallery-section-title,
  .artist-title{
    margin:0 0 16px;
    font-size:26px;
    line-height:1.05;
  }

  .content-inner p{
    font-size:18px;
    line-height:1.5;
  }

  .logo{
    height:40px;
  }

  .instagram-link{
    right:14px;
  }

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

  .burger{
    left:14px;
    width:56px;
    height:56px;
  }

  .burger span{
    width:30px;
    height:3px;
  }

  .lightbox-nav{
    top:auto;
    transform:none;
    width:44px;
    height:64px;
    background:transparent;
    border-radius:0;
  }
  .lightbox-nav::before{
    width:18px;
    height:18px;
  }

  .lightbox-prev{
    left:12px;
    right:auto;
    bottom:18px;
    top:auto;
    transform:none;
  }
  .lightbox-prev::before{
    transform:rotate(-135deg);
    margin-left:6px;
  }

  .lightbox-next{
    right:12px;
    left:auto;
    bottom:18px;
    top:auto;
    transform:none;
  }
  .lightbox-next::before{
    transform:rotate(45deg);
    margin-right:6px;
  }

  .lightbox-stage{
    padding:60px 20px 92px;
  }

  #lightboxImage{
    max-width:90vw;
    max-height:68vh;
  }

  .lightbox-caption{
    font-size:18px;
    line-height:1.35;
    max-width:92vw;
  }

  .artist-layout{
    padding:0 0 60px;
  }

  .artist-hero{
    margin:0 0 28px;
  }

  .artist-portrait-image{
    max-width:180px;
  }

  .artist-panel{
    padding:20px 18px 24px;
  }

  .artist-intro{
    margin:0 auto 22px;
  }

  .artist-intro p{
    font-size:18px;
    line-height:1.5;
  }

  .artist-block-title{
    font-size:21px;
    margin:0 0 14px;
  }

  .artist-subtitle{
    font-size:17px;
    margin:22px 0 8px;
  }

  .artist-vita p,
  .artist-materials p,
  .artist-statement p{
    font-size:17px;
    line-height:1.55;
  }

  .contact-address{
    margin:0 0 22px;
  }

  .contact-map{
    margin:0 0 28px;
  }

  .contact-map iframe{
    height:300px;
  }

  .form-row{
    margin:0 0 16px;
  }

  .form-row label,
  .form-row input,
  .form-row textarea,
  .contact-submit{
    font-size:18px;
  }

  .exhibitions-page{
    padding:20px 0 24px;
  }

  .exhibition-title{
    font-size:24px;
  }

  .exhibition-subtitle{
    font-size:18px;
  }

  .exhibition-date,
  .exhibition-location,
  .exhibition-link{
    font-size:18px;
  }

  .exhibition-image-placeholder{
    min-height:160px;
  }

  .videos-page{
    padding:20px 0 24px;
  }

  .video-title{
    font-size:20px;
  }

  .video-placeholder{
    min-height:180px;
  }
}

/* Helle Textfarben auf hellen Seiten */
.page-contact .artist-block-title{
  color:var(--violet-dark);
}

.page-contact .artist-subtitle{
  color:var(--violet-dark);
}

.page-contact .artist-block p{
  color:var(--violet-dark);
}

.page-contact .artist-intro p{
  color:var(--violet-dark);
}

.page-contact .print-link{
  color:var(--violet-dark);
}

.page-contact .print-link:hover{
  color:var(--gold);
}

/* Druck */
@media print{
  body{
    background:#fff !important;
    color:#000 !important;
  }

  .header,
  .menu,
  .menu-overlay,
  .burger,
  .footer,
  .print-link-wrap{
    display:none !important;
  }

  .page-artwork{
    padding:0 !important;
  }

  .content-section,
  .artist-layout{
    max-width:100% !important;
    width:100% !important;
    padding:0 !important;
    margin:0 !important;
  }

  .artist-panel,
  .content-inner,
  .exhibitions-page,
  .videos-page{
    background:#fff !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    padding:0 !important;
  }

  .artist-columns{
    display:block !important;
  }

  .artist-portrait-image{
    max-width:180px !important;
    box-shadow:none !important;
  }
}
 Video-Beschreibungstext */
.video-text {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--violet-dark);
}
 
@media (max-width: 640px) {
  .video-text {
    font-size: 17px;
  }
}
 
/* Artist-Seite: Textfarben auf hellem Hintergrund korrigieren */
.page-contact .artist-panel .artist-vita p,
.page-contact .artist-panel .artist-vita p strong,
.page-contact .artist-panel .artist-materials p,
.page-contact .artist-panel .artist-statement p,
.page-contact .artist-panel .artist-block-title,
.page-contact .artist-panel .artist-subtitle {
  color: var(--violet-dark);
}