/* The Dead Show Dealers — thedeadshowdealers.com / deadshowdealers.com
 *
 * Palette is taken from the band's own logo: cold near-black ground with a
 * blue bias (a neutral grey reads as unconsidered next to that ink), the
 * logo's cold white, a bone tone for the Americana half of the sound and an
 * oxblood for the aggressive half. Oxblood is deliberately rationed — it marks
 * one thing (the memorial) and nothing else.
 *
 * COMPATIBILITY (owner standing rule, and the #111/#112 lesson): every modern
 * property here is progressive enhancement, never load-bearing. `inset` always
 * follows longhands; `aspect-ratio` has an @supports padding-ratio fallback;
 * flex `gap` degrades to flush spacing rather than breaking layout. No
 * mask-image, no :has(), no container queries.
 */
:root{
  --bg:#0b0d12;
  --bg2:#07080b;
  --panel:#12151c;
  --panel2:#171b23;
  --ink:#e8f1f2;
  --bone:#c9bda6;
  --blood:#9c2b21;
  --muted:#79848f;
  --line:rgba(232,241,242,0.10);
  --line2:rgba(232,241,242,0.18);
  --maxw:1120px;
  /* Owner pick 2026-08-17: the whole site now uses the same face as Robert's
     page. Cormorant is far lighter than the slab it replaced, so every rule
     below carries an explicit weight and a larger size — dropped in at the old
     sizes it looked weedy, especially at small sizes like the nav and buttons. */
  --display:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:'Barlow', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  /* Robert's page was the first to use this face (owner pick, option B). The
     whole site later followed, so this is now an ALIAS of --display rather than
     a second copy of the same stack — two literals would drift apart the next
     time one of them is edited. */
  --memorial:var(--display);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--bone)}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 clamp(18px,5vw,44px)}
.sep{color:var(--muted);padding:0 .35em}

/* ------------------------------- nav ------------------------------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:60;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding:12px clamp(16px,5vw,44px);
  background:rgba(7,8,11,.86);
  border-bottom:1px solid var(--line);
}
.nav-brand{
  font-family:var(--display);
  font-weight:600;
  font-size:1.22rem;letter-spacing:.02em;
  color:var(--ink);text-decoration:none;white-space:nowrap;
}
.nav-links{display:flex;gap:20px;flex-wrap:wrap}
.nav-links a{
  color:var(--muted);text-decoration:none;font-size:.86rem;
  text-transform:uppercase;letter-spacing:.14em;font-weight:600;
  padding:6px 0;
}
.nav-links a:hover,.nav-links a:focus{color:var(--bone)}

/* ------------------------------ hero ------------------------------
   Full-bleed, built from the band's own Emma Mae cover. Two layers: the
   image, then a scrim, so the logo never fights the photograph. The image
   is a background rather than an <img> so it can crop freely at any
   viewport without a wrapper.                                          */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  padding:120px 20px 96px;
  background:var(--bg2);
  overflow:hidden;
}
.hero-media{
  position:absolute;top:0;right:0;bottom:0;left:0;inset:0;
  background-image:url("../assets/hero.jpg");
  background-position:center 38%;
  background-repeat:no-repeat;
  background-size:cover;
}
/* Scrim, not opacity on the image: a gradient keeps the top dark for the
   fixed nav and the bottom dark for the scroll cue, while letting the
   middle of the photograph stay legible. */
