:root {
  --amber: #E8A422;
  --amber-light: #F5C96A;
  --amber-dark: #B07A10;
  --orange: #C85A1A;
  --cream: #F0D99A;
  --cream-muted: #D4BE7E;
  --black: #0C0A07;
  --black-2: #181208;
  --black-3: #241A0C;
  --black-4: #2E220F;
  --text: #EDD89A;
  --text-muted: #A8924E;
  --border: rgba(232,164,34,0.15);
  --border-strong: rgba(232,164,34,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- NAV --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,10,7,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 42px; width: 42px; object-fit: contain; }
.nav-logo-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--amber); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.1; }
.nav-logo-sub { font-size: 9px; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

.nav-center {
  display: flex; align-items: center; gap: 24px;
}
.nav-center a {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-muted); text-decoration: none; transition: color 0.2s;
  white-space: nowrap;
}
.nav-center a:hover, .nav-center a.active { color: var(--amber); }

.nav-cta {
  background: var(--amber); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none; flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--amber-light); }

/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: rgba(12,10,7,0.98); border-bottom: 1px solid var(--border);
  padding: 24px 5%; flex-direction: column; gap: 0;
}
.mobile-menu a {
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-muted);
  text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu.open { display: flex; }

/* --- BUTTONS --- */
.btn-primary {
  background: var(--amber); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--cream);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 13px 32px; border: 1px solid rgba(240,217,154,0.35);
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--cream); transform: translateY(-1px); }

/* --- LAYOUT --- */
.page-body { padding-top: 68px; }

.page-hero {
  background: var(--black-2); border-bottom: 1px solid var(--border);
  padding: 72px 5% 60px; text-align: center;
}
.page-hero-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 8vw, 96px);
  color: var(--cream); line-height: 0.95; letter-spacing: 0.03em; margin-bottom: 16px;
}
.page-hero-title span { color: var(--amber); }
.page-hero-body { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

section.content { padding: 72px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.section-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 44px);
  font-weight: 600; line-height: 1.1; color: var(--cream); margin-bottom: 14px;
}
.section-title span { color: var(--amber); }
.section-body { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

/* --- FOOTER --- */
footer {
  background: var(--black); border-top: 1px solid var(--border); padding: 60px 5% 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-row img { height: 44px; }
.footer-logo-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--amber); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 16px; }
.footer-charity-note { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); }
.footer-col-title { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase;
}

/* --- CARDS & GRIDS --- */
.card {
  background: var(--black-3); border: 1px solid var(--border); padding: 32px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-strong); }
.card.featured { border-color: var(--amber); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.amber-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 6px; }
.card-title { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.card-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* --- STAT BAR --- */
.stat-bar { background: var(--black-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; }
.stat-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--amber); line-height: 1; }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* --- DIVIDERS / MISC --- */
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.amber-link { color: var(--amber); text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.amber-link:hover { gap: 12px; }
.amber-link::after { content: '→'; }

.badge { display: inline-block; background: rgba(232,164,34,0.12); border: 1px solid rgba(232,164,34,0.25); font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); padding: 4px 12px; }

.prose p { color: var(--text-muted); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--cream); margin: 28px 0 10px; }

/* --- FORM ELEMENTS --- */
.form-group { margin-bottom: 20px; }
.form-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--black); border: 1px solid var(--border);
  padding: 12px 16px; color: var(--cream); font-family: 'Lora', serif; font-size: 15px; outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--border-strong); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 56px 5% 44px; }
}

/* --- DROPDOWN NAV --- */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream-muted); cursor: pointer;
  display: flex; align-items: center; gap: 5px; transition: color 0.2s;
  white-space: nowrap; background: none; border: none; padding: 0;
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: var(--amber); }
.nav-dropdown-toggle .arrow {
  font-size: 9px; display: inline-block; transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-toggle .arrow { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--amber); }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  background: rgba(12,10,7,0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--amber);
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block; padding: 12px 18px;
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-muted); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { color: var(--amber); background: rgba(232,164,34,0.05); }

