/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Variables ─── */
:root {
  --gold-deep:    #b8832a;
  --gold-warm:    #d4a44c;
  --gold-light:   #e8c87a;
  --gold-pale:    #f5e4b8;
  --amber-glow:   #c8762010;
  --parchment:    #fdf6e8;
  --shadow-deep:  #1a0e00;
  --shadow-mid:   #2e1e07;
  --text-body:    #3a2710;
  --text-muted:   #7a5c38;
  --rule-color:   #c8a05040;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--text-body);
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── Grain overlay (atmospheric texture) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 100;
  opacity: 0.6;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.1s; }
.delay-5 { animation-delay: 1.4s; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('/heroimage.webp');
  background-size: cover;
  background-position: center top;
  animation: fadeIn 2s ease forwards;
}

/* layered gradient: subtle top darkening + strong bottom fade to parchment */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26, 14, 0, 0.15) 0%,
      rgba(26, 14, 0, 0.05) 30%,
      rgba(253, 246, 232, 0.0) 50%,
      rgba(253, 246, 232, 0.6) 72%,
      rgba(253, 246, 232, 1.0) 100%
    );
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(4rem, 14vw, 10rem);
  letter-spacing: 0.35em;
  color: var(--shadow-deep);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-warm), transparent);
  margin: 1.5rem auto;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--shadow-mid);
  letter-spacing: 0.05em;
}

.hero-scroll {
  display: none;
}

/* ─── Sections ─── */
section {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.2;
  color: var(--shadow-deep);
  margin-bottom: 1.8rem;
}

.section-body {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.9;
}

.section-body p + p {
  margin-top: 1.2rem;
}

/* decorative rule between sections */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule-color));
}

.ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--rule-color));
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-warm);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Music section ─── */
.music-section {
  padding-top: 3rem;
}

.album-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(200, 118, 32, 0.06), rgba(200, 118, 32, 0.02));
  border: 1px solid var(--rule-color);
  border-radius: 4px;
  padding: 1.5rem;
}

.album-art {
  width: 110px;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(26, 14, 0, 0.15);
}

.album-info {
  flex: 1;
}

.album-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--shadow-deep);
  margin-bottom: 0.3rem;
}

.album-meta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-warm);
  color: var(--gold-deep);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.spotify-link:hover {
  background: var(--gold-warm);
  color: var(--parchment);
}

.spotify-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Featured Artists ─── */
.featured-note {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  border-left: 2px solid var(--gold-light);
  padding-left: 1.2rem;
  margin-top: 1.5rem;
}

/* ─── Concerns list ─── */
.concerns-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.concerns-list li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.concerns-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--gold-warm);
  transform: rotate(45deg);
}

/* ─── Footer ─── */
footer {
  text-align: center;
  padding: 4rem 2rem 3rem;
  border-top: 1px solid var(--rule-color);
  margin-top: 2rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--shadow-deep);
  opacity: 0.15;
  margin-bottom: 1.5rem;
}

.footer-credit {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .hero-scroll, .hero-image { animation: none; opacity: 1; }
  .hero-rule, .scroll-line { animation: none; }
}

/* ─── Small tablets ─── */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 1.5rem;
  }

  .ornament {
    padding: 0 1.5rem;
  }
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
  .hero {
    padding-bottom: 5vh;
  }

  .hero-name {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    letter-spacing: 0.15em;
    word-break: break-word;
  }

  .hero-tagline {
    font-size: clamp(0.9rem, 2.8vw, 1.1rem);
  }

  .hero-text {
    padding: 0 1rem;
    max-width: 100vw;
  }

  section {
    padding: 3rem 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-label {
    font-size: 1rem;
  }

  .album-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem;
  }

  .album-art {
    width: 140px;
    height: 140px;
  }

  .ornament {
    padding: 0 1.2rem;
  }

  footer {
    padding: 3rem 1.2rem 2rem;
  }

  .footer-name {
    font-size: 2rem;
  }
}

/* ─── Very small screens ─── */
@media (max-width: 380px) {
  .hero {
    padding-bottom: 4vh;
  }

  .hero-name {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
    letter-spacing: 0.1em;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }

  section {
    padding: 2.5rem 1rem;
  }
}

