:root {
  --ink: #17120e;
  --ink-2: #251d17;
  --cream: #f1eadb;
  --paper: #e5dac5;
  --sand: #c7aa7b;
  --gold: #d89f37;
  --rust: #a54127;
  --sage: #61705a;
  --blue: #315a6b;
  --white: #fffdf8;
  --line: rgba(23, 18, 14, .18);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --western: "Rye", Georgia, serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  background: var(--white); color: var(--ink); padding: .75rem 1rem;
  border-radius: .25rem; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  min-height: 94px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 clamp(1rem, 3vw, 3.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, color .25s ease, min-height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 76px; color: var(--ink);
  background: rgba(241,234,219,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  border-color: var(--line);
}
.brand { display: inline-flex; width: max-content; align-items: center; text-decoration: none; }
.brand img {
  width: clamp(160px, 15vw, 190px); height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0,0,0,.22));
  transition: width .25s ease, filter .25s ease;
}
.site-header.is-scrolled .brand img {
  width: clamp(145px, 13vw, 165px);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
.site-nav a { font-family: var(--display); font-size: .92rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; text-decoration: none; }
.site-nav a:hover { opacity: .65; }
.header-cta {
  justify-self: end; text-decoration: none; text-transform: uppercase;
  font-family: var(--display); font-weight: 800; letter-spacing: .13em;
  border: 1px solid currentColor; padding: .72rem 1.2rem;
  transition: background .2s, color .2s;
}
.header-cta:hover { background: var(--white); color: var(--ink); }
.site-header.is-scrolled .header-cta:hover { background: var(--ink); color: var(--white); }
.nav-toggle { display: none; }

.opening {
  position: relative; isolation: isolate; min-height: max(860px, 100svh);
  display: grid; grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(2rem, 5vw, 7rem); align-items: center;
  padding: 130px clamp(1.25rem, 5vw, 6.5rem) 80px;
  overflow: hidden; color: var(--white);
  background:
    linear-gradient(110deg, rgba(13,10,8,.96) 0%, rgba(33,22,14,.9) 43%, rgba(33,22,14,.55) 100%),
    radial-gradient(circle at 70% 30%, #7f3c25, transparent 35%),
    #15110d;
}
.opening::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,.04) 50%, transparent 50.15%),
    linear-gradient(0deg, transparent 49.85%, rgba(255,255,255,.03) 50%, transparent 50.15%);
  background-size: 92px 92px; opacity: .34;
}
.opening__grain {
  position: absolute; inset: -50%; z-index: 4; pointer-events: none; opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  animation: grain .25s steps(2) infinite;
}
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(2%,-3%); } 50% { transform: translate(-3%,2%); } 75% { transform: translate(3%,3%); } 100% { transform: translate(-2%,-2%); } }
.opening__sun {
  position: absolute; right: -4vw; top: 16%; width: clamp(420px, 55vw, 950px); aspect-ratio: 1;
  border-radius: 50%; z-index: -2; opacity: .68;
  background: repeating-radial-gradient(circle, rgba(216,159,55,.22) 0 2px, transparent 3px 17px);
  mask-image: linear-gradient(to bottom, #000 0 58%, transparent 84%);
}
.opening__copy { position: relative; z-index: 5; }
.eyebrow {
  margin: 0 0 1.1rem; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .23em; font-size: .79rem;
}
.opening__copy .eyebrow { color: #e8c681; }
.opening h1 { margin: 0; font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .74; letter-spacing: -.055em; }
.opening h1 span { display: block; font-size: clamp(5.3rem, 10.5vw, 11rem); }
.opening h1 span:last-child { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.78); margin-left: .04em; }
.opening__tagline { margin: 2rem 0 0; font-family: var(--western); font-size: clamp(1.05rem, 1.7vw, 1.45rem); color: var(--paper); line-height: 1.5; transform: rotate(-1.5deg); }
.opening__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2.1rem; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px;
  padding: .8rem 1.45rem; font-family: var(--display); font-size: .95rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .13em; text-decoration: none;
  border: 1px solid transparent; transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-3px); }
.button--primary { background: var(--gold); color: var(--ink); }
.button--primary:hover { background: var(--white); }
.button--ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.button--ghost:hover { background: var(--white); color: var(--ink); }
.button--light { background: var(--cream); color: var(--ink); }

