/* LACalendarGirls.com — token system
   Color: asphalt #211D1B / sand #E8DCC8 / pinstripe red #C1272D / chrome #6E7C7C / sun gold #D4A017
   Type: display "Oswald" (condensed, pinstripe-lettering feel) + body "Work Sans"
   Signature: hand-painted pinstripe divider (SVG) between sections
*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --asphalt: #211D1B;
  --sand: #E8DCC8;
  --pinstripe: #C1272D;
  --chrome: #6E7C7C;
  --gold: #D4A017;
  --ink: #2A2422;
  --max: 1080px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.55;
}
h1, h2, h3, .display {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--asphalt);
  margin: 0 0 0.4em;
}
a { color: var(--pinstripe); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 2px;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* nav */
.site-nav {
  background: var(--asphalt);
  padding: 14px 0;
}
.site-nav .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.site-nav .brand { color: var(--sand); font-family: 'Oswald', sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; }
.site-nav a { color: var(--sand); margin-left: 18px; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; }
.site-nav a:first-child { margin-left: 0; }

/* pinstripe divider — signature element */
.pinstripe {
  height: 10px;
  background: repeating-linear-gradient(100deg, var(--pinstripe) 0 3px, transparent 3px 40px, var(--gold) 40px 43px, transparent 43px 80px);
  opacity: 0.85;
}

/* hero */
.hero { padding: 64px 0 40px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.hero p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; color: var(--chrome); }

/* pillar grid */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 40px 0; }
.pillar-card {
  background: #fff; border: 1px solid rgba(33,29,27,0.12);
  border-top: 4px solid var(--pinstripe);
  padding: 22px; border-radius: 2px;
}
.pillar-card h3 { font-size: 1.1rem; }
.pillar-card p { font-size: 0.95rem; color: var(--chrome); margin-bottom: 0.8em; }

/* section shell */
.section { padding: 44px 0; }
.section-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--pinstripe); font-weight: 600; }

/* piece / article template */
.piece-meta { color: var(--chrome); font-size: 0.9rem; margin-bottom: 1.2em; }
.piece-body { font-size: 1.05rem; max-width: 700px; }
.credit { font-size: 0.85rem; color: var(--chrome); margin-top: 2em; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 0.8em; }

/* gated hub notice */
.gate-notice {
  background: #fff; border: 1px dashed var(--pinstripe);
  padding: 24px; border-radius: 2px; margin: 20px 0;
}
.gate-notice h3 { margin-top: 0; }

/* events list */
.event-list { list-style: none; padding: 0; }
.event-list li { background: #fff; border: 1px solid rgba(0,0,0,0.1); padding: 14px 18px; margin-bottom: 10px; border-radius: 2px; }
.event-list .ev-name { font-weight: 600; }
.event-list .ev-meta { color: var(--chrome); font-size: 0.9rem; }
.event-list .ev-source { font-size: 0.82rem; }

/* forms */
form.card { background: #fff; border: 1px solid rgba(0,0,0,0.1); padding: 24px; max-width: 520px; border-radius: 2px; }
form.card label { display: block; margin: 12px 0 4px; font-weight: 600; font-size: 0.92rem; }
form.card input, form.card textarea, form.card select {
  width: 100%; padding: 10px; border: 1px solid var(--chrome); border-radius: 2px; font-family: inherit; font-size: 0.95rem;
}
form.card button {
  margin-top: 16px; background: var(--pinstripe); color: #fff; border: none;
  padding: 12px 22px; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; border-radius: 2px;
}
form.card button:hover { background: #a11f24; }

.test-flag {
  background: var(--gold); color: var(--asphalt); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; padding: 3px 8px; margin-bottom: 10px;
}

footer.site-footer { background: var(--asphalt); color: var(--sand); padding: 30px 0; margin-top: 40px; font-size: 0.88rem; }
footer.site-footer a { color: var(--gold); }
