/* ==========================================================================
   SOUL HOOD — Official Website
   90s R&B editorial x contemporary luxury.
   Hand-built design system. No component library, no utility framework.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400&family=Inter:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root{
  --bg:#0A0A0A;
  --bg-2:#111111;
  --text:#F0EEE9;
  --text-2:#96928C;
  --accent:#551F2A;
  --accent-deep:#321218;
  --silver:#B7B7B7;
  --line: rgba(255,255,255,0.14);
  --line-strong: rgba(255,255,255,0.24);

  --font-display:'Bodoni Moda', 'Cormorant Garamond', 'DM Serif Display', serif;
  --font-body:'Inter', 'Noto Sans JP', -apple-system, sans-serif;
  --font-jp:'Noto Sans JP', 'Inter', sans-serif;

  --container: 1560px;
  --pad: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (min-width:1024px){
  :root{ --pad: 64px; }
}

*,*::before,*::after{ box-sizing:border-box; }
html{ background:var(--bg); scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; background:none; border:0; color:inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p,figure{ margin:0; }

.sh-container{
  max-width:var(--container);
  margin:0 auto;
  padding-left:var(--pad);
  padding-right:var(--pad);
}

.sh-eyebrow{
  display:inline-block;
  font-size:11px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--text-2);
  font-weight:500;
}

.sh-display{
  font-family:var(--font-display);
  font-weight:500;
  letter-spacing:.01em;
  line-height:.92;
  text-transform:uppercase;
}

.sh-link-arrow{
  display:inline-flex;
  align-items:baseline;
  gap:8px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text);
  border-bottom:1px solid var(--line-strong);
  padding-bottom:4px;
  transition:opacity .3s var(--ease), border-color .3s var(--ease);
}
.sh-link-arrow:hover{ opacity:.6; border-color:var(--accent); }
.sh-link-arrow .arrow{ transition:transform .3s var(--ease); }
.sh-link-arrow:hover .arrow{ transform:translateX(4px); }

.sh-btn-outline{
  display:inline-block;
  padding:14px 28px;
  border:1px solid var(--line-strong);
  border-radius:0;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.sh-btn-outline:hover{ background:var(--text); color:var(--bg); border-color:var(--text); }

/* Reveal-on-scroll (JS toggles .is-in) — only used in a few marked spots */
.sh-reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.sh-reveal.is-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .sh-reveal{ opacity:1; transform:none; transition:none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.sh-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px var(--pad);
  display:flex; align-items:center; justify-content:space-between;
  background:transparent;
  transition:background .5s var(--ease), backdrop-filter .5s var(--ease), padding .4s var(--ease);
}
.sh-header.is-scrolled{
  background:rgba(10,10,10,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  padding-top:14px; padding-bottom:14px;
}
.sh-header__logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-size:20px; letter-spacing:.08em; z-index:2; }
.sh-header__logo img{ height:34px; width:auto; }
.sh-header__logo span{ display:none; }
@media (min-width:1024px){ .sh-header__logo span{ display:inline; } }

.sh-nav{ display:none; }
@media (min-width:1024px){
  .sh-nav{ display:flex; align-items:center; gap:40px; }
  .sh-nav__list{ display:flex; gap:34px; }
  .sh-nav__list a{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; position:relative; padding-bottom:4px; }
  .sh-nav__list a::after{ content:''; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--accent); transition:right .35s var(--ease); }
  .sh-nav__list a:hover::after{ right:0; }
  .sh-nav__social{ display:flex; gap:16px; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-2); }
  .sh-nav__social a:hover{ color:var(--text); }
}

