:root {
  --bg: #f3ecdf;
  --paper: #fcf8f1;
  --paper-2: #ece2d2;
  --ink: #2b241d;
  --muted: #65584c;
  --line: rgba(74, 57, 40, 0.18);
  --olive: #70735d;
  --dusty-blue: #7a8790;
  --rust: #a45b3d;
  --deep: #1f1813;
  --button-text: #fffaf4;
  --shadow: 0 18px 50px rgba(45, 31, 20, 0.11);
  --hero-image-position: center 100%;
  --hero-image-shift-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.76), rgba(255, 251, 245, 0)),
    var(--bg);
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(247, 243, 236, 0.92), rgba(239, 233, 224, 0.62));
  border-bottom: 1px solid rgba(84, 63, 44, 0.08);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(43, 36, 29, 0.84);
}

.site-nav a:hover {
  color: var(--rust);
}

.hero {
  position: relative;
  min-height: 70vh;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 251, 245, 0.72), rgba(255, 251, 245, 0) 48%),
    linear-gradient(180deg, #f7f1e8, #efe5d7);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  align-items: center;
  gap: 2.5rem;
  min-height: 70vh;
  padding-top: 7.4rem;
  padding-bottom: 3.5rem;
}

.hero-copy {
  max-width: 32rem;
  color: var(--ink);
}

.kicker,
.section-label,
.embed-label,
.release-meta {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero h1,
.section-heading h2,
.release-copy h3,
.newsletter-shell h2,
.contact-shell h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.25rem);
  line-height: 0.86;
  max-width: 9ch;
  text-wrap: balance;
  color: var(--deep);
}

.hero-intro {
  margin: 1rem 0 0;
  max-width: 30rem;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-media {
  display: grid;
  justify-content: flex-end;
  gap: 0.45rem;
}

.hero-image-frame {
  width: min(100%, 38rem);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  background: #ddcfbf;
  box-shadow: var(--shadow);
  border: 1px solid rgba(82, 62, 44, 0.12);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position);
  transform: translateY(var(--hero-image-shift-y));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--rust);
  color: var(--button-text);
}

.btn-secondary {
  background: rgba(43, 36, 29, 0.08);
  color: var(--ink);
  border-color: rgba(67, 52, 39, 0.24);
}

.music-section .btn-secondary,
.contact-shell .btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(67, 52, 39, 0.18);
}

.hero-player-row,
.hero-players {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
  gap: 1rem;
  align-items: end;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: 6rem;
}

.music-section {
  background: linear-gradient(180deg, #f7f2ea, #efe7da);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-credit {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.4rem;
}

.section-label,
.release-meta {
  color: var(--olive);
}

.section-heading h2,
.newsletter-shell h2,
.contact-shell h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.98;
  color: var(--deep);
}

.section-intro {
  margin: 0.85rem 0 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.release-copy h3 {
  color: var(--deep);
}

.release-copy p,
.about-copy,
.newsletter-shell p,
.contact-shell p,
.fine-print {
  color: var(--muted);
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: start;
}

.release-copy {
  padding-top: 0.4rem;
  display: grid;
  gap: 0.95rem;
}

.release-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.release-subhead,
.release-notes-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.release-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.release-notes {
  padding-top: 0.45rem;
  margin-top: 0.2rem;
  border-top: 1px solid var(--line);
}

.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.8rem;
}

.stream-links a,
.footer-links a {
  text-decoration: none;
  color: var(--rust);
  font-weight: 700;
}

.stream-links a {
  padding-bottom: 0.08rem;
  border-bottom: 1px solid rgba(164, 91, 61, 0.24);
}

.release-aside {
  margin-top: 0.3rem;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.release-aside h4 {
  margin: 0.35rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--deep);
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--rust);
  font-weight: 700;
  text-decoration: none;
}

.embed-column {
  display: grid;
  gap: 1rem;
}

.embed-frame {
  background: rgba(255, 251, 245, 0.74);
  border: 1px solid rgba(71, 53, 36, 0.12);
  border-radius: 24px;
  padding: 0.9rem;
  box-shadow: var(--shadow);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.embed-frame-secondary {
  max-width: 360px;
}

.embed-label {
  color: var(--olive);
  margin-bottom: 0.6rem;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 0.85rem;
  justify-content: start;
}

.gallery-tile {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: #e8ddcf;
  box-shadow: var(--shadow);
  --gallery-image-position: center center;
  --gallery-image-scale: 1;
}

.gallery-photo-1 {
  --gallery-image-position: center 5%;
  --gallery-image-scale: 1;
}

.gallery-photo-2 {
  --gallery-image-position: center 90%;
  --gallery-image-scale: 1;
}

.gallery-photo-3 {
  --gallery-image-position: center 24%;
  --gallery-image-scale: 1.04;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--gallery-image-position);
  transform: scale(var(--gallery-image-scale));
  transition: transform 180ms ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(calc(var(--gallery-image-scale) + 0.03));
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(120, 135, 150, 0.38);
  outline-offset: -3px;
}

.about-section {
  background: linear-gradient(180deg, #fbf7f0, #f5eee3);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.about-copy {
  font-size: 1.1rem;
  color: var(--muted);
}

.about-copy p {
  margin: 0 0 1rem;
}

.newsletter-section,
.contact-section {
  background: var(--paper);
}

.newsletter-section {
  background: linear-gradient(180deg, #f8f2e8, #f3eadc);
}

.newsletter-shell,
.contact-shell {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-shell {
  background: rgba(255, 251, 245, 0.38);
}

.newsletter-shell p,
.contact-shell p {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.fine-print {
  margin-top: 1rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 12, 9, 0.8);
  backdrop-filter: blur(8px);
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.08);
}

.lightbox-caption {
  color: rgba(252, 246, 238, 0.88);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 252, 247, 0.16);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  padding: 7.25rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0) 42%),
    linear-gradient(180deg, #f7f1e8, #efe5d7);
}

.page-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.page-intro h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.92;
  font-weight: 600;
  color: var(--deep);
}

.page-intro p {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.video-library {
  display: grid;
  gap: 1.4rem;
}

.video-card {
  padding: 1.1rem;
  background: rgba(255, 251, 245, 0.78);
  border: 1px solid rgba(71, 53, 36, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.video-frame {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: #1b1510;
}

.video-card h2 {
  margin: 1rem 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1;
  font-weight: 600;
  color: var(--deep);
}

.video-card p {
  margin: 0;
  color: var(--muted);
}

.video-card .stream-links {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 1.8rem;
    padding-top: 7.6rem;
    padding-bottom: 2.5rem;
  }

  .hero-copy {
    max-width: 28rem;
  }

  .music-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.4rem, 1120px);
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand {
    font-size: 1.28rem;
  }

  .site-nav {
    gap: 0.95rem;
  }

  .site-nav a {
    font-size: 0.94rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.25rem;
    padding-top: 5.6rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .hero-copy {
    max-width: none;
  }

  .hero-intro {
    max-width: 22rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    justify-content: stretch;
  }

  .hero-image-frame {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 3 / 4;
  }

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

  .music-layout {
    gap: 1.5rem;
  }

  .embed-frame-secondary {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-tile {
    aspect-ratio: 1 / 1;
  }

  .newsletter-shell,
  .contact-shell {
    padding: 2.4rem 1.2rem;
  }

  .page-shell {
    padding-top: 5.8rem;
  }

  .video-card {
    padding: 0.8rem;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