.hero-scrim{
  position:absolute;top:0;right:0;bottom:0;left:0;inset:0;
  background:linear-gradient(180deg,
    rgba(7,8,11,.92) 0%,
    rgba(7,8,11,.58) 34%,
    rgba(7,8,11,.72) 72%,
    rgba(11,13,18,1) 100%);
}
.hero-inner{position:relative;z-index:2;max-width:760px}
.hero-logo{line-height:0;margin-bottom:30px}
.hero-logo img{
  width:min(80vw,470px);height:auto;
  filter:drop-shadow(0 22px 54px rgba(0,0,0,.9));
}
.hero-tag{
  font-size:clamp(.78rem,2.4vw,1rem);
  text-transform:uppercase;letter-spacing:.34em;
  color:var(--bone);
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:38px}
.btn{
  display:inline-block;
  font-family:var(--display);
  font-weight:600;
  font-size:1.12rem;letter-spacing:.03em;
  padding:13px 36px;
  background:var(--bone);color:#14100a;
  text-decoration:none;
  border:1px solid var(--bone);
  transition:background .2s,border-color .2s,transform .2s;
}
.btn:hover,.btn:focus{background:#ddd2bd;border-color:#ddd2bd;transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink);border-color:rgba(232,241,242,.34)}
.btn-ghost:hover,.btn-ghost:focus{background:transparent;border-color:var(--bone);color:var(--bone)}

.hero-scroll{
  position:absolute;left:50%;bottom:26px;z-index:2;
  width:26px;height:42px;margin-left:-13px;
  border:1px solid rgba(232,241,242,.34);border-radius:14px;
  display:block;
}
.hero-scroll span{
  position:absolute;left:50%;top:9px;margin-left:-2px;
  width:4px;height:7px;border-radius:2px;background:var(--bone);
  animation:scrollcue 1.9s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{opacity:0;transform:translateY(0)}
  35%{opacity:1}
  100%{opacity:0;transform:translateY(15px)}
}

/* ------------------------------ grain ------------------------------ */
.grain{
  position:fixed;top:0;right:0;bottom:0;left:0;inset:0;
  z-index:80;pointer-events:none;
  background-image:url("../assets/grain.png");
  background-repeat:repeat;
  opacity:.5;
}

/* ------------------------------ sound ------------------------------
   Their own sentence off Bandcamp, given a whole band of the page. The
   six genres are the most interesting fact about this band; burying
   them in body copy was what made the first pass read as a brochure. */
.sound{
  background:var(--bg);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:clamp(52px,8vw,86px) 0;
  text-align:center;
}
.sound-lead,.sound-tail{
  font-family:var(--display);font-weight:300;
  color:var(--muted);
  font-size:clamp(1.12rem,2.8vw,1.4rem);
  line-height:1.6;
  max-width:52ch;margin:0 auto;
}
.sound-list{
  list-style:none;
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:0 clamp(14px,3vw,30px);
  margin:26px 0;
}
.sound-list li{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(1.9rem,7.4vw,4.1rem);
  line-height:1.14;
  color:var(--ink);
}
.sound-list li:nth-child(even){color:var(--bone)}

/* ---------------------------- memorial ----------------------------
   The one place oxblood is used. Understated by intent — a hairline
   rule and a name, not a shrine.                                     */
.memorial{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--bg);
}
.memorial-inner{
  padding:46px 0;
  text-align:center;
  border-left:2px solid var(--blood);
}
.memorial-kicker{
  display:block;
  font-size:.7rem;text-transform:uppercase;letter-spacing:.32em;
  color:var(--blood);font-weight:700;margin-bottom:14px;
}
.memorial-name{font-family:var(--display);font-weight:400;
  font-size:clamp(1.8rem,5vw,2.7rem);line-height:1.14}
.memorial-role{color:var(--muted);font-size:.95rem;margin-top:6px}
.memorial-rip{
  margin-top:14px;
  font-family:var(--mono);font-size:.82rem;letter-spacing:.24em;
  color:var(--bone);
}

.memorial-more{
  display:inline-block;margin-top:20px;
  font-size:.74rem;text-transform:uppercase;letter-spacing:.2em;font-weight:600;
  color:var(--bone);text-decoration:none;
  border-bottom:1px solid var(--line2);padding-bottom:4px;
}
.memorial-more:hover,.memorial-more:focus{border-bottom-color:var(--bone)}

/* ---------------------------- sections ---------------------------- */
.section{padding:clamp(64px,9vw,110px) 0}
.section-alt{background:var(--bg2)}
.sec-head{margin-bottom:44px;max-width:62ch}
.kicker{
  display:block;
  font-size:.72rem;text-transform:uppercase;letter-spacing:.3em;
  color:var(--bone);font-weight:600;margin-bottom:12px;
}
.sec-head h2{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(2.2rem,6.2vw,3.9rem);
  line-height:1.06;
  text-wrap:balance;
}
.sec-note{font-family:var(--display);font-weight:300;color:var(--muted);
  font-size:1.18rem;line-height:1.66;margin-top:14px;max-width:56ch}

/* ---------------------------- releases ----------------------------
   Art-led. The first pass listed these as text beside a player, which is
   why the page read as plain — these covers are the band's strongest
   visual asset (a lit interrogation lamp, a foggy graveyard, a hand of
   cards) and they were nowhere on the page.                            */
