/* =====================================================
   END IT ATLANTA — Brand tokens
   ===================================================== */
:root {
  --black: #070707;
  --charcoal: #111111;
  --cream: #f4efe6;
  --paper: #fbf8f1;
  --red: #e5161c;
  --red-dark: #b70f15;
  --gold: #d5a94b;
  --gold-soft: #e3c274;
  --white: #ffffff;
  --muted: #b9b2a6;
  --max-width: 1240px;
  --radius: 12px;

  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --header-height: 78px;
}

/* =====================================================
   Reset / base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 0.92; letter-spacing: 0.3px; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

section[id], footer[id] { scroll-margin-top: var(--header-height); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  font-family: var(--font-body);
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
  /* red-dark on light backgrounds meets WCAG AA (5.9:1+) for normal-size text;
     plain --red at 13px bold falls just under 4.5:1, so it's reserved for
     large-text use (see .text-red on the hero headline) */
  color: var(--red-dark);
}
/* On black-background sections, gold reads clearly (9.2:1) and matches the
   existing gold accent system, whereas --red on black lands at 4.28:1 —
   short of AA for normal-size text. */
.how-it-works .eyebrow,
.event .eyebrow {
  color: var(--gold);
}

.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

.headline-black {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
}
.headline-cream {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  text-transform: uppercase;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline-gold {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(213, 169, 75, 0.12); }

.btn-black {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-black:hover { background: #000; }

.btn[aria-disabled="true"] {
  cursor: default;
  opacity: 0.9;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =====================================================
   Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(213, 169, 75, 0.25);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wordmark {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.primary-nav ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  row-gap: 6px;
}

.primary-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
  text-transform: uppercase;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.header-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(213, 169, 75, 0.4);
  border-radius: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--cream);
}

.mobile-menu {
  display: none;
  background: var(--black);
  border-top: 1px solid rgba(213, 169, 75, 0.25);
  padding: 20px 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-menu a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
  color: var(--cream);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { width: 100%; }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 640px;
  background: var(--black);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 48px 40px 64px;
}

.hero-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.hero-copy-inner {
  position: relative;
  z-index: 1;
}

.hero-headline {
  color: var(--cream);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  text-transform: uppercase;
}

.hero-subline {
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 18px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}

.hero-media {
  position: relative;
  min-height: 320px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

/* =====================================================
   Trust bar
   ===================================================== */
.trust-bar {
  background: var(--red);
  padding: 16px 20px;
}
.trust-bar p {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
}

/* =====================================================
   Mission
   ===================================================== */
.mission {
  background: var(--cream);
  padding: 88px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: start;
}

.mission-copy p {
  color: #3a352c;
  font-size: 1.05rem;
}
.mission-copy .headline-black { margin-bottom: 20px; }

.mission-grid::before {
  content: "";
  grid-column: 2;
  background: var(--gold);
  width: 1px;
  height: 100%;
}

.mission-quote {
  grid-column: 3;
  padding-top: 6px;
}
.mission-quote .quote-mark {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 4rem;
  line-height: 1;
  display: block;
}
.mission-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  margin: 8px 0;
}
.quote-mark-close { text-align: right; }

/* =====================================================
   How it works
   ===================================================== */
.how-it-works {
  background: var(--black);
  padding: 88px 0;
}
.how-it-works .headline-cream { margin-bottom: 44px; max-width: 720px; }

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

.step-card {
  border: 1px solid rgba(213, 169, 75, 0.35);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--charcoal);
}
.step-number {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.step-icon {
  display: inline-flex;
  color: var(--gold);
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.step-icon svg { width: 100%; height: 100%; }
.step-card h3 {
  font-family: var(--font-body);
  color: var(--cream);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =====================================================
   PrEPED UP
   ===================================================== */
.preped-up {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 460px;
  background: var(--red);
}
.preped-copy {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}
.preped-media { order: 2; position: relative; min-height: 320px; }
.preped-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}
.preped-copy .headline-cream { color: var(--white); margin-bottom: 14px; }
.preped-copy .hashtag {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 20px;
}
.preped-copy p:not(.hashtag) {
  color: rgba(255,255,255,0.92);
  max-width: 44ch;
  font-size: 1rem;
}
.preped-copy .btn { margin-top: 12px; align-self: flex-start; }

/* =====================================================
   Event
   ===================================================== */
.event {
  display: grid;
  grid-template-columns: 50% 50%;
  background: var(--black);
  border-top: 1px solid rgba(213,169,75,0.3);
  border-bottom: 1px solid rgba(213,169,75,0.3);
}
.event-copy {
  padding: 64px 48px;
  position: relative;
}
.event-crown {
  width: 46px;
  height: auto;
  margin: 4px 0 10px;
  opacity: 0.9;
}
.event-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--gold-soft);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}
.event-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.event-description {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 26px;
}
.event-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 28px;
}
.event-details li {
  border: 1px solid rgba(213,169,75,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.event-details li:last-child { grid-column: 1 / -1; }
.event-closing {
  margin-top: 26px;
  color: var(--muted);
  font-style: italic;
  max-width: 50ch;
  font-size: 0.95rem;
}
.event-media { position: relative; min-height: 320px; }
.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

/* =====================================================
   Community CTA
   ===================================================== */
.community-cta {
  position: relative;
  background: var(--cream);
  padding: 88px 0;
  overflow: hidden;
}
.cta-texture {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  max-width: 60%;
  opacity: 0.14;
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-headline {
  text-transform: uppercase;
}
.cta-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: #3a352c;
}
.cta-icon {
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.cta-list strong {
  display: block;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--black);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(213,169,75,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-wordmark {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.footer-tagline { color: var(--muted); font-size: 0.9rem; }
.footer-skyline { width: 220px; opacity: 0.5; margin-top: 20px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.footer-contact > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-label {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}
.footer-contact a {
  color: var(--cream);
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
}
.footer-contact a:hover { border-color: var(--gold); }

.disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 80ch;
  margin: 0;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1199px) {
  .event-copy, .preped-copy { padding: 48px 32px; }
}

@media (max-width: 899px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { aspect-ratio: 4 / 5; min-height: 0; }
  .hero-copy { padding: 56px 24px 72px; }

  .mission-grid { grid-template-columns: 1fr; }
  .mission-grid::before { display: none; }
  .mission-quote { grid-column: 1; padding-top: 24px; border-top: 1px solid var(--gold); }

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

  .preped-up { grid-template-columns: 1fr; }
  .preped-copy { order: 1; background: var(--red); }
  .preped-media { order: 2; aspect-ratio: 4 / 3; }

  .event { grid-template-columns: 1fr; }
  .event-copy { order: 1; }
  .event-media { order: 2; aspect-ratio: 16 / 10; }

  .cta-grid { grid-template-columns: 1fr; }
  .cta-texture { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 639px) {
  body { font-size: 16px; }
  .section-inner { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .wordmark { font-size: 1.3rem; }

  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero .btn-row .btn { width: 100%; }

  .event-details { grid-template-columns: 1fr; }
  .mission, .how-it-works, .community-cta { padding: 64px 0; }
  .event-copy, .preped-copy { padding: 40px 20px; }
}
