/* Self-hosted fonts — no request to Google, so visitor IPs stay private.
   Both families are variable fonts, so one file covers the whole weight range. */
@font-face{
  font-family:'Playfair Display';
  font-style:normal;
  font-weight:400 600;
  font-display:swap;
  src:url('/fonts/playfair-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Playfair Display';
  font-style:normal;
  font-weight:400 600;
  font-display:swap;
  src:url('/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url('/fonts/lora-latin.woff2') format('woff2');
  unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family:'Lora';
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
  src:url('/fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root{
  --ink:#F2EDE4;
  --paper:#131110;
  --rust:#B85C32;
  --rust-text:#C96B3E;
  --line:rgba(242,237,228,0.12);
  --muted:#8a8278;
  --display:'Playfair Display', serif;
  --body:'Lora', serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{background:var(--paper); color:var(--ink); font-family:var(--body); line-height:1.65;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:980px; margin:0 auto; padding:0 28px;}
img{max-width:100%; display:block;}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; top:-100px; left:16px; z-index:100;
  background:var(--rust); color:#fff; padding:10px 16px; border-radius:2px;
  font-size:0.85rem; transition:top 0.2s;
}
.skip-link:focus{top:16px;}

/* NAV — overlays hero, then solidifies on scroll */
header{
  position:fixed; top:0; left:0; right:0; z-index:20;
  padding:26px 0;
  transition: background 0.3s, padding 0.3s;
}
header.solid{background:rgba(19,17,16,0.92); backdrop-filter:blur(6px); padding:16px 0; border-bottom:1px solid var(--line);}
nav{display:flex; justify-content:space-between; align-items:center;}
.wordmark{font-family:var(--display); font-size:1.45rem; color:#fff; letter-spacing:0.01em; transition:color 0.3s;}
header.solid .wordmark{color:var(--ink);}
.navlinks{display:flex; gap:34px; font-size:0.95rem; letter-spacing:0.02em;}
.navlinks a{color:rgba(255,255,255,0.85); transition:color 0.3s;}
header.solid .navlinks a{color:var(--ink);}
.navlinks a:hover{color:var(--rust-text) !important;}

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:32px; height:32px; background:none; border:0; cursor:pointer; padding:0;
}
.nav-toggle span:not(.sr-only){
  display:block; width:100%; height:2px; background:#fff; transition:background 0.3s;
}
header.solid .nav-toggle span:not(.sr-only){background:var(--ink);}
a:focus-visible{outline:2px solid var(--rust); outline-offset:3px;}

/* HERO — full bleed photo */
.hero{
  height:100vh; min-height:560px; position:relative;
  display:flex; align-items:flex-end;
  background:#191510;
  background-image:
    linear-gradient(180deg, rgba(10,8,6,0.05) 0%, rgba(10,8,6,0.15) 55%, rgba(10,8,6,0.88) 100%),
    url('../images/hero.jpg');
  background-size:cover; background-position:center 25%;
}
.hero-inner{position:relative; width:100%; padding:0 28px 64px; max-width:980px; margin:0 auto;}
.hero-name{
  font-family:var(--display); font-weight:500; color:#fff;
  font-size:clamp(2.6rem, 7vw, 5.2rem); line-height:0.98; letter-spacing:-0.01em;
}
.hero-tag{color:rgba(255,255,255,0.82); font-size:1.05rem; margin-top:16px; max-width:42ch;}
.hero-credit{
  position:absolute; bottom:24px; left:28px; color:rgba(255,255,255,0.45);
  font-size:0.68rem; letter-spacing:0.03em;
}
.scroll-cue{
  position:absolute; bottom:24px; right:28px; color:rgba(255,255,255,0.6);
  font-size:0.74rem; letter-spacing:0.08em; text-transform:uppercase;
  display:flex; align-items:center; gap:8px;
}
.scroll-cue::after{content:""; width:1px; height:22px; background:rgba(255,255,255,0.4); animation:dropline 1.8s infinite;}
@keyframes dropline{0%{opacity:0; transform:translateY(-4px);} 50%{opacity:1;} 100%{opacity:0; transform:translateY(6px);}}

/* SECTIONS */
section{padding:88px 0;}
.section-head{margin-bottom:40px; border-bottom:1px solid var(--line); padding-bottom:18px;}
.section-head span{font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--rust-text);}
h2{font-family:var(--display); font-weight:500; font-size:clamp(1.6rem,3vw,2.2rem); margin-top:6px;}

/* MUSIC */
.album-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.album-card{border:1px solid var(--line); border-radius:2px; overflow:hidden; background:rgba(242,237,228,0.04);}
.album-meta{padding:16px 16px 4px;}
.album-title{font-family:var(--display); font-size:1.08rem;}
.album-sub{font-size:0.78rem; color:var(--muted); margin-top:3px;}
.embed-frame{width:100%; height:152px; border:0; display:block;}
.embed-frame-tall{height:352px;}

.listen-links{display:flex; gap:14px; padding:10px 16px 16px; flex-wrap:wrap;}
.listen-links a{font-size:0.76rem; color:var(--muted); border-bottom:1px solid transparent; transition:color 0.2s, border-color 0.2s;}
.listen-links a:hover{color:var(--rust-text); border-color:var(--rust-text);}

/* WATCH */
.video-facade{
  position:relative; aspect-ratio:16/9; border-radius:2px; overflow:hidden;
  border:1px solid var(--line); background:#000; cursor:pointer;
}
.video-facade img{width:100%; height:100%; object-fit:cover; opacity:0.75;}
.video-play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:64px; height:64px; border-radius:50%; background:var(--rust);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(0,0,0,0.4); transition:transform 0.2s;
}
.video-facade:hover .video-play, .video-facade:focus-visible .video-play{transform:translate(-50%,-50%) scale(1.08);}
.video-facade iframe{width:100%; height:100%; border:0; display:block;}

/* SHOWS */
.shows-panel{border:1px solid var(--line); border-radius:2px; padding:32px; background:rgba(242,237,228,0.04);}
.bit-widget{margin-top:18px;}
.bit-placeholder{
  margin-top:18px; padding:46px 22px; text-align:center;
  border:1px dashed rgba(242,237,228,0.25); border-radius:2px; font-size:0.85rem; color:var(--muted);
}
.bit-placeholder b{color:var(--rust-text); display:block; margin-bottom:6px; font-weight:600;}

/* ABOUT */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
.about-photo{
  background:#191510 url('../images/about.jpg');
  background-size:cover; background-position:center 20%;
  aspect-ratio:4/5; border-radius:2px;
}
.about-copy p{margin-bottom:16px; color:rgba(242,237,228,0.82);}
.about-copy p:first-child{font-family:var(--display); font-size:1.15rem; color:var(--ink);}
.detail-grid{margin-top:32px; padding-top:24px; border-top:1px solid var(--line); display:grid; grid-template-columns:1fr 1fr; gap:28px;}
.detail-label{font-size:0.74rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--rust-text); margin-bottom:8px;}
.detail-list{font-size:0.92rem; color:var(--muted);}
.read-more{display:inline-block; margin-top:8px; font-size:0.88rem; color:var(--rust-text); border-bottom:1px solid var(--rust-text); padding-bottom:1px;}