.sh-menu-toggle{
  display:flex; flex-direction:column; gap:5px; z-index:2;
  width:44px; height:44px; align-items:center; justify-content:center;
}
@media (min-width:1024px){ .sh-menu-toggle{ display:none; } }
.sh-menu-toggle span{ width:22px; height:1px; background:var(--text); transition:transform .3s var(--ease), opacity .3s var(--ease); }
.sh-menu-toggle.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.sh-menu-toggle.is-open span:nth-child(2){ opacity:0; }
.sh-menu-toggle.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.sh-mobile-menu{
  position:fixed; inset:0; z-index:90;
  background:#0A0A0A;
  display:flex; flex-direction:column; justify-content:center;
  padding:0 32px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
}
.sh-mobile-menu.is-open{ opacity:1; visibility:visible; transform:none; transition:opacity .45s var(--ease), transform .45s var(--ease); }
@media (min-width:1024px){ .sh-mobile-menu{ display:none; } }
.sh-mobile-menu__list a{
  display:block; font-family:var(--font-display); font-size:clamp(34px,11vw,56px);
  text-transform:uppercase; padding:10px 0; border-bottom:1px solid var(--line);
  letter-spacing:.01em;
}
.sh-mobile-menu__social{
  position:absolute; bottom:40px; left:32px; right:32px;
  display:flex; flex-wrap:wrap; gap:18px 24px;
  font-size:11px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.sh-hero{
  position:relative;
  height:100svh; min-height:560px;
  display:flex; flex-direction:column; justify-content:flex-end;
  overflow:hidden;
  background:#000;
}
.sh-hero__media{ position:absolute; inset:0; }
.sh-hero__media img{
  width:100%; height:100%; object-fit:cover; object-position:50% 20%;
  filter:brightness(.5) contrast(1.18) saturate(.85) grayscale(.12);
  transform:scale(1.06);
  animation:sh-hero-scale 6s var(--ease) forwards;
}
@keyframes sh-hero-scale{ to{ transform:scale(1); } }
@media (prefers-reduced-motion:reduce){ .sh-hero__media img{ animation:none; transform:none; } }

.sh-hero__media::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.15) 40%, rgba(10,10,10,.92) 96%);
}
.sh-hero__grain{
  position:absolute; inset:0; opacity:.05; mix-blend-mode:overlay; pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.sh-hero__title{
  position:relative; z-index:2;
  padding:0 var(--pad) 0;
  font-family:var(--font-display);
  font-size:clamp(74px, 22vw, 240px);
  line-height:.86;
  text-transform:uppercase;
  letter-spacing:0;
}
.sh-hero__title .line{ display:block; overflow:hidden; }
.sh-hero__title .line span{ display:block; transform:translateY(110%); animation:sh-line-up .9s var(--ease) forwards; }
.sh-hero__title .line:nth-child(2) span{ animation-delay:.18s; }
@keyframes sh-line-up{ to{ transform:translateY(0); } }
@media (prefers-reduced-motion:reduce){
  .sh-hero__title .line span{ animation:none; transform:none; }
}
@media (min-width:1024px){
  .sh-hero__title{ padding-left:56px; }
}

.sh-hero__sub{
  position:relative; z-index:2;
  padding:18px var(--pad) 40px;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px;
}
.sh-hero__tagline{ font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:var(--silver); }
.sh-hero__scroll{ display:flex; flex-direction:column; align-items:center; gap:8px; font-size:9px; letter-spacing:.2em; color:var(--text-2); }
.sh-hero__scroll::after{ content:''; width:1px; height:34px; background:linear-gradient(var(--silver), transparent); animation:sh-scroll-line 2.2s ease-in-out infinite; }
@keyframes sh-scroll-line{ 0%,100%{ opacity:.2; } 50%{ opacity:1; } }
@media (prefers-reduced-motion:reduce){ .sh-hero__scroll::after{ animation:none; opacity:.6; } }

/* ==========================================================================
   SECTION SHELL — deliberately uneven rhythm, not a uniform padding system
   ========================================================================== */
.sh-section{ position:relative; }
.sh-section--tight{ padding:64px 0; }
.sh-section--normal{ padding:96px 0; }
.sh-section--roomy{ padding:150px 0 130px; }
.sh-section--bleed{ padding:0; }
@media (min-width:1024px){
  .sh-section--tight{ padding:88px 0; }
  .sh-section--normal{ padding:150px 0; }
  .sh-section--roomy{ padding:220px 0 190px; }
}
.sh-section-alt{ background:var(--bg-2); }

.sh-kicker-row{
  display:flex; align-items:baseline; justify-content:space-between; gap:20px;
  margin-bottom:44px;
}
.sh-kicker-row .sh-h2{ font-size:clamp(30px,7vw,58px); }

.sh-h2{
  font-family:var(--font-display); text-transform:uppercase; line-height:.95;
  font-size:clamp(30px,6vw,52px);
}

/* ==========================================================================
   LATEST RELEASE — 65/35-ish, not centered
   ========================================================================== */
.sh-latest{
  display:grid; gap:34px;
}
@media (min-width:1024px){
  .sh-latest{ grid-template-columns: 48% 1fr; gap:60px; align-items:center; }
}
.sh-latest__art{ position:relative; width:88%; margin:0 auto; }
@media (min-width:1024px){ .sh-latest__art{ width:100%; margin:0; } }
.sh-latest__art img{ width:100%; aspect-ratio:1/1; object-fit:cover; }
.sh-latest__info .sh-eyebrow{ margin-bottom:14px; display:block; }
.sh-latest__title{ font-family:var(--font-display); font-size:clamp(36px,6vw,64px); text-transform:uppercase; line-height:1; margin-bottom:18px; }
.sh-latest__meta{ font-size:12px; letter-spacing:.1em; color:var(--text-2); text-transform:uppercase; margin-bottom:22px; }
.sh-latest__desc{ color:var(--text-2); max-width:44ch; margin-bottom:34px; font-size:15px; line-height:1.8; }
.sh-latest__links{ display:flex; flex-wrap:wrap; gap:14px 26px; }

/* ==========================================================================
   INTRO / BIOGRAPHY TEASER — asymmetric text block
   ========================================================================== */
.sh-intro{ display:grid; gap:30px; }
@media (min-width:1024px){
  .sh-intro{ grid-template-columns: 1fr 1fr; gap:80px; align-items:start; }
  .sh-intro__title{ position:sticky; top:140px; }
}
.sh-intro__title{ font-size:clamp(46px,9vw,120px); }
.sh-intro__body p{ color:var(--text-2); font-size:16px; line-height:2; margin-bottom:1.4em; max-width:56ch; }
.sh-intro__body p:first-of-type::first-letter{ color:var(--text); }

/* ==========================================================================
   MEMBERS TEASER — no cards, full-bleed vertical portraits
   ========================================================================== */
.sh-members-teaser{ display:flex; flex-direction:column; }
@media (min-width:1024px){ .sh-members-teaser{ flex-direction:row; } }
.sh-member-tile{
  position:relative; overflow:hidden; flex:1;
  aspect-ratio:3/4;
}
@media (min-width:1024px){ .sh-member-tile{ aspect-ratio:auto; height:78vh; } }
.sh-member-tile img{ width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform 1.1s var(--ease), filter .6s var(--ease); filter:grayscale(.5) brightness(.82) contrast(1.05); }
.sh-member-tile:hover img{ transform:scale(1.035); filter:grayscale(0) brightness(.9) contrast(1.05); }
.sh-member-tile::before{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%); z-index:1; }
.sh-member-tile__label{
  position:absolute; left:20px; right:20px; bottom:22px; z-index:2;
  display:flex; align-items:flex-end; justify-content:space-between;
  transition:transform .5s var(--ease);
}
.sh-member-tile:hover .sh-member-tile__label{ transform:translateY(-6px); }
.sh-member-tile__num{ font-size:11px; color:var(--text-2); letter-spacing:.1em; }
.sh-member-tile__name{ font-family:var(--font-display); font-size:clamp(24px,3vw,32px); text-transform:uppercase; }
.sh-member-tile__line{ position:absolute; left:20px; bottom:0; height:2px; width:0; background:var(--accent); transition:width .5s var(--ease); z-index:2; }
.sh-member-tile:hover .sh-member-tile__line{ width:44px; }
.sh-member-tile + .sh-member-tile{ border-top:1px solid var(--line); }
@media (min-width:1024px){ .sh-member-tile + .sh-member-tile{ border-top:0; border-left:1px solid var(--line); } }

