:root{
  --ink:#12151c;
  --surface:#1b2030;
  --surface-2:rgba(28, 30, 36, 0.7);
  --ivory:#ede7da;
  --ivory-dim:#a9a396;
  --brass:#519368;
  --wine:#8b3a3a;
  --teal:#3e5c55;
  --line: rgba(237,231,218,0.14);
  --max: 920px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--ink);
  color:var(--ivory);
  font-family:'Inter', sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1 {
  font-size:150px !important;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:500;
  margin:0;
  color:var(--ivory);
}
a{color:inherit; text-decoration:none;}
a:focus-visible, button:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
}
::selection{ background:var(--brass); color:var(--ink); }

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

/* NAV */
header.site-nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  background:rgba(18,21,28,0.70); 
  /* background: #03728595; */
  /* background:#133D4570; */
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
  transition:border-color .3s ease;
}
header.site-nav.scrolled{ border-bottom-color:var(--line); }
.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-mark{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:1.3rem;
}
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:44px;
  height:44px;
  padding:11px;
  background:none;
  border:1px solid var(--line);
  border-radius:2px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--ivory);
  border-radius:1px;
  transition:transform .25s ease, opacity .25s ease;
}
.site-nav.open .menu-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.site-nav.open .menu-toggle span:nth-child(2){ opacity:0; }
.site-nav.open .menu-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
.nav-links{
  display:flex;
  gap:32px;
  list-style:none;
  margin:0; padding:0;
  font-size:0.94rem;
  align-items:center;
}
.nav-links a{ color:var(--ivory-dim); transition:color .2s ease; }
.nav-links a:hover{ color:var(--brass); }

.lang-toggle{
  background:none;
  border:1px solid var(--line);
  color:var(--ivory-dim);
  font:inherit;
  font-size:0.86rem;
  padding:5px 12px;
  border-radius:2px;
  cursor:pointer;
  transition:color .2s ease, border-color .2s ease;
}
.lang-toggle:hover{ color:var(--brass); border-color:var(--brass); }
.nav-social{ display:flex; align-items:center; gap:16px; }
.nav-social a{ display:inline-flex; align-items:center; }
.nav-social svg{ width:18px; height:18px; }

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding-top:90px;
  position:relative;
  overflow:hidden;
}
.hero-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
  width:100%;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}
.hero-portrait{ display:flex; justify-content:flex-end; }
.hero-portrait img{
  width:100%;
  max-width:400px;
  display:block;
  border-radius:4px;
  border:1px solid var(--line);
  aspect-ratio:3/4;
  object-fit:cover;
}
.hero-kicker{
  color:var(--ivory-dim);
  font-size:1.02rem;
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(3rem, 9vw, 6.4rem);
  line-height:0.98;
  letter-spacing:-0.01em;
}
.hero h1 em{
  font-style:italic;
  color:var(--brass);
  display:block;
}
.hero-tagline{
  max-width:520px;
  margin-top:26px;
  font-size:1.12rem;
  color:var(--ivory-dim);
}
.hero-cta{
  display:flex;
  gap:16px;
  margin-top:40px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:13px 26px;
  border-radius:2px;
  font-size:0.95rem;
  font-weight:500;
  border:1px solid var(--line);
  transition:all .25s ease;
}
.btn-solid{ background:var(--brass); color:var(--ink); border-color:var(--brass); }
.btn-solid:hover{ background:#133D45; color:var(--ivory); border-color:#133D45; }
.btn-ghost:hover{ border-color:var(--brass); color:var(--brass); }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

/* waveform */
.waveform{
  display:flex;
  align-items:flex-end;
  gap:5px;
  height:64px;
  margin-top:56px;
}
.waveform span{
  width:5px;
  background:var(--brass);
  opacity:0.55;
  border-radius:1px;
  transform-origin:bottom;
  animation:bar 2.6s ease-in-out infinite;
}
@keyframes bar{
  0%, 100% { transform:scaleY(0.25); }
  50% { transform:scaleY(1); }
}

/* SECTION shared */
section{ padding:120px 0; border-top:1px solid var(--line); }
.eyebrow-less-heading{
  font-size:clamp(1.8rem, 3.6vw, 2.6rem);
  max-width:600px;
}
.section-lede{
  color:var(--ivory-dim);
  max-width:560px;
  margin-top:18px;
  font-size:1.02rem;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:64px;
  margin-top:56px;
}
.about-copy p{ max-width:56ch; color:var(--ivory-dim); }
.about-copy p + p{ margin-top:16px; }

.timeline{ list-style:none; margin:0; padding:0; border-left:1px solid var(--line); }
.timeline li{
  position:relative;
  padding:0 0 34px 28px;
}
.timeline li:last-child{ padding-bottom:0; }
.timeline li::before{
  content:'';
  position:absolute;
  left:-5px; top:4px;
  width:9px; height:9px;
  background:var(--brass);
  border-radius:50%;
}
.timeline .yr{
  font-family:'Fraunces', serif;
  font-style:italic;
  color:var(--brass);
  font-size:1.05rem;
  display:block;
  margin-bottom:4px;
}
.timeline .ev{ color:var(--ivory-dim); font-size:0.96rem; }
.timeline .ev a{ color:var(--brass); text-decoration:underline; text-underline-offset:3px; }
.timeline .ev a:hover{ color:var(--ivory); }

/* LISTEN (spotify embed) */
.listen-frame-wrap{
  margin-top:44px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--line);
}
.listen-links{
  margin-top:22px;
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  font-size:0.95rem;
}
.listen-links a{ color:var(--brass); border-bottom:1px solid transparent; }
.listen-links a:hover{ border-bottom-color:var(--brass); }

