:root{ 
  --brown:#474141;
  --brown-2:#5a5252;
  --cream:#f7f3ef;
  --paper:#fffdfb;
  --muted:#8a8080;
  --line:rgba(71,65,65,.18);
  --shadow:0 30px 80px rgba(71,65,65,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--brown);
  background:var(--paper);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1180px,calc(100% - 42px));
  margin:0 auto;
}

.eyebrow{
  font-size:12px;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
}

.line{
  height:2px;
  background:var(--brown);
  width:100%;
  opacity:.9;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--brown);
  padding:14px 24px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  transition:.25s ease;
  background:transparent;
}
.btn:hover{
  background:var(--brown);
  color:#fff;
  transform:translateY(-2px);
}
.btn.light{
  border-color:#fff;
  color:#fff;
}
.btn.light:hover{
  background:#fff;
  color:var(--brown);
}

/* HEADER */
.header{
  position:fixed;
  inset:0 0 auto;
  z-index:50;
  padding:18px 0;
  transition:.25s ease;
  background:transparent !important;
}
.header.scrolled{
  background:rgba(255,253,251,.92) !important;
  backdrop-filter:blur(14px);
  box-shadow:0 12px 40px rgba(71,65,65,.07);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand img,
.logo img,
.header-logo img,
img.logo{
  width:220px !important;
  max-width:220px !important;
  height:auto !important;
  transition:transform .35s ease, filter .35s ease;
}

.brand:hover img{
  transform:translateY(-2px) scale(1.035);
}

.menu{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
}

header a,
header nav a,
.nav a,
.navbar a,
.menu a,
.nav-links a,
.language-switcher a{
  color:#ffffff !important;
}

.header.scrolled a,
.header.scrolled nav a,
.header.scrolled .nav a,
.header.scrolled .menu a{
  color:var(--brown) !important;
}

.header.scrolled .brand img,
.header.scrolled .logo img,
.header.scrolled .header-logo img,
.header.scrolled img.logo{
  content:url('../img/logo-dark.png');
}

.lang{
  display:flex;
  gap:10px;
  margin-left:10px;
}
.lang a{opacity:.55}
.lang a.active,
.lang a:hover{opacity:1}

.hamb{
  display:none;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:50%;
  background:rgba(255,255,255,.72);
  color:var(--brown);
  font-size:20px;
}

/* HERO */
.hero{
  min-height:100vh;
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
  background:linear-gradient(90deg,rgba(71,65,65,.82),rgba(71,65,65,.28)),url('../img/hero2.jpg') center/cover no-repeat;
  color:#fff;
}

.hero:after,
.hero-line,
.hero-lines,
.divider,
.divider-line,
.line-horizontal{
  display:none !important;
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(930px,calc(100% - 42px));
  padding-top:110px;
}
.hero-logo{
  width:min(520px,82vw);
  margin-bottom:32px;
}
.hero h1{
  font-family:'Bebas Neue',Montserrat,sans-serif;
  font-size:clamp(44px,8vw,110px);
  line-height:.86;
  margin:28px 0 12px;
  letter-spacing:.04em;
}
.hero p{
  font-size:clamp(18px,2vw,27px);
  max-width:620px;
  margin:0 0 34px;
  color:rgba(255,255,255,.9);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.scroll-note{
  position:absolute;
  right:28px;
  bottom:44px;
  z-index:2;
  writing-mode:vertical-rl;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.26em;
  color:rgba(255,255,255,.75);
}

/* SECTIONS */
.section{
  padding:115px 0;
  border-bottom:1px solid var(--line);
}
.section-title{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:22px;
  margin-bottom:54px;
}
.section-title:before,
.section-title:after{
  content:"";
  height:2px;
  background:var(--brown);
  opacity:.85;
}
.section-title h2{
  font-family:'Bebas Neue';
  font-size:clamp(44px,7vw,96px);
  letter-spacing:.06em;
  margin:0;
  line-height:.9;
}

.about-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:70px;
  align-items:center;
}
.photo-card{
  background:var(--cream);
  padding:18px;
  box-shadow:var(--shadow);
}
.photo-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.about-copy h3{
  font-family:'Bebas Neue';
  font-size:clamp(36px,5vw,74px);
  line-height:.95;
  margin:0 0 24px;
}
.about-copy p{
  font-size:17px;
  color:#625959;
  margin:0 0 18px;
}
.quote{
  margin-top:34px;
  padding:26px 0 26px 28px;
  border-left:3px solid var(--brown);
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,3vw,42px);
  line-height:1.13;
  color:var(--brown);
}