/* ─── Shared nav ─── */
.site-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* When nav sits over the hero on the homepage, make it absolute */
.site-nav.site-nav--over-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1080px;
}

/* Subtle dark gradient behind nav on homepage for legibility over hero image */
.site-nav.site-nav--over-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100vw;
  right: -100vw;
  height: 140px;
  background: linear-gradient(to bottom, rgba(26, 14, 0, 0.45) 0%, rgba(26, 14, 0, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-nav__links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.site-nav__link {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow-deep);
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s ease;
}

/* Over hero: use light text for contrast against the warm-toned hero image */
.site-nav--over-hero .site-nav__link {
  color: var(--parchment);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.3);
}

.site-nav__link[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-warm), transparent);
}

.site-nav__link:hover {
  color: var(--gold-deep);
}

.site-nav--over-hero .site-nav__link:hover {
  color: var(--gold-light);
}

/* Hairline rule beneath the nav on non-homepage pages */
.site-nav + .page-rule {
  max-width: 1080px;
  margin: 0 auto;
  height: 1px;
  background: var(--rule-color);
}

@media (max-width: 600px) {
  .site-nav {
    padding: 0.9rem 1.2rem;
  }
  .site-nav__links {
    gap: 1.4rem;
  }
  .site-nav__link {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
  }
}

/* ─── Album grid (music.html) ─── */
.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.album-grid__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(200, 118, 32, 0.06), rgba(200, 118, 32, 0.02));
  border: 1px solid var(--rule-color);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-grid__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 14, 0, 0.12);
}

.album-grid__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.album-grid__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--shadow-deep);
}

.album-grid__meta {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .album-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.2rem;
  }
}

/* ─── Breadcrumbs ─── */
.breadcrumb {
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

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

.breadcrumb a:hover {
  color: var(--gold-warm);
}

.breadcrumb__sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* ─── Album header (album.html) ─── */
.album-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 880px;
  margin: 1rem auto 0;
  padding: 2rem;
}

.album-header__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(26, 14, 0, 0.18);
}

.album-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--shadow-deep);
  margin-bottom: 0.3rem;
}

.album-header__meta {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.album-header__description {
  color: var(--text-body);
  line-height: 1.8;
  margin-top: 1.2rem;
}

@media (max-width: 720px) {
  .album-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .album-header__cover {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ─── Track list ─── */
.track-list {
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  list-style: none;
}

.track-list__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.track-list__item:hover {
  background: var(--amber-glow);
}

.track-list__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: var(--gold-deep);
  min-width: 2rem;
  text-align: center;
}

.track-list__title {
  flex: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--shadow-deep);
}

.track-list__chevron {
  color: var(--gold-deep);
  font-size: 1.2rem;
}

/* ─── Song page ─── */
.song-header {
  max-width: 720px;
  margin: 1rem auto 0;
  padding: 2rem;
  text-align: center;
}

.song-header__number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold-deep);
  letter-spacing: 0.15em;
}

.song-header__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.2;
  color: var(--shadow-deep);
  margin: 0.5rem 0 1rem;
}

.song-header__source {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.song-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.song-section__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.song-original {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  color: var(--shadow-deep);
  letter-spacing: 0.05em;
  white-space: pre-line;
}

.song-original[dir="rtl"] {
  direction: rtl;
}

.song-transliteration {
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  white-space: pre-line;
}

.song-translation {
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  white-space: pre-line;
}

.lyrics-section {
  margin-bottom: 2rem;
}

.lyrics-section__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}

.lyrics-section__lines {
  white-space: pre-line;
  line-height: 1.9;
}

.note-card {
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold-light);
  background: rgba(200, 118, 32, 0.04);
  margin-bottom: 1rem;
  border-radius: 0 2px 2px 0;
}

