/* artifacts/api-server/public/css/for-austin-2026.css */

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

:root {
  /* Brand Colors */
  --color-slate: #233343;
  --color-slate-hover: #1b2733;
  --color-off-white: #FCFAF8;
  --color-sand: #E5DED2;
  --color-red-orange: #C74C33;
  --color-red-orange-hover: #a63f2a;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-golf: #036D33;
  --color-concert: #036D33;
  --color-day: #036D33;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* Reset & Basics */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-off-white);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--color-slate);
  line-height: 1.2;
}

a {
  color: var(--color-red-orange);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-red-orange-hover);
}

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

/* UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px; /* Fully rounded */
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn:focus-visible {
  outline: 3px solid var(--color-red-orange);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-red-orange);
  color: var(--color-white) !important;
}

.btn-primary:hover {
  background-color: var(--color-red-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 76, 51, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-slate) !important;
  border-color: var(--color-slate);
}

.btn-secondary:hover {
  background-color: var(--color-slate);
  color: var(--color-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(35, 51, 67, 0.2);
}

.btn-light {
  background-color: var(--color-white);
  color: var(--color-slate) !important;
}

.btn-light:hover {
  background-color: var(--color-sand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(35, 51, 67, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo {
  flex: 0 0 auto;
}

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

.main-nav a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-red-orange);
  transition: width 0.3s ease;
}

.main-nav a:not(.btn):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 0.65rem 0.25rem 0.65rem 0.65rem;
  line-height: 1;
}

.menu-icon {
  display: flex;
  width: 25px;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-slate);
  overflow: hidden;
  padding-top: 80px; /* Offset for header */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 32, 45, 0.78) 0%, rgba(20, 32, 45, 0.45) 50%, rgba(20, 32, 45, 0.58) 100%);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  width: 32vw;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 222, 194, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 14%;
  right: -9%;
  animation: orbit-pulse 7s ease-in-out infinite;
}

.hero-orbit-two {
  width: 15vw;
  bottom: -3%;
  left: -3%;
  border-color: rgba(199, 76, 51, 0.6);
  animation: orbit-pulse 6s ease-in-out infinite reverse;
}

.hero-grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(rgba(255,255,255,0.45) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 760px;
  padding: 0 24px;
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--color-sand);
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red-orange);
  box-shadow: 0 0 0 5px rgba(199, 76, 51, 0.2);
}

.hero-title {
  font-size: clamp(2.9rem, 4.5vw, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.hero-title span {
  color: var(--color-sand);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.45rem auto 2rem;
  color: var(--color-sand);
  max-width: 540px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  margin-top: 2.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.hero-meta span {
  white-space: nowrap;
}

.hero-meta strong {
  color: var(--color-sand);
  font-family: var(--font-heading);
  font-size: 1rem;
}

@keyframes orbit-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 0.42; }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
}

/* Feature: FOR Weekend */
.for-weekend {
  background-color: var(--color-white);
}

#events,
#for-golf,
#for-concert,
#for-day,
#for-sunday {
  scroll-margin-top: 100px;
}

.weekend-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.weekend-intro h2 {
  font-size: 3rem;
  color: var(--color-red-orange);
  margin-bottom: 1rem;
}

.weekend-intro .lead {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.weekend-journey {
  max-width: 1080px;
  margin: 0 auto 4rem;
  padding: 2.35rem 2.5rem 2.55rem;
  background: var(--color-off-white);
  border: 1px solid rgba(35, 51, 67, 0.1);
  border-radius: 18px;
}

.weekend-journey-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}

.weekend-journey-heading .section-eyebrow {
  color: var(--color-red-orange);
  margin: 0 0 0.55rem;
}

.weekend-journey-heading h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin: 0;
}

.weekend-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.weekend-track::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red-orange), var(--color-sand), var(--color-red-orange));
}

.journey-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  color: var(--color-slate);
  text-align: center;
}

.journey-stop:hover {
  color: var(--color-slate);
}

.journey-date {
  min-height: 32px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-marker {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0.6rem 0 0.85rem;
  border: 5px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-red-orange);
  box-shadow: 0 0 0 2px var(--color-red-orange);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.journey-stop:hover .journey-marker,
.journey-stop:focus-visible .journey-marker {
  transform: scale(1.22);
  background: var(--color-slate);
}

.journey-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.journey-copy strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.journey-copy span {
  color: var(--color-text-light);
  font-size: 0.88rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-card {
  background-color: var(--color-off-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.event-image-wrap {
  background-color: var(--color-slate);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.event-image-golf {
  background-color: var(--color-golf);
}

.event-image-concert {
  background-color: var(--color-concert);
}

.event-image-day {
  background-color: var(--color-day);
}

.event-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.event-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-date {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-red-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-details {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  flex-grow: 1;
}

.event-details strong {
  color: var(--color-slate);
}

.event-actions,
.sunday-feature-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0;
  color: var(--color-slate);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calendar-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
}

.calendar-link:hover,
.calendar-link:focus-visible {
  color: var(--color-red-orange);
}

.weekend-handoff {
  background-color: var(--color-sand);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-slate);
  margin-top: 3rem;
  border-left: 6px solid var(--color-red-orange);
}

/* FOR Sunday */
.sunday-feature {
  background-color: var(--color-slate);
  color: var(--color-white);
  padding: 5rem 0;
}

.sunday-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.sunday-feature-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 16px;
}

.sunday-feature-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(35, 51, 67, 0.02), rgba(35, 51, 67, 0.55));
}

.sunday-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sunday-image-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--color-red-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sunday-feature-content {
  max-width: 560px;
}

.sunday-feature-content .section-eyebrow {
  color: var(--color-red-orange);
  margin: 0 0 0.75rem;
}

.sunday-feature-content h3 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  margin-bottom: 0.8rem;
}

