/* ============================================================
   Hartford City Band — Design System
   Concert-program elegance: Playfair Display + Source Sans 3
   ============================================================ */

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

/* --- Custom Properties --- */
:root {
  --bg: #FAF6F0;
  --bg-alt: #E8D5A3;
  --bg-card: #F5EFE5;
  --bg-dark: #1B2A4A;
  --bg-pale: #E8EDF4;
  --text: #3D3D3D;
  --text-muted: #5A5A5A;
  --text-faint: #8A8A8A;
  --primary: #B8860B;
  --primary-rgb: 184, 134, 11;
  --primary-light: #E8D5A3;
  --accent: #3A5F3A;
  --accent-light: #E6F0E6;
  --border: #DDD5C8;
  --border-light: #EDE8E0;
  --burgundy: #7A3B3B;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 4rem;
  --container-max: 72rem;
  --container-narrow: 42.5rem;
  --transition-color: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html.dark {
  --bg: #1A1D25;
  --bg-alt: #2A2520;
  --bg-card: #252830;
  --bg-dark: #0F1520;
  --bg-pale: #1E2230;
  --text: #EDE8E0;
  --text-muted: #B0A898;
  --text-faint: #706860;
  --primary: #D4A830;
  --primary-rgb: 212, 168, 48;
  --primary-light: #3A3020;
  --accent: #5A8A5A;
  --accent-light: #1A2A1A;
  --border: #353030;
  --border-light: #2A2520;
  --burgundy: #A05050;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  transition: var(--transition-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 2.25rem; /* disclaimer bar clearance */
}

/* Nested list resets */
ul ul, ol ol, ul ol, ol ul {
  margin: 0;
  padding-left: 1.25em;
}

ul, ol {
  list-style: none;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Touch targets */
button, a, input[type="submit"], input[type="checkbox"], input[type="radio"], select {
  min-height: 44px;
  min-width: 44px;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

::selection {
  background-color: rgba(var(--primary-rgb), 0.2);
  color: var(--text);
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  text-wrap: pretty;
}

.subsection-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.since-line {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
}


/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-padding {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.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;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.875rem 1.75rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
}

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

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

.btn--outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn--dark {
  background-color: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}

.btn--dark:hover {
  background-color: #2A3D66;
  border-color: #2A3D66;
  color: #fff;
}

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


/* ==========================================================
   NAVIGATION — Sticky, transparent over hero
   ========================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent state (over hero) */
.site-nav:not(.is-scrolled) {
  background-color: transparent;
}

/* Scrolled state */
.site-nav.is-scrolled {
  background-color: var(--bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

html.dark .site-nav.is-scrolled {
  background-color: var(--bg-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-nav__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.2;
  min-height: auto;
  min-width: auto;
}

/* Nav text colors: white when over hero, normal when scrolled */
.site-nav:not(.is-scrolled) .site-nav__brand,
.site-nav:not(.is-scrolled) .site-nav__link {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-nav.is-scrolled .site-nav__brand {
  color: var(--text);
}

.site-nav.is-scrolled .site-nav__link {
  color: var(--text-muted);
}

.site-nav.is-scrolled .site-nav__link:hover {
  color: var(--primary);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
  min-width: auto;
  display: inline-flex;
  align-items: center;
}

.site-nav__link:hover {
  color: var(--primary-light);
}

/* Theme toggle in nav */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  min-width: 44px;
  min-height: 44px;
}

.site-nav:not(.is-scrolled) .theme-toggle {
  color: #fff;
}

.site-nav.is-scrolled .theme-toggle {
  color: var(--text-muted);
}

.theme-toggle:hover {
  background-color: rgba(var(--primary-rgb), 0.12);
}

.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Sun/moon visibility */
html:not(.dark) .theme-toggle__moon { display: none; }
html.dark .theme-toggle__sun { display: none; }

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: inherit;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.site-nav:not(.is-scrolled) .hamburger {
  color: #fff;
}

.site-nav.is-scrolled .hamburger {
  color: var(--text);
}

.hamburger svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hamburger__close { display: none; }
.hamburger.is-active .hamburger__open { display: none; }
.hamburger.is-active .hamburger__close { display: block; }


/* ==========================================================
   HERO — 60vh, photo bg, warm navy gradient overlay
   ========================================================== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 3.5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 42, 74, 0.15) 0%,
    rgba(27, 42, 74, 0.55) 50%,
    rgba(27, 42, 74, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.hero__title {
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__since {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================
   DUAL-PATH CARDS — "See a Concert" / "Play With Us"
   ========================================================== */
.dual-path {
  background-color: var(--bg);
  transition: var(--transition-color);
}

.dual-path__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dual-path__card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  transition: var(--transition-color), transform 0.25s ease, box-shadow 0.25s ease;
}

.dual-path__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.1);
}

.dual-path__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  color: var(--primary);
}

.dual-path__card h3 {
  margin-bottom: 0.75rem;
}

.dual-path__card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================
   HERITAGE SECTION — Full-bleed navy, split 55/45
   ========================================================== */
.heritage {
  background-color: var(--bg-dark);
  color: #EDE8E0;
  overflow: hidden;
}

html.dark .heritage {
  background-color: #0F1520;
}

.heritage__grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.heritage__text {
  padding-right: 1rem;
}

.heritage__text .subsection-label {
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  display: block;
}

.heritage__text h2 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.heritage__text p {
  color: rgba(237, 232, 224, 0.8);
  margin-bottom: 1rem;
}

.heritage__text p:last-of-type {
  margin-bottom: 0;
}

.heritage__photo {
  border-radius: 4px;
  overflow: hidden;
}

.heritage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}


/* --- Timeline Whisper --- */
.timeline-whisper {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
}

.timeline-whisper__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(var(--primary-rgb), 0.25);
}