/* --- PHOTO GALLERY --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.gallery-item {
  aspect-ratio: 1; background: var(--black-3);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px; text-align: center;
}
.gallery-placeholder-icon { font-size: 24px; opacity: 0.3; }
.gallery-placeholder-text { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); opacity: 0.5; }

/* --- PAST EVENT PAGE --- */
.event-year-badge {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(120px, 20vw, 200px);
  color: rgba(232,164,34,0.06); line-height: 1; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap;
  pointer-events: none; z-index: 0; letter-spacing: 0.02em;
}
.sponsor-logo-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border);
}
.sponsor-logo-box {
  background: var(--black); aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center; padding: 10px;
  transition: background 0.2s; overflow: hidden; cursor: pointer;
}
.sponsor-logo-box:hover { background: var(--black-2); }
.sponsor-logo-box a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.sponsor-logo-box img {
  width: 100%; height: 100%; object-fit: contain;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.2s, transform 0.2s;
}
.sponsor-logo-box:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.04); }
.sponsor-logo-box span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,217,154,0.2); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-logo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery hover effect */
.gallery-item a { display: block; width: 100%; height: 100%; position: relative; overflow: hidden; }
.gallery-item a img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item a::after {
  content: '⊕';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
  font-size: 36px; color: rgba(232,164,34,0.9);
  transition: transform 0.2s; pointer-events: none;
}
.gallery-item a:hover img { transform: scale(1.04); }
.gallery-item a:hover::after { transform: translate(-50%,-50%) scale(1); }

/* ADA Mobile Font Compliance — all pages */
@media (max-width: 768px) {

  /* Body copy in sections and cards */
  p, li { font-size: 16px !important; line-height: 1.75 !important; }
  .section-body, .card-body, .prose p { font-size: 16px !important; line-height: 1.75 !important; }

  /* The small tracking eyebrow labels — "COLORADO SPRINGS · ANNUAL SPIRITS FESTIVAL", "BENEFITING" etc */
  .section-label,
  .amber-label,
  .page-hero-eyebrow,
  [style*="letter-spacing:.35em"],
  [style*="letter-spacing:.3em"],
  [style*="letter-spacing:.25em"],
  [style*="letter-spacing:.2em"],
  [style*="letter-spacing:.18em"] {
    font-size: 12px !important;
    letter-spacing: .15em !important;
  }

  /* Amber arrow links — "LEARN ABOUT MT. CARMEL →", "APPLY AS A VENDOR →" etc */
  .amber-link,
  a.amber-link,
  [style*="text-transform:uppercase"][style*="font-size:11px"],
  [style*="text-transform:uppercase"][style*="font-size:12px"],
  [style*="text-transform:uppercase"][style*="font-size:13px"] {
    font-size: 15px !important;
    letter-spacing: .08em !important;
  }

  /* Card body text */
  .card p, [class*="card"] p { font-size: 15px !important; }

  /* Footer */
  .footer-tagline, .footer-charity-note { font-size: 15px !important; }
  .footer-links a { font-size: 14px !important; }
  .footer-bottom { font-size: 13px !important; }

  /* Stat labels */
  .stat-label { font-size: 13px !important; }
  .stat-number { font-size: clamp(28px, 8vw, 48px) !important; }

  /* Feature strip sub-labels */
  [style*="font-size:12px"][style*="color:var(--text-muted)"] { font-size: 14px !important; }
}

/* =============================================
   FEATURES STRIP
   Desktop: 5 columns horizontal
   Mobile: single column vertical
   ============================================= */
.features-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--border);
  gap: 1px;
  width: 100%;
}
.features-strip > div {
  background: var(--black-2);
  padding: 36px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 700px) {
  .features-strip {
    grid-template-columns: 1fr;
  }
  .features-strip > div {
    padding: 28px 24px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
  }
  .features-strip > div:last-child {
    border-bottom: none;
  }
  .features-strip > div > div:first-child {
    flex-shrink: 0;
    width: 40px;
    text-align: center;
  }
}