/* VIDEO */
.video-frame-wrap{
  margin-top:44px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio:16/9;
}
.video-frame-wrap iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}
.video-more{ margin-top:18px; }
.video-more a{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--brass);
  border-bottom:1px solid transparent;
  font-size:0.95rem;
}
.video-more a:hover{ border-bottom-color:var(--brass); }
.video-more svg{ width:18px; height:18px; flex-shrink:0; }

/* DISCOGRAPHY */
.album-row{
  display:grid;
  grid-template-columns: 168px 1fr;
  gap:36px;
  padding:38px 0;
  border-top:1px solid var(--line);
  align-items:center;
}
.album-row:first-of-type{ border-top:none; }
.cover{
  width:168px; height:168px;
  border-radius:4px;
  position:relative;
  overflow:hidden;
  flex-shrink:0;
}
.cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.album-meta .album-year{ color:var(--ivory-dim); font-size:0.9rem; }
.album-meta h3{ font-size:1.5rem; margin-top:4px; }
.album-meta p{ color:var(--ivory-dim); margin-top:8px; max-width:52ch; font-size:0.98rem; }
.album-extras{ margin-top:14px; display:flex; flex-direction:column; gap:6px; font-size:0.9rem; }
.album-extras a,
.album-extras span{ color:var(--ivory); text-decoration:underline; }
.album-extras a:hover{ color:var(--brass); }
.album-links{ margin-top:14px; display:flex; gap:20px; font-size:0.9rem; flex-wrap:wrap; }
.album-buy{ margin-top:16px; }
.album-links a{ color:var(--brass); border-bottom:1px solid transparent; }
.album-links a:hover{ border-bottom-color:var(--brass); }

/* PROJECTS */
.projects-list{
  margin-top:56px;
  display:grid;
  gap:44px;
}
.project{
  padding-top:36px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:220px 1fr;
  gap:32px;
  align-items:start;
}
.project:first-child{ padding-top:0; border-top:none; }
.project-img{
  width:220px;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:4px;
  border:1px solid var(--line);
}
.project h3{ font-size:1.3rem; }
.project p{ color:var(--ivory-dim); max-width:56ch; margin-top:12px; font-size:0.98rem; }
.project-body p:first-of-type{ margin-top:8px; }