/* CONNECT */
#connect{background:var(--paper); color:var(--ink);}
#connect .section-head{border-color:var(--line);}
.connect-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
.connect-card h3{font-family:var(--display); font-size:1.25rem; margin-bottom:12px;}
.connect-card p{color:rgba(242,237,228,0.7); font-size:0.92rem; margin-bottom:18px;}
.btn{display:inline-block; font-size:0.85rem; padding:13px 24px; border-radius:2px;}
.btn-primary{background:var(--rust); color:#fff;}
.mail-form{display:flex; border:1px solid rgba(242,237,228,0.3); border-radius:2px; overflow:hidden;}
.mail-form input{flex:1; background:transparent; border:0; padding:13px 14px; color:var(--ink); font-family:var(--body);}
.mail-form input::placeholder{color:rgba(242,237,228,0.45);}
.mail-form input:focus{outline:none;}
.mail-form button{background:var(--rust); color:#fff; border:0; padding:0 20px; font-size:0.82rem; cursor:pointer;}
.form-note{font-size:0.76rem; color:var(--muted); margin-top:10px;}
.mail-frame{position:absolute; width:1px; height:1px; opacity:0; pointer-events:none;}

footer{padding:30px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; background:var(--paper); color:rgba(242,237,228,0.6); border-top:1px solid var(--line);}
.footer-socials{display:flex; gap:20px; font-size:0.78rem;}
.footer-socials a:hover{color:var(--rust-text);}
.footer-copy{font-size:0.74rem;}

/* ABOUT PAGE (full story) */
.page-hero{
  padding:150px 0 50px;
  border-bottom:1px solid var(--line);
}
.page-hero span{font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--rust-text);}
.page-hero h1{font-family:var(--display); font-weight:500; font-size:clamp(2rem,5vw,3rem); margin-top:8px;}
/* Story photo sits beside the copy and stays in view as it scrolls.
   The crop is deliberate: the source frame has the front row of the audience
   across the lower third, so it is cut above their heads — no identifiable
   faces of people who did not consent to being on the site. */
.story-layout{
  display:grid; grid-template-columns:minmax(0,320px) minmax(0,1fr);
  gap:56px; align-items:start;
  /* padding-block only — a shorthand here would override .wrap's side padding */
  padding-top:56px; padding-bottom:100px;
}
.story-photo{position:sticky; top:104px; margin:0;}
.story-photo img{
  width:100%; height:272px;
  object-fit:cover; object-position:center 5%;
  border-radius:2px;
}
.story-photo figcaption{font-size:0.68rem; color:var(--muted); margin-top:10px; letter-spacing:0.03em;}

.story{max-width:680px;}
.story p{margin-bottom:20px; color:rgba(242,237,228,0.85); font-size:1.02rem;}
.story p:first-child{font-family:var(--display); font-size:1.2rem; color:var(--ink);}
.back-link{display:inline-block; margin-top:8px; font-size:0.88rem; color:var(--rust-text); border-bottom:1px solid var(--rust-text); padding-bottom:1px;}

@media (max-width:760px){
  .album-grid{grid-template-columns:1fr;}
  .about-grid, .connect-grid, .detail-grid{grid-template-columns:1fr;}
  .story-layout{grid-template-columns:1fr; gap:28px; padding-top:40px; padding-bottom:80px;}
  .story-photo{position:static;}
  /* Wider box on phones, so shift down to keep him off the corner. */
  .story-photo img{height:210px; object-position:center 22%;}
  .nav-toggle{display:flex;}
  .navlinks{
    display:flex; flex-direction:column; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:rgba(19,17,16,0.97); backdrop-filter:blur(6px);
    max-height:0; overflow:hidden; transition:max-height 0.25s ease;
  }
  .navlinks.open{max-height:260px;}
  .navlinks a{color:var(--ink) !important; padding:16px 28px; border-bottom:1px solid var(--line);}
}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  .scroll-cue::after{animation:none;}
  .navlinks{transition:none;}
  .skip-link{transition:none;}
}