.timeline-whisper__years {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.timeline-whisper__year {
  position: relative;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(184, 134, 11, 0.6);
  padding-top: 0.5rem;
}

html.dark .timeline-whisper__year {
  color: rgba(212, 168, 48, 0.6);
}

.timeline-whisper__year::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background-color: rgba(var(--primary-rgb), 0.4);
}


/* ==========================================================
   CONCERT SCHEDULE — Card grid
   ========================================================== */
.concerts {
  background-color: var(--bg);
  transition: var(--transition-color);
}

.concerts__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.concerts__header .subsection-label {
  display: block;
  margin-bottom: 0.5rem;
}

.concerts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.concert-card {
  display: flex;
  gap: 1.25rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 1.5rem;
  transition: var(--transition-color), box-shadow 0.25s ease;
}

.concert-card:hover {
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.08);
}

.concert-card__date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  min-height: 4.5rem;
  background-color: var(--primary);
  border-radius: 4px;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
}

.concert-card__month {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.concert-card__day {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  margin-top: 0.125rem;
}

.concert-card__info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.concert-card__detail {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.concert-card__detail strong {
  font-weight: 600;
  color: var(--text);
}


/* ==========================================================
   RECRUITMENT — Pale sky bg, narrow column, "Warm Seat"
   ========================================================== */
.recruitment {
  background-color: var(--bg-pale);
  transition: var(--transition-color);
}

.recruitment__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  text-align: center;
}

.recruitment__inner .subsection-label {
  display: block;
  margin-bottom: 0.5rem;
}

.recruitment__inner h2 {
  margin-bottom: 1.25rem;
}

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

/* The Warm Seat */
.warm-seat {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--primary);
  line-height: 1.4;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-wrap: balance;
}

.recruitment__cta {
  margin-top: 2rem;
}


/* ==========================================================
   PHOTO GALLERY — Edge-to-edge strip on navy
   ========================================================== */
.gallery-strip {
  background-color: var(--bg-dark);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  overflow: hidden;
}

html.dark .gallery-strip {
  background-color: #0F1520;
}

.gallery-strip__heading {
  text-align: center;
  color: #fff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  padding: 0 1.5rem;
}

.gallery-strip__heading .subsection-label {
  color: var(--primary-light);
  display: block;
  margin-bottom: 0.5rem;
}

.gallery-strip__heading h2 {
  color: #fff;
}

.gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.gallery-strip__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-strip__item:hover img {
  transform: scale(1.05);
}


/* ==========================================================
   CONTACT FORM
   ========================================================== */
.contact {
  background-color: var(--bg);
  transition: var(--transition-color);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: 1rem;
}

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

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

.contact__detail-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}

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

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 59, 59, 0.12);
}

.form-group textarea {
  min-height: 7rem;
  resize: vertical;
}

/* Honeypot */
.form-group--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

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

.form-error {
  color: var(--burgundy);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  background-color: rgba(122, 59, 59, 0.08);
  border-radius: 2px;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.form-success p {
  color: var(--text-muted);
}

.turnstile-wrap {
  display: flex;
  justify-content: flex-start;
}

.hidden { display: none !important; }


/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq {
  background-color: var(--bg-card);
  transition: var(--transition-color);
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq__header .subsection-label {
  display: block;
  margin-bottom: 0.5rem;
}

.faq__list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.2s ease;
  min-width: unset;
}

.faq__question:hover {
  color: var(--primary);
}

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 40rem;
}

.faq__answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__answer-inner p + p {
  margin-top: 0.75rem;
}


/* ==========================================================
   FOOTER — Navy, 3 columns
   ========================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: rgba(237, 232, 224, 0.7);
}

html.dark .site-footer {
  background-color: #0F1520;
}

.site-footer a {
  color: rgba(237, 232, 224, 0.7);
  min-height: auto;
  min-width: auto;
}

.site-footer a:hover {
  color: var(--primary-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer__description {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 22rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links li a {
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer__bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(237, 232, 224, 0.4);
}

.footer__bottom a {
  color: rgba(237, 232, 224, 0.5);
}

.footer__bottom a:hover {
  color: var(--primary-light);
}


/* ==========================================================
   DISCLAIMER BAR — Fixed bottom
   ========================================================== */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background-color: var(--bg-dark);
  color: rgba(237, 232, 224, 0.6);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem 1.5rem;
  line-height: 1.4;
}

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

.disclaimer-bar a {
  color: var(--primary-light);
  min-height: auto;
  min-width: auto;
}

.disclaimer-bar a:hover {
  color: #fff;
}


/* ==========================================================
   RESPONSIVE — Mobile first, breakpoints
   ========================================================== */

/* Below 768px — Mobile */
@media (max-width: 767px) {
  .hamburger {
    display: inline-flex;
  }

  .site-nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.5rem;
    background-color: var(--bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 99;
  }

  html.dark .site-nav__links {
    background-color: var(--bg-dark);
  }

  .site-nav__links.is-open {
    transform: translateX(0);
  }

  /* Override: mobile nav links always use standard text color */
  .site-nav:not(.is-scrolled) .site-nav__links .site-nav__link {
    color: var(--text);
    text-shadow: none;
  }

  html.dark .site-nav:not(.is-scrolled) .site-nav__links .site-nav__link {
    color: #EDE8E0;
  }

  .site-nav__links li {
    width: 100%;
  }

  .site-nav__link {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
  }

  .dual-path__grid {
    grid-template-columns: 1fr;
  }

  .heritage__grid {
    grid-template-columns: 1fr;
  }

  .heritage__photo {
    order: -1;
  }

  .concerts__grid {
    grid-template-columns: 1fr;
  }

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

  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .timeline-whisper__years {
    gap: 0.25rem;
  }

  .timeline-whisper__year {
    font-size: 0.625rem;
  }
}

/* 768px+ — Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 1024px+ — Desktop */
@media (min-width: 1024px) {
  .gallery-strip__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ==========================================================
   PRINT
   ========================================================== */
@media print {
  .site-nav,
  .hamburger,
  .theme-toggle,
  .disclaimer-bar,
  .gallery-strip,
  .turnstile-wrap {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
    color: #000;
  }

  .hero__overlay {
    display: none;
  }

  .heritage,
  .site-footer,
  .gallery-strip {
    background-color: #fff;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}


/* ==========================================================
   LOADING SPINNER (for form submit)
   ========================================================== */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