.note-card__term {
  font-weight: 600;
  color: var(--shadow-deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.note-card__note {
  color: var(--text-body);
  line-height: 1.7;
}

.song-coming-soon {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  margin: 3rem 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.song-back {
  display: block;
  text-align: center;
  margin: 3rem auto 4rem;
  color: var(--gold-deep);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.song-back:hover {
  color: var(--gold-warm);
}

/* ─── Resources page ─── */
.resource-group {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 1rem;
}

.resource-group__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}

.resource-group__intro {
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.resource-list {
  list-style: none;
  padding: 0;
}

.resource-card {
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: background 0.2s ease;
}

.resource-card:hover {
  background: var(--amber-glow);
}

.resource-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--shadow-deep);
}

.resource-card__title a {
  color: inherit;
  text-decoration: none;
}

.resource-card__title a:hover {
  color: var(--gold-deep);
}

.resource-card__domain {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.3rem 0 0.6rem;
}

.resource-card__description {
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── Music search ─── */
.music-search {
  max-width: 680px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}

.music-search__input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-body);
  background: transparent;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}

.music-search__input:focus {
  outline: none;
  border-color: var(--gold-warm);
}

.song-match-list {
  max-width: 880px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  list-style: none;
}

.song-match-list__item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--rule-color);
  text-decoration: none;
  color: inherit;
}

.song-match-list__album {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.song-match-list__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--shadow-deep);
}

.matches-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-top: 3rem;
}

/* ─── Spotify embed ─── */
.spotify-embed {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.spotify-embed iframe {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
}

.spotify-embed--album iframe {
  height: 352px;
}

/* ─── Share button ─── */
.song-share {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-warm);
  color: var(--gold-deep);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.song-share:hover {
  background: var(--gold-warm);
  color: var(--parchment);
}

.song-share__feedback {
  margin-left: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── Corrections callout + form ─── */
.corrections-callout {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(200, 118, 32, 0.04);
  border: 1px solid var(--rule-color);
  border-radius: 4px;
}

.corrections-callout__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--shadow-deep);
  margin-bottom: 0.8rem;
}

.corrections-callout__body {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.corrections-callout__body a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: var(--rule-color);
}

.corrections-form {
  display: grid;
  gap: 1rem;
}

.corrections-form__label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
  display: block;
}

.corrections-form__input,
.corrections-form__textarea,
.corrections-form__select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--text-body);
  background: var(--parchment);
  border: 1px solid var(--rule-color);
  border-radius: 2px;
}

.corrections-form__input:focus,
.corrections-form__textarea:focus,
.corrections-form__select:focus {
  outline: none;
  border-color: var(--gold-warm);
}

.corrections-form__textarea {
  min-height: 80px;
  resize: vertical;
}

.corrections-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.corrections-form__submit {
  justify-self: start;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold-warm);
  color: var(--gold-deep);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.corrections-form__submit:hover:not(:disabled) {
  background: var(--gold-warm);
  color: var(--parchment);
}

.corrections-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.corrections-status {
  padding: 1.5rem;
  font-style: italic;
  color: var(--text-body);
  text-align: center;
}

/* ─── See-all link ─── */
.see-all-link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  color: var(--gold-deep);
  border: 1px solid var(--gold-warm);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 1rem;
}

.see-all-link:hover {
  background: var(--gold-warm);
  color: var(--parchment);
}

/* ─── Song sources list ─── */
.song-resources {
  list-style: none;
  padding: 0;
}

.song-resources__item {
  padding: 1rem 1.2rem;
  border: 1px solid var(--rule-color);
  border-radius: 2px;
  margin-bottom: 0.8rem;
  transition: background 0.2s ease;
}

.song-resources__item:hover {
  background: var(--amber-glow);
}

.song-resources__title {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--shadow-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-color);
  margin-bottom: 0.4rem;
}

.song-resources__title:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-warm);
}

.song-resources__description {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ─── Methodology example blocks ─── */
.methodology-example {
  font-style: italic;
  color: var(--text-body);
  background: rgba(200, 118, 32, 0.04);
  border-left: 2px solid var(--gold-light);
  padding: 1rem 1.4rem;
  margin: 1.4rem 0;
  line-height: 1.85;
  border-radius: 0 2px 2px 0;
}

.methodology-example + .methodology-example {
  margin-top: 0.8rem;
}

/* ─── Utility ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