.sh-members-teaser-head{ padding:0 var(--pad); margin-bottom:40px; display:flex; justify-content:space-between; align-items:baseline; }

/* ==========================================================================
   MUSIC PREVIEW — horizontal scroll on mobile, uneven grid on desktop
   ========================================================================== */
.sh-music-scroll{
  display:flex; gap:20px; overflow-x:auto; padding:0 var(--pad) 8px;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
}
.sh-music-scroll::-webkit-scrollbar{ height:0; }
.sh-music-item{ flex:0 0 72%; scroll-snap-align:start; }
@media (min-width:640px){ .sh-music-item{ flex-basis:38%; } }
@media (min-width:1024px){
  .sh-music-scroll{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; overflow:visible; padding:0 var(--pad); }
  .sh-music-item:nth-child(2){ margin-top:44px; }
  .sh-music-item:nth-child(4){ margin-top:-24px; }
}
.sh-music-item__art{ position:relative; overflow:hidden; aspect-ratio:1/1; margin-bottom:14px; }
.sh-music-item__art img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.sh-music-item:hover .sh-music-item__art img{ transform:scale(1.06); }
.sh-music-item__art .sh-link-arrow{ position:absolute; left:16px; bottom:16px; opacity:0; transform:translateY(8px); transition:opacity .35s var(--ease), transform .35s var(--ease); border-color:rgba(255,255,255,.5); color:#fff; }
.sh-music-item:hover .sh-music-item__art .sh-link-arrow{ opacity:1; transform:none; }
.sh-music-item__title{ font-size:15px; margin-bottom:4px; }
.sh-music-item__meta{ font-size:11px; color:var(--text-2); letter-spacing:.08em; text-transform:uppercase; }
.sh-music-foot{ padding:40px var(--pad) 0; text-align:right; }

/* ==========================================================================
   LIVE PREVIEW — pure typography rows
   ========================================================================== */
.sh-live-row{
  display:flex; align-items:baseline; gap:18px;
  padding:22px 0; border-top:1px solid var(--line);
  flex-wrap:wrap;
}
.sh-live-row:last-child{ border-bottom:1px solid var(--line); }
.sh-live-row__date{ font-family:var(--font-display); font-size:18px; width:84px; flex-shrink:0; }
.sh-live-row__city{ font-size:11px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase; width:74px; flex-shrink:0; }
.sh-live-row__venue{ flex:1; min-width:160px; font-size:15px; }
.sh-live-row__link{ margin-left:auto; }
.sh-noshows{ padding:60px 0; text-align:center; color:var(--text-2); }
.sh-noshows strong{ display:block; color:var(--text); font-family:var(--font-display); font-size:22px; text-transform:uppercase; margin-bottom:8px; }

/* ==========================================================================
   NEWS — magazine index rows
   ========================================================================== */
.sh-news-row{
  display:grid; grid-template-columns:70px 1fr; gap:16px;
  padding:20px 0; border-top:1px solid var(--line);
  align-items:baseline;
}
@media (min-width:640px){ .sh-news-row{ grid-template-columns:100px 90px 1fr; } }
.sh-news-row:last-child{ border-bottom:1px solid var(--line); }
.sh-news-row__date{ font-size:11px; color:var(--text-2); letter-spacing:.06em; }
.sh-news-row__cat{ display:none; font-size:11px; letter-spacing:.14em; color:var(--accent-deep); background:none; }
@media (min-width:640px){ .sh-news-row__cat{ display:block; color:#8a3446; } }
.sh-news-row__title{ font-size:15px; }
.sh-news-row__title a:hover{ color:var(--silver); }
.sh-newsfoot{ padding-top:36px; text-align:right; }

/* ==========================================================================
   FINAL VISUAL
   ========================================================================== */
.sh-final{ position:relative; height:70vh; min-height:420px; overflow:hidden; }
.sh-final img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.35) brightness(.55) contrast(1.1); }
.sh-final::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,10,10,.85), transparent 45%); }
.sh-final__title{ position:absolute; left:var(--pad); bottom:34px; z-index:2; font-family:var(--font-display); font-size:clamp(48px,11vw,150px); text-transform:uppercase; line-height:.9; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.sh-footer{ padding:80px 0 30px; }
.sh-footer__logo{ font-family:var(--font-display); font-size:clamp(40px,9vw,90px); text-transform:uppercase; margin-bottom:40px; }
.sh-footer__grid{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:34px; padding-bottom:44px; border-bottom:1px solid var(--line); }
.sh-footer__social{ display:flex; flex-wrap:wrap; gap:14px 26px; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-2); }
.sh-footer__social a:hover{ color:var(--text); }
.sh-footer__nav{ display:flex; flex-wrap:wrap; gap:12px 24px; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-2); }
.sh-footer__nav a:hover{ color:var(--text); }
.sh-footer__bottom{ padding-top:24px; display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; font-size:11px; color:var(--text-2); letter-spacing:.04em; }

