:root {
  --black: #050505;
  --charcoal: #101010;
  --charcoal-soft: #161616;
  --gold: #d6ad61;
  --bone: #d8c3a4;
  --muted: #9f8f76;
  --border: #3a2a18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--bone);
  font-family: "Cormorant Garamond", Georgia, serif;
  overflow-x: hidden;
}

.site-title,
h1,
h2,
h3,
.main-nav a,
.button,
.text-link,
.eyebrow {
  font-family: "Cinzel Decorative", Georgia, serif;
}

p,
.hero-text,
.contact p,
.album-card p,
.album-info-box p,
.visual-card p,
.quote-box {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--bone);
  font-size: 1.35rem;
  line-height: 1.85;
  letter-spacing: .4px;
}

/* HEADER */

.site-header {
  background: var(--black);
  text-align: center;
  padding: 34px 20px 24px;
  border-bottom: 1px solid var(--border);
}

.site-title {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: .95;
}

.center-logo {
  width: 150px;
  max-width: 45vw;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--bone);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .95rem;
}

.main-nav a:hover {
  color: var(--gold);
}

/* HERO */

.hero {
  min-height: 72vh;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.95)),
    url("images/logos/gravebound-records.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: .95rem;
}

h1 {
  color: var(--gold);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: .9;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--gold);

  font-size: clamp(2rem, 5vw, 4rem);

  text-transform: uppercase;

  letter-spacing: 3px;

  padding-bottom: 14px;

  margin-top: 0;

  margin-left: auto;

  margin-right: auto;

  width: fit-content;

  text-align: center;

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

h3 {
  color: var(--gold);
  font-size: 1.65rem;
}

p,
.hero-text,
.contact p,
.album-card p,
.album-info-box p,
.visual-card p,
.quote-box {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--bone);
  font-size: 1.35rem;
  line-height: 1.85;
  letter-spacing: .4px;
  text-align: center;
}

.hero-video {
  width: 100%;
  max-width: 1100px;
  display: block;
  margin: 40px auto;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(214,173,97,.12);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* GENERAL */

.section {
  background: var(--black);
  padding: 80px 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.button,
.text-link {
  display: inline-block;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem;
  margin-top: 12px;
}

.button:hover,
.text-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* CRYPT PAGE */

.crypt-image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.crypt-image {
  display: block;
  width: min(100%, 1100px);
  margin: 40px auto;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(214,173,97,.08);
}
.crypt-section {
  text-align: center;
}

.crypt-title {
  text-align: center;

  width: 100%;

  margin-bottom: 40px;
}

.crypt-image-wrapper {
  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  margin-bottom: 60px;
}

.crypt-image {
  width: min(100%, 1100px);

  display: block;

  margin: 0 auto;

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

  box-shadow: 0 0 40px rgba(214,173,97,.08);
}
/* ALBUM GRID */

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.album-card,
.info-box,
.visual-card,
.contact-box {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 0 34px rgba(214,173,97,.08);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--gold);
  display: block;
}

/* ABOUT / VISUALS */

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.quote-box {
  background: var(--charcoal-soft);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 34px;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ALBUM DETAIL PAGES */

.album-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(280px, 520px);
  justify-content: center;
  gap: 50px;
  align-items: center;
}

.album-page-image {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--gold);
  box-shadow: 0 0 45px rgba(214,173,97,.16);
}

.album-info-box {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 35px;
  text-align: center;
  box-shadow: 0 0 40px rgba(214,173,97,.08);
}

.feature-image {
  width: 100%;
  max-width: 1050px;
  display: block;
  margin: 35px auto 0;
  border: 1px solid var(--gold);
}

iframe {
  border: none;
  margin-top: 20px;
}

footer {
  background: var(--black);
  color: var(--muted);
  text-align: center;
  padding: 34px 20px;
  border-top: 1px solid var(--border);
}
.contact a {
    color: #c084fc !important;
    text-decoration: none;
    transition: 0.3s ease;
}
.contact a {
    color: #d4af37 !important;
}
.contact a:visited {
    color: #c084fc !important;
}

.contact a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 8px #c084fc;
}

/* MOBILE */

@media (max-width: 900px) {
  .album-grid,
  .visual-grid,
  .split,
  .album-detail-grid {
    grid-template-columns: 1fr;
  }

  .album-grid {
    max-width: 420px;
  }

  .site-title {
    letter-spacing: 3px;
  }

  .main-nav {
    gap: 18px;
  }
}