:root {
  --bg: #faf8f5;        /* page ground — warm off-white */
  --paper: #f0ebe0;     /* elevated surfaces — warmer cream */
  --ink: #1a1a1a;       /* primary text */
  --ink-muted: #5a5a5a; /* meta / secondary text */
  --rule: #e3ddd2;      /* borders + underline color */
  --accent: #8a3a3a;    /* reserved for hover + intentional accents */
  --max: 920px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.has-bg {
  background: var(--bg) url('/images/gallery/landscape-3_bw.jpg') center / cover no-repeat fixed;
}
body.has-bg header.site,
body.has-bg main,
body.has-bg footer.site {
  background: rgba(250, 248, 245, 0.96);
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--accent);
  text-decoration-color: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg); padding: 8px 12px;
}
.skip-link:focus { left: 8px; top: 8px; z-index: 100; }

/* — Header / nav — */
header.site {
  border-bottom: 1px solid var(--rule);
  padding: 24px 24px 16px;
}
.site-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.brand {
  font-family: 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.brand a { line-height: 0; text-decoration: none; }
.brand a:hover { text-decoration: none; }
.brand img {
  display: block;
  width: clamp(280px, 60vw, 520px);
  height: auto;
}
.brand a { color: inherit; }
.brand a:hover { text-decoration: none; }
.brand-tagline {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: -4px;
}

nav.primary ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
nav.primary a {
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}
nav.primary a[aria-current="page"] { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* — Main — */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 64px;
}
h1, h2, h3, .hero-title, .brand-tagline {
  font-family: 'Iowan Old Style', Georgia, serif;
}
h1 {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 36px 0 16px;
}
h3 { font-weight: 500; }
p { margin-bottom: 16px; font-size: 16px; }
p.lead { font-size: 22px; color: var(--ink-muted); }

/* — Hero (home) — */
.hero {
  text-align: center;
  padding: 24px 0 48px;
}
.hero figure { margin: 0 auto 16px; max-width: 620px; }
.hero img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}
.hero .tagline { color: var(--ink-muted); font-style: italic; font-size: 22px; }

/* — Embeds — */
.embed {
  margin: 24px 0;
}
.embed iframe {
  width: 100%;
  border: 0;
  display: block;
}
.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 24px 0;
}
.video iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* — Tour list — */
.tour-list { list-style: none; }
.tour-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.tour-list .date { font-weight: 500; }
.tour-list .venue { color: var(--ink-muted); }
.tour-list .ticket {
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.empty {
  color: var(--ink-muted);
  font-style: italic;
  padding: 24px 0;
}

/* — Gallery — */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery a { display: block; }
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* — Contact form — */
form.contact {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin-top: 24px;
}
form.contact label {
  display: block;
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
form.contact input,
form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: #fff;
  font-family: inherit;
  font-size: 18px;
  color: var(--ink);
}
form.contact textarea { min-height: 160px; resize: vertical; }
form.contact button {
  justify-self: start;
  padding: 12px 28px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
form.contact button:hover { background: var(--accent); }

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  border-left: 1px solid var(--rule);
  font-size: 21px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
blockquote em {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-style: normal;
  color: var(--ink-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: -apple-system, sans-serif;
}
.press-quotes blockquote {
  text-align: left;
  border-left: 1px solid var(--rule);
  padding: 4px 0 4px 20px;
  max-width: 100%;
  margin: 32px 0;
}
.press-quotes blockquote em a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.press-quotes blockquote em a:hover {
  color: var(--ink);
}

/* — Figure / caption — */
figure.bio-photo {
  margin: 0 0 32px;
}
figure.bio-photo img {
  width: 100%;
  height: auto;
  display: block;
}
figure.bio-photo figcaption {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 8px;
  font-family: -apple-system, sans-serif;
}

/* — Hero caption — */
.hero figcaption {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 14px;
  margin-top: 10px;
  font-family: -apple-system, sans-serif;
}

/* — CTA button — */
.cta-wrap {
  text-align: center;
  margin: 32px 0;
}
.cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* — Release / platform pickers / press strip — */
.release-meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.hero-title {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.hero-tagline {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 20px;
  margin-bottom: 24px;
}
.platforms {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.platforms li { margin: 0; }
.platforms a,
.platforms .platforms-copy {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.platforms a:hover,
.platforms .platforms-copy:hover {
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
}
.release {
  margin: 56px 0;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.release:first-of-type { border-top: 0; padding-top: 0; }
.release-featured h2 { font-size: 32px; line-height: 1.1; }
.release h2 { margin-top: 6px; margin-bottom: 12px; }
.release .platforms { justify-content: flex-start; margin: 0 0 20px; }

.press-quotes {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.press-quotes blockquote { margin: 16px 0; }

.contact-strip {
  text-align: center;
  font-family: -apple-system, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin: 16px 0 0;
}

.press-kit {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  margin-bottom: 48px;
}
.press-kit h1 { font-size: 42px; margin-bottom: 8px; line-height: 1.1; }
.press-kit .release-meta { margin-bottom: 16px; }
.press-kit .platforms { justify-content: flex-start; margin-top: 8px; }

/* — Subscribe — */
.subscribe {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.subscribe h2 { margin-top: 0; }
.subscribe p { color: var(--ink-muted); }
.subscribe form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 16px auto 0;
}
.subscribe input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  font-family: inherit;
  font-size: 17px;
}
.subscribe button {
  padding: 12px 24px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* — Copy-to-clipboard email button — */
button.email-copy {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
}
button.email-copy:hover { text-decoration: underline; }

/* — Toast — */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 16px);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  max-width: 90vw;
}
.toast-show { opacity: 1; transform: translate(-50%, 0); }
.toast-error { background: var(--accent); }

/* — Lightbox — */
dialog.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
dialog.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}
dialog.lightbox .lb-stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  pointer-events: none;
}
dialog.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: zoom-out;
  pointer-events: auto;
}
dialog.lightbox .lb-close,
dialog.lightbox .lb-prev,
dialog.lightbox .lb-next {
  z-index: 2;
}
dialog.lightbox .lb-close,
dialog.lightbox .lb-prev,
dialog.lightbox .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, sans-serif;
}
dialog.lightbox .lb-close:hover,
dialog.lightbox .lb-prev:hover,
dialog.lightbox .lb-next:hover {
  background: rgba(0, 0, 0, 0.7);
}
dialog.lightbox .lb-close {
  top: 20px;
  right: 20px;
  transform: none;
  font-size: 26px;
  line-height: 1;
}
dialog.lightbox .lb-prev { left: 20px; }
dialog.lightbox .lb-next { right: 20px; }
dialog.lightbox .lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-family: -apple-system, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.gallery a { cursor: zoom-in; }

/* — Footer — */
footer.site {
  border-top: 1px solid var(--rule);
  padding: 28px 24px;
  text-align: center;
  color: var(--ink-muted);
  font-family: -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}
footer.site .social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  list-style: none;
}
footer.site .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink-muted);
  color: var(--ink-muted);
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
footer.site .social-links a:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  text-decoration: none;
}
footer.site .social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* — Responsive — */
@media (max-width: 600px) {
  .hero h1, .hero-title { font-size: 40px; }
  h1 { font-size: 34px; }
  .release-featured h2 { font-size: 28px; }
  .brand { font-size: 24px; letter-spacing: 0.10em; }
  .brand-tagline { font-size: 16px; }
  .tour-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  nav.primary ul { gap: 14px; }
  blockquote { font-size: 18px; }
}
