:root {
  --ink: #2a1a12;
  --ink-soft: #4a3426;
  --paper: #f7f1e6;
  --paper-deep: #efe4d0;
  --gold: #c9a66b;
  --gold-pale: #f3e6c4;
  --maroon: #4a160c;
  --maroon-deep: #2d0e08;
  --terracotta: #b7614e;
  --cream: #fdf6e8;
  --shadow: 0 12px 32px rgba(42, 26, 18, 0.18);
  --nav-h: 52px;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 50% -80px, rgba(201, 166, 107, 0.18), transparent 55%),
    var(--paper);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--maroon);
}

a:hover {
  color: var(--terracotta);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: #fff;
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fffef9;
  border-bottom: 1px solid rgba(74, 22, 12, 0.12);
  box-shadow: 0 2px 10px rgba(42, 26, 18, 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--gold);
  background: url("../media/nav-marble.png") center / cover;
  color: #000;
  font-weight: 700;
  text-shadow: 0 0 3px #fff, 0 0 7px #fff, 0 1px 0 #fff;
  padding: 8px 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: pointer;
}

.site-nav {
  flex: 1;
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.site-nav a {
  display: block;
  min-width: 108px;
  text-align: center;
  padding: 11px 12px 10px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  text-shadow: 0 0 3px #fff, 0 0 7px #fff, 0 1px 0 #fff;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  text-transform: uppercase;
  background: url("../media/nav-marble.png") center / cover;
  border: 1px solid rgba(90, 58, 22, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #000;
  font-weight: 700;
  text-shadow: 0 0 3px #fff, 0 0 8px #fff, 0 0 12px #fff;
  filter: brightness(1.08);
  outline: 1px solid rgba(0, 0, 0, 0.35);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 16px 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 20px 14px;
  background: linear-gradient(transparent, rgba(24, 10, 6, 0.78));
  color: #f7edd4;
  font-size: 0.92rem;
}

.page-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 28px;
}

.page-logo {
  flex-shrink: 0;
  position: relative;
  left: 40px;
}

.page-logo img {
  width: 108px;
  height: auto;
}

.page-heading-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.page-heading-text h1 {
  margin-bottom: 10px;
}

.page-heading-text .lede {
  margin: 0 auto;
}

.page-kicker {
  margin: 0 0 6px;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--maroon-deep);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
}

h1 + p {
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.card {
  background: #fffef9;
  border: 1px solid rgba(74, 22, 12, 0.1);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #1a0c08;
}

.card-body {
  padding: 14px 16px 18px;
}

.card h2,
.card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.quote-banner {
  background: var(--maroon-deep);
  color: #f3e6c4;
  padding: 22px 24px;
  margin: 8px 0 32px;
  box-shadow: var(--shadow);
}

.quote-banner p {
  margin: 0 0 8px;
  font-style: italic;
}

.quote-banner cite {
  display: block;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

.panel {
  background: #fffef9;
  border: 1px solid rgba(74, 22, 12, 0.1);
  padding: 22px 24px 8px;
  box-shadow: var(--shadow);
}

.panel.dark {
  background: linear-gradient(180deg, #3b2418, #2a160f);
  color: #f4e7cc;
  border-color: #2a160f;
}

.panel.dark h1,
.panel.dark h2,
.panel.dark h3 {
  color: #f7edd4;
}

.prose p {
  margin: 0 0 1em;
}

.prose h2 {
  margin-top: 1.4em;
}

.split {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 28px;
  align-items: start;
}

.portrait {
  width: 100%;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 10px 16px;
  background: url("../media/nav-marble.png") center / cover;
  color: #f7edd4 !important;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid rgba(90, 58, 22, 0.35);
}

.btn:hover {
  filter: brightness(1.08);
}

.review {
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(243, 230, 196, 0.18);
}

.review p {
  margin: 0 0 6px;
  font-style: italic;
}

.review cite {
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  position: relative;
  padding: 0 0 22px 22px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(183, 97, 78, 0.2);
}

.video-grid {
  display: grid;
  gap: 28px;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.9fr);
  gap: 18px;
  background: #fffef9;
  border: 1px solid rgba(74, 22, 12, 0.1);
  box-shadow: var(--shadow);
  padding: 16px;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
}

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

.album-grid,
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.photo-grid a {
  display: block;
  background: #1a0c08;
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.photo-grid a:hover img {
  transform: scale(1.04);
}

.caption {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: #fffef9;
  border: 1px solid rgba(74, 22, 12, 0.1);
  padding: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 16px rgba(42, 26, 18, 0.08);
}

.news-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.news-item time {
  color: var(--terracotta);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: #fff8e8;
  text-align: center;
  background: #2a160f center / cover no-repeat;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 10, 6, 0.38);
}

.contact-hero > * {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.contact-hero a {
  color: #f3e6c4;
}

.lyrics {
  white-space: pre-wrap;
  background: #fffef9;
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  font-size: 0.98rem;
}

.site-footer {
  background: #1c100c;
  color: #e8d7b8;
  padding: 28px 16px 36px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #f3e6c4;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 6, 4, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox p {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #f3e6c4;
  text-align: center;
}

.lightbox button {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .split,
  .video-card,
  .news-item {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin: 0 auto;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
  }

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

  .site-nav a {
    min-width: 0;
  }

  .page-heading {
    flex-direction: column;
    text-align: center;
  }
}