.split-band{
  background:var(--brown);
  color:#fff;
}
.split-band .section-title:before,
.split-band .section-title:after{
  background:#fff;
}

.events{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,.18);
}
.event{
  min-height:260px;
  background:#5b5353;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}
.event:nth-child(1){
  background:linear-gradient(rgba(71,65,65,.35),rgba(71,65,65,.82)),url('../img/hero1.jpg') center/cover;
}
.event:nth-child(2){
  background:linear-gradient(rgba(71,65,65,.28),rgba(71,65,65,.8)),url('../img/hero12.jpg') center/cover;
}
.event:nth-child(3){
  background:linear-gradient(rgba(71,65,65,.28),rgba(71,65,65,.8)),url('../img/hero10.jpg') center/cover;
}
.event:nth-child(4){
  background:linear-gradient(rgba(71,65,65,.28),rgba(71,65,65,.8)),url('../img/hero.jpg') center/cover;
}
.event span{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.78;
}
.event strong{
  font-family:'Bebas Neue';
  font-size:38px;
  letter-spacing:.05em;
  line-height:1;
  margin-top:8px;
}

.music-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:62px;
  align-items:center;
}
.music-card{
  background:#fff;
  color:var(--brown);
  padding:44px;
  box-shadow:var(--shadow);
}
.music-card h3{
  font-family:'Bebas Neue';
  font-size:70px;
  margin:0 0 18px;
  line-height:.9;
}
.platforms{
  display:grid;
  gap:12px;
  margin-top:26px;
}
.platforms a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding:14px 0;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
}
.portrait-cutout{
  align-self:end;
  max-height:680px;
  object-fit:contain;
  filter:drop-shadow(0 30px 55px rgba(0,0,0,.28));
}

/* GALLERY - ORIGINAL IMAGE RATIO */
.gallery{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}

.gallery img{
  width:100%;
  height:auto;
  object-fit:contain;
  background:var(--cream);
  filter:grayscale(20%);
  transition:.35s;
  transform:translateY(34px) scale(.985);
}

.section.in-view .gallery img{
  transform:translateY(0) scale(1);
}

.gallery img:hover{
  filter:grayscale(0);
  transform:scale(1.015) translateY(-6px);
  box-shadow:0 30px 70px rgba(71,65,65,.18);
}

.gallery img:nth-child(1),
.gallery img:nth-child(2),
.gallery img:nth-child(3){
  aspect-ratio:auto;
}

.booking{
  background:var(--cream);
  text-align:center;
}
.booking-box{
  width:min(780px,100%);
  margin:auto;
  padding:70px 28px;
  background:var(--paper);
  box-shadow:var(--shadow);
}
.booking-box h2{
  font-family:'Bebas Neue';
  font-size:clamp(58px,9vw,120px);
  line-height:.85;
  margin:0 0 22px;
}
.booking-box p{
  font-size:18px;
  color:#665d5d;
}
.email{
  display:inline-block;
  font-size:clamp(23px,4vw,44px);
  font-family:'Bebas Neue';
  letter-spacing:.05em;
  border-bottom:3px solid var(--brown);
  margin:18px 0 26px;
}
.socials{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:22px;
}
.socials a{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  color:var(--muted);
}

.footer{
  padding:48px 0;
  text-align:center;
  background:var(--brown);
  color:#fff;
}
.footer img{
  height:40px;
  margin:0 auto 18px;
}
.footer p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

