* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 30px 110px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* home, label, studio and cases pages: reduce bottom padding, email sits closer to the edge */
.home-page .page-shell,
.label-page .page-shell,
.studio-page .page-shell,
.cases-page .page-shell {
  padding-bottom: 40px;
}

/* wraps header + page content; centers it vertically in the space above the footer,
   so it doesn't cling to the top on short/wide viewports */
.content-center {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---------- topline (back + brand, used on every inner page) ---------- */

.topline {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-button,
.topline-label {
  color: #9b9b9b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 24px;
  transition: color 0.3s ease;
}

.back-button:hover,
.topline-label:hover {
  color: #fff;
}

/* ---------- header / brand title ---------- */

.header {
  text-align: center;
  padding-top: 40px;
}

.header h1 {
  font-size: 72px;
  font-weight: 200;
  letter-spacing: 18px;
  text-transform: uppercase;
}

.header-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-link:hover {
  opacity: 0.7;
}

.subtitle {
  margin-top: 22px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 12px;
  color: #2f2f2f;
  text-transform: uppercase;
}

/* ---------- home page: three-way nav ---------- */

.main-nav {
  margin-top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.nav-item {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #fff;
}

/* ---------- label page: artist list ---------- */

.artists-grid {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.artist-card {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.artist-card:hover {
  color: #fff;
}

/* ---------- studio page: price list ---------- */

.price-list {
  margin-top: 90px;
  width: 100%;
  max-width: 760px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  text-align: left;
}

.price-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e0e0e0;
}

.price-name .dim {
  color: #5a5a5a;
}

.price-value {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

/* ---------- cases page: case list with hover reveal ---------- */

.cases-list {
  margin-top: 90px;
  width: 100%;
  max-width: 720px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.case-item {
  position: relative;
}

.case-link {
  display: block;
  color: #d8d8d8;
  text-decoration: none;
}

.case-title {
  display: block;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.case-link:hover .case-title {
  color: #fff;
}

.case-desc {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #8a8a8a;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.2px;
  text-transform: none;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.case-desc-heading {
  display: block;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.case-link:hover .case-desc {
  max-height: 220px;
  opacity: 1;
  margin-top: 16px;
}

/* no hover on touch devices: always show the description */
@media (hover: none) {
  .case-desc {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
  }
}

/* ---------- cases page placeholder ---------- */

.coming-soon {
  margin-top: 140px;
  color: #3a3a3a;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
}

/* ---------- artist detail page ---------- */

.artist-page .topline {
  margin-bottom: 70px;
}

.artist-name {
  margin: 40px 0 56px;
  color: #fff;
  font-size: 46px;
  font-weight: 200;
  letter-spacing: 22px;
  text-transform: uppercase;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #b8b8b8;
}

.meta-note {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  color: #666;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

/* ---------- footer (email, all pages) ---------- */

.footer-center {
  padding-top: 90px;
}

.footer-center a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  color: #fff;
}

/* ---------- responsive ---------- */

@media (max-width: 768px) {
  .page-shell {
    padding: 24px 20px 100px;
  }

  .home-page .page-shell,
  .label-page .page-shell,
  .studio-page .page-shell,
  .cases-page .page-shell {
    padding-bottom: 30px;
  }

  .header h1 {
    font-size: 36px;
    letter-spacing: 8px;
  }

  .subtitle {
    font-size: 16px;
    letter-spacing: 6px;
    margin-top: 16px;
  }

  .main-nav {
    margin-top: 80px;
    gap: 34px;
  }

  .nav-item {
    font-size: 17px;
    letter-spacing: 5px;
  }

  .topline {
    margin-bottom: 60px;
  }

  .artists-grid {
    margin-top: 70px;
    gap: 24px;
  }

  .artist-card {
    font-size: 20px;
  }

  .price-list {
    margin-top: 60px;
    gap: 26px;
  }

  .price-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .price-name {
    font-size: 14px;
  }

  .price-value {
    font-size: 15px;
  }

  .cases-list {
    margin-top: 60px;
    gap: 44px;
  }

  .case-title {
    font-size: 16px;
  }

  .case-desc {
    font-size: 13px;
  }

  .artist-name {
    font-size: 26px;
    letter-spacing: 10px;
    margin: 24px 0 40px;
  }

  .links a {
    font-size: 19px;
  }

  .links {
    gap: 18px;
  }

  .footer-center {
    padding-top: 60px;
  }

  .meta-note {
    bottom: 18px;
    font-size: 11px;
  }
}
