/* =====================================================================
   GOLD — Giving Others Laughter & Delight
   Design system. Brand colors live in :root below.
   ===================================================================== */

:root {
  /* Brand */
  --black: #0b0b0c;
  --black-2: #131315;
  --black-3: #1b1b1e;
  --cream: #f6f1e7;
  --cream-dim: #cfc8ba;
  --muted: #8f897c;
  --gold: #c9a227;
  --gold-light: #f5d680;
  --gold-deep: #8c6b12;
  --red: #b3261e;

  --gold-gradient: linear-gradient(135deg, #f5d680 0%, #d4af37 35%, #c9a227 55%, #8c6b12 100%);
  --gold-text: linear-gradient(100deg, #f8e3a0 0%, #d9b64a 45%, #f5d680 70%, #a8842a 100%);
  --hairline: rgba(201, 162, 39, 0.28);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max: 1120px;
  --gutter: 20px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { color: #fff; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 0.5em; color: #fff; letter-spacing: -0.005em; }
h1 { font-size: clamp(2.2rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.lede { font-size: 1.15rem; color: var(--cream-dim); max-width: 44ch; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
@media (min-width: 900px) { .section { padding: 104px 0; } }

/* ---------- Gold text + accents ---------- */
.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.2); }
.rule { width: 56px; height: 2px; background: var(--gold-gradient); margin: 18px 0 26px; border-radius: 2px; }
.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold {
  color: #1a1400; background: var(--gold-gradient); background-size: 200% 200%;
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.28), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--gold:hover { color: #000; background-position: 100% 0; box-shadow: 0 12px 36px rgba(201, 162, 39, 0.42), inset 0 1px 0 rgba(255,255,255,.55); transform: translateY(-1px); }
.btn--outline { color: var(--cream); border-color: rgba(246, 241, 231, 0.32); background: rgba(255,255,255,0.02); }
.btn--outline:hover { color: #fff; border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.btn--small { min-height: 42px; padding: 0 20px; font-size: 0.76rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.16);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand img { width: 40px; height: 40px; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: 0.16em; line-height: 1; }
.brand-sub { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; font-weight: 500; }
.nav { display: none; align-items: center; gap: 30px; }
.nav a { color: var(--cream-dim); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; position: relative; padding: 6px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; transform-origin: left; }
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; background: transparent; border: 1px solid rgba(201,162,39,.3); border-radius: 10px; cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--gold-light); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; background: var(--black-2); border-bottom: 1px solid var(--hairline);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 16px var(--gutter); color: var(--cream); font-size: 1.05rem; border-top: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a.is-active { color: var(--gold-light); }
.mobile-menu .mobile-cta { padding: 18px var(--gutter) 24px; border-top: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 480px) { .site-header .brand-sub { display: none; } }
@media (min-width: 900px) {
  .nav, .header-cta { display: inline-flex; }
  .menu-toggle, .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 72px; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 120%;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201, 162, 39, 0.22), transparent 62%),
    radial-gradient(ellipse 30% 25% at 20% 30%, rgba(179, 38, 30, 0.10), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero .container { position: relative; }
.hero h1 { max-width: 16ch; margin: 0 auto 22px; }
.hero .lede { margin: 0 auto 34px; max-width: 52ch; }
.hero .btn-row { justify-content: center; margin-bottom: 44px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--hairline); background: rgba(255,255,255,0.025);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-dim); font-weight: 600;
}
.chip::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@media (min-width: 900px) { .hero { padding: 128px 0 104px; } }

/* ---------- Gold frame / cards ---------- */
.card {
  position: relative; background: linear-gradient(180deg, var(--black-3), var(--black-2));
  border: 1px solid rgba(201, 162, 39, 0.18); border-radius: var(--radius-lg); padding: 30px 26px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: rgba(201, 162, 39, 0.5); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.card h3 { margin-top: 12px; }
.card p { color: var(--cream-dim); margin: 0; }
.grid { display: grid; gap: 18px; }
@media (min-width: 720px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Step numerals */
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1;
  background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 6px; }

/* Category icon (abstract, no clip-art) */
.cat-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201, 162, 39, 0.1); border: 1px solid var(--hairline); color: var(--gold-light);
}
.cat-icon svg { width: 26px; height: 26px; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--cream-dim); }
.section-foot { margin-top: 36px; }

/* ---------- Shows ---------- */
.show-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.show-media { position: relative; aspect-ratio: 16 / 10; background: var(--black-3); overflow: hidden; }
.show-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.show-card:hover .show-media img { transform: scale(1.04); }
.show-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,11,12,.85), transparent 55%); }
.show-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 12px; border-radius: 999px;
  background: rgba(11,11,12,.7); border: 1px solid var(--hairline); color: var(--gold-light);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; backdrop-filter: blur(6px);
}
.show-tag--red { border-color: rgba(179,38,30,.6); color: #ffb3ad; }
.show-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.show-when { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.show-when .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.show-body h3 { margin: 0; font-size: 1.45rem; }
.show-body p { flex: 1; }
.show-body .btn { margin-top: 12px; align-self: flex-start; }
.empty-state { text-align: center; padding: 56px 24px; border: 1px dashed var(--hairline); border-radius: var(--radius-lg); color: var(--cream-dim); }
.empty-state h3 { margin-top: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  padding: 72px var(--gutter); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(201,162,39,.16), transparent 70%), var(--black-2);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--cream-dim); margin: 0 auto 30px; max-width: 46ch; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,162,39,.18); }
.faq-item:first-child { border-top: 1px solid rgba(201,162,39,.18); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: #fff;
}
.faq-q .plus { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--hairline); display: grid; place-items: center; color: var(--gold-light); transition: transform .2s ease, background .2s ease; }
.faq-q .plus::before { content: "+"; font-family: var(--font-body); font-size: 1.2rem; line-height: 1; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: rgba(201,162,39,.12); }
.faq-a { display: none; padding: 0 4px 24px; color: var(--cream-dim); }
.faq-item.is-open .faq-a { display: block; }

/* ---------- Apply ---------- */
.apply-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin: 22px 0 36px; }
.apply-meta > span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); font-weight: 600; }
.apply-meta > span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.form-frame { border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.form-frame iframe { display: block; width: 100%; min-height: 1500px; border: 0; }
.form-fallback { text-align: center; margin-top: 22px; color: var(--muted); font-size: 0.95rem; }
.form-pending { text-align: center; padding: 64px 24px; }
.form-pending .gold-text { font-family: var(--font-display); font-size: 2rem; display: block; margin-bottom: 10px; }
.proof-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.proof-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--cream-dim); }
.proof-list li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%; background: rgba(201,162,39,.12); border: 1px solid var(--hairline); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5d680' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 10px; background-position: center; background-repeat: no-repeat; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 64px 0 40px; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(201,162,39,.16), transparent 65%); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 18ch; margin: 0 auto 16px; }
.page-hero .lede { margin: 0 auto; }
@media (min-width: 900px) { .page-hero { padding: 96px 0 56px; } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); padding: 56px 0 36px; background: var(--black-2); }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--cream-dim); margin: 0; max-width: 34ch; }
.footer-h { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 14px; }
.footer-col p, .footer-col a { color: var(--cream-dim); margin: 0 0 6px; display: block; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 0.82rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
