/* ============================================
   Auggie Snow — Custom Stylesheet
   No frameworks. No libraries. Hand-written.
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F0ECE6;
  --bg-card: #FFFFFF;
  --bg-dark: #1C1917;
  --text: #1C1917;
  --text-muted: #57534E;
  --text-faint: #A8A29E;
  --primary: #C2790E;
  --primary-rgb: 194, 121, 14;
  --primary-light: #FCEFD6;
  --accent: #B45309;
  --accent-light: #FDE9CE;
  --border: #D6D3D1;
  --border-light: #E7E5E4;
  --nav-height: 72px;
  --transition-speed: 0.3s;
}

[data-theme="dark"] {
  --bg: #1C1917;
  --bg-alt: #262220;
  --bg-card: #2C2825;
  --bg-dark: #0F0D0C;
  --text: #F5F0EB;
  --text-muted: #A8A29E;
  --text-faint: #78716C;
  --primary: #D97706;
  --primary-rgb: 217, 119, 6;
  --primary-light: #3D2A0E;
  --accent: #E08A1E;
  --accent-light: #3A2510;
  --border: #3D3835;
  --border-light: #2E2A27;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  transition: background-color var(--transition-speed) ease,
              color var(--transition-speed) ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; padding-bottom: 2.25rem; }

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
}

p {
  text-wrap: pretty;
}

/* --- Amber Rule Motif --- */
.amber-rule {
  display: block;
  width: 80px;
  height: 2px;
  background-color: var(--primary);
  border: none;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Dark hero — transparent nav, white text */
.has-dark-hero .site-header {
  background: transparent;
  color: #FFFFFF;
}

.has-dark-hero .site-header a,
.has-dark-hero .site-header .nav__link {
  color: #FFFFFF;
}

.has-dark-hero .site-header .theme-toggle svg {
  stroke: #FFFFFF;
}

.has-dark-hero .site-header .hamburger {
  color: #FFFFFF;
}

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

.site-header.is-scrolled a,
.site-header.is-scrolled .nav__link {
  color: var(--text);
}

.site-header.is-scrolled .theme-toggle svg {
  stroke: var(--text);
}

.site-header.is-scrolled .nav__cta {
  color: #FFFFFF;
}

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

/* Logo */
.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}

/* Desktop Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--primary) !important;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  min-height: 44px;
  background-color: var(--primary);
  color: #FFFFFF !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav__cta:hover {
  background-color: var(--accent);
  transform: translateY(-1px);
}

/* Nav right group */
.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

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

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: stroke 0.3s ease;
}

.theme-toggle .icon-moon {
  display: block;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  z-index: 999;
  padding: 40px 20px;
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav__link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

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

.mobile-nav__cta {
  margin-top: 24px;
  padding: 14px 40px;
  min-height: 48px;
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #FFFFFF;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.05); }
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.30) 40%,
    rgba(0, 0, 0, 0.70) 80%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(48px, 8vw, 96px);
  max-width: 720px;
}

.hero__headline {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero__rule {
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(1.0625rem, 0.5vw + 0.9375rem, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.2s ease,
              transform 0.15s ease,
              box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.btn--primary:hover {
  background-color: var(--accent);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--white {
  background: #FFFFFF;
  color: var(--accent);
  font-weight: 700;
}

.btn--white:hover {
  background: #F5F0EB;
  transform: translateY(-1px);
}

.btn--large {
  min-height: 56px;
  padding: 14px 40px;
  font-size: 1.0625rem;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background-color: var(--bg);
  text-align: center;
}

.video-section h2 {
  margin-bottom: 12px;
}

.video-section .amber-rule {
  margin: 0 auto 20px;
}

.video-section__text {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
}

.video-embed {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-dark);
  cursor: pointer;
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-embed__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(var(--primary-rgb), 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-embed:hover .video-embed__play {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-embed__play svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  margin-left: 4px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background-color: var(--bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__overline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}

.about__headline {
  margin-bottom: 16px;
}

.about__rule {
  margin-bottom: 24px;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

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

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

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
  background-color: var(--bg);
}

.events-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.events-section__header h2 {
  margin-bottom: 12px;
}

.events-section__header .amber-rule {
  margin: 0 auto;
}

.event-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2px;
  background-color: var(--bg-card);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.event-band:first-of-type {
  border-radius: 4px 4px 0 0;
}

.event-band:last-of-type {
  border-radius: 0 0 4px 4px;
  margin-bottom: 0;
}

.event-band__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.event-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-band:hover .event-band__image img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .event-band:hover .event-band__image img {
    transform: none;
  }
}

.event-band__content {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-band__kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 12px;
}

.event-band__headline {
  margin-bottom: 12px;
}

.event-band__rule {
  margin-bottom: 20px;
}

.event-band__text {
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

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

.testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.82);
}

.testimonials__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonials__content h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.testimonials__content > .amber-rule {
  margin: 0 auto 48px;
}

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

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.testimonial.is-active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial__quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.625rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  text-transform: none;
  font-style: italic;
}

.testimonial__attribution {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9375rem;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  background-clip: content-box;
  padding: 16px;
}

.testimonial-dot::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.2s ease;
}

/* Reset the direct background since we use ::after */
.testimonial-dot {
  background: transparent;
}

.testimonial-dot.is-active::after {
  background: var(--primary);
}

.testimonial-dot:hover::after {
  background: rgba(255, 255, 255, 0.6);
}

.testimonial-dot.is-active:hover::after {
  background: var(--primary);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background-color: var(--primary);
  color: #FFFFFF;
  text-align: center;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-band__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.cta-band__phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__phone a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band__phone a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--bg-dark);
  color: #A8A29E;
  padding-top: 56px;
  padding-bottom: 3rem;
}

[data-theme="dark"] .site-footer {
  background-color: #0F0D0C;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: #A8A29E;
}

.footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: #A8A29E;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: #A8A29E;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__contact-item a:hover {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: #78716C;
}

