@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Permanent+Marker&family=Anton&family=Baloo+2:wght@500;700;800&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --cream: #FDF6E3;
  --cream-deep: #F5EFDC;
  --ink: #1A1A18;
  --white: #FFFFFF;

  --m-red: #C4433D;
  --m-orange: #D97D3D;
  --m-yellow: #E0BB3D;
  --m-green: #3D7A4D;
  --m-blue: #3D5FA3;
  --m-purple: #6B3D8C;

  --v-red: #E40303;
  --v-orange: #FF8C00;
  --v-yellow: #FFED00;
  --v-green: #008026;
  --v-blue: #004DFF;
  --v-purple: #750787;
  --v-black: #1A1A18;
  --v-brown: #774A26;
  --v-lightblue: #5BCEFA;
  --v-pink: #F5A9B8;
  --v-white: #FFFFFF;

  --m-lightblue: #5A8CA3;
  --m-pink: #C98098;
  --m-brown: #6B4226;

  --font-display: 'Bangers', cursive;
  --font-slogan: 'Permanent Marker', cursive;
  --font-headline: 'Anton', sans-serif;
  --font-cta: 'Baloo 2', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --shadow-offset: 6px;
  --radius: 14px;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-purple);
  margin: 0 0 10px;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  line-height: 1.08;
}

h1 { font-size: clamp(40px, 6vw, 74px); }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: 21px; }

p { margin: 0 0 16px; }
p.lede { font-size: 19px; color: #4a4a44; max-width: 640px; }

/* ---------- rainbow stripe signature ---------- */
.stripe {
  height: 8px;
  display: flex;
  width: 100%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  box-sizing: border-box;
}
.stripe span { flex: 1; }
.stripe .s1 { background: var(--v-black); }
.stripe .s2 { background: var(--v-brown); }
.stripe .s3 { background: var(--v-lightblue); }
.stripe .s4 { background: var(--v-pink); }
.stripe .s5 { background: var(--v-white); }
.stripe .s6 { background: var(--v-red); }
.stripe .s7 { background: var(--v-orange); }
.stripe .s8 { background: var(--v-yellow); }
.stripe .s9 { background: var(--v-green); }
.stripe .s10 { background: var(--v-blue); }
.stripe .s11 { background: var(--v-purple); }

/* ---------- sticker shadow signature ---------- */
.sticker {
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink);
  background: var(--white);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sticker-purple { box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--m-purple); border-color: var(--m-purple); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border: 3px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--m-purple);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 var(--m-purple); }
