:root{
  --bg:#0a0a0a;
  --ivory:#f5f1ea;
  --ivory-soft:#d9d2c7;
  --gold:#c3a368;
  --line:rgba(255,255,255,0.09);
  --shadow:0 30px 70px rgba(0,0,0,0.35);
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  color:var(--ivory);
  background:var(--bg);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.grain{
  position:fixed; inset:0; pointer-events:none; opacity:.04; z-index:2;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 30%, #fff 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 50% 70%, #fff 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 30% 80%, #fff 0 0.5px, transparent 0.6px);
  background-size:180px 180px;
}
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:22px 32px;
  background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition:background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
.site-header.scrolled{
  background:rgba(10,10,10,.78);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.brand{
  font-family:"Cormorant Garamond",serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:1.1rem;
}
.nav{display:flex; gap:26px; font-size:.95rem; color:var(--ivory-soft)}
.nav a{position:relative}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px;
  background:var(--gold); transition:width .25s ease;
}
.nav a:hover::after{width:100%}
.lang-toggle{
  border:1px solid rgba(195,163,104,.45);
  color:var(--ivory); background:transparent; border-radius:999px;
  padding:9px 14px; cursor:pointer; letter-spacing:.08em; font-size:.8rem;
}
.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  align-items:center;
  isolation:isolate;
}
.hero-image,.hero-overlay{position:absolute; inset:0}
.hero-image{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 30%;
  transform:scale(1.05);
  transition:transform 5s ease;
}
.hero:hover .hero-image{transform:scale(1.08)}
.hero-overlay{
  background:
    linear-gradient(to right, rgba(0,0,0,.62), rgba(0,0,0,.20) 40%, transparent),
    linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,.02));
}
.hero-content{
  position:relative; z-index:1;
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  padding-top:72px;
}
.eyebrow,.section-label,.mini-title{
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--gold);
  font-size:.77rem;
  margin-bottom:16px;
}
.hero h1{
  margin:0;
  max-width:720px;
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
  font-size:clamp(3.4rem, 9vw, 7.2rem);
  line-height:.92;
  text-shadow:0 10px 30px rgba(0,0,0,.6);
}
.role{
  margin:16px 0 0;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.35rem, 2vw, 2rem);
  color:var(--ivory-soft);
  text-shadow:0 6px 20px rgba(0,0,0,.5);
}
.hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:34px}
.button{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:170px; padding:14px 22px; border-radius:999px;
  border:1px solid transparent;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
}
.button:hover{transform:translateY(-2px); opacity:.96}
.button-primary{background:var(--gold); color:#161616}
.button-secondary{
  border-color:rgba(255,255,255,.24);
  color:var(--ivory);
  background:rgba(255,255,255,.03);
}
.section{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  padding:110px 0;
}
.section-dark{
  width:100%;
  padding-inline:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.section-heading{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto 40px;
}
.section-heading h2,.text-panel h2{
  margin:0;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(2.2rem, 5vw, 4rem);
  line-height:1;
  max-width:880px;
}
.section-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center}
.about-grid{grid-template-columns:1.08fr .92fr}
.text-panel p{max-width:660px; color:var(--ivory-soft); font-size:1rem}
.text-panel p + p{margin-top:12px}
.image-panel img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.cards{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  display:grid;
  gap:22px;
}
.cards.one{grid-template-columns:minmax(0, 620px); justify-content:start}
.performance-card,.repertoire-column,.contact-card{
  padding:30px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.025);
  box-shadow:var(--shadow);
  transition:transform .35s ease, border-color .35s ease;
}
.performance-card:hover,.repertoire-column:hover,.contact-card:hover{
  transform:translateY(-4px);
  border-color:rgba(195,163,104,.35);
}
.performance-card .year{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold);
  letter-spacing:.14em;
  font-size:.82rem;
}
.performance-card h3,.repertoire-column h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
  font-size:2rem;
  line-height:1.05;
}
.performance-card p{margin:0; color:var(--ivory-soft)}
.masonry{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  gap:18px;
}
.gallery-item{
  overflow:hidden;
  border-radius:24px;
  background:#111;
  min-height:300px;
}
.gallery-item.large{grid-row:span 2}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease, filter .6s ease;
}
.gallery-item:hover img{
  transform:scale(1.04);
  filter:saturate(1.05);
}
.section-break{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  padding:20px 0 40px;
}
.section-break img{
  width:100%;
  max-height:90svh;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
  filter:grayscale(1);
}
.repertoire-grid{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:22px;
}
.repertoire-list{
  list-style:none;
  margin:0;
  padding:0;
}
.repertoire-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  color:var(--ivory-soft);
}
.repertoire-list li:last-child{border-bottom:none}
.repertoire-list span{color:var(--gold); white-space:nowrap}
.contact-grid,.industry-grid{align-items:start}
.industry-card{justify-content:center; min-height:100%}
.industry-list{margin:0; padding-left:18px; color:var(--ivory-soft)}
.industry-list li + li{margin-top:10px}
.contact-card{display:flex; flex-direction:column; gap:16px}
.contact-link{font-size:1.08rem; word-break:break-word}
.contact-link:hover{color:var(--gold)}
.site-footer{
  padding:24px;
  text-align:center;
  color:var(--ivory-soft);
  border-top:1px solid var(--line);
}
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
  will-change:opacity, transform;
}
.reveal.visible{opacity:1; transform:translateY(0)}
.reveal-delay-1{transition-delay:.12s}
.reveal-delay-2{transition-delay:.24s}
@media (max-width: 1100px){
  .cards.one{grid-template-columns:1fr}
}
@media (max-width: 980px){
  .nav{display:none}
  .section-grid,.cards,.masonry,.repertoire-grid,.about-grid{grid-template-columns:1fr}
  .gallery-item.large{grid-row:span 1}
  .hero-content,.section,.section-heading,.section-break{
    width:min(100%, calc(100% - 32px));
  }
  .section{padding:90px 0}
  .hero-image{object-position:50% 28%}
}
@media (max-width: 640px){
  .site-header{padding:18px 16px}
  .hero-actions{flex-direction:column; align-items:flex-start}
  .button{width:100%}
  .performance-card h3,.repertoire-column h3{font-size:1.7rem}
  .repertoire-list li{flex-direction:column; gap:4px}
}