.footer__credit a {
  color: var(--primary);
  text-decoration: none;
}

.footer__credit a:hover {
  text-decoration: underline;
}

/* ============================================
   PAGE HERO (About, Contact)
   ============================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + clamp(48px, 6vw, 80px));
  padding-bottom: clamp(48px, 6vw, 80px);
  background-color: var(--bg-alt);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero .amber-rule {
  margin: 0 auto 20px;
}

.page-hero__intro {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  min-height: 48px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A8A29E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

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

.form-submit {
  margin-top: 8px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9375rem;
  display: none;
}

.form-status.is-success {
  display: block;
  color: #16a34a;
}

[data-theme="dark"] .form-status.is-success {
  color: #4ade80;
}

.form-status.is-error {
  display: block;
  color: #dc2626;
}

[data-theme="dark"] .form-status.is-error {
  color: #f87171;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px;
}

.contact-info-card h2,
.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a:hover {
  color: var(--primary);
}

.contact-info-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-content {
  background-color: var(--bg);
}

.about-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-page__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-page__text p:last-child {
  margin-bottom: 0;
}

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

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

/* ============================================
   INTERSECTION OBSERVER ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ============================================
   RESPONSIVE: TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }

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

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

/* ============================================
   RESPONSIVE: DESKTOP (960px+)
   ============================================ */
@media (min-width: 960px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about__grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }

  .event-band {
    grid-template-columns: 1fr 1fr;
  }

  .event-band:nth-child(even) .event-band__image {
    order: 2;
  }

  .event-band:nth-child(even) .event-band__content {
    order: 1;
  }

  .event-band__image {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
  }

  .contact__grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }

  .about-page__grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (<960px)
   ============================================ */
@media (max-width: 959px) {
  .nav__list {
    display: none;
  }

  .nav__cta--desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ============================================
   Turnstile Widget
   ============================================ */
.cf-turnstile {
  margin-bottom: 8px;
}

/* ============================================
   WHIMSY — Micro-interactions & Personality
   ============================================ */

/* --- Nav link slide-in underline --- */
.nav__link {
  position: relative;
  overflow: hidden;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: translateX(0);
}

/* --- Hero amber rule rhythmic glow --- */
.hero__rule {
  animation: ruleGlow 3s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes ruleGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); transform: scaleX(1); }
  50%      { box-shadow: 0 0 12px 2px rgba(var(--primary-rgb), 0.35); transform: scaleX(1.2); }
}

/* --- Video play button pulse ring --- */
.video-embed__play::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(var(--primary-rgb), 0.5);
  animation: playPulse 2.4s ease-out infinite;
}

@keyframes playPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* --- Event card hover accent border --- */
.event-band {
  border-left: 3px solid transparent;
  transition: border-color 0.35s ease;
}

.event-band:hover {
  border-left-color: var(--primary);
}

/* --- Enhanced CTA button hover lift --- */
.btn--primary:hover,
.btn--white:hover {
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.25);
}

/* --- Footer brand name hover warmth --- */
.footer__brand-name {
  transition: color 0.3s ease;
}

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

/* --- Respect reduced motion for all whimsy --- */
@media (prefers-reduced-motion: reduce) {
  .hero__rule {
    animation: none;
  }

  .video-embed__play::after {
    animation: none;
    display: none;
  }

  .nav__link::after {
    transition: none;
  }

  .event-band {
    transition: none;
  }

  .btn--primary:hover,
  .btn--white:hover {
    box-shadow: none;
  }
}

/* --- CTA band button glow on hover --- */
.cta-band .btn--white:hover {
  box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.35);
}
@media (prefers-reduced-motion: reduce) {
  .cta-band .btn--white:hover { box-shadow: none; }
}

/* --- Testimonial decorative quote mark --- */
.testimonial { position: relative; }
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   WHIMSY — Motion-safe animations
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .amber-rule {
    animation: ruleSlideIn 0.6s ease both;
  }

  @keyframes ruleSlideIn {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
  }

  .site-logo {
    transition: letter-spacing 0.3s ease;
  }

  .site-logo:hover {
    letter-spacing: 0.08em;
  }
}

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

/* ----- Disclaimer Bar ----- */
.disclaimer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-alt, #f5f5f5);
  border-top: 1px solid var(--border-light, #e0e0e0);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted, #888);
  text-align: center;
  z-index: 100;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
}
