/* ===================================================================
   Sweet Savanna Hog Wild Inc. - Main Stylesheet
   Typography-first, premium design for a community nonprofit
   =================================================================== */

/* ===================================================================
   CSS RESET & BASE STYLES
   =================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #faf8f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.01em;
  margin-top: 2rem;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-top: 1.5rem;
}

h4 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-top: 1.25rem;
}

h5 {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  margin-top: 1rem;
}

h6 {
  font-size: 1rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1.25rem;
  max-width: 70ch;
}

a {
  color: #8b4513;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #a0522d;
  text-decoration: underline;
}

a:focus {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

/* ===================================================================
   LAYOUT CONTAINERS
   =================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e0d8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.header-tagline {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

/* Navigation */
.main-nav {
  display: block;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  border-bottom-color: #8b4513;
  text-decoration: none;
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #1a1a1a;
  position: relative;
  transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #1a1a1a;
  transition: transform 0.2s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Tablet & Mobile Navigation */
@media (max-width: 968px) {
  .nav-list {
    gap: 1.5rem;
  }

  .nav-list a {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .site-logo img {
    height: 50px;
  }

  .header-tagline {
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-bottom: 1px solid #e5e0d8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: none;
    border-left: 2px solid transparent;
    padding-left: 1rem;
  }

  .nav-list a:hover,
  .nav-list a[aria-current="page"] {
    border-left-color: #8b4513;
    border-bottom-color: transparent;
  }
}

/* ===================================================================
   HERO SECTION
   =================================================================== */

.hero {
  background: linear-gradient(135deg, #f5f1eb 0%, #e8dfd3 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.bg-word {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  font-family: Georgia, serif;
  display: inline-block;
  margin: 0 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero-intro {
  margin: 2rem auto;
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

  .bg-word {
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }
}

/* ===================================================================
   BUTTONS
   =================================================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: #8b4513;
  color: #fff;
  border-color: #8b4513;
}

.btn-primary:hover {
  background-color: #a0522d;
  border-color: #a0522d;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #8b4513;
  border-color: #8b4513;
}

.btn-secondary:hover {
  background-color: #8b4513;
  color: #fff;
  text-decoration: none;
}

.btn:focus {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* ===================================================================
   CONTENT SECTIONS
   =================================================================== */

.content-section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #fff;
}

.page-header {
  background: linear-gradient(135deg, #f5f1eb 0%, #e8dfd3 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-intro {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #333;
  max-width: 800px;
  margin: 1rem auto 0;
}

.section-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .content-section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 2.5rem 0;
  }
}

@media (max-width: 640px) {
  .content-section {
    padding: 2rem 0;
  }

  .page-header {
    padding: 2rem 0;
  }
}

/* ===================================================================
   BREADCRUMB
   =================================================================== */

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: #666;
  background-color: #fff;
  border-bottom: 1px solid #e5e0d8;
}

.breadcrumb a {
  color: #8b4513;
}

/* ===================================================================
   LAYOUT GRIDS
   =================================================================== */

.two-col-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

/* Special alignment for sidebar that should align with section heading */
.two-col-layout.align-with-heading {
  margin-top: 0;
}

/* Only apply negative margin on desktop */
@media (min-width: 969px) {
  .two-col-layout.align-with-heading .col-sidebar {
    margin-top: -4rem;
  }
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Tablet breakpoint */
@media (max-width: 968px) {
  .two-col-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .three-col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

/* Mobile breakpoint */
@media (max-width: 640px) {
  .three-col-grid,
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===================================================================
   CARDS & CALLOUTS
   =================================================================== */

.card {
  background-color: #fff;
  border: 1px solid #e5e0d8;
  padding: 2rem;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: #8b4513;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: #8b4513;
}

.callout-box {
  background-color: #f5f1eb;
  border-left: 4px solid #8b4513;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.callout-box h3 {
  margin-top: 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.callout-quote {
  background-color: #fff;
  border-left: 4px solid #8b4513;
  padding: 2rem;
  margin: 2.5rem 0;
  font-style: italic;
}

.callout-quote p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin: 0;
}

.callout-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.95rem;
  color: #666;
}

.info-banner {
  background-color: #fff3cd;
  border: 1px solid #d4a10a;
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem 0;
}

.info-banner h2 {
  margin-top: 0;
  color: #8b4513;
}

@media (max-width: 640px) {
  .card,
  .callout-box,
  .callout-quote,
  .info-banner {
    padding: 1.5rem;
  }
}

/* ===================================================================
   FEATURE BLOCKS
   =================================================================== */

.feature-block {
  background-color: #fff;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid #e5e0d8;
}

.feature-block h3 {
  margin-top: 0;
  color: #8b4513;
}

.feature-block ul {
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .feature-block {
    padding: 1.5rem;
  }
}

/* ===================================================================
   LISTS
   =================================================================== */

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

ul li, ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

ul {
  list-style-type: disc;
}

.info-list dt {
  font-weight: 600;
  color: #8b4513;
  margin-top: 0.75rem;
}

.info-list dd {
  margin-left: 0;
  margin-bottom: 0.75rem;
  color: #333;
}

.value-list {
  list-style: none;
  padding: 0;
}

.value-list li {
  padding-left: 1.5rem;
  position: relative;
}

.value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: bold;
}

/* ===================================================================
   PULL QUOTES
   =================================================================== */

.pull-quote-section {
  background-color: #8b4513;
  color: #fff;
  padding: 4rem 0;
}

.pull-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote p {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.6;
  font-style: italic;
  font-family: Georgia, serif;
  margin: 0 auto;
  max-width: 100%;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .pull-quote-section {
    padding: 2.5rem 0;
  }
}

/* ===================================================================
   STATS & NUMBERS
   =================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat-block {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 4px;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #8b4513;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin: 1rem 0 0.75rem;
  color: #1a1a1a;
}

.stat-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 auto;
}

.stats-block {
  background-color: #f5f1eb;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.stats-block h3 {
  margin-top: 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #8b4513;
}

@media (max-width: 640px) {
  .stats-grid {
    gap: 1.5rem;
  }

  .stat-block {
    padding: 1.5rem 1rem;
  }
}

/* ===================================================================
   STORIES & TESTIMONIALS
   =================================================================== */

.story-blocks {
  margin-top: 2.5rem;
}

.story-block {
  background-color: #fff;
  border-left: 4px solid #8b4513;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

.story-block h3 {
  margin-top: 0;
  color: #8b4513;
}

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

@media (max-width: 640px) {
  .story-block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}

/* ===================================================================
   EVENTS
   =================================================================== */

.event-feature {
  background-color: #fff;
  border: 1px solid #e5e0d8;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border-radius: 4px;
}

.event-feature h3 {
  margin-top: 0;
  color: #8b4513;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.event-subtitle {
  font-size: 1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.event-list {
  margin-top: 2rem;
}

.event-card {
  background-color: #fff;
  border: 1px solid #e5e0d8;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.event-card h3 {
  margin-top: 0;
  color: #8b4513;
}

.event-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.event-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e0d8;
}

.highlight-blocks {
  margin-top: 2rem;
}

.highlight-block {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #8b4513;
  border-radius: 4px;
}

.highlight-block h3 {
  margin-top: 0;
  color: #8b4513;
}

@media (max-width: 640px) {
  .event-feature,
  .event-card,
  .highlight-block {
    padding: 1.5rem;
  }
}

/* ===================================================================
   GET INVOLVED
   =================================================================== */

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.involvement-card {
  background-color: #fff;
  border: 1px solid #e5e0d8;
  padding: 2.5rem;
  border-radius: 4px;
}

.involvement-card h3 {
  margin-top: 0;
  color: #8b4513;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.involvement-card h4 {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  margin-top: 1.75rem;
  color: #1a1a1a;
}

.card-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e0d8;
  font-size: 0.95rem;
}

@media (max-width: 968px) {
  .involvement-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .involvement-card {
    padding: 1.5rem;
  }
}

/* ===================================================================
   FAQ
   =================================================================== */

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  background-color: #fff;
  border: 1px solid #e5e0d8;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.faq-item h3 {
  margin-top: 0;
  color: #8b4513;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

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

@media (max-width: 640px) {
  .faq-item {
    padding: 1.5rem;
  }
}

/* ===================================================================
   CONTACT FORM
   =================================================================== */

.contact-layout {
  margin-top: 2rem;
}

.contact-form {
  background-color: #fff;
  padding: 2.5rem;
  border: 1px solid #e5e0d8;
  border-radius: 4px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.required {
  color: #c63;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #d0c9bd;
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b4513;
}

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

.form-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  font-style: italic;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 0.75rem;
  color: #8b4513;
}

.contact-info-block address {
  font-style: normal;
  line-height: 1.7;
}

.small-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 0.5rem;
}

.social-links a {
  font-weight: 500;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 1.5rem;
  }
}