.releases{list-style:none;display:flex;flex-direction:column;gap:clamp(22px,4vw,38px)}
.release{
  display:grid;
  grid-template-columns:minmax(0,320px) minmax(0,1fr);
  gap:clamp(20px,3vw,34px);
  align-items:start;
  padding:clamp(18px,2.4vw,26px);
  background:var(--panel);
  border:1px solid var(--line);
  transition:border-color .25s;
}
.release:hover{border-color:rgba(201,189,166,.4)}
.release-art{position:relative;overflow:hidden;background:var(--bg2);aspect-ratio:1}
.release-art img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.22,.61,.36,1), filter .35s;
  filter:saturate(.9) contrast(1.02);
}
.release:hover .release-art img{transform:scale(1.035);filter:saturate(1) contrast(1.05)}
.release-year{
  position:absolute;left:0;bottom:0;
  font-family:var(--mono);font-size:.74rem;letter-spacing:.2em;
  color:var(--bone);background:rgba(7,8,11,.86);
  padding:6px 11px;font-variant-numeric:tabular-nums;
  border-top:1px solid var(--line);border-right:1px solid var(--line);
}
.release-body{min-width:0;display:flex;flex-direction:column}
.release-title{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(1.6rem,4vw,2.5rem);
  line-height:1.1;text-wrap:balance;
}
.release-paren{display:block;font-size:.62em;color:var(--muted);margin-top:5px}
.release-sub{color:var(--bone);font-size:.86rem;margin-top:12px;
  font-variant-numeric:tabular-nums;letter-spacing:.04em}
.release-note{color:var(--muted);font-size:.92rem;margin-top:6px}
.release-player{margin-top:18px}
.release-player iframe{width:100%;height:120px;border:0;display:block;background:var(--bg2)}
.release-link{
  align-self:flex-start;margin-top:16px;
  font-size:.74rem;text-transform:uppercase;letter-spacing:.18em;font-weight:600;
  color:var(--bone);text-decoration:none;
  border-bottom:1px solid var(--line2);padding-bottom:3px;
}
.release-link:hover,.release-link:focus{border-bottom-color:var(--bone)}
.studio-note{
  margin-top:36px;color:var(--muted);font-size:.9rem;
  border-top:1px solid var(--line);padding-top:20px;max-width:62ch;
}

/* Scroll reveal. Purely additive: the .reveal class only ever ADDS a
   hidden state via JS (.js-reveal on <html>), so with JS off — or on an
   engine without IntersectionObserver — every section is visible as
   normal markup. Never hide content and hope a script un-hides it. */
.js-reveal .reveal{opacity:0;transform:translateY(18px)}
.js-reveal .reveal.is-in{
  opacity:1;transform:none;
  transition:opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------ video ------------------------------ */
.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(min(280px,100%),1fr));
  gap:18px;
}
.vfacade{
  position:relative;display:block;width:100%;
  padding:0;border:1px solid var(--line);background:var(--panel);
  cursor:pointer;overflow:hidden;text-align:left;
  color:inherit;font:inherit;
  aspect-ratio:16/9;
}
.vfacade:hover,.vfacade:focus{border-color:var(--bone);outline:none}
.vfacade:focus-visible{outline:2px solid var(--bone);outline-offset:2px}
.vfacade img{width:100%;height:100%;object-fit:cover;opacity:.72;transition:opacity .25s}
.vfacade:hover img,.vfacade:focus img{opacity:1}
.vplay{
  position:absolute;top:50%;left:50%;
  margin:-27px 0 0 -27px;
  width:54px;height:54px;border-radius:50%;
  background:rgba(11,13,18,.66);border:2px solid var(--bone);
}
.vplay::after{
  content:"";position:absolute;top:50%;left:50%;
  margin:-9px 0 0 -5px;
  border-left:16px solid var(--bone);
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
}
.vtitle{
  position:absolute;left:0;right:0;bottom:0;
  padding:26px 14px 11px;
  font-size:.9rem;font-weight:600;line-height:1.3;
  background:linear-gradient(0deg,rgba(7,8,11,.94),rgba(7,8,11,0));
  color:var(--ink);
}
.vyear{color:var(--muted);font-family:var(--mono);font-size:.74rem;margin-left:6px}
.vfacade iframe{width:100%;height:100%;border:0;display:block}