/* ==========================================================================
   PAGE HEADER (generic, used with variations per page)
   ========================================================================== */
.sh-page-head{ padding:170px var(--pad) 60px; }
.sh-page-head__title{ font-family:var(--font-display); text-transform:uppercase; font-size:clamp(56px,15vw,170px); line-height:.86; }
.sh-page-head__sub{ margin-top:18px; color:var(--text-2); font-size:14px; letter-spacing:.04em; max-width:52ch; }

/* ==========================================================================
   BIOGRAPHY PAGE — editorial, photo-first
   ========================================================================== */
.sh-bio-photo{ width:100%; height:52vh; min-height:340px; overflow:hidden; }
.sh-bio-photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.25) brightness(.75) contrast(1.08); }
.sh-bio-copy{ padding:70px var(--pad) 20px; }
.sh-bio-copy__name{ font-family:var(--font-display); font-size:clamp(30px,6vw,46px); text-transform:uppercase; margin-bottom:26px; }
.sh-bio-copy p{ color:var(--text-2); font-size:16px; line-height:2; max-width:66ch; margin-bottom:1.4em; }
@media (min-width:1024px){
  .sh-bio-copy{ padding:110px var(--pad) 40px; }
  .sh-bio-copy-inner{ max-width:900px; margin-left:8%; }
}