.video-marquee { position: relative; z-index: 5; max-width: 850px; justify-self: end; width: 100%; }
.video-marquee::before {
  content: ""; position: absolute; inset: 45px -28px -28px 22%; z-index: -1;
  border: 1px solid rgba(255,255,255,.18); transform: rotate(2deg);
}
.video-marquee__label {
  display: flex; gap: .7rem; align-items: center; margin: 0 0 .7rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .84rem; font-weight: 700;
}
.video-marquee__label span { background: var(--rust); color: var(--white); padding: .35rem .55rem; }
.featured-video { position: relative; display:block; padding: 0; border: 0; background: #000; overflow: hidden; cursor: pointer; text-align: left; text-decoration:none; box-shadow: var(--shadow); }
.featured-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s; }
.featured-video:hover img { transform: scale(1.035); filter: saturate(1.12); }
.featured-video--main { width: 100%; aspect-ratio: 16 / 9; }
.featured-video__wash { position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.78)); }
.play-button {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 82px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: rgba(241,234,219,.93); color: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: transform .25s, background .25s;
}
.featured-video:hover .play-button, .video-card button:hover .play-button { transform: translate(-50%,-50%) scale(1.08); background: var(--gold); }
.play-button svg { width: 42%; fill: currentColor; }
.featured-video__meta { position: absolute; left: 1.2rem; right: 1rem; bottom: .9rem; color: var(--white); font-family: var(--display); text-transform: uppercase; }
.featured-video__meta small, .featured-video__meta strong { display: block; }
.featured-video__meta small { font-size: .67rem; letter-spacing: .18em; opacity: .74; }
.featured-video__meta strong { font-size: clamp(1.25rem, 2.3vw, 2.2rem); line-height: 1; letter-spacing: .03em; }
.video-marquee__subhead { margin:1rem 0 .55rem; font-family:var(--display); font-size:.74rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:rgba(241,234,219,.74); }
.video-marquee__rail { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:.75rem; width:100%; }
.featured-video--small { aspect-ratio: 16/10.2; width:100%; box-shadow:0 12px 35px rgba(0,0,0,.25); }
.featured-video--small .featured-video__meta { left:.8rem; right:2.4rem; bottom:.7rem; }
.featured-video--small .featured-video__meta small { font-size:.56rem; letter-spacing:.13em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.featured-video--small .featured-video__meta strong { font-size:clamp(.82rem,1.1vw,1.08rem); line-height:1.05; }
.featured-song__action { position:absolute; z-index:2; top:.6rem; right:.6rem; width:30px; aspect-ratio:1; display:grid; place-items:center; border:1px solid rgba(255,255,255,.55); border-radius:50%; background:rgba(23,18,14,.46); color:var(--white); font-family:var(--display); font-weight:800; transition:background .2s, color .2s, transform .2s; }
.featured-song:hover .featured-song__action { background:var(--gold); color:var(--ink); transform:translate(2px,-2px); }
.featured-song:focus-visible { outline:3px solid var(--gold); outline-offset:4px; }
.video-marquee__channel { display: block; width: max-content; margin: .9rem 0 0 auto; color: var(--paper); font-family: var(--display); font-size: .86rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; text-decoration-thickness: 1px; text-underline-offset: .35em; }
.scroll-cue { position: absolute; z-index: 5; left: clamp(1.25rem,5vw,6.5rem); bottom: 1.5rem; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: .8rem; font-family: var(--display); text-transform: uppercase; font-size: .68rem; letter-spacing: .18em; }
.scroll-cue i { width: 64px; height: 1px; background: currentColor; position: relative; }
.scroll-cue i::after { content:""; position:absolute; right:0; top:-3px; width:7px; height:7px; border-right:1px solid; border-bottom:1px solid; transform: rotate(-45deg); }

.ticker { overflow: hidden; background: var(--gold); border-block: 1px solid var(--ink); }
.ticker__track { display: flex; width: max-content; align-items: center; gap: 2rem; padding: .8rem 0; animation: ticker 30s linear infinite; font-family: var(--display); font-size: 1.12rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.ticker__track i { font-style: normal; font-size: .6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 5vw, 6.5rem); }
.section-heading { max-width: 820px; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading h2, .latest-release h2, .about h2, .dates h2, .connect h2 {
  margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 7.5vw, 7rem); font-weight: 800; line-height: .84; text-transform: uppercase; letter-spacing: -.035em;
}
.section-heading h2 em, .about h2 em, .connect h2 em { font-family: var(--western); font-size: .48em; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--rust); }
.section-heading > p:last-child { max-width: 530px; margin-top: 1.8rem; color: rgba(23,18,14,.7); }
.section-heading--row { max-width: none; display: grid; grid-template-columns: 1fr minmax(280px, 430px); align-items: end; gap: 4rem; }
.section-heading--row > p:last-child { margin: 0 0 .4rem; }

