:root {
  --paper: #ffffff;
  --ink: #111111;
  --muted: #6e6a63;
  --line: rgba(17,17,17,.16);
  --dark: #0d0d0d;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  color: white;
  transition: background .25s ease, color .25s ease, padding .25s ease;
}

.site-header.scrolled {
  background: #ffffff;
  backdrop-filter: blur(12px);
  color: var(--ink);
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: .94rem;
  letter-spacing: .22em;
  font-weight: 500;
}

.brand span { font-size: .65em; vertical-align: top; }

.site-nav {
  display: flex;
  gap: 28px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a { opacity: .82; }
.site-nav a:hover { opacity: 1; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(110px, 14vw, 180px) clamp(20px, 7vw, 110px) clamp(140px, 14vw, 220px);
  color: white;
 background:
    linear-gradient(rgba(20,20,20,.55), rgba(20,20,20,.55)),
    url("assets/images/cajr-front.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.22), transparent 25%),
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.05));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 500;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: .95;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  max-width: 11ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  margin-top: 32px;
  border: 1px solid currentColor;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button-light { background: white; color: black; border-color: white; }
.button-outline-light { color: white; }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 0;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
}

.section h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.prose {
  max-width: 700px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.7;
}

.prose p:first-child { margin-top: 0; }

.dark-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #3f4752 0%, #2f3640 100%);
  color: white;
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.album-cover {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.album-cover img {
    display: block;
    width: 100%;
    height: auto;
}
.release-copy {
    padding-top: 30px;
}

.release-copy p:not(.eyebrow) {
    max-width: 570px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.video-frame {
    margin-top: 42px;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #111;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.note {
  color: var(--muted);
  font-size: .82rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  grid-column: span 5;
  background: linear-gradient(135deg, #c7c2b9, #77736e);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .7rem;
}

.photo-placeholder.tall {
  grid-column: span 7;
  grid-row: span 2;
}

.photo-placeholder.wide {
  grid-column: span 7;
}

.contact-section {
  text-align: center;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 900px;
  margin: 0 auto 40px;
}

.contact-link {
  display: inline-block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

.social-links {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 30px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .76rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    width: min(260px, calc(100vw - 40px));
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading {
    display: block;
  }

  .gallery {
    display: block;
  }

  .photo-placeholder {
    min-height: 280px;
    margin-bottom: 16px;
  }

 .site-footer {
    flex-direction: column;
}

.section {
    width: calc(100% - 8px);
}

}
@media (max-width: 768px) {

    .hero {
        min-height: 115svh;
        padding-bottom: 140px;
    }

    section {
        scroll-margin-top: 110px;
    }

}