.sunday-time {
  color: var(--color-sand);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.sunday-feature-content > p:last-of-type {
  max-width: 530px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.calendar-link-light {
  color: var(--color-sand);
}

.calendar-link-light:hover,
.calendar-link-light:focus-visible {
  color: var(--color-white);
}

/* What is FOR Austin */
.what-is {
  background-color: var(--color-off-white);
}

.what-is-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.what-is-content blockquote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-slate);
  line-height: 1.3;
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  background: none;
}

.what-is-content blockquote span {
  color: var(--color-red-orange);
}

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

.pillar-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(35, 51, 67, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(35, 51, 67, 0.1);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-red-orange);
}

.pillar-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Stories */
.stories {
  background-color: var(--color-white);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--color-slate);
  color: var(--color-white);
  height: 350px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 5s ease;
}

.story-card:hover .story-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.story-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  background: linear-gradient(to top, rgba(35, 51, 67, 0.9) 0%, rgba(35, 51, 67, 0) 100%);
}

.story-tag {
  display: inline-block;
  background-color: var(--color-red-orange);
  color: var(--color-white);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.story-title {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--color-sand);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.25s ease, color 0.25s ease;
}

.story-card:hover .story-link,
.story-card:focus-visible .story-link {
  gap: 0.75rem;
  color: var(--color-white);
}

/* Give */
.give-section {
  background-color: var(--color-red-orange);
  color: var(--color-white);
  text-align: center;
}

.give-section h2 {
  color: var(--color-white);
}

.give-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.give-detail {
  max-width: 760px;
  margin: -2rem auto 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fund-disclaimer {
  max-width: 820px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.6;
  font-style: italic;
}

.give-funds {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.fund-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

/* Sponsors */
.sponsors {
  background-color: var(--color-sand);
  overflow: hidden;
  position: relative;
}

.sponsor-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3.5rem;
}

.sponsor-heading .section-eyebrow,
.sponsor-cta .section-eyebrow {
  color: var(--color-red-orange);
  margin-bottom: 1rem;
}

.sponsor-heading .section-subtitle {
  margin-bottom: 0;
}

.sponsor-tracks-wrap {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.track-panels {
  background: var(--color-white);
  border-radius: 12px;
  border: 1px solid rgba(35, 51, 67, 0.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  overflow: hidden;
}

.track-panel {
  display: block;
}

.track-panel + .track-panel {
  border-top: 1px solid rgba(35, 51, 67, 0.1);
}

.panel-layout {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .panel-layout {
    flex-direction: row;
  }
  .panel-info {
    flex: 1;
    padding: 3rem;
  }
  .panel-visual {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 280px;
  }
}

.panel-info {
  padding: 2rem;
}

.panel-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.panel-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-slate);
}

.panel-info p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.panel-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.panel-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-slate);
  font-weight: 600;
}

.panel-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red-orange);
}

.panel-visual-golf {
  background-color: rgb(31, 109, 47);
}

.panel-visual-concert {
  background-color: rgb(9, 60, 87);
}

.panel-mark {
  width: 82%;
  height: auto;
  max-width: 260px;
  object-fit: contain;
  opacity: 1;
}

.sponsor-cta {
  text-align: center;
  background-color: var(--color-white);
  max-width: 760px;
  margin: 0 auto;
  padding: 3.3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sponsor-cta h3 {
  max-width: 520px;
  margin: 0 auto 1rem;
  font-size: 2.2rem;
}

.sponsor-cta p:not(.section-eyebrow) {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--color-text-light);
}

/* Sponsor Pages */
.page-hero {
  padding: 140px 0 60px;
  background-color: var(--color-slate);
  color: var(--color-white);
  text-align: center;
}

.page-hero .page-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-align: center;
}