/* CONTACT / FOOTER */
footer{
  padding:100px 0 50px;
  /* border-top:1px solid var(--line); */
/*   background-color:#03728595; */
  background-color:rgba(28, 30, 36, 0.7);
}
.contact-grid{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}
.contact-grid h2{ font-size:clamp(1.8rem, 4vw, 2.8rem); max-width:440px; }
.contact-details{ font-size:0.98rem; color:var(--ivory-dim); }
.contact-form{ margin-top:18px; max-width:620px; }
.hp-field{ position:absolute; left:-9999px; opacity:0; height:0; width:0; pointer-events:none; }
.field{ margin-bottom:14px; }
.field label{ display:block; font-size:0.8rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--ivory-dim); margin-bottom:6px; }
.field input,
.field textarea{
  width:100%;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:4px;
  color:var(--ivory);
  padding:12px 14px;
  font:inherit;
  font-size:0.95rem;
  resize:vertical;
}
.field input::placeholder,
.field textarea::placeholder{ color:var(--ivory-dim); }
.field input:focus,
.field textarea:focus{ outline:none; border-color:var(--brass); }
.form-btn{
  background:var(--brass);
  color:var(--ink);
  border:none;
  border-radius:4px;
  padding:12px 28px;
  font:inherit;
  font-weight:600;
  cursor:pointer;
  transition:opacity .2s;
}
.form-btn:hover{ opacity:0.9; }
.form-btn:disabled{ opacity:0.5; cursor:default; }
.form-status{ min-height:1.4em; margin:12px 0 0; font-size:0.9rem; color:var(--ivory-dim); }
.form-status.ok{ color:var(--brass); }
.form-status.error{ color:var(--wine); }
.contact-details a{ color:var(--ivory); }
.contact-details a:hover{ color:var(--brass); }
.social-row{ display:flex; gap:22px; margin-top:18px; flex-wrap:wrap; }
.foot-bottom .social-row{ margin-top:0; align-items:center; }
.social-row a{ display:inline-flex; align-items:center; }
.social-row svg{ width:24px; height:24px; }
.foot-bottom{
  margin-top:80px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:var(--ivory-dim);
  font-size:0.86rem;
  flex-wrap:wrap;
  gap:10px;
}

@media (max-width: 720px){
  .nav-inner{ flex-wrap:wrap; }
  .menu-toggle{ display:flex; }
  .nav-links{
    display:none;
    width:100%;
    flex-direction:column;
    gap:0;
    padding:12px 0 8px;
  }
  .site-nav.open .nav-links{ display:flex; }
  .nav-links li{ border-bottom:1px solid var(--line); }
  .nav-links li:last-child{ border-bottom:none; }
  .nav-links a{ display:block; padding:12px 0; font-size:1.05rem; }
  .nav-social{ gap:22px; padding:14px 0 4px; }
  .nav-social svg{ width:22px; height:22px; }
  .lang-toggle{ margin-top:10px; }
  .about-grid{ grid-template-columns:1fr; gap:44px; }
  .project{ grid-template-columns:1fr; gap:20px; }
  .project-img{ width:100%; }
  .hero-grid{ grid-template-columns:1fr; gap:36px; }
  .hero-portrait{ justify-content:flex-start; }
  .hero-portrait img{ max-width:280px; }
  .album-row{ grid-template-columns:1fr; }
  .cover{ width:120px; height:120px; }
  section{ padding:80px 0; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .waveform span{ animation:none; transform:scaleY(0.6); }
}

#stripes {
  height: 200px;
  width: 2000px;
  background-color:rgb(245, 245, 234);
}

.stripes {
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 10px,
      #00000030 10px,
      #00000030 20px
  );
}

#stripesv {
  height: 200px;
  width: 2000px;
  background-color:rgb(245, 245, 234);
}

.stripesv {
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 10px,
      #00000020 10px,
      #00000020 20px
  );
}

#stripesdr {
  height: 200px;
  width: 2000px;
  background-color:rgb(245, 245, 234);
}

.stripesdr {
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      #00000020 10px,
      #00000020 20px
  );
}

#stripesdl {
  height: 200px;
  width: 2000px;
  background-color:rgb(245, 245, 234);
}

.stripesdl {
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      #00000020 10px,
      #00000020 20px
  );
}