/* ------------------------------ band ------------------------------ */
.members{list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(min(250px,100%),1fr));gap:1px;background:var(--line)}
.member{background:var(--bg);padding:22px 20px;display:flex;flex-direction:column;gap:5px}
.section-alt .member{background:var(--bg2)}
.member-name{font-family:var(--display);font-weight:500;font-size:1.36rem;line-height:1.2}
.member-role{color:var(--muted);font-size:.9rem}
.member-note{
  margin-top:5px;font-size:.68rem;text-transform:uppercase;letter-spacing:.2em;
  color:var(--blood);font-weight:700;
}
.member-rw{border-left:2px solid var(--blood)}
.now-panel{
  margin-top:36px;padding:26px;
  background:var(--panel);border:1px solid var(--line);
}
.now-panel p{font-family:var(--display);font-weight:300;font-size:1.22rem;
  line-height:1.62;color:var(--ink);max-width:60ch}
.now-panel strong{color:var(--bone)}

/* ----------------------------- contact ----------------------------- */
.contact-lead{font-family:var(--display);font-weight:300;
  font-size:clamp(1.25rem,3vw,1.6rem);line-height:1.6;max-width:60ch}
.mailto{
  font-family:var(--display);font-weight:500;color:var(--bone);
  text-decoration:none;border-bottom:1px solid var(--line2);
  word-break:break-word;
}
.mailto:hover,.mailto:focus{border-bottom-color:var(--bone)}
.socials{list-style:none;display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}
.socials a{
  display:inline-block;padding:10px 18px;
  border:1px solid var(--line2);color:var(--ink);text-decoration:none;
  font-size:.78rem;text-transform:uppercase;letter-spacing:.16em;font-weight:600;
}
.socials a:hover,.socials a:focus{border-color:var(--bone);color:var(--bone)}

/* ----------------------------- footer ----------------------------- */
.footer{
  border-top:1px solid var(--line);
  padding:34px 0 52px;
  color:var(--muted);font-size:.86rem;text-align:center;
}

/* --------------------------- responsive --------------------------- */
@media (max-width:820px){
  .release{grid-template-columns:1fr}
  .release-art{max-width:340px}
}
@media (max-width:600px){
  body{font-size:16px}
  .nav{flex-direction:column;align-items:flex-start;gap:6px;padding:10px 16px}
  .nav-links{gap:14px}
  .nav-links a{font-size:.78rem;letter-spacing:.1em}
  .hero{min-height:88vh;padding:132px 18px 64px}
  .release{padding:20px}
  .memorial-inner{padding:36px 0}
}

/* aspect-ratio is 2021+; without it .vfacade has no intrinsic height and the
   grid collapses. Ratio-box fallback, scoped so the absolutely-positioned
   overlays keep their own placement. */
@supports not (aspect-ratio: 16 / 9){
  .vfacade{height:0;padding-top:56.25%}
  .vfacade img,.vfacade iframe{position:absolute;top:0;left:0;width:100%;height:100%}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none !important;animation:none !important}
  /* reveal must not leave content stranded when transitions are off */
  .js-reveal .reveal{opacity:1 !important;transform:none !important}
  .hero-scroll span{animation:none;opacity:.9}
}

/* ================================================================
   ROBERT WILSON — memorial page.

   Deliberately a different register from the rest of the site: the
   band pages are loud, slabbed and tight; this one is quiet, set in
   a light serif, and given far more air than anything else here. The
   oxblood that marks the memorial elsewhere is reduced to a single
   hairline rule — on a page that IS the memorial, shouting it would
   be the wrong note. Warm bone carries the accents instead.
   ================================================================ */
.rw-body{background:var(--bg2)}
.rw{
  max-width:720px;
  margin:0 auto;
  padding:clamp(120px,16vh,190px) clamp(20px,6vw,32px) 0;
}

/* --- opening --- */
.rw-open{text-align:center;padding-bottom:clamp(56px,9vw,86px)}
.rw-eyebrow{
  font-size:.68rem;text-transform:uppercase;letter-spacing:.42em;
  color:var(--muted);font-weight:600;margin-bottom:26px;
}
.rw-name{
  font-family:var(--memorial);
  font-weight:300;
  font-size:clamp(2.8rem,10vw,5.4rem);
  line-height:1.04;
  letter-spacing:0;
  text-wrap:balance;
  color:var(--ink);
}
.rw-instruments{
  margin-top:20px;
  font-size:clamp(.82rem,2.4vw,.95rem);
  text-transform:uppercase;letter-spacing:.26em;
  color:var(--bone);
}
.rw-dot{color:var(--muted);padding:0 .2em}
.rw-dates{
  margin-top:14px;font-family:var(--mono);font-size:.9rem;
  color:var(--muted);font-variant-numeric:tabular-nums;letter-spacing:.1em;
}
.rw-rule{
  width:52px;height:2px;background:var(--blood);
  margin:38px auto 0;
}
.rw-rip{
  margin-top:32px;
  font-family:var(--mono);font-size:.78rem;letter-spacing:.3em;
  color:var(--muted);
}