/* EFFECTS */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:999;
  background:
    radial-gradient(circle at var(--mx,50%) var(--my,20%), rgba(71,65,65,.055), transparent 30vw),
    linear-gradient(90deg, rgba(71,65,65,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(71,65,65,.018) 1px, transparent 1px);
  background-size:auto,72px 72px,72px 72px;
  opacity:.72;
  mix-blend-mode:multiply;
}

.header{
  transform:translateY(-10px);
  animation:navDrop .75s cubic-bezier(.22,.61,.36,1) forwards;
}
.menu a{
  position:relative;
}
.menu a:not(.active)::after,
.lang a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .32s ease;
}
.menu a:hover::after,
.lang a:hover::after,
.menu a.is-active::after{
  transform:scaleX(1);
  transform-origin:left;
}
.hamb{
  transition:transform .25s ease,background .25s ease;
}
.hamb:hover{
  transform:rotate(4deg) scale(1.04);
  background:#fff;
}
.hero{
  background-attachment:fixed;
}
.hero-content{
  opacity:0;
  transform:translateY(28px);
  animation:heroIn 1s cubic-bezier(.22,.61,.36,1) .15s forwards;
}
.hero .line{
  display:none !important;
}
.hero h1{
  opacity:0;
  letter-spacing:.12em;
  animation:titleIn .95s cubic-bezier(.22,.61,.36,1) .45s forwards;
}
.hero p,
.hero-actions{
  opacity:0;
  transform:translateY(16px);
  animation:softUp .8s ease .75s forwards;
}
.hero-actions{
  animation-delay:.9s;
}
.scroll-note{
  animation:scrollPulse 2.2s ease-in-out infinite;
}
.btn{
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,.38),transparent);
  transform:translateX(-120%);
  transition:transform .65s ease;
}
.btn:hover::before{
  transform:translateX(120%);
}

.section-title:before,
.section-title:after{
  transform:scaleX(0);
  transition:transform .85s cubic-bezier(.22,.61,.36,1);
}
.section-title:before{
  transform-origin:right;
}
.section-title:after{
  transform-origin:left;
}
.section.in-view .section-title:before,
.section.in-view .section-title:after{
  transform:scaleX(1);
}
.section-title h2,
.about-copy,
.photo-card,
.event,
.music-card,
.portrait-cutout,
.gallery img,
.booking-box{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1), filter .35s ease, box-shadow .35s ease;
}
.section.in-view .section-title h2,
.section.in-view .about-copy,
.section.in-view .photo-card,
.section.in-view .event,
.section.in-view .music-card,
.section.in-view .portrait-cutout,
.section.in-view .gallery img,
.section.in-view .booking-box{
  opacity:1;
  transform:translateY(0);
}
.section.in-view .photo-card{transition-delay:.08s}
.section.in-view .about-copy{transition-delay:.18s}
.section.in-view .event:nth-child(1){transition-delay:.08s}
.section.in-view .event:nth-child(2){transition-delay:.16s}
.section.in-view .event:nth-child(3){transition-delay:.24s}
.section.in-view .event:nth-child(4){transition-delay:.32s}
.section.in-view .music-card{transition-delay:.08s}
.section.in-view .portrait-cutout{transition-delay:.18s}
.section.in-view .gallery img:nth-child(1){transition-delay:.06s}
.section.in-view .gallery img:nth-child(2){transition-delay:.14s}
.section.in-view .gallery img:nth-child(3){transition-delay:.22s}

