/* ============================================================
   Brian McCullough Band - Custom Stylesheet
   No frameworks. No utilities. Every line from scratch.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;600&display=swap');

/* --- Reset ------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{min-height:100vh;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;padding-bottom:2.25rem;}
img,picture,video,svg{display:block;max-width:100%}
input,button,textarea,select{font:inherit}
a{color:inherit;text-decoration:none}
ul,ol{list-style:none}
button{cursor:pointer;background:none;border:none}

/* --- Design Tokens ----------------------------------------- */
:root {
  --accent: #C8841A;
  --accent-hover: #B5750F;
  --accent-soft: rgba(200,132,26,0.1);
  --accent-glow: rgba(200,132,26,0.2);

  --bg: #FAF7F2;
  --bg-raised: #F3EDE4;
  --bg-inset: #EDE6DA;
  --bg-bold: #2C2420;

  --text: #2C2420;
  --text-muted: #6B5D52;
  --text-faint: #9A8B7E;
  --text-on-dark: #FAF7F2;

  --border: #D9CFBF;
  --border-subtle: #E8E0D4;
  --border-strong: #B8A994;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;

  --h1: clamp(2.75rem, 2rem + 3vw, 4.5rem);
  --h2: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
  --h3: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);

  --max-width: 1200px;
  --prose-width: 640px;
  --section-pad: clamp(4rem, 3rem + 4vw, 7rem);
  --gutter: clamp(1.25rem, 1rem + 1.5vw, 2.5rem);

  --radius: 6px;
  --transition: 0.3s ease;
}

html.dark {
  --accent: #D4982E;
  --accent-hover: #E0A73D;
  --accent-soft: rgba(212,152,46,0.08);
  --accent-glow: rgba(212,152,46,0.17);

  --bg: #1A1512;
  --bg-raised: #231D19;
  --bg-inset: #141110;
  --bg-bold: #FAF7F2;

  --text: #E8E0D4;
  --text-muted: #A89888;
  --text-faint: #7A6B5E;
  --text-on-dark: #1A1512;

  --border: #3A3028;
  --border-subtle: #2E261F;
  --border-strong: #5A4D42;
}

/* --- Base --------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: var(--h1); font-weight: 700; }
h2 { font-size: var(--h2); font-weight: 700; }
h3 { font-size: var(--h3); font-weight: 700; }

p + p { margin-top: 1.25em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Container --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.prose-container {
  max-width: var(--prose-width);
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Amber Rule Divider ------------------------------------ */
.amber-rule {
  width: 80px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
  border: none;
  margin: 0 auto;
}

/* --- Header / Navigation ----------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

html.dark .site-header.scrolled {
  background: var(--bg-raised);
  box-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--text);
  transition: color var(--transition);
}

.nav__logo span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dark hero overrides */
.has-dark-hero .site-header:not(.scrolled) .nav__logo,
.has-dark-hero .site-header:not(.scrolled) .nav__link,
.has-dark-hero .site-header:not(.scrolled) .nav__hamburger span {
  color: #fff;
}

.has-dark-hero .site-header:not(.scrolled) .nav__link:hover,
.has-dark-hero .site-header:not(.scrolled) .nav__link.active {
  color: var(--accent);
}

/* Dark mode toggle */
.dark-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  color: var(--text);
}

.has-dark-hero .site-header:not(.scrolled) .dark-toggle {
  color: #fff;
}

.dark-toggle:hover {
  background: var(--accent-soft);
}

.dark-toggle svg {
  width: 18px;
  height: 18px;
}

.dark-toggle .icon-moon { display: block; }
.dark-toggle .icon-sun { display: none; }
html.dark .dark-toggle .icon-moon { display: none; }
html.dark .dark-toggle .icon-sun { display: block; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  color: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
  gap: 1.5rem;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 1.25rem;
}