/* --- portrait (markup currently commented out; styled ready) --- */
.rw-portrait{margin:0 0 clamp(56px,9vw,86px)}
.rw-portrait img{
  width:100%;height:auto;display:block;
  border:1px solid var(--line2);
  filter:grayscale(1) contrast(1.04);
}
.rw-portrait figcaption{
  margin-top:12px;text-align:center;
  font-size:.8rem;color:var(--muted);
}

/* --- tribute: set as a eulogy, not as web copy --- */
.rw-tribute{padding-bottom:clamp(56px,9vw,86px)}
.rw-lede{
  font-family:var(--memorial);
  font-weight:400;font-style:italic;
  font-size:clamp(1.42rem,4.4vw,2rem);
  line-height:1.42;
  color:var(--ink);
  text-wrap:balance;
  margin-bottom:34px;
}
.rw-body-text{
  font-family:var(--memorial);
  font-weight:300;
  font-size:clamp(1.1rem,2.9vw,1.3rem);
  line-height:1.78;
  color:#c3ccd2;
  margin-bottom:22px;
}
.rw-body-text em{color:var(--bone);font-style:italic}

/* --- his song --- */
.rw-song{
  border-top:1px solid var(--line);
  padding:clamp(44px,7vw,64px) 0 clamp(56px,9vw,86px);
}
.rw-song-label{
  font-size:.68rem;text-transform:uppercase;letter-spacing:.34em;
  color:var(--bone);font-weight:600;margin-bottom:16px;
}
.rw-song-title{
  font-family:var(--memorial);
  font-weight:400;
  font-size:clamp(1.7rem,5vw,2.4rem);
  line-height:1.16;
}
.rw-song-credit{color:var(--muted);font-size:.62em}
.rw-song-sub{color:var(--muted);font-size:.92rem;margin-top:10px}
.rw-song-sub em{color:var(--bone);font-style:italic}
.rw-player{margin-top:26px}
.rw-player iframe{width:100%;height:340px;border:0;display:block;background:var(--bg)}

/* --- memories --- */
.rw-memories{
  border-top:1px solid var(--line);
  padding:clamp(44px,7vw,64px) 0 clamp(48px,8vw,72px);
}
.rw-memories-title{
  font-family:var(--memorial);
  font-weight:400;
  font-size:clamp(1.5rem,4.2vw,2.05rem);
  line-height:1.18;
}
.rw-memories-text{
  color:var(--muted);margin-top:16px;max-width:56ch;
  font-size:1.02rem;line-height:1.7;
}
.rw-memories-link{
  display:inline-block;margin-top:24px;
  font-family:var(--memorial);font-size:clamp(1.15rem,3vw,1.4rem);
  color:var(--bone);text-decoration:none;
  border-bottom:1px solid var(--line2);padding-bottom:4px;
  word-break:break-word;
}
.rw-memories-link:hover,.rw-memories-link:focus{border-bottom-color:var(--bone)}

/* --- back --- */
.rw-back{
  border-top:1px solid var(--line);
  padding:30px 0 60px;
}
.rw-back a{
  color:var(--muted);text-decoration:none;
  font-size:.82rem;text-transform:uppercase;letter-spacing:.16em;font-weight:600;
}
.rw-back a:hover,.rw-back a:focus{color:var(--bone)}

@media (max-width:600px){
  .rw{padding-top:132px}
  .rw-player iframe{height:300px}
}

/* ---------------------------- contact form ----------------------------
   Labels stay in Barlow: at 13px an uppercase serif label is mush. The
   inputs themselves use the serif so the form still reads as part of the
   page rather than a bolted-on widget.                                  */
