:root{
  --bg:#000000;
  --paper:#f0eee8;
  --muted:#a7a6a1;
  --line:#363634;
  --accent:#f18b57;
  --gutter:clamp(22px,4.2vw,80px);
  --ease:cubic-bezier(.22,.61,.36,1)
}
*{
  box-sizing:border-box
}
html{
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body{
  margin:0;
  background:var(--bg);
  color:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased
}
a{
  color:inherit;
  text-decoration:none
}
button{
  font:inherit
}
img,video{
  display:block;
  max-width:100%
}
picture{
  display:block
}
h1,h2,h3,p,figure{
  margin:0
}
h1,h2,h3{
  font-weight:500
}
::selection{
  background:var(--accent);
  color:var(--bg)
}
:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:7px
}
.accent{
  color:var(--accent)
}
.eyebrow{
  font-size:13px;
  line-height:1.5;
  letter-spacing:.08em;
  text-transform:uppercase
}
.skip-link{
  position:fixed;
  top:-90px;
  left:20px;
  z-index:100;
  background:var(--paper);
  color:var(--bg);
  padding:14px
}
.skip-link:focus{
  top:12px
}
.site-header{
  height:96px;
  padding:0 var(--gutter);
  display:flex;
  align-items:center;
  gap:23px;
  position:sticky;
  top:0;
  z-index:20;
  background:#000;
  border-bottom:1px solid var(--line)
}
.wordmark{
  font-size:38px;
  font-weight:700;
  letter-spacing:-3px
}
.header-name{
  font-size:12px;
  line-height:1.45
}
.header-name>span{
  color:var(--muted)
}
.site-header nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:clamp(24px,3.5vw,65px);
  font-size:14px
}
.site-header nav a{
  padding:12px 0;
  transition:color .2s
}
.site-header nav a:hover{
  color:var(--accent)
}
.nav-contact{
  border-bottom:1px solid var(--accent)
}
.nav-contact span{
  padding-left:12px
}
.menu-toggle{
  display:none
}
.hero{
  padding:0 var(--gutter)
}
.hero-heading{
  padding-top:38px
}
.hero h1{
  font-size:clamp(76px,14.65vw,250px);
  line-height:.95;
  letter-spacing:-.065em;
  white-space:nowrap;
  font-weight:600;
  margin-left:-.012em
}
.hero h1 .accent{
  letter-spacing:-.1em
}
.hero-disciplines{
  display:flex;
  justify-content:space-between;
  margin-top:25px;
  padding-bottom:29px;
  font-size:14px;
  letter-spacing:.02em;
  border-bottom:1px solid var(--line)
}
.hero-stage{
  position:relative;
  min-height:490px;
  height:39vw;
  max-height:700px;
  margin-top:0;
  overflow:hidden;
  background:#000
}
.hero-picture{
  position:absolute;
  right:0;
  width:76%;
  height:100%
}
.hero-picture img{
  width:100%;
  height:100%;
  object-position:50% 52%
}
.hero-stage:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,#000 0%,rgba(0,0,0,.8) 20%,transparent 60%);
  pointer-events:none
}
.hero-copy{
  position:relative;
  z-index:1;
  padding:45px 36px;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start
}
.hero-copy .eyebrow{
  color:var(--muted);
  font-size:12px
}
.hero-copy h2{
  font-size:clamp(55px,6.5vw,104px);
  letter-spacing:-.065em;
  line-height:.97;
  margin-top:28px
}
.hero-copy h2>span{
  font-family:Georgia,'Times New Roman',serif;
  font-style:italic;
  letter-spacing:-.075em;
  color:var(--accent)
}
.text-link{
  font-size:14px;
  display:flex;
  gap:42px;
  border-bottom:1px solid #6a6a62;
  padding-bottom:12px;
  margin-top:auto
}
.text-link span{
  font-size:21px;
  color:var(--accent);
  transition:transform .3s
}
.text-link:hover span{
  transform:translate(3px,3px)
}
.hero-credit{
  position:absolute;
  z-index:2;
  right:27px;
  bottom:28px;
  font-size:12px;
  background:#141414d9;
  padding:12px 16px
}
.hero-credit>span:first-child{
  color:var(--muted);
  display:block;
  font-size:12px;
  margin-bottom:5px
}
.hero-credit>span:last-child{
  margin-left:14px;
  color:var(--accent)
}
.hero-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:20px 0;
  color:var(--muted);
  font-size:12px;
  border-bottom:1px solid var(--line)
}
.section-pad{
  padding:125px var(--gutter)
}
.section-heading{
  display:grid;
  grid-template-columns:1fr 2fr auto;
  gap:30px;
  align-items:start;
  margin-bottom:60px
}
.section-heading .eyebrow{
  margin-top:14px;
  color:var(--muted)
}
.section-heading h2{
  font-size:clamp(40px,5.6vw,84px);
  letter-spacing:-.06em;
  line-height:1.05
}
.section-heading p:not(.eyebrow){
  font-size:16px;
  color:var(--muted);
  line-height:1.6;
  margin-top:23px
}
.work-count{
  font-size:12px;
  color:var(--muted);
  padding-top:17px;
  white-space:nowrap
}
.work-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  column-gap:36px;
  row-gap:80px
}
.work-wide{
  grid-column:span 7
}
.work-narrow{
  grid-column:span 5
}
.work-item:nth-child(even){
  padding-top:110px
}
.work-item:nth-child(4),.work-item:nth-child(8){
  padding-top:80px
}
.work-image{
  position:relative;
  background:#252525;
  overflow:hidden;
  aspect-ratio:1.27
}
.work-narrow .work-image{
  aspect-ratio:.94
}
.work-image picture,.work-image img{
  width:100%;
  height:100%
}
.work-image img{
  transition:transform .8s var(--ease)
}
.project-link:hover img{
  transform:scale(1.025)
}
.view-project{
  position:absolute;
  right:18px;
  bottom:18px;
  padding:14px 18px;
  color:#181818;
  background:var(--paper);
  font-size:13px;
  transform:translateY(8px);
  opacity:0;
  transition:.3s
}
.view-project span{
  padding-left:25px
}
.project-link:hover .view-project,.project-link:focus-visible .view-project{
  opacity:1;
  transform:none
}
.work-caption{
  display:flex;
  gap:18px;
  margin-top:20px;
  align-items:flex-start
}
.project-number{
  font-size:12px;
  color:var(--muted);
  padding-top:3px
}
.category{
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:7px
}
.work-caption h3{
  font-size:clamp(22px,2.2vw,34px);
  line-height:1.15;
  letter-spacing:-.035em
}
.project-arrow{
  margin-left:auto;
  font-size:24px;
  transition:transform .3s
}
.project-link:hover .project-arrow{
  color:var(--accent);
  transform:translate(2px,-2px)
}
.campaign .work-image{
  background:#b7b3ac;
  padding:34px;
  aspect-ratio:1.27
}
.project-status{
  position:absolute;
  top:18px;
  left:18px;
  font-size:12px;
  padding:8px 11px;
  background:var(--paper);
  color:var(--bg)
}
.about{
  background:var(--paper);
  color:var(--bg);
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
  padding-top:110px;
  padding-bottom:110px
}
.about>.eyebrow{
  padding-top:16px;
  color:#676762
}
.about h2{
  font-size:clamp(43px,5.8vw,88px);
  line-height:1.05;
  letter-spacing:-.06em
}
.about-text{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:45px
}
.about-text p{
  font-size:17px;
  line-height:1.75;
  color:#4d4d48
}
.signature{
  font-size:26px;
  font-weight:600;
  letter-spacing:-.06em;
  margin-top:40px
}
.signature .accent{
  color:#bb5725
}
.skills .section-heading{
  grid-template-columns:1fr 2fr
}
.skills .section-heading h2{
  font-size:clamp(36px,4.4vw,68px)
}
.skills-list{
  padding:0;
  margin:55px 0 0;
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:0 40px
}
.skills-list li{
  font-size:clamp(16px,1.7vw,25px);
  letter-spacing:-.025em;
  border-top:1px solid var(--line);
  padding:28px 0;
  display:flex;
  gap:20px;
  align-items:baseline
}
.skills-list li span{
  color:var(--muted);
  font-size:12px;
  letter-spacing:0
}
.contact{
  padding:70px var(--gutter) 0;
  border-top:1px solid var(--line);
  background:#000
}
.contact-top{
  display:flex;
  justify-content:space-between;
  gap:25px;
  margin-bottom:45px
}
.contact-top>p:last-child{
  color:var(--muted);
  font-size:14px;
  line-height:1.6
}
.contact h2{
  font-size:clamp(50px,9.2vw,150px);
  line-height:1.03;
  letter-spacing:-.06em
}
.contact h2 a{
  color:var(--accent)
}
.contact h2 a span{
  display:inline-block;
  transition:transform .35s
}
.contact h2 a:hover span{
  transform:translate(6px,-6px)
}
.contact-bottom{
  display:flex;
  gap:25px;
  align-items:center;
  margin:55px 0 70px
}
.email{
  font-size:clamp(21px,2.4vw,34px);
  border-bottom:1px solid var(--muted);
  padding-bottom:8px
}
.back-top{
  margin-left:auto;
  font-size:13px
}
.footer-line{
  border-top:1px solid var(--line);
  padding:25px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
  color:var(--muted)
}
.footer-line a{
  font-size:24px;
  letter-spacing:-2px;
  color:var(--paper)
}
.project-main{
  padding:0 var(--gutter)
}
.project-intro{
  padding:60px 0 65px
}
.back-link{
  font-size:14px;
  color:var(--muted)
}
.back-link:hover{
  color:var(--accent)
}
.project-title-row{
  display:flex;
  justify-content:space-between;
  gap:25px;
  margin-top:75px;
  color:var(--muted)
}
.project-intro h1{
  font-size:clamp(49px,7.9vw,122px);
  letter-spacing:-.06em;
  line-height:1.04;
  max-width:1100px;
  margin-top:24px;
  text-wrap:balance
}
.project-subtitle{
  font-size:20px;
  color:var(--muted);
  line-height:1.5;
  margin-top:25px
}
.project-hero{
  aspect-ratio:1.8;
  background:#232323;
  overflow:hidden
}
.project-hero picture,.project-hero img{
  height:100%;
  width:100%
}
.project-hero.contain{
  background:#b7b3ac;
  padding:40px;
  aspect-ratio:1.8
}
.project-context{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:30px;
  padding:85px 0
}
.project-context h2{
  font-size:28px;
  letter-spacing:-.04em
}
.project-description{
  font-size:clamp(20px,2.4vw,34px);
  line-height:1.45;
  letter-spacing:-.025em;
  max-width:850px
}
dl{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin:40px 0 0;
  border-top:1px solid var(--line);
  padding-top:26px
}
dt{
  font-size:12px;
  color:var(--muted);
  margin-bottom:12px
}
dd{
  font-size:15px;
  line-height:1.6;
  margin:0
}
.project-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px 30px
}
.gallery-wide{
  grid-column:1/-1
}
.gallery-image{
  aspect-ratio:1;
  background:#222;
  overflow:hidden
}
.gallery-wide .gallery-image{
  aspect-ratio:1.65
}
.gallery-image picture,.gallery-image img{
  height:100%;
  width:100%
}
.fit-contain{
  padding:35px;
  background:#252525
}
.bottle-slot .gallery-image{
  aspect-ratio:1;
  background:#e9e9e5;
  padding:35px
}
.bottle-slot img{
  object-fit:contain!important
}
figcaption{
  font-size:13px;
  line-height:1.55;
  margin-top:15px;
  color:var(--muted)
}
video{
  width:100%;
  aspect-ratio:16/9;
  background:#090909;
  object-fit:contain
}
.video-block figcaption{
  display:flex;
  justify-content:space-between;
  gap:20px
}
.video-block figcaption span:last-child{
  font-size:12px
}
.comparison{
  padding:5px 0 70px
}
.comparison-heading{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  margin-bottom:30px;
  gap:20px
}
.comparison-heading h2{
  font-size:40px;
  letter-spacing:-.04em
}
.comparison-heading p{
  font-size:14px;
  color:var(--muted)
}
.comparison-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px
}
.comparison-grid picture{
  aspect-ratio:16/10
}
.comparison-grid img{
  width:100%;
  height:100%
}
.comparison-grid figcaption span{
  margin-right:13px
}
.next-project{
  display:grid;
  grid-template-columns:1fr 2fr auto;
  gap:30px;
  align-items:center;
  margin:110px 0 0;
  border-top:1px solid var(--line);
  padding:55px 0 85px
}
.next-project>.eyebrow{
  color:var(--muted)
}
.next-project>span:nth-child(2){
  font-size:clamp(28px,4vw,60px);
  line-height:1.1;
  letter-spacing:-.04em
}
.next-project>span:last-child{
  font-size:50px;
  color:var(--accent)
}
.next-project:hover>span:nth-child(2){
  color:var(--accent)
}
.animate-in{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s var(--ease),transform .7s var(--ease)
}
.animate-in.is-visible{
  opacity:1;
  transform:none
}
@media(min-width:1800px){
  body{
    max-width:2200px;
    margin:auto
  }
  .hero h1{
    font-size:250px
  }
}
@media(max-width:1000px){
  .hero-stage{
    height:510px
  }
  .hero h1{
    font-size:14.4vw
  }
  .hero-copy{
    padding:35px 25px
  }
  .hero-copy h2{
    font-size:72px
  }
  .section-heading{
    grid-template-columns:1fr 2fr
  }
  .work-count{
    display:none
  }
  .work-grid{
    column-gap:24px;
    row-gap:60px
  }
  .section-pad{
    padding-top:90px;
    padding-bottom:90px
  }
  .skills-list{
    grid-template-columns:1fr 1fr
  }
  .about{
    grid-template-columns:1fr
  }
  .about-content{
    margin-left:15%
  }
  .about-text{
    gap:28px
  }
  .header-name{
    display:none
  }
  .project-title-row{
    margin-top:50px
  }
  .project-hero{
    aspect-ratio:1.45
  }
  .project-context{
    grid-template-columns:1fr;
    gap:24px
  }
  .next-project{
    grid-template-columns:1fr auto
  }
  .next-project .eyebrow{
    grid-column:1/-1
  }
  .next-project>span:nth-child(2){
    font-size:44px
  }
}
@media(max-width:700px){
  html{
    scroll-padding-top:85px
  }
  .site-header{
    height:76px;
    gap:15px
  }
  .wordmark{
    font-size:33px
  }
  .header-name{
    display:block;
    font-size:12px
  }
  .js .menu-toggle{
    display:block;
    margin-left:auto;
    background:none;
    color:var(--paper);
    border:1px solid #555;
    padding:10px 13px;
    min-height:44px;
    font-size:14px
  }
  .menu-toggle span{
    padding-left:15px
  }
  .js .site-header nav{
    display:none;
    position:absolute;
    top:75px;
    left:0;
    right:0;
    background:#000;
    border-bottom:1px solid #555;
    padding:22px var(--gutter) 28px;
    flex-direction:column;
    gap:5px;
    align-items:stretch
  }
  .js .site-header nav.is-open{
    display:flex
  }
  .site-header nav a{
    font-size:20px;
    padding:15px 0
  }
  .site-header nav .nav-contact{
    margin-top:10px
  }
  .site-header:has(nav.is-open) .menu-toggle span{
    display:inline-block;
    transform:rotate(45deg)
  }
  html:not(.js) .site-header{
    height:auto;
    flex-wrap:wrap;
    padding-top:15px;
    padding-bottom:15px
  }
  html:not(.js) .site-header nav{
    display:flex;
    flex-wrap:wrap;
    gap:15px
  }
  html:not(.js) .site-header nav a{
    font-size:14px
  }
  .hero-heading{
    padding-top:33px
  }
  .hero h1{
    font-size:14.1vw;
    letter-spacing:-.065em
  }
  .hero-disciplines{
    margin-top:22px;
    padding-bottom:22px;
    display:block;
    font-size:12px;
    line-height:1.65
  }
  .hero-disciplines span{
    display:block
  }
  .hero-stage{
    height:620px;
    min-height:0;
    max-height:none
  }
  .hero-picture{
    width:100%;
    height:62%;
    top:0;
    right:0
  }
  .hero-picture img{
    object-position:53% 45%
  }
  .hero-stage:after{
    background:linear-gradient(0deg,#000 0%,#000 33%,transparent 70%)
  }
  .hero-copy{
    padding:290px 22px 27px;
    justify-content:flex-end
  }
  .hero-copy .eyebrow{
    font-size:12px
  }
  .hero-copy h2{
    font-size:60px;
    line-height:.95;
    margin-top:20px
  }
  .hero-copy h2 br:nth-of-type(1){
    display:none
  }
  .hero-copy h2{
    max-width:270px
  }
  .hero-copy h2>span{
    display:inline-block
  }
  .text-link{
    margin-top:27px;
    gap:25px;
    max-width:100%
  }
  .hero-credit{
    top:18px;
    bottom:auto;
    right:15px;
    font-size:12px;
    padding:8px 10px
  }
  .hero-credit>span:first-child{
    display:none
  }
  .hero-bottom{
    font-size:12px;
    line-height:1.6;
    padding:17px 0
  }
  .hero-bottom>span{
    display:none
  }
  .section-pad{
    padding-top:73px;
    padding-bottom:73px
  }
  .section-heading{
    display:block;
    margin-bottom:38px
  }
  .section-heading .eyebrow{
    margin-top:0;
    margin-bottom:22px
  }
  .section-heading h2{
    font-size:45px
  }
  .section-heading p:not(.eyebrow){
    font-size:15px;
    margin-top:18px
  }
  .work-grid{
    display:block
  }
  .work-item,.work-item:nth-child(even),.work-item:nth-child(4),.work-item:nth-child(8){
    padding-top:0;
    margin-bottom:45px
  }
  .work-item:last-child{
    margin-bottom:0
  }
  .work-wide .work-image{
    aspect-ratio:1.1
  }
  .work-narrow .work-image{
    aspect-ratio:1
  }
  .work-caption{
    gap:12px;
    margin-top:16px
  }
  .work-caption h3{
    font-size:26px
  }
  .project-arrow{
    font-size:22px
  }
  .category{
    font-size:12px;
    margin-bottom:5px
  }
  .view-project{
    display:none
  }
  .campaign .work-image{
    padding:25px
  }
  .project-status{
    top:12px;
    left:12px;
    padding:7px 9px;
    font-size:12px
  }
  .about{
    gap:26px
  }
  .about>.eyebrow{
    padding-top:0
  }
  .about-content{
    margin:0
  }
  .about h2{
    font-size:43px
  }
  .about-text{
    display:block;
    margin-top:28px
  }
  .about-text p{
    font-size:16px;
    margin-bottom:20px;
    line-height:1.7
  }
  .signature{
    margin-top:26px
  }
  .skills .section-heading h2{
    font-size:37px
  }
  .skills-list{
    display:block;
    margin-top:34px
  }
  .skills-list li{
    font-size:21px;
    padding:21px 0;
    gap:22px
  }
  .contact{
    padding-top:42px
  }
  .contact-top{
    margin-bottom:35px
  }
  .contact-top>p:last-child{
    font-size:12px
  }
  .contact h2{
    font-size:clamp(45px,10.7vw,74px)
  }
  .contact-bottom{
    margin:35px 0 50px;
    flex-wrap:wrap
  }
  .email{
    font-size:23px
  }
  .back-top{
    font-size:12px
  }
  .footer-line{
    gap:15px;
    flex-wrap:wrap;
    font-size:12px
  }
  .footer-line>span:nth-child(2){
    display:none
  }
  .project-intro{
    padding-top:35px;
    padding-bottom:35px
  }
  .project-title-row{
    margin-top:43px;
    display:block
  }
  .project-title-row .eyebrow{
    font-size:12px
  }
  .project-title-row .accent{
    margin-top:12px
  }
  .project-intro h1{
    font-size:46px;
    margin-top:20px;
    overflow-wrap:anywhere
  }
  .project-subtitle{
    font-size:17px;
    margin-top:19px
  }
  .project-hero{
    aspect-ratio:1.1
  }
  .project-hero.contain{
    aspect-ratio:.85;
    padding:24px
  }
  .project-context{
    padding:45px 0;
    gap:24px
  }
  .project-context h2{
    font-size:23px
  }
  .project-description{
    font-size:22px
  }
  .project-context dl{
    grid-template-columns:1fr;
    gap:24px;
    margin-top:28px;
    padding-top:23px
  }
  .project-gallery{
    display:block
  }
  .project-gallery figure{
    margin-bottom:30px
  }
  .gallery-wide .gallery-image{
    aspect-ratio:1.3
  }
  .fit-contain,.bottle-slot .gallery-image{
    padding:24px
  }
  .video-block figcaption{
    display:block
  }
  .video-block figcaption span{
    display:block;
    margin-top:5px
  }
  .comparison{
    padding-bottom:35px
  }
  .comparison-heading{
    display:block
  }
  .comparison-heading h2{
    font-size:34px;
    margin-bottom:12px
  }
  .comparison-grid{
    display:block
  }
  .comparison-grid figure{
    margin-bottom:26px
  }
  .next-project{
    margin-top:50px;
    padding:35px 0 50px;
    gap:20px
  }
  .next-project>span:nth-child(2){
    font-size:32px
  }
  .next-project>span:last-child{
    font-size:37px
  }
}
@media(prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }
  *,*::before,*::after{
    animation:none!important;
    transition:none!important
  }
  .animate-in{
    opacity:1;
    transform:none
  }
  .project-link:hover img{
    transform:none
  }
}
/* Überarbeitung: schwarzer Hintergrund, kompakter Titel und bündige Bildreihen. */
.hero-heading{
  padding-top:44px
}
.hero h1{
  font-size:clamp(52px,6.2vw,100px);
  letter-spacing:-.055em;
  line-height:1.04;
  white-space:normal
}
.portfolio-label{
  font-size:clamp(27px,3.1vw,48px);
  color:var(--muted);
  letter-spacing:-.035em;
  line-height:1.2;
  margin-top:7px
}
.hero-disciplines{
  margin-top:30px
}
.work-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:start
}
.work-wide,.work-narrow{
  grid-column:auto
}
.work-item:nth-child(even),.work-item:nth-child(4),.work-item:nth-child(8){
  padding-top:0
}
.work-image,.work-narrow .work-image,.campaign .work-image{
  aspect-ratio:1.2
}
.about{
  background:#000;
  color:var(--paper);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.about>.eyebrow,.about-text p{
  color:var(--muted)
}
.signature .accent{
  color:var(--accent)
}
@media(max-width:700px){
  .hero-heading{
    padding-top:30px
  }
  .hero h1{
    font-size:55px
  }
  .portfolio-label{
    font-size:28px
  }
  .hero-disciplines{
    margin-top:23px
  }
  .work-image,.work-narrow .work-image,.work-wide .work-image,.campaign .work-image{
    aspect-ratio:1.1
  }
  .work-item:nth-child(even),.work-item:nth-child(4),.work-item:nth-child(8){
    padding-top:0
  }
}
/* Schwarze Rahmen lassen die Farben der Originalarbeiten unverändert. */
.work-image,.campaign .work-image,.project-hero,.project-hero.contain,.gallery-image,.fit-contain,.bottle-slot .gallery-image{
  background:#000
}