.page-hero .page-subtitle {
  font-size: 1.25rem;
  color: var(--color-sand);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.55;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.sponsor-detail-section {
  padding: 80px 0;
}

.bg-off-white { background-color: var(--color-off-white); }
.bg-slate { background-color: var(--color-slate); color: var(--color-white); }

.sponsor-event-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.sponsor-event-header.dark-mode h2 {
  color: var(--color-white);
}

.sponsor-event-header.dark-mode .event-desc {
  color: rgba(255,255,255,0.9);
}

.event-meta {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-red-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.sponsor-event-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.event-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tier-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(35,51,67,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--color-text);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tier-card.premium-tier {
  border: 2px solid var(--color-red-orange);
  position: relative;
}

.tier-card.premium-tier::before {
  content: 'Premium';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-red-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-card.concert-card {
  background: var(--color-off-white);
}

.tier-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tier-avail {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-slate);
  background: var(--color-sand);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.tier-avail.sold-out {
  color: var(--color-white);
  background: var(--color-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tier-card.is-sold-out {
  opacity: 0.72;
}

.tier-card.is-sold-out .tier-footer .btn {
  background: var(--color-slate);
  border-color: var(--color-slate);
  cursor: not-allowed;
}

.tier-card h4 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-slate);
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-red-orange);
}

.tier-body {
  flex: 1;
  margin-bottom: 2rem;
}

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

.tier-benefits li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.tier-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-red-orange);
  font-size: 1.2rem;
  line-height: 1;
}

.tier-benefits li strong {
  color: var(--color-slate);
}

.tier-footer .btn {
  width: 100%;
}

/* Footer */
.site-footer {
  background-color: var(--color-slate);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-mission {
  color: var(--color-sand);
  max-width: 400px;
  font-size: 1.1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer-nav h4 {
  color: var(--color-white);
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--color-sand);
}

.footer-nav a:hover {
  color: var(--color-red-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* Toast Notification (Coming Soon) */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--color-slate);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-red-orange);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 51, 67, 0.98);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 92px 28px 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-overlay a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  padding: 0.78rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a:focus-visible {
  color: var(--color-sand);
}

.mobile-nav-overlay a.btn {
  align-self: flex-start;
  margin-top: 1.2rem;
  padding: 0.75rem 1.1rem;
  border: 0;
  font-size: 0.78rem;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 22px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}

/* Responsive */
@media (max-width: 1100px) and (min-width: 769px) {
  .main-nav {
    gap: 1.1rem;
    min-width: 0;
  }

  .main-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .main-nav .btn {
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

@media (max-width: 991px) {
  .hero-title { font-size: clamp(2.65rem, 7vw, 3.75rem); }
  .pillars-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .sunday-feature-grid { grid-template-columns: 1fr; max-width: 660px; }
  .sunday-feature-media { min-height: 360px; }
}

@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .site-logo img { height: 34px; }
  .hero { min-height: 760px; }
  .hero-title { font-size: clamp(2.25rem, 10.5vw, 2.85rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-kicker { font-size: 0.65rem; letter-spacing: 0.1em; }
  .hero-meta { margin-top: 1.65rem; gap: 0.45rem 0.8rem; font-size: 0.72rem; }
  .hero-orbit-one { width: 64vw; right: -25vw; top: 11%; }
  .hero-orbit-two { width: 38vw; left: -19vw; }
  .hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    gap: 0.7rem;
  }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-light {
    width: auto;
    min-width: 220px;
    align-self: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-mission { margin: 0 auto; }
  .weekend-intro h2 { font-size: 2.2rem; }
  .weekend-intro .lead { font-size: 1.2rem; }
  .weekend-journey { padding: 2rem 1.25rem; margin-bottom: 2.5rem; }
  .weekend-journey-heading { margin-bottom: 1.6rem; }
  .weekend-track { grid-template-columns: 1fr; gap: 0; }
  .weekend-track::before {
    top: 1rem;
    bottom: 1rem;
    left: 5.25rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--color-red-orange), var(--color-sand), var(--color-red-orange));
  }
  .journey-stop {
    display: grid;
    grid-template-columns: 4.35rem 1.8rem minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0;
    text-align: left;
  }
  .journey-date {
    min-height: 0;
    font-size: 0.62rem;
    text-align: right;
  }
  .journey-marker { margin: 0; }
  .journey-copy strong { font-size: 1rem; }
  .journey-copy span { font-size: 0.8rem; }
  .event-actions { align-items: flex-start; flex-direction: column; }
  .sunday-feature { padding: 4rem 0; }
  .sunday-feature-grid { gap: 2.25rem; }
  .sunday-feature-media { min-height: 300px; }
  .sunday-feature-content h3 { font-size: 2.45rem; }
  .sunday-feature-actions { align-items: flex-start; flex-direction: column; }
  .give-funds { flex-direction: column; align-items: center; }
  .give-detail { margin: -1rem auto 2rem; font-size: 0.98rem; }
  .section { padding: 76px 0; }
  .section-title { font-size: 2.1rem; }
  .section-subtitle { font-size: 1.05rem; margin-bottom: 2.5rem; }
  .sponsor-cta { padding: 2.25rem 1.4rem; border-radius: 16px; }
  .sponsor-cta h3 { font-size: 1.8rem; }
  .track-panel .panel-visual { display: none; }
  .tier-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