.contact-alt{display:block;font-size:.86rem;color:var(--muted);margin-top:8px}
.contact-form{margin-top:38px;max-width:760px;display:flex;flex-direction:column;gap:18px}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.cf-field{display:flex;flex-direction:column;gap:7px;min-width:0}
.cf-field label{
  font-family:var(--body);
  font-size:.72rem;text-transform:uppercase;letter-spacing:.18em;font-weight:600;
  color:var(--muted);
}
.req{color:var(--blood)}
.cf-field input,.cf-field select,.cf-field textarea{
  font-family:var(--display);
  font-size:1.08rem;
  color:var(--ink);
  background:var(--bg2);
  border:1px solid var(--line2);
  padding:11px 13px;
  width:100%;
  border-radius:0;
  -webkit-appearance:none;appearance:none;
}
.cf-field select{
  /* the arrow is drawn here because appearance:none removes the native one */
  background-image:linear-gradient(45deg,transparent 50%,var(--bone) 50%),
                   linear-gradient(135deg,var(--bone) 50%,transparent 50%);
  background-position:calc(100% - 19px) 52%, calc(100% - 13px) 52%;
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
  padding-right:38px;
}
.cf-field textarea{resize:vertical;line-height:1.55}
.cf-field input:focus,.cf-field select:focus,.cf-field textarea:focus{
  outline:none;border-color:var(--bone);
}
.cf-err{color:var(--blood);font-size:.78rem;font-family:var(--body);min-height:1em}
/* Honeypot: off-screen rather than display:none — some bots skip hidden fields. */
.cf-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.contact-form .btn{align-self:flex-start;cursor:pointer}
.contact-form .btn[disabled]{opacity:.55;cursor:default}
.cf-status{font-family:var(--body);font-size:.92rem;min-height:1.2em}
.cf-status.ok{color:var(--bone)}
.cf-status.err{color:#e0705c}

@media (max-width:600px){
  .cf-row{grid-template-columns:1fr}
}

/* ------------------------------ band page ------------------------------
   A roster, not a grid of cards: each member gets a full-width row so the
   names can be set large. Only two rows carry extra weight — Robert's
   (oxblood, memorial) and Stone's (which links out to his own site) — so
   the eye lands on the two that actually go somewhere.               */
.band-page{max-width:860px;margin:0 auto;padding:clamp(116px,15vh,172px) clamp(20px,6vw,32px) 0}
.band-head{padding-bottom:clamp(38px,6vw,60px)}
.band-head h1{
  font-family:var(--display);font-weight:400;
  font-size:clamp(2.2rem,6.4vw,3.9rem);line-height:1.06;text-wrap:balance;
}
.band-intro{
  font-family:var(--display);font-weight:300;
  font-size:clamp(1.14rem,2.8vw,1.42rem);line-height:1.62;
  color:var(--muted);margin-top:18px;max-width:56ch;
}

.roster{list-style:none;display:flex;flex-direction:column;gap:1px;background:var(--line)}
.rmember{
  position:relative;
  background:var(--bg);
  padding:clamp(24px,3.4vw,34px) clamp(20px,3vw,32px);
  transition:background .25s;
}
.rmember:hover{background:var(--panel)}
.rmember-role{
  font-family:var(--body);
  font-size:.7rem;text-transform:uppercase;letter-spacing:.24em;font-weight:600;
  color:var(--bone);margin-bottom:10px;
}
.rmember-name{
  font-family:var(--display);font-weight:400;
  font-size:clamp(1.7rem,4.6vw,2.7rem);line-height:1.1;
  /* "Alisha Farias Ogrodowski" exceeds a 320px screen at the clamp minimum */
  overflow-wrap:break-word;word-wrap:break-word;
}
.rmember-note{
  font-family:var(--display);font-weight:300;
  font-size:1.14rem;line-height:1.64;color:var(--muted);
  margin-top:12px;max-width:56ch;
}
.rmember-note em{color:var(--bone);font-style:italic}
.rmember-link{
  display:inline-block;margin-top:16px;
  font-family:var(--body);
  font-size:.74rem;text-transform:uppercase;letter-spacing:.18em;font-weight:600;
  color:var(--bone);text-decoration:none;
  border-bottom:1px solid var(--line2);padding-bottom:3px;
}
.rmember-link:hover,.rmember-link:focus{border-bottom-color:var(--bone)}
.rmember-memorial{border-left:2px solid var(--blood)}
.rmember-flag{
  position:absolute;top:clamp(24px,3.4vw,34px);right:clamp(20px,3vw,32px);
  font-family:var(--body);
  font-size:.62rem;text-transform:uppercase;letter-spacing:.2em;font-weight:700;
  color:var(--blood);
}
.rmember-linked{border-left:2px solid var(--bone)}
.rmember-external{color:var(--ink);border-bottom-color:var(--bone)}
.rmember-external:hover,.rmember-external:focus{color:var(--bone)}

.band-now{
  margin-top:clamp(38px,6vw,58px);
  padding:clamp(24px,3.4vw,32px);
  background:var(--panel);border:1px solid var(--line);
}
.band-now p{
  font-family:var(--display);font-weight:300;font-size:1.22rem;line-height:1.62;
  color:var(--ink);max-width:60ch;
}
.band-now strong{color:var(--bone);font-weight:500}
.band-credits{
  margin-top:clamp(28px,4vw,40px);
  border-top:1px solid var(--line);padding-top:26px;
}
.band-credits p{
  font-family:var(--display);font-weight:300;font-size:1.08rem;line-height:1.66;
  color:var(--muted);max-width:62ch;
}
.band-credits strong{color:var(--ink);font-weight:400}

/* ---------------------- band page: member portraits ----------------------
   Photo left, text right, alternating so the roster doesn't read as a
   column of identical cards. Alisha has no photo, so .rmember without
   .has-photo simply falls back to the text-only row already defined
   above — the layout must not assume a picture exists.              */
.rmember.has-photo{
  display:grid;
  grid-template-columns:minmax(0,230px) minmax(0,1fr);
  gap:clamp(20px,3vw,32px);
  align-items:center;
}
.rmember.has-photo:nth-of-type(even){grid-template-columns:minmax(0,1fr) minmax(0,230px)}
.rmember.has-photo:nth-of-type(even) .rmember-photo{order:2}
.rmember.has-photo:nth-of-type(even) .rmember-text{order:1}
.rmember-photo{
  margin:0;overflow:hidden;background:var(--bg2);
  border:1px solid var(--line);
  aspect-ratio:3/4;
}
.rmember-photo img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.22,.61,.36,1);
}
.rmember.has-photo:hover .rmember-photo img{transform:scale(1.03)}
.rmember-text{min-width:0}