.nav__mobile .btn {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 3rem + 5vw, 7rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.20) 65%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__eyebrow {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero__sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* --- Setlist Ticker ---------------------------------------- */
.ticker-wrap {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}

.ticker__item {
  flex-shrink: 0;
  padding: 0 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.ticker__dot {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  align-self: center;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* --- Sections ---------------------------------------------- */
.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section--dark {
  background: var(--bg-bold);
  color: var(--text-on-dark);
}

html.dark .section--dark {
  background: var(--bg-inset);
  color: var(--text);
}

.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}

html.dark .section--dark h2,
html.dark .section--dark h3 {
  color: var(--text);
}

.section__header {
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

/* --- Introduction ------------------------------------------ */
.intro p {
  color: var(--text-muted);
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.7;
}

.pull-quote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  line-height: 1.45;
  color: var(--text);
}

/* --- What You Get (Two-column) ----------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col--55-45 {
  grid-template-columns: 55fr 45fr;
}

.two-col__sticky {
  position: sticky;
  top: calc(72px + 2rem);
}

.two-col__sticky img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
}

@media (max-width: 768px) {
  .two-col,
  .two-col--40-60,
  .two-col--55-45 {
    grid-template-columns: 1fr;
  }

  .two-col__sticky {
    position: static;
    order: -1;
  }
}

/* Event type cards */
.event-card {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.event-card:first-child {
  padding-top: 0;
}

.event-card:last-child {
  border-bottom: none;
}

.event-card h3 {
  margin-bottom: 0.75rem;
  font-size: var(--h3);
}

.event-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Repertoire -------------------------------------------- */
.repertoire-intro {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.repertoire-grid {
  columns: 3;
  column-gap: 2.5rem;
}

.repertoire-grid li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  break-inside: avoid;
  opacity: 0.8;
}

.repertoire-note {
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.5;
  font-style: italic;
}

@media (max-width: 768px) {
  .repertoire-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .repertoire-grid {
    columns: 1;
  }
}

/* --- Testimonials ------------------------------------------ */
.testimonials {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-rule {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 2rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 1rem + 0.75vw, 1.625rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-attr {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: normal;
}

.testimonial-rule--bottom {
  margin: 2rem auto 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
}

/* --- About / Bio ------------------------------------------- */
.bio-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.bio-text h2 {
  margin-bottom: 1.25rem;
}

.bio-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bio-text .btn-ghost {
  margin-top: 0.75rem;
}

/* --- Values ------------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-raised);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

/* --- CTA Section ------------------------------------------- */
.cta-section {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

.cta-contact-line {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.cta-contact-line a {
  color: var(--accent);
  font-weight: 600;
}

.cta-contact-line a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-section .btn {
  margin-top: 1.5rem;
}

/* --- Page Heroes (interior pages) -------------------------- */
.page-hero {
  padding-top: calc(72px + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero--image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 2rem + 4vw, 5rem);
  border-bottom: none;
  background: none;
}

.page-hero--image .hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--image .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image .hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.page-hero--image .page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero--image h1 {
  color: #fff;
}

.page-hero--image .page-hero__intro {
  color: rgba(255,255,255,0.85);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero__intro {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
}

/* --- Contact Form ------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-info h2 {
  font-size: var(--h3);
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-detail a {
  color: var(--text);
  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--accent);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5D52' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-status.error {
  display: block;
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

html.dark .form-status.success {
  background: rgba(46,125,50,0.15);
  border-color: rgba(46,125,50,0.3);
}

html.dark .form-status.error {
  background: rgba(198,40,40,0.15);
  border-color: rgba(198,40,40,0.3);
}

/* --- FAQ --------------------------------------------------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-faint);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- What to Expect (Numbered Steps) ----------------------- */
.steps-list {
  counter-reset: step;
  max-width: 640px;
}

.step-item {
  counter-increment: step;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.step-item:last-child {
  border-bottom: none;
}

.step-item::before {
  content: counter(step);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}

.step-item p {
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--bg-bold);
  color: var(--text-on-dark);
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  padding-bottom: calc(clamp(3rem, 2rem + 3vw, 5rem) + 48px);
}

html.dark .site-footer {
  background: var(--bg-inset);
  color: var(--text);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
}

.footer-contact p {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

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

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  opacity: 0.5;
}

html.dark .footer-bottom {
  border-top-color: var(--border-subtle);
}

.footer-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--accent);
}

/* --- Disclaimer Bar ---------------------------------------- */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2C2420;
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

html.dark .disclaimer-bar {
  background: #0e0c0a;
}

/* --- Reveal Animations ------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Utility ----------------------------------------------- */
.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;
}

.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* --- Whimsy: Vinyl spin on logo hover ---------------------- */
.nav__logo span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__logo:hover span {
  transform: rotate(360deg);
}

/* --- Whimsy: Amber rule expand on reveal ------------------- */
.amber-rule {
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.amber-rule.visible {
  width: 120px;
}

/* --- Whimsy: Repertoire artist hover glow ------------------ */
.repertoire-grid li {
  transition: color 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}
.repertoire-grid li:hover {
  color: var(--accent);
  opacity: 1;
  text-shadow: 0 0 12px var(--accent-glow);
}

/* --- Whimsy: Decorative testimonial quote mark ------------- */
.testimonial-slider::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* --- Whimsy: Ticker pause on hover ------------------------- */
.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 20px 4px var(--accent-glow); }
  }

  .bio-photo {
    animation: gentle-float 6s ease-in-out infinite;
  }
  @keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__logo span { transition: none; }
  .nav__logo:hover span { transform: none; }
  .amber-rule { transition: none; }
}