.sh-member-block{ display:flex; flex-direction:column; border-top:1px solid var(--line); }
.sh-member-block:last-child{ border-bottom:1px solid var(--line); }
@media (min-width:1024px){
  .sh-member-block{ flex-direction:row; min-height:88vh; }
  .sh-member-block.is-reverse{ flex-direction:row-reverse; }
}
.sh-member-block__photo{ position:relative; overflow:hidden; aspect-ratio:4/5; }
@media (min-width:1024px){ .sh-member-block__photo{ flex:0 0 56%; aspect-ratio:auto; } }
.sh-member-block__photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.3) contrast(1.05); }
.sh-member-block__info{ padding:36px var(--pad) 60px; display:flex; flex-direction:column; justify-content:center; flex:1; }
@media (min-width:1024px){ .sh-member-block__info{ padding:60px 64px; } }
.sh-member-block__num{ font-size:11px; letter-spacing:.2em; color:var(--text-2); margin-bottom:14px; }
.sh-member-block__name{ font-family:var(--font-display); font-size:clamp(44px,8vw,86px); text-transform:uppercase; line-height:.9; margin-bottom:8px; }
.sh-member-block__role{ font-size:11px; letter-spacing:.18em; color:var(--accent); text-transform:uppercase; margin-bottom:28px; }
.sh-member-block__bio{ color:var(--text-2); font-size:15px; line-height:1.9; max-width:52ch; margin-bottom:28px; }
.sh-member-block__facts{ display:grid; gap:16px 40px; grid-template-columns:1fr; max-width:420px; }
@media (min-width:520px){ .sh-member-block__facts{ grid-template-columns:1fr 1fr; } }
.sh-member-block__facts dt{ font-size:10px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase; margin-bottom:4px; }
.sh-member-block__facts dd{ margin:0; font-size:14px; white-space:pre-line; }

/* ==========================================================================
   MUSIC PAGE — artwork-first
   ========================================================================== */