.photo-card{
  transition-property:opacity,transform,box-shadow;
}
.photo-card:hover{
  transform:translateY(-8px);
  box-shadow:0 42px 100px rgba(71,65,65,.20);
}
.photo-card img{
  transition:transform .75s ease, filter .5s ease;
}
.photo-card:hover img{
  transform:scale(1.018);
  filter:saturate(1.04) contrast(1.02);
}
.event{
  transition-property:opacity,transform,filter;
}
.event::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.16),transparent 42%);
  opacity:0;
  transition:opacity .35s ease;
}
.event::after{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.35);
  opacity:0;
  transform:scale(.96);
  transition:.35s ease;
}
.event:hover{
  filter:saturate(1.08);
  transform:translateY(-6px);
}
.event:hover::before,
.event:hover::after{
  opacity:1;
  transform:scale(1);
}
.event span,
.event strong{
  position:relative;
  z-index:1;
  transition:transform .35s ease;
}
.event:hover span,
.event:hover strong{
  transform:translateY(-5px);
}
.platforms a{
  transition:padding .25s ease,color .25s ease,border-color .25s ease;
}
.platforms a:hover{
  padding-left:12px;
  color:#000;
  border-color:rgba(71,65,65,.5);
}
.platforms a span{
  transition:transform .25s ease;
}
.platforms a:hover span{
  transform:translate(4px,-4px);
}
.portrait-cutout{
  animation:floatPortrait 6.5s ease-in-out infinite;
}
.quote{
  position:relative;
  overflow:hidden;
}
.quote::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:3px;
  background:#fff;
  animation:quoteGlow 3s ease-in-out infinite;
}
.email{
  transition:letter-spacing .3s ease,color .3s ease;
}
.email:hover{
  letter-spacing:.075em;
  color:#2c2929;
}
.socials a{
  position:relative;
  transition:color .25s ease,transform .25s ease;
}
.socials a:hover{
  color:var(--brown);
  transform:translateY(-2px);
}
.footer img{
  transition:transform .4s ease;
}
.footer img:hover{
  transform:scale(1.04);
}

/* ANIMATIONS */
@keyframes navDrop{
  to{transform:translateY(0)}
}
@keyframes heroIn{
  to{opacity:1;transform:translateY(0)}
}
@keyframes softUp{
  to{opacity:1;transform:translateY(0)}
}
@keyframes titleIn{
  to{opacity:1;letter-spacing:.04em}
}
@keyframes scrollPulse{
  0%,100%{opacity:.45;transform:translateY(0)}
  50%{opacity:1;transform:translateY(10px)}
}
@keyframes floatPortrait{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
@keyframes quoteGlow{
  0%,100%{opacity:.15}
  50%{opacity:.7}
}

/* TABLET */
@media(max-width:900px){
  .menu{
    position:fixed;
    inset:86px 18px auto;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:#fff;
    color:var(--brown);
    padding:26px;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }

  .menu.open{
    display:flex;
  }

  .menu a,
  .nav .menu a,
  .header .menu a{
    color:var(--brown) !important;
  }

  .hamb{
    display:block;
  }

  .hero{
    background-position:center top;
    background-attachment:scroll;
  }

  .about-grid,
  .music-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .events{
    grid-template-columns:1fr 1fr;
  }

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

  .section{
    padding:78px 0;
  }

  .hero-content{
    padding-top:130px;
  }

  .scroll-note{
    display:none;
  }

  .menu a:not(.active)::after,
  .lang a::after{
    bottom:-3px;
  }

  .portrait-cutout{
    animation:none;
  }
}

/* MOBILE */
@media(max-width:560px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .header{
    padding:14px 0;
  }

  .brand img,
  .logo img,
  .header-logo img,
  img.logo{
    width:160px !important;
    max-width:160px !important;
    height:auto !important;
  }

  .events{
    grid-template-columns:1fr;
  }

  .hero-actions{
    display:grid;
  }

  .btn{
    width:100%;
  }

  .section-title{
    gap:12px;
  }

  .booking-box{
    padding:48px 18px;
  }

  .hero-content{
    padding-top:120px;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }

  .section-title h2,
  .about-copy,
  .photo-card,
  .event,
  .music-card,
  .portrait-cutout,
  .gallery img,
  .booking-box{
    opacity:1!important;
    transform:none!important;
  }
}
@media(max-width:900px){
  .gallery img{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
    display:block !important;
    width:100% !important;
    height:auto !important;
    object-fit:contain !important;
  }

  .gallery{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
  }
}