/*
 * Hovercraft.band — site shell v0.2
 * Retro-space British R&B / punk pub band, not a corporate landing page.
 */

:root {
  --hc-ink: #11100e;
  --hc-paper: #eee8d9;
  --hc-paper-2: #d9d0bd;
  --hc-signal: #ef5b32;
  --hc-electric: #f1c84b;
  --hc-night: #17191d;
  --hc-muted: #5f5a52;
  --hc-rule: rgba(17, 16, 14, .2);
  --hc-max: 76rem;
  --hc-reading: 47rem;
  --hc-radius: .2rem;
  --hc-shadow: .32rem .32rem 0 var(--hc-ink);
  --hc-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --hc-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hc-mono: "Courier New", Courier, monospace;
}

* { box-sizing: border-box; }

html {
  background: var(--hc-night);
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(239,91,50,.10), transparent 24rem),
    linear-gradient(180deg, var(--hc-paper) 0%, #e7dfcf 100%);
  color: var(--hc-ink);
  font-family: var(--hc-sans);
  font-size: clamp(1rem, .97rem + .16vw, 1.1rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  display: block;
  height: .42rem;
  background: repeating-linear-gradient(90deg, var(--hc-signal) 0 4rem, var(--hc-electric) 4rem 8rem, var(--hc-ink) 8rem 12rem);
}

::selection { background: var(--hc-electric); color: var(--hc-ink); }

a {
  color: inherit;
  text-decoration-color: var(--hc-signal);
  text-decoration-thickness: .12em;
  text-underline-offset: .16em;
}

a:hover, a:focus-visible { color: var(--hc-signal); }

img, video, iframe { max-width: 100%; }

img, video { height: auto; }

iframe {
  border: 0;
  width: 100%;
}

header,
body > header,
.site-header {
  width: min(calc(100% - 2rem), var(--hc-max));
  margin: 0 auto;
  padding: clamp(1.7rem, 5vw, 4rem) 0 1.2rem;
  border-bottom: .22rem solid var(--hc-ink);
}

header h1,
header .site-title,
.site-header h1,
.site-title {
  margin: 0;
  font-family: var(--hc-display);
  font-size: clamp(3.4rem, 13vw, 9.5rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

header h1 a,
.site-title a {
  color: var(--hc-ink);
  text-decoration: none;
}

header h1 a::after,
.site-title a::after {
  content: "●";
  display: inline-block;
  margin-left: .07em;
  color: var(--hc-signal);
  font-size: .28em;
  vertical-align: top;
  transform: translateY(.18em);
}

header p,
.site-description,
header .description {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-family: var(--hc-mono);
  font-size: clamp(.78rem, 1.5vw, .94rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .06em;
  text-transform: uppercase;
}

nav,
header nav,
.site-nav {
  width: min(calc(100% - 2rem), var(--hc-max));
  margin: 0 auto;
  padding: .8rem 0;
  border-bottom: 1px solid var(--hc-rule);
}

header nav { width: auto; margin-top: 1.5rem; }

nav ul,
header nav ul,
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a,
header nav a,
.site-nav a {
  display: inline-block;
  padding: .3rem .55rem .26rem;
  border: 1px solid transparent;
  font-family: var(--hc-mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible,
header nav a:hover,
header nav a:focus-visible {
  border-color: var(--hc-ink);
  background: var(--hc-electric);
  color: var(--hc-ink);
  outline: none;
}

main,
#content,
.content,
.page-content {
  width: min(calc(100% - 2rem), var(--hc-max));
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

main > *,
#content > *,
.content > * {
  max-width: var(--hc-reading);
}

main > article,
#content > article,
.content > article,
.post,
.h-entry {
  max-width: var(--hc-reading);
}

article,
.post,
.h-entry {
  margin: 0 0 clamp(3.5rem, 8vw, 7rem);
}

article + article,
.post + .post,
.h-entry + .h-entry {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: .18rem solid var(--hc-ink);
}

h1, h2, h3, h4 {
  line-height: 1.03;
  text-wrap: balance;
}

main h1,
main h2,
#content h1,
#content h2,
.post h1,
.post h2,
.h-entry h1,
.h-entry h2 {
  font-family: var(--hc-display);
  font-weight: 900;
  letter-spacing: -.025em;
}

main h1, #content h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
main h2, #content h2, .post h2, .h-entry h2 { font-size: clamp(2rem, 5vw, 3.8rem); }

article h1 a,
article h2 a,
.post h1 a,
.post h2 a,
.h-entry h1 a,
.h-entry h2 a {
  text-decoration: none;
}

time,
.post-date,
.dt-published {
  display: inline-block;
  margin-bottom: .55rem;
  color: var(--hc-muted);
  font-family: var(--hc-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

blockquote {
  margin: 2rem 0;
  padding: .2rem 0 .2rem 1.2rem;
  border-left: .45rem solid var(--hc-signal);
  font-size: 1.18em;
  font-weight: 650;
}

hr {
  margin: 3rem 0;
  border: 0;
  border-top: .18rem solid var(--hc-ink);
}

button,
.button,
input[type="submit"] {
  border: .14rem solid var(--hc-ink);
  border-radius: var(--hc-radius);
  background: var(--hc-electric);
  color: var(--hc-ink);
  box-shadow: .2rem .2rem 0 var(--hc-ink);
  font: 800 .78rem/1 var(--hc-mono);
  letter-spacing: .04em;
  padding: .8rem 1rem;
  text-transform: uppercase;
}

audio { width: 100%; }

footer,
body > footer,
.site-footer {
  margin-top: clamp(3rem, 7vw, 7rem);
  padding: 2.2rem max(1rem, calc((100vw - var(--hc-max)) / 2));
  background: var(--hc-night);
  color: var(--hc-paper);
  font-family: var(--hc-mono);
  font-size: .78rem;
  line-height: 1.6;
}

footer a,
.site-footer a { color: var(--hc-paper); }

footer a:hover,
footer a:focus-visible { color: var(--hc-electric); }

body.hc-ready header,
body.hc-ready main,
body.hc-ready footer {
  animation: hc-arrive .32s ease-out both;
}

@keyframes hc-arrive {
  from { opacity: .01; transform: translateY(.35rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 62rem) {
  main,
  #content,
  .content,
  .page-content {
    position: relative;
  }
}

@media (max-width: 44rem) {
  body::before { height: .3rem; }

  header,
  body > header,
  .site-header,
  nav,
  .site-nav,
  main,
  #content,
  .content,
  .page-content {
    width: min(calc(100% - 1.3rem), var(--hc-max));
  }

  header,
  body > header,
  .site-header { padding-top: 1.7rem; }

  header h1,
  header .site-title,
  .site-title { font-size: clamp(3rem, 19vw, 5.3rem); }

  nav a,
  header nav a,
  .site-nav a {
    padding: .38rem .42rem;
    font-size: .7rem;
  }

  main,
  #content,
  .content,
  .page-content { padding-top: 2.4rem; }

  article,
  .post,
  .h-entry { margin-bottom: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.hc-ready header,
  body.hc-ready main,
  body.hc-ready footer { animation: none; }
}


/* === Homepage + managed chrome v0.3 === */

.hc-header {
  width: min(calc(100% - 2rem), var(--hc-max));
  margin: 0 auto;
  padding: 1.1rem 0 0;
  border: 0;
}

.hc-header__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: .8rem;
  border-bottom: .22rem solid var(--hc-ink);
}

.hc-wordmark {
  font-family: var(--hc-display);
  font-size: clamp(2.7rem, 8vw, 6.6rem);
  font-weight: 900;
  line-height: .76;
  letter-spacing: -.055em;
  text-decoration: none;
}

.hc-wordmark span {
  margin-left: .08em;
  color: var(--hc-signal);
  font-size: .22em;
  vertical-align: top;
}

.hc-header__signal {
  max-width: 19rem;
  margin: 0;
  font: 700 .68rem/1.35 var(--hc-mono);
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.hc-nav {
  width: 100%;
  padding: .65rem 0;
}

.hc-nav ul { justify-content: flex-start; }

.hc-home {
  width: min(calc(100% - 2rem), var(--hc-max));
  max-width: none;
  padding-top: clamp(1.4rem, 3vw, 2.5rem);
}

.hc-home > * { max-width: none; }

.hc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(17rem, .92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: min(43rem, 76vh);
  padding: clamp(2.5rem, 7vw, 6rem) 0;
  border-bottom: .22rem solid var(--hc-ink);
}

.hc-kicker,
.hc-section-label,
.hc-panel span,
.hc-news-card__date {
  margin: 0 0 1rem;
  font: 800 .72rem/1.3 var(--hc-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hc-kicker::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: .7rem;
  margin-right: .65rem;
  background: var(--hc-signal);
  vertical-align: -.05rem;
}

.hc-hero h1 {
  margin: 0;
  font-size: clamp(5.4rem, 15vw, 12.5rem);
  line-height: .7;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hc-deck {
  max-width: 39rem;
  margin: 2rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 620;
  line-height: 1.45;
}

.hc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hc-button {
  display: inline-block;
  padding: .85rem 1rem .75rem;
  border: .14rem solid var(--hc-ink);
  box-shadow: .22rem .22rem 0 var(--hc-ink);
  font: 800 .76rem/1 var(--hc-mono);
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.hc-button--primary { background: var(--hc-electric); }

.hc-hero__art {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background:
    repeating-radial-gradient(circle at center, rgba(238,232,217,.08) 0 .14rem, transparent .14rem 1.25rem),
    var(--hc-night);
  border: .16rem solid var(--hc-ink);
  box-shadow: .6rem .6rem 0 var(--hc-signal);
  overflow: hidden;
  transform: rotate(1.2deg);
}

.hc-record {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 78%;
  aspect-ratio: 1;
  padding: 8%;
  border-radius: 50%;
  background: var(--hc-signal);
  color: var(--hc-ink);
  box-shadow: 0 0 0 1.2rem var(--hc-ink), 0 0 0 1.35rem var(--hc-paper);
  transform: rotate(-8deg);
}

.hc-record span,
.hc-record small {
  font: 900 clamp(.55rem, 1vw, .78rem)/1 var(--hc-mono);
  letter-spacing: .1em;
}

.hc-record strong {
  font: 900 clamp(2rem, 5.5vw, 5rem)/.76 var(--hc-display);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.hc-manifesto {
  display: grid;
  grid-template-columns: minmax(10rem, .45fr) minmax(0, 1.25fr) minmax(13rem, .7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  border-bottom: .22rem solid var(--hc-ink);
}

.hc-manifesto__big {
  margin: 0;
  font: 900 clamp(2.4rem, 5.7vw, 5rem)/.93 var(--hc-display);
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hc-manifesto > p:last-of-type { margin-top: 0; }

.hc-text-link {
  font: 800 .76rem/1.4 var(--hc-mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hc-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: .22rem solid var(--hc-ink);
}

.hc-panel {
  min-height: 20rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: .14rem solid var(--hc-ink);
  color: var(--hc-ink);
  text-decoration: none;
}

.hc-panel:last-child { border-right: 0; }
.hc-panel--signal { background: var(--hc-electric); }
.hc-panel--dark { background: var(--hc-night); color: var(--hc-paper); }

.hc-panel strong {
  display: block;
  margin: 3rem 0 .6rem;
  font: 900 clamp(3rem, 6vw, 5.5rem)/.8 var(--hc-display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hc-panel em {
  display: block;
  max-width: 16rem;
  font-style: normal;
  line-height: 1.45;
}

.hc-panel:hover strong { color: var(--hc-signal); }

.hc-news {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hc-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: .18rem solid var(--hc-ink);
}

.hc-section-heading h2 {
  margin: 0 0 .5rem;
  font-size: clamp(4rem, 10vw, 8rem);
  text-transform: uppercase;
}

.hc-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hc-news-card {
  margin: 0;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--hc-rule);
}

.hc-news-card + .hc-news-card {
  padding-left: 2rem;
  border-top: 0;
}

.hc-news-card:last-child { border-right: 0; }

.hc-news-card h3 {
  margin: 0 0 1rem;
  font: 900 clamp(1.7rem, 3vw, 2.5rem)/.95 var(--hc-display);
}

.hc-news-card h3 a { text-decoration: none; }
.hc-news-card__summary { margin-bottom: 1rem; font-size: .92rem; }

.hc-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  margin-top: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hc-footer strong {
  display: block;
  font: 900 clamp(2.4rem, 5vw, 4.8rem)/.8 var(--hc-display);
  letter-spacing: -.04em;
}

.hc-footer span { display: block; margin-top: .7rem; }
.hc-footer nav { width: auto; margin: 0; padding: 0; border: 0; }
.hc-footer nav a { color: var(--hc-paper); }
.hc-footer p { margin: 0; }

@media (max-width: 50rem) {
  .hc-header__bar { align-items: flex-start; }
  .hc-header__signal { display: none; }

  .hc-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hc-hero__art {
    width: min(100%, 31rem);
    justify-self: center;
    order: -1;
  }

  .hc-manifesto { grid-template-columns: 1fr; }
  .hc-manifesto > p:last-of-type { max-width: 34rem; }

  .hc-home-grid,
  .hc-news__list { grid-template-columns: 1fr; }

  .hc-panel {
    min-height: 13rem;
    border-right: 0;
    border-bottom: .14rem solid var(--hc-ink);
  }

  .hc-panel:last-child { border-bottom: 0; }
  .hc-panel strong { margin-top: 2rem; }

  .hc-news-card,
  .hc-news-card + .hc-news-card {
    padding: 1.6rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hc-rule);
  }

  .hc-footer { grid-template-columns: 1fr; align-items: start; }
}


/* === Pre-release gate v0.4 === */

.hc-hero--teaser h1 {
  max-width: 9ch;
  font-size: clamp(4.6rem, 12vw, 10.5rem);
}

.hc-hero__art--teaser {
  position: relative;
  display: block;
  background:
    repeating-linear-gradient(135deg, rgba(238,232,217,.07) 0 .12rem, transparent .12rem 1.1rem),
    var(--hc-night);
}

.hc-mystery-sleeve {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: .15rem solid var(--hc-ink);
  box-shadow: .5rem .5rem 0 var(--hc-ink);
}

.hc-mystery-sleeve span {
  position: absolute;
  right: .8rem;
  bottom: .5rem;
  font: 900 clamp(3rem, 7vw, 6rem)/1 var(--hc-display);
}

.hc-mystery-sleeve--one {
  top: 12%;
  left: 9%;
  background:
    repeating-radial-gradient(circle at 40% 45%, transparent 0 1.1rem, rgba(17,16,14,.18) 1.15rem 1.3rem),
    var(--hc-signal);
  transform: rotate(-7deg);
}

.hc-mystery-sleeve--two {
  right: 8%;
  bottom: 9%;
  background:
    repeating-linear-gradient(90deg, var(--hc-electric) 0 1.3rem, var(--hc-paper) 1.3rem 2.6rem);
  transform: rotate(8deg);
}

.hc-hero__art--release {
  position: relative;
  display: block;
}

.hc-release-title {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  padding: 8%;
  border: .15rem solid var(--hc-ink);
  font: 900 clamp(2rem, 4.7vw, 4.5rem)/.78 var(--hc-display);
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.hc-release-title--one {
  top: 8%;
  left: 5%;
  background: var(--hc-signal);
  transform: rotate(-6deg);
}

.hc-release-title--two {
  right: 5%;
  bottom: 8%;
  background: var(--hc-electric);
  transform: rotate(7deg);
}

@media (max-width: 50rem) {
  .hc-hero--teaser h1 { font-size: clamp(4rem, 18vw, 7.2rem); }
}


/* === Pre-release two-record teaser === */

.hc-hero--teaser .hc-hero__art {
  background:
    radial-gradient(circle at 72% 24%, rgba(241,200,75,.22), transparent 23%),
    radial-gradient(circle at 22% 78%, rgba(239,91,50,.24), transparent 25%),
    var(--hc-night);
}

.hc-teaser-art {
  position: relative;
  min-height: 28rem;
}

.hc-teaser-sleeve {
  position: absolute;
  display: grid;
  place-items: center;
  width: 59%;
  aspect-ratio: 1;
  border: .18rem solid var(--hc-ink);
  box-shadow: .55rem .55rem 0 var(--hc-ink);
  overflow: hidden;
}

.hc-teaser-sleeve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, transparent 0 1.1rem, rgba(17,16,14,.12) 1.1rem 1.25rem);
}

.hc-teaser-sleeve span {
  position: relative;
  font: 900 clamp(5rem, 12vw, 10rem)/1 var(--hc-display);
}

.hc-teaser-sleeve--one {
  left: 9%;
  top: 11%;
  background: var(--hc-signal);
  transform: rotate(-8deg);
}

.hc-teaser-sleeve--two {
  right: 8%;
  bottom: 9%;
  background: var(--hc-electric);
  transform: rotate(7deg);
}

@media (max-width: 50rem) {
  .hc-teaser-art { min-height: 22rem; }
  .hc-teaser-sleeve { width: 57%; }
}