.section--videos { background: var(--cream); }
.video-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1rem, 2vw, 2rem); }
.video-card { min-width: 0; }
.video-card--wide { grid-row: span 2; }
.video-card button { position: relative; display: block; width: 100%; border: 0; padding: 0; background: #000; overflow: hidden; cursor: pointer; }
.video-card--wide button { aspect-ratio: 4/4.56; }
.video-card:not(.video-card--wide) button { aspect-ratio: 16/8.1; }
.video-card button img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.05); transition: transform .65s, filter .3s; }
.video-card button:hover img { transform: scale(1.035); filter: saturate(1.1); }
.video-card__number { position: absolute; top: .7rem; left: .8rem; color: var(--white); font-family: var(--display); font-weight: 800; font-size: 1.2rem; text-shadow: 0 2px 8px #000; }
.play-button--small { width: 58px; }
.video-card__caption { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .8rem 0 0; border-top: 1px solid var(--line); margin-top: .5rem; }
.video-card__caption h3 { margin: 0; font-family: var(--display); font-size: clamp(1.35rem,2.3vw,2.15rem); text-transform: uppercase; line-height: 1; }
.video-card__caption p { margin: 0; font-size: .78rem; color: rgba(23,18,14,.6); text-transform: uppercase; letter-spacing: .09em; text-align: right; }
.centered { text-align: center; margin-top: 3.5rem; }
.text-link { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; text-underline-offset: .35em; }

.latest-release {
  position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(320px, 1fr) minmax(320px, .75fr); align-items: center; gap: clamp(3rem,8vw,9rem);
  padding: clamp(5rem,9vw,9rem) clamp(1.25rem,7vw,9rem); color: var(--white); background: var(--blue);
}
.latest-release::before { content:""; position:absolute; inset:0; background: repeating-linear-gradient(115deg, transparent 0 35px, rgba(255,255,255,.025) 36px 37px); }
.latest-release__art { position: relative; min-height: 540px; display: grid; place-items: center; }
.record-sleeve { position:relative; z-index:2; width:min(440px,78vw); aspect-ratio:1; overflow:hidden; background:#17130f; box-shadow:0 30px 100px rgba(0,0,0,.4); transform:rotate(-3deg); }
.record-sleeve--art::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.22); box-shadow:inset 0 0 45px rgba(0,0,0,.16); pointer-events:none; }
.record-sleeve .release-cover { display:block; width:100%; height:100%; object-fit:cover; }
.vinyl { position:absolute; right:3%; width:min(410px,73vw); aspect-ratio:1; border-radius:50%; background:repeating-radial-gradient(circle,#111 0 5px,#242424 6px 9px,#171717 10px 13px); box-shadow:0 28px 70px rgba(0,0,0,.35); transition:transform .65s cubic-bezier(.2,.75,.2,1); }
.vinyl::before { content:""; position:absolute; inset:4%; border-radius:50%; background:conic-gradient(from 45deg,transparent 0 10%,rgba(255,255,255,.07) 12%,transparent 15% 49%,rgba(255,255,255,.045) 52%,transparent 56%); }
.vinyl::after { content:""; position:absolute; inset:35%; border-radius:50%; background:var(--gold); border:12px solid var(--rust); }
.vinyl span { position:absolute; z-index:2; width:10px; aspect-ratio:1; background:#111; border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.latest-release__art:hover .vinyl--latest { transform:translateX(7%) rotate(22deg); }
.latest-release__art:hover .record-sleeve { transform:rotate(-4deg) translateY(-4px); }
.record-sleeve { transition:transform .45s ease; }
.latest-release__copy { position:relative; z-index:2; max-width:650px; }
.latest-release__copy .eyebrow { color:#f2cd83; }
.latest-release h2 { font-size:clamp(4.2rem,8vw,8rem); }
.latest-release__copy > p:not(.eyebrow) { max-width:570px; font-size:clamp(1rem,1.4vw,1.22rem); color:rgba(255,255,255,.76); }
.platform-pills { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:2rem; }
.platform-pills a { border:1px solid rgba(255,255,255,.48); padding:.68rem 1rem; text-decoration:none; text-transform:uppercase; font-family:var(--display); font-weight:700; letter-spacing:.1em; font-size:.82rem; transition:.2s; }
.platform-pills a:hover { background:var(--white); color:var(--ink); }

.section--music { background: var(--paper); }
.album-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(2rem,4vw,4.5rem) clamp(1.5rem,3vw,3rem); }
.album-card { --record-label:var(--gold); display:block; min-width:0; color:var(--ink); text-decoration:none; }
.album-card__visual { position:relative; display:block; width:100%; aspect-ratio:1.08; }
.album-card__sleeve { position:absolute; z-index:2; left:0; top:0; display:block; width:80%; aspect-ratio:1; overflow:hidden; background:#17130f; border:1px solid rgba(23,18,14,.28); box-shadow:0 12px 0 rgba(23,18,14,.09), 0 28px 45px rgba(23,18,14,.13); transition:transform .45s cubic-bezier(.2,.75,.2,1), box-shadow .35s; }
.album-card__sleeve::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,.18); box-shadow:inset 0 0 28px rgba(0,0,0,.12); pointer-events:none; }
.album-card__sleeve img { display:block; width:100%; height:100%; object-fit:cover; }
.album-card__vinyl { position:absolute; z-index:1; right:0; top:5%; display:block; width:84%; aspect-ratio:1; border-radius:50%; background:repeating-radial-gradient(circle,#111 0 4px,#242424 5px 8px,#171717 9px 12px); box-shadow:0 18px 30px rgba(23,18,14,.28); transform:translateX(4%) rotate(10deg); transition:transform .65s cubic-bezier(.2,.8,.2,1); }
.album-card__vinyl::before { content:""; position:absolute; inset:4%; border-radius:50%; background:conic-gradient(from 20deg,transparent 0 12%,rgba(255,255,255,.08) 14%,transparent 17% 48%,rgba(255,255,255,.045) 51%,transparent 55%); }
.album-card__vinyl::after { content:""; position:absolute; inset:35%; border-radius:50%; background:var(--record-label); border:8px solid rgba(241,234,219,.62); box-shadow:0 0 0 1px rgba(0,0,0,.3); }
.album-card__vinyl i { position:absolute; z-index:2; left:50%; top:50%; width:8px; aspect-ratio:1; border-radius:50%; background:#16120f; transform:translate(-50%,-50%); }
.album-card__meta { display:flex; justify-content:space-between; align-items:end; gap:1rem; padding-top:1rem; border-top:1px solid var(--line); }
.album-card__meta > span:first-child { min-width:0; }
.album-card__meta small { display:block; margin-bottom:.3rem; font-family:var(--body); font-size:.68rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:rgba(23,18,14,.58); }
.album-card__meta strong { display:block; font-family:var(--display); font-size:clamp(1.55rem,2.3vw,2.35rem); line-height:.92; text-transform:uppercase; }
.album-card__action { flex:0 0 auto; padding-bottom:.12rem; font-family:var(--display); text-transform:uppercase; font-weight:800; letter-spacing:.1em; font-size:.76rem; }
.album-card:hover .album-card__sleeve, .album-card:focus-visible .album-card__sleeve { transform:translateY(-8px) rotate(-1.2deg); box-shadow:0 15px 0 rgba(23,18,14,.08), 0 34px 50px rgba(23,18,14,.18); }
.album-card:hover .album-card__vinyl, .album-card:focus-visible .album-card__vinyl { transform:translateX(16%) rotate(30deg); }
.album-card:focus-visible { outline:3px solid var(--rust); outline-offset:8px; }
.album-card--amber { --record-label:#d19a37; }
.album-card--blue { --record-label:#416c7f; }
.album-card--red { --record-label:#9e3b25; }
.album-card--cream { --record-label:#d8c8a8; }
.album-card--green { --record-label:#65715b; }
.album-card--charcoal { --record-label:#6e5b4b; }
.all-platforms { margin-top:clamp(3.5rem,7vw,7rem); padding-top:2rem; border-top:1px solid var(--line); display:grid; grid-template-columns:180px 1fr; gap:2rem; }
.all-platforms > p { margin:0; font-family:var(--western); font-size:1.15rem; }
.platform-list { display:flex; flex-wrap:wrap; gap:.7rem 1.3rem; }
.platform-list a { font-family:var(--display); font-size:1.15rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; text-underline-offset:.25em; }

.about { display:grid; grid-template-columns:minmax(320px,.85fr) minmax(360px,1.15fr); gap:clamp(3rem,8vw,9rem); align-items:center; padding:clamp(5.5rem,10vw,10rem) clamp(1.25rem,7vw,9rem); background:var(--cream); }
.about__portrait { min-height:620px; display:grid; place-items:center; background:radial-gradient(circle,var(--sand) 0 35%, transparent 36%), repeating-radial-gradient(circle, transparent 0 15px, rgba(23,18,14,.07) 16px 17px); }
.about__frame { position:relative; width:min(440px,82vw); aspect-ratio: .74; display:grid; place-items:center; border:2px solid var(--ink); background:var(--ink-2); color:var(--cream); box-shadow:20px 20px 0 var(--gold); overflow:hidden; }
.about__frame::before { content:""; position:absolute; inset:1rem; border:1px solid rgba(241,234,219,.55); border-radius:50% 50% 44% 44%; }
.about__frame img { position:relative; z-index:3; width:82%; filter:brightness(0) invert(1) sepia(.42) contrast(1.1) brightness(1.15); }
.about__initial { position:absolute; font-family:var(--western); font-size:clamp(6rem,14vw,10rem); color:var(--gold); opacity:.26; }
.about__initial--j { left:1.5rem; top:1.4rem; }
.about__initial--p { right:1.5rem; bottom:1.4rem; }
.about__frame p { position:absolute; bottom:1.5rem; left:0; right:0; margin:0; text-align:center; font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.18em; font-size:.8rem; }
.about__copy { max-width:760px; }
.about h2 { font-size:clamp(3.5rem,6.4vw,6.4rem); }
.about__copy > p:not(.eyebrow) { font-size:clamp(1rem,1.3vw,1.18rem); color:rgba(23,18,14,.76); }
.about blockquote { margin:2.2rem 0 0; padding:1.2rem 0 0; border-top:1px solid var(--line); font-family:var(--western); font-size:clamp(1.15rem,2vw,1.6rem); color:var(--rust); }

.dates { position:relative; isolation:isolate; min-height:720px; display:grid; place-items:center; overflow:hidden; padding:6rem 1.25rem; color:var(--white); background:linear-gradient(rgba(23,18,14,.8),rgba(23,18,14,.9)), radial-gradient(circle at 50% 20%,#8e472c,#1c1713 62%); text-align:center; }
.dates::before { content:""; position:absolute; inset:0; z-index:-1; opacity:.22; background:repeating-linear-gradient(90deg,transparent 0 79px,rgba(255,255,255,.16) 80px),repeating-linear-gradient(0deg,transparent 0 79px,rgba(255,255,255,.08) 80px); transform:perspective(500px) rotateX(55deg) scale(1.5) translateY(20%); }
.dates__backdrop { position:absolute; white-space:nowrap; font-family:var(--display); font-size:clamp(8rem,23vw,25rem); font-weight:800; line-height:1; color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.12); transform:rotate(-4deg); }
.dates__content { position:relative; z-index:2; max-width:800px; }
.dates h2 { font-size:clamp(4rem,9vw,8.5rem); }
.dates__content > p:not(.eyebrow) { max-width:570px; margin:1.6rem auto 2rem; color:rgba(255,255,255,.72); }

.connect { padding:clamp(5.5rem,10vw,10rem) clamp(1.25rem,7vw,9rem); background:var(--gold); }
.connect { display:grid; grid-template-columns:minmax(300px,.8fr) minmax(420px,1.2fr); gap:clamp(3rem,9vw,10rem); align-items:start; }
.connect h2 { font-size:clamp(3.6rem,6.5vw,6.7rem); }
.connect__copy > p:last-child { max-width:500px; }
.social-links { border-top:2px solid var(--ink); }
.social-links a { display:grid; grid-template-columns:1fr 1fr auto; gap:1rem; align-items:center; min-height:88px; padding:1rem .3rem; border-bottom:1px solid rgba(23,18,14,.34); text-decoration:none; transition:padding .2s, background .2s; }
.social-links a:hover { padding-left:1rem; padding-right:1rem; background:rgba(255,255,255,.18); }
.social-links span { font-family:var(--display); font-size:clamp(1.5rem,2.5vw,2.4rem); font-weight:800; text-transform:uppercase; }
.social-links b { font-size:.77rem; text-transform:uppercase; letter-spacing:.12em; font-weight:600; opacity:.66; }
.social-links i { font-style:normal; font-size:1.5rem; }
.contact-note { grid-column:1/-1; margin-top:2rem; padding-top:1.5rem; border-top:1px solid rgba(23,18,14,.35); display:flex; align-items:center; gap:1rem; }
.contact-note img { width:min(190px,38vw); height:auto; }
.contact-note p { max-width:720px; margin:0; font-size:.85rem; }


.artist-note { position:relative; overflow:hidden; display:grid; grid-template-columns:minmax(220px,.55fr) minmax(420px,1.45fr); gap:clamp(2.5rem,7vw,8rem); align-items:center; padding:clamp(5.5rem,10vw,10rem) clamp(1.25rem,7vw,9rem); color:var(--cream); background:var(--ink-2); }
.artist-note::before { content:""; position:absolute; inset:0; opacity:.16; pointer-events:none; background:repeating-linear-gradient(135deg,transparent 0 34px,rgba(216,159,55,.18) 35px 36px); }
.artist-note__mark, .artist-note__copy { position:relative; z-index:1; }
.artist-note__mark { min-height:340px; display:grid; place-items:center; align-content:center; gap:1.4rem; border:1px solid rgba(241,234,219,.28); background:radial-gradient(circle,rgba(216,159,55,.2),transparent 63%); transform:rotate(-2deg); }
.artist-note__mark img { width:min(300px,80%); filter:brightness(0) invert(1) sepia(.55) brightness(1.2); }
.artist-note__mark span { font-family:var(--display); font-size:.78rem; font-weight:800; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.artist-note__copy { max-width:900px; }
.artist-note h2 { margin:0 0 2rem; font-family:var(--display); font-size:clamp(3.4rem,6vw,6rem); font-weight:800; line-height:.88; letter-spacing:-.035em; text-transform:uppercase; }
.artist-note__copy > p:not(.eyebrow):not(.artist-note__signoff) { margin:0 0 1.15rem; color:rgba(241,234,219,.78); font-size:clamp(.98rem,1.2vw,1.12rem); }
.artist-note__signoff { margin:2rem 0 0; font-family:var(--western); font-size:clamp(1.25rem,2vw,1.7rem); color:var(--gold); }

.site-footer { padding:4rem clamp(1.25rem,5vw,6.5rem) 2rem; color:var(--cream); background:var(--ink); display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; }
.brand--footer img { width:min(220px,64vw); filter:brightness(0) invert(1) sepia(.45) brightness(1.1); }
.site-footer > p { justify-self:end; margin:0; color:rgba(241,234,219,.63); }
.site-footer nav { display:flex; gap:1.4rem; }
.site-footer nav a { font-family:var(--display); font-weight:700; text-transform:uppercase; letter-spacing:.1em; }
.site-footer small { justify-self:end; color:rgba(241,234,219,.5); }

.video-modal { width:min(1100px,94vw); padding:0; border:0; background:#000; box-shadow:0 28px 100px rgba(0,0,0,.7); }
.video-modal::backdrop { background:rgba(12,9,7,.9); backdrop-filter:blur(10px); }
.video-modal__close { position:fixed; right:clamp(1rem,3vw,2rem); top:1rem; z-index:3; width:52px; aspect-ratio:1; border:1px solid rgba(255,255,255,.45); border-radius:50%; background:rgba(0,0,0,.35); color:#fff; font-size:2rem; line-height:1; cursor:pointer; }
.video-modal__frame { aspect-ratio:16/9; }
.video-modal__frame iframe { width:100%; height:100%; border:0; display:block; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns:1fr auto; }
  .site-nav { position:fixed; inset:68px 0 auto 0; display:grid; gap:0; padding:1rem 1.25rem 1.4rem; background:var(--cream); color:var(--ink); border-bottom:1px solid var(--line); transform:translateY(-130%); transition:transform .25s; z-index:-1; }
  .site-nav.is-open { transform:none; }
  .site-nav a { padding:.9rem 0; border-bottom:1px solid var(--line); font-size:1.2rem; }
  .header-cta { display:none; }
  .nav-toggle { justify-self:end; display:grid; gap:5px; width:44px; height:44px; place-content:center; padding:0; border:1px solid currentColor; background:transparent; cursor:pointer; }
  .nav-toggle span:not(.sr-only) { width:20px; height:1.5px; background:currentColor; }
  .opening { grid-template-columns:1fr; padding-top:130px; gap:4rem; }
  .opening__copy { max-width:760px; }
  .video-marquee { justify-self:start; }
  .video-marquee__rail { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .scroll-cue { display:none; }
  .album-grid { grid-template-columns:repeat(2,1fr); }
  .about { grid-template-columns:1fr; }
  .about__portrait { min-height:560px; }
  .connect { grid-template-columns:1fr; }
  .artist-note { grid-template-columns:1fr; }
  .artist-note__mark { min-height:250px; }
}

@media (max-width: 720px) {
  .site-header { min-height:76px; padding-inline:1rem; }
  .brand img { width:144px; }
  .site-header.is-scrolled .brand img { width:132px; }
  .opening { min-height:auto; padding:112px 1rem 4rem; }
  .opening h1 span { font-size:clamp(4.2rem,23vw,7rem); }
  .opening__tagline { font-size:1rem; }
  .opening__actions .button { flex:1 1 170px; }
  .video-marquee::before { display:none; }
  .video-marquee__rail { grid-template-columns:repeat(2,minmax(0,1fr)); width:100%; margin-left:0; }
  .featured-video--small { aspect-ratio:16/10.6; }
  .play-button { width:60px; }
  .featured-video__meta strong { font-size:1.25rem; }
  .featured-video--small .featured-video__meta small { display:none; }
  .featured-video--small .featured-video__meta strong { font-size:.8rem; }
  .section { padding-inline:1rem; }
  .section-heading--row { grid-template-columns:1fr; gap:1.2rem; }
  .video-grid { grid-template-columns:1fr; }
  .video-card--wide { grid-row:auto; }
  .video-card--wide button, .video-card:not(.video-card--wide) button { aspect-ratio:16/9; }
  .latest-release { grid-template-columns:1fr; padding-inline:1rem; }
  .latest-release__art { min-height:420px; }
  .record-sleeve { width:min(340px,76vw); }
  .vinyl { width:min(320px,70vw); right:0; }
  .album-grid { grid-template-columns:1fr; }
  .album-card__meta strong { font-size:clamp(1.75rem,8vw,2.5rem); }
  .all-platforms { grid-template-columns:1fr; gap:1rem; }
  .about { padding-inline:1rem; }
  .about__portrait { min-height:470px; }
  .about__frame { width:min(330px,82vw); }
  .dates { min-height:620px; }
  .connect { padding-inline:1rem; }
  .social-links a { grid-template-columns:1fr auto; }
  .social-links b { display:none; }
  .contact-note { align-items:flex-start; }
  .artist-note { padding-inline:1rem; }
  .artist-note__mark { min-height:220px; }
  .site-footer { grid-template-columns:1fr; }
  .site-footer > p, .site-footer small { justify-self:start; }
  .site-footer nav { flex-wrap:wrap; }
}


@media (max-width: 430px) {
  .video-marquee__rail { grid-template-columns:1fr; }
  .featured-video--small { aspect-ratio:16/8.8; }
  .featured-video--small .featured-video__meta strong { font-size:1rem; }
}

@media (hover: none) {
  .album-card__sleeve { transform:translateY(-3px) rotate(-.4deg); }
  .album-card__vinyl { transform:translateX(12%) rotate(22deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}
