/* GRIT Records — Clean layout (no packages) */
:root {
    --bg: #000;
    --fg: #fff;
    --muted: rgba(255, 255, 255, .65);
    --soft: rgba(255, 255, 255, .82);
    --line: rgba(255, 255, 255, .12);
    --panel: rgba(255, 255, 255, .04);
    --panel2: rgba(255, 255, 255, .06);
    --radius: 22px;
    --shadow: 0 12px 36px rgba(0, 0, 0, .5);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin:0px;
    padding:0px;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    line-height: 1.55
}

.topimage {
  overflow:hidden;
  width:100vw;
  height:100vh;
  background: url('assets/grit.png');
  background-size:cover;
  background-position:bottom;
}

/* layout */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 88px 0
}

.section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px
}

.section__head h2 {
    margin: 0;
    font-size: 34px
}

/* nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(8px)
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit
}

.brand__mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fff
}

.brand__name {
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .9);
    font-weight: 600
}

.nav__links {
    display: none;
    gap: 22px
}

.nav__links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 14px
}

.nav__links a:hover {
    color: #fff
}

@media (min-width:900px) {
    .nav__links {
        display: flex
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 14px;
    text-decoration: none
}

.btn--ghost {
    border: 1px solid var(--line);
    color: #fff
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .08)
}

.btn--outline {
    border: 1px solid var(--line);
    color: #fff
}

.btn--outline:hover {
    background: rgba(255, 255, 255, .08)
}

.btn--solid {
    background: #fff;
    color: #000
}

.btn--solid:hover {
    background: rgba(255, 255, 255, .92)
}

.muted {
    color: var(--muted)
}

.link {
    color: var(--soft);
    text-decoration: none
}

.link:hover {
    color: #fff
}

/* hero */
.hero {
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 60% at 50% 0%, rgba(255, 255, 255, .08), rgba(0, 0, 0, .7) 70%)
}

.hero__beam {
    position: absolute;
    filter: blur(60px);
    opacity: .9
}

.hero__beam--1 {
    top: -140px;
    left: 50%;
    transform: translateX(-50%) rotate(12deg);
    width: 60rem;
    height: 60rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .1), rgba(255, 255, 255, 0))
}

.hero__beam--2 {
    bottom: -160px;
    left: 10%;
    width: 44rem;
    height: 44rem;
    transform: rotate(-6deg);
    background: linear-gradient(to top right, rgba(192, 132, 252, .14), rgba(244, 114, 182, .1), rgba(255, 255, 255, 0))
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 84px 0
}

@media (min-width:980px) {
    .hero__inner {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        min-height: 72vh
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--soft)
}

.hero__title {
    font-size: 44px;
    line-height: 1.05;
    margin: 16px 0 0
}

@media (min-width:980px) {
    .hero__title {
        font-size: 58px
    }
}

.soft {
    color: var(--soft)
}

.hero__lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    margin-top: 16px
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px
}

.cred {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    margin-top: 20px
}

.cred .dot {
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, .24);
    display: inline-block
}

.hero__visual {
    height: 420px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
    box-shadow: var(--shadow)
}

@media (min-width:980px) {
    .hero__visual {
        height: 520px
    }
}

/* grid helpers */
.grid {
    display: grid;
    gap: 18px
}

.grid--2 {
    grid-template-columns: 1fr
}

@media (min-width:900px) {
    .grid--2 {
        grid-template-columns: 1fr 1fr
    }
}

/* cards (artists) */
.card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .25s ease
}

.card:hover {
    transform: translateY(-2px)
}

.card__media {
    aspect-ratio: 4/3;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative
}

.card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, .45) 95%)
}

.card__body {
    padding: 18px
}

.card__title {
    margin: 0 0 4px 0;
    font-size: 20px
}

.eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.card__blurb {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px
}

/* releases */
.release {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 22px
}

.release__cover {
    aspect-ratio: 16/9;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.release__meta {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.release__title {
    margin: 0
}

.release__blurb {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px
}

/* about panel */
.panel {
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    padding: 28px;
    display: grid;
    gap: 18px
}

@media (min-width:900px) {
    .panel {
        grid-template-columns: 1.1fr .9fr;
        align-items: center
    }
}

.panel__copy h2 {
    margin: 0 0 8px 0;
    font-size: 32px
}

.panel__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 18px
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.stat {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel2);
    padding: 14px
}

.stat__big {
    font-size: 24px
}

.stat__label {
    color: var(--muted);
    font-size: 14px
}

/* contact */
.contact__copy p {
    color: var(--muted)
}

.contact__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px
}

.form {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px
}

.form .full {
    grid-column: 1/-1
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    outline: none
}

.form input:focus,
.form textarea:focus {
    border-color: rgba(255, 255, 255, .34)
}

.form button.btn {
    margin-top: 2px
}

/* footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    margin-top: 40px
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.social {
    display: flex;
    gap: 18px
}

.social a {
    text-decoration: none;
    color: rgba(255, 255, 255, .75)
}

.social a:hover {
    color: #fff
}

/* polish */
:target {
    scroll-margin-top: 84px
}

@media (max-width:420px) {
  .topimage {
    display:none;
  }
    .container {
        padding: 0 18px
    }

    .section {
        padding: 68px 0
    }

    .hero__inner {
        gap: 28px;
        padding: 64px 0
    }

    .hero__title {
        font-size: 40px
    }
}