/* ===================================================================
   CTA INLINE
   =================================================================== */

.cta-inline {
  background-color: #f5f1eb;
  padding: 2rem;
  border-radius: 4px;
  margin: 2.5rem 0;
  text-align: center;
}

.cta-inline p {
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

@media (max-width: 640px) {
  .cta-inline {
    padding: 1.5rem;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer {
  background-color: #2c2415;
  color: #d0c9bd;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-inner {
  text-align: center;
}

.footer-branding h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.footer-mission {
  font-size: clamp(1rem, 2vw, 1.05rem);
  line-height: 1.7;
  margin: 0 auto 2rem;
  max-width: 600px;
  color: #d0c9bd;
}

.footer-legal {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.footer-legal p {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tax-notice {
  font-style: italic;
  margin: 0.75rem 0;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #d0c9bd;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
    margin-top: 3rem;
  }
}

/* ===================================================================
   SCROLL PROGRESS BAR
   =================================================================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #8b4513 0%, #a0522d 100%);
  width: 0%;
  transition: width 0.1s ease;
}

/* ===================================================================
   BACK TO TOP BUTTON
   =================================================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #8b4513;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.back-to-top:hover {
  background-color: #a0522d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.4);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

/* ===================================================================
   LOADING STATE
   =================================================================== */

body.is-loading {
  overflow: hidden;
}

body.is-loading::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #faf8f5;
  z-index: 10000;
  animation: fadeOut 0.3s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ===================================================================
   CARD TRANSITIONS
   =================================================================== */

.card,
.involvement-card,
.event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===================================================================
   ACCESSIBILITY & REDUCED MOTION
   =================================================================== */

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

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid #8b4513;
  outline-offset: 2px;
}

/* ===================================================================
   PRINT STYLES
   =================================================================== */

@media print {
  .site-header,
  .nav-toggle,
  .hero-cta,
  .cta-buttons,
  .site-footer {
    display: none;
  }

  body {
    background-color: #fff;
  }

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