/* ==================================
   VARIABLES
================================== */

:root {
  --bg: #f1eee7;
  --text: #171715;
  --muted: #6f6b63;
  --border: #c9c4b9;
  --panel: #e5e0d6;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  --page-padding: clamp(20px, 6vw, 88px);
}


/* ==================================
   RESET / GLOBAL
================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--bg);
  color: var(--text);

  font-family: var(--sans);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ==================================
   NAV
================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px var(--page-padding);

  background: rgba(241, 238, 231, 0.94);

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(12px);
}

.logo {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 24px;

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

nav a {
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.55;
}


/* ==================================
   HERO
================================== */

.hero {
  padding:
    clamp(80px, 13vw, 160px)
    var(--page-padding)
    72px;

  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;

  color: var(--muted);

  font-weight: bold;
}

.hero h1 {
  margin: 26px 0 48px;

  font-family: var(--serif);
  font-weight: 400;

  font-size: clamp(62px, 13vw, 170px);
  line-height: 0.78;

  letter-spacing: -0.065em;
}

.hero-bottom {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 50px;

  align-items: end;
}

.hero-copy {
  max-width: 660px;

  font-family: var(--serif);

  font-size: clamp(21px, 2.3vw, 30px);

  line-height: 1.45;
}

.hero-location {
  text-align: right;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.8;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}


/* ==================================
   ANNOUNCEMENT
================================== */

.announcement {
  padding: 14px var(--page-padding);

  border-bottom: 1px solid var(--border);

  font-family: var(--serif);

  font-style: italic;

  font-size: 15px;
}


/* ==================================
   GENERAL SECTIONS
================================== */

section {
  padding: 72px var(--page-padding);

  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 24px;

  margin-bottom: 40px;
}

.section-header h2 {
  margin: 10px 0 0;

  font-family: var(--serif);

  font-size: clamp(46px, 7vw, 84px);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.045em;
}

.section-link {
  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.16em;

  border-bottom: 1px solid currentColor;

  padding-bottom: 4px;
}


/* ==================================
   ARTISTS
================================== */

.artist-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.artist-card {
  transition: opacity 0.2s ease;
}

.artist-card:hover {
  opacity: 0.72;
}

.artist-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 4 / 5;

  margin-bottom: 16px;

  background:
    linear-gradient(
      145deg,
      #6d6961,
      #20201e
    );
}

.artist-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.artist-image::after {
  content: "PRESS PHOTO";

  position: absolute;

  bottom: 14px;
  left: 14px;

  color: white;

  font-size: 9px;

  letter-spacing: 0.16em;
}

.artist-card h3 {
  margin: 0 0 5px;

  font-family: var(--serif);

  font-size: 27px;

  font-weight: 400;
}

.artist-card p {
  margin: 0;

  color: var(--muted);

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.14em;
}


/* ==================================
   RELEASES
================================== */

.release-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.release-cover {
  display: flex;

  align-items: flex-end;

  aspect-ratio: 1;

  margin-bottom: 14px;

  padding: 18px;

  color: white;

  font-family: var(--serif);

  font-size: 20px;
}

.release:nth-child(1) .release-cover {
  background:
    linear-gradient(
      140deg,
      #111 0 46%,
      #777269 46% 54%,
      #c6beaa 54%
    );
}

.release:nth-child(2) .release-cover {
  background:
    radial-gradient(
      circle at 70% 30%,
      #b3aea4 0 10%,
      #403f3a 11% 40%,
      #171716 41%
    );
}

.release:nth-child(3) .release-cover {
  background:
    linear-gradient(
      45deg,
      #c5c0b5 0 35%,
      #44423e 35% 65%,
      #171716 65%
    );
}

.release:nth-child(4) .release-cover {
  background:
    linear-gradient(
      160deg,
      #6e6a61,
      #191918
    );
}

.release strong {
  display: block;

  margin-bottom: 5px;

  font-size: 12px;
}

.release span {
  color: var(--muted);

  font-size: 10px;
}


/* ==================================
   ABOUT
================================== */

.about-grid {
  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: 80px;
}

.about-grid h2 {
  margin: 10px 0;

  font-family: var(--serif);

  font-size: clamp(44px, 6vw, 76px);

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.04em;
}

.about-main {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(24px, 3vw, 38px);

  line-height: 1.42;
}

.about-secondary {
  max-width: 650px;

  margin-top: 28px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.8;
}


/* ==================================
   CONTACT
================================== */

.contact {
  padding-top: 90px;

  padding-bottom: 90px;
}

.contact h2 {
  margin: 16px 0 70px;

  font-family: var(--serif);

  font-size: clamp(58px, 11vw, 145px);

  font-weight: 400;

  line-height: 0.8;

  letter-spacing: -0.06em;
}

.contact-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 30px;

  padding-top: 24px;

  border-top: 1px solid var(--border);
}

.contact-item {
  font-size: 13px;
}

.contact-item strong {
  display: block;

  margin-bottom: 10px;

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* ==================================
   FOOTER
================================== */

footer {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding: 24px var(--page-padding);

  color: var(--muted);

  font-size: 9px;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


/* ==================================
   TABLET / MOBILE
================================== */

@media (max-width: 760px) {

  nav {
    gap: 12px;
  }

  nav a:nth-child(3),
  nav a:nth-child(4) {
    display: none;
  }

  .hero-bottom,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-location {
    text-align: left;
  }

  .artist-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artist-card:last-child {
    grid-column: 1 / -1;

    max-width: 55%;
  }

  .release-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding-top: 56px;

    padding-bottom: 56px;
  }

  footer {
    flex-wrap: wrap;
  }
}


/* ==================================
   SMALL MOBILE
================================== */

@media (max-width: 480px) {

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card:last-child {
    max-width: none;
  }

  .release-grid {
    grid-template-columns: 1fr;
  }
}