.btn:active { transform: translate(0,0); box-shadow: 2px 2px 0 0 var(--m-purple); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink);
}
.btn-outline:hover { box-shadow: 9px 9px 0 0 var(--ink); }
.btn-outline:active { box-shadow: 2px 2px 0 0 var(--ink); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-mark img { height: 51px; width: auto; }

.main-nav ul { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 15px;
}
.main-nav a.active { color: var(--m-purple); }
.nav-quote-mobile { display: none; }
.main-nav a:hover { color: var(--m-purple); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- hero ---------- */
.hero {
  padding: 76px 0 60px;
  text-align: center;
}
.hero h1 {
}
.hero .lede { margin: 0 auto 34px; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-strip {
  background: var(--ink);
  color: var(--cream);
}
.trust-strip ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 14px;
}
.trust-strip li {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  justify-content: center;
}
.trust-strip svg { flex-shrink: 0; }

/* ---------- sections ---------- */
section { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .lede { margin: 0 auto; }

.section-alt { background: var(--white); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

/* ---------- why choose us ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why-card {
  padding: 30px 26px;
  background: var(--cream);
}
.why-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { margin: 0; font-size: 15px; color: #4a4a44; }

/* ---------- category / service cards ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card { overflow: hidden; }
.cat-card .cat-swatch {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid var(--ink);
}
.cat-card .cat-swatch svg { width: 46px; height: 46px; }
.cat-card .cat-body { padding: 22px 22px 26px; }
.cat-card h3 { margin-bottom: 8px; font-size: 19px; }
.cat-card p { font-size: 14px; color: #4a4a44; margin: 0; }

/* ---------- process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step {
  padding: 26px 20px;
  background: var(--white);
  position: relative;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--m-purple);
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: #4a4a44; margin: 0; }

/* ---------- quote form ---------- */
.quote-section { background: var(--ink); color: var(--cream); }
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
.quote-copy .eyebrow { color: var(--v-yellow); }
.quote-copy h2 { color: var(--white); }
.quote-copy p.lede { color: #d8d4c4; }
.quote-copy ul { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.quote-copy li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.quote-copy li svg { flex-shrink: 0; margin-top: 3px; }

.form-card {
  background: var(--cream);
  color: var(--ink);
  padding: 34px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 0 var(--v-yellow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--m-purple);
  outline-offset: 1px;
}
.form-note { font-size: 13px; color: #6b6b63; margin-top: 14px; }
.form-success {
  display: none;
  padding: 16px 18px;
  border: 2px solid var(--m-green);
  background: #eaf3ea;
  color: var(--m-green);
  border-radius: 10px;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.form-success.show { display: block; }
.form-card.submitted form { display: none; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 2px solid var(--ink);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.faq-q .plus {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--m-purple);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a-inner { padding: 0 4px 22px; font-size: 15px; color: #4a4a44; max-width: 660px; }

/* ---------- about page extras ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.story-visual {
  aspect-ratio: 4/3;
  background: var(--m-purple);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.story-visual img { filter: none; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-box {
  text-align: center;
  padding: 24px 10px;
  background: var(--white);
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--m-purple);
  line-height: 1;
}
.stat-box .label {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
}

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-card {
  padding: 30px;
  margin-bottom: 20px;
}
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card a, .contact-card p { font-size: 15px; }
.contact-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 4px; }
.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-row a {
  width: 40px; height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--ink); color: var(--cream); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--v-yellow);
  margin: 0 0 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 14px; color: #d8d4c4; }
.footer-col a:hover { color: var(--white); }
.footer-acknowledgement {
  border-top: 1px solid #38382f;
  padding: 18px 0 30px;
  font-size: 12px;
  line-height: 1.7;
  color: #a8a498;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.footer-bottom {
  border-top: 1px solid #38382f;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #a8a498;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 50px; text-align: center; }
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 58px); }
.page-hero .lede { margin: 0 auto; }

/* ---------- queer calendar page ---------- */
.cal-filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}
.cal-filter-btn {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.cal-filter-btn.active {
  background: var(--ink);
  color: var(--cream);
}

.cal-next {
  background: var(--m-purple);
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 0 var(--ink);
  padding: 26px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cal-next .cal-next-label {
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin: 0 0 4px;
}
.cal-next h3 { margin: 0; font-size: 24px; color: var(--white); }
.cal-next p { margin: 4px 0 0; font-size: 14px; opacity: 0.92; }

.cal-month-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
}
.cal-month-nav a {
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--cream);
}
.cal-month-nav a:hover { background: var(--ink); color: var(--cream); }

.cal-month-block { margin-bottom: 46px; scroll-margin-top: 90px; }
.cal-month-title {
  font-family: var(--font-headline);
  text-transform: uppercase;
  font-size: 26px;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.cal-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 2px solid var(--cream-deep);
}
.cal-event:last-child { border-bottom: none; }
.cal-date-badge {
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 0 var(--ink);
  text-align: center;
  padding: 12px 4px;
  height: fit-content;
  font-family: var(--font-cta);
  font-weight: 700;
}
.cal-date-badge .day {
  font-size: 23px; line-height: 1; display: block; color: #fff;
  text-shadow: -1.5px -1.5px 0 #000, 1.5px -1.5px 0 #000, -1.5px 1.5px 0 #000, 1.5px 1.5px 0 #000;
}
.cal-date-badge .mon {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-top: 3px; color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.cal-event-body h3 { font-size: 18px; margin: 0 0 6px; }
.cal-event-body p { font-size: 14px; color: #4a4a44; margin: 0 0 8px; }
.cal-tag {
  display: inline-block;
  font-family: var(--font-cta);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--white);
}
.cal-tag-awareness { background: var(--m-blue); }
.cal-tag-festival { background: var(--m-purple); }
.cal-event-loc { font-size: 13px; color: var(--m-purple); font-weight: 600; font-family: var(--font-cta); }

.cal-event.hidden { display: none; }

.cal-note {
  font-size: 13px;
  color: var(--m-brown);
  background: var(--cream-deep);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 10px;
}

/* ---------- 4-col why-choose grid ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ---------- donation org cards ---------- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.org-card { padding: 20px 16px; text-align: center; }
.org-card .org-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.org-card h3 { font-size: 15px; margin-bottom: 6px; }
.org-card p { font-size: 13px; color: #4a4a44; margin: 0; }

/* ---------- feature split (design team / marketing assistance) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
}
.feature-split.reverse .feature-visual { order: 2; }
.feature-split.reverse .feature-text { order: 1; }
.feature-visual {
  aspect-ratio: 5/4;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.feature-visual svg { width: 90px; height: 90px; }
.feature-text .eyebrow { justify-content: flex-start; display: flex; }
.feature-text ul { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.feature-text li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.feature-text li svg { flex-shrink: 0; margin-top: 3px; }
.feature-badge {
  display: inline-block;
  font-family: var(--font-cta);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--v-yellow);
  color: var(--ink);
  margin-bottom: 14px;
}

@media (max-width: 680px) {
  .cal-event { grid-template-columns: 70px 1fr; gap: 14px; }
}
@media (max-width: 900px) {
  .grid-3, .grid-cards, .process-list { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse .feature-visual { order: 1; }
  .feature-split.reverse .feature-text { order: 2; }
  .feature-visual { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 680px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .grid-3, .grid-cards, .process-list, .footer-grid { grid-template-columns: 1fr; }
  .grid-4, .org-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .trust-strip li { flex: 1 1 100%; justify-content: flex-start; }
}

.site-header.nav-open .main-nav {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding: 10px 28px 24px;
}
.site-header.nav-open .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
@media (min-width: 681px) { .site-header .main-nav { display: block; } }
@media (max-width: 680px) {
  .site-header .main-nav { display: none; }
  .nav-quote-mobile {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 2px solid var(--cream-deep);
  }
  .nav-quote-mobile a {
    display: block;
    font-family: var(--font-cta);
    font-weight: 700;
    color: var(--cream) !important;
    background: var(--ink);
    text-align: center;
    padding: 12px 20px;
    border-radius: 100px;
    border: 3px solid var(--ink);
    box-shadow: 4px 4px 0 0 var(--m-purple);
  }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--m-purple);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