.sh-music-grid{ display:grid; grid-template-columns:1fr; gap:2px; background:var(--line); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
@media (min-width:640px){ .sh-music-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1024px){ .sh-music-grid{ grid-template-columns:1fr 1fr 1fr; } }
.sh-music-cell{ position:relative; background:var(--bg); overflow:hidden; }
.sh-music-cell__art{ position:relative; aspect-ratio:1/1; overflow:hidden; }
.sh-music-cell__art img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.sh-music-cell:hover .sh-music-cell__art img{ transform:scale(1.05); }
.sh-music-cell__body{ padding:22px 22px 28px; }
.sh-music-cell__type{ font-size:10px; letter-spacing:.16em; color:var(--accent); text-transform:uppercase; margin-bottom:10px; }
.sh-music-cell__title{ font-family:var(--font-display); font-size:22px; text-transform:uppercase; margin-bottom:6px; }
.sh-music-cell__date{ font-size:11px; color:var(--text-2); letter-spacing:.06em; margin-bottom:16px; }
.sh-music-cell__links{ display:flex; flex-wrap:wrap; gap:10px 18px; }
.sh-music-cell__links a{ font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-2); border-bottom:1px solid transparent; }
.sh-music-cell__links a:hover{ color:var(--text); border-color:var(--line-strong); }

/* ==========================================================================
   LIVE PAGE — typography-centric
   ========================================================================== */
.sh-live-section-title{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--text-2); padding:0 var(--pad); margin-bottom:20px; }
.sh-live-table{ padding:0 var(--pad); }
.sh-live-line{ display:grid; grid-template-columns:70px 1fr; row-gap:6px; column-gap:16px; padding:26px 0; border-top:1px solid var(--line); }
@media (min-width:760px){ .sh-live-line{ grid-template-columns:110px 1fr 160px 110px; align-items:center; row-gap:0; } }
.sh-live-line:last-child{ border-bottom:1px solid var(--line); }
.sh-live-line__date{ font-family:var(--font-display); font-size:24px; }
.sh-live-line__main{ grid-column:1 / -1; }
@media (min-width:760px){ .sh-live-line__main{ grid-column:auto; } }
.sh-live-line__event{ font-size:16px; margin-bottom:4px; }
.sh-live-line__venue{ font-size:12px; color:var(--text-2); letter-spacing:.04em; }
.sh-live-line__city{ font-size:11px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase; grid-column:1/-1; }
@media (min-width:760px){ .sh-live-line__city{ grid-column:auto; } }
.sh-live-line__cta{ grid-column:1/-1; }
@media (min-width:760px){ .sh-live-line__cta{ grid-column:auto; text-align:right; } }

/* ==========================================================================
   NEWS PAGE — magazine index
   ========================================================================== */
.sh-news-index{ padding:0 var(--pad); }
.sh-news-year{ font-family:var(--font-display); font-size:clamp(50px,10vw,110px); text-transform:uppercase; opacity:.9; margin:56px 0 8px; }
.sh-news-year:first-child{ margin-top:0; }

/* ==========================================================================
   CONTACT — minimal
   ========================================================================== */
.sh-contact{ display:grid; gap:60px; }
@media (min-width:1024px){ .sh-contact{ grid-template-columns:1fr 1.1fr; gap:110px; } }
.sh-contact__lead{ color:var(--text-2); font-size:15px; line-height:2; max-width:44ch; margin-bottom:36px; }
.sh-contact__direct dt{ font-size:10px; letter-spacing:.14em; color:var(--text-2); text-transform:uppercase; margin-bottom:6px; }
.sh-contact__direct dd{ margin:0 0 26px; font-size:15px; }

.sh-form-row{ border-bottom:1px solid var(--line); padding:18px 0; position:relative; }
.sh-form-row label{ display:block; font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-2); margin-bottom:8px; }
.sh-form-row input, .sh-form-row select, .sh-form-row textarea{
  width:100%; background:transparent; border:0; color:var(--text); font-size:15px; font-family:inherit; padding:0; outline:0; resize:vertical;
}
.sh-form-row select{ appearance:none; -webkit-appearance:none; }
.sh-form-row textarea{ min-height:110px; }
.sh-form-submit{ margin-top:36px; }

/* ==========================================================================
   Utility
   ========================================================================== */
.sh-visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
:focus-visible{ outline:1px solid var(--accent); outline-offset:3px; }