@supports not (aspect-ratio: 3 / 4){
  .rmember-photo{position:relative;height:0;padding-top:133.33%}
  .rmember-photo img{position:absolute;top:0;left:0}
}

@media (max-width:640px){
  .rmember.has-photo,
  .rmember.has-photo:nth-of-type(even){grid-template-columns:1fr}
  .rmember.has-photo:nth-of-type(even) .rmember-photo{order:0}
  .rmember.has-photo:nth-of-type(even) .rmember-text{order:0}
  .rmember-photo{max-width:260px}
  /* the "In memoriam" flag would collide with the photo once stacked */
  .rmember-flag{position:static;display:block;margin-bottom:10px}
}

/* Hollis Dorian is an outbound link inside a <strong> that already carries the
   bone colour, so it only needs the underline to read as clickable. */
.hollis-link{color:inherit;text-decoration:none;border-bottom:1px solid var(--line2)}
.hollis-link:hover,.hollis-link:focus{border-bottom-color:var(--bone)}


/* ------------------------- touch targets -------------------------
   On a phone the small uppercase links are ~24px tall, well under the
   ~44px that a fingertip reliably hits. Grow them for coarse pointers
   only, so the desktop layout keeps its tight spacing. Keyed off
   pointer:coarse rather than width — a small window on a laptop still
   has a mouse.                                                       */
@media (pointer:coarse){
  .nav-links a{padding:10px 0;}
  .socials a{padding:13px 20px}
  .release-link,.rmember-link,.memorial-more,.rw-memories-link,.hollis-link{
    display:inline-block;padding-top:8px;padding-bottom:8px;
  }
  .vfacade{min-height:44px}
  .cf-field input,.cf-field select,.cf-field textarea{font-size:16px}
}

/* iOS zooms the page in when a focused input is under 16px. Setting the
   inputs to 16px on touch (above) prevents that jump; keep the visual size
   on precise pointers. */

/* Nothing may scroll the page sideways. `overflow-x:hidden` on body hides
   the symptom, so also cap the genuinely wide children. */
.releases,.video-grid,.members,.roster,.contact-form{max-width:100%}
img,iframe{max-width:100%}
