/* ============================================================================
   Central Valley Lebanese Festival — shared design system
   Source of truth extracted from public/index.html (inline <style>).
   Inner pages link this file so they render identically to the home page.
   Colors: red #ce1126 · green #00732f · gold #c8a24a/#e6cf8f · cream #fbf7ee · ink #20180f
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================================ */

:root {
  --red: #ce1126;
  --red-dark: #a50d1e;
  --green: #00732f;
  --green-dark: #04561f;
  --gold: #c8a24a;
  --gold-light: #e6cf8f;
  --ink: #20180f;
  --cream: #fbf7ee;
  --paper: #ffffff;
  --muted: #635a4c;
  /* Premium BLACK + GOLD accent layer (complements the flag colors; matches .sponsor-luxe) */
  --gold-rich: #e6c15c;
  --gold-deep: #b8893b;
  --gold-soft: #f6dd98;
  --noir: #0c0b0a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(32, 24, 15, 0.12);
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--green-dark); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Accessibility — visible keyboard focus for every interactive element (WCAG 2.4.7) */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible { outline-color: var(--ink); outline-offset: 3px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }

/* Skip link — first tab stop, hidden until focused */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: .9rem; transition: top .15s ease;
}
.skip-link:focus { top: 12px; color: #fff; }
.draft-banner {
  background: repeating-linear-gradient(45deg, #2b2b2b, #2b2b2b 12px, #353535 12px, #353535 24px);
  color: #ffd96b; text-align: center; font-size: .8rem; font-weight: 600;
  padding: 7px 14px; letter-spacing: .03em;
}

/* NAV */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.brand .cedar { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .95rem; position: relative; }
.nav-links a:hover { color: var(--red); }
/* Active page — gold underline accent so visitors always know where they are */
.nav-links a[aria-current="page"] { color: var(--red); font-weight: 600; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 3px;
  background: var(--gold); border-radius: 3px 3px 0 0;
}
.btn {
  display: inline-block; background: var(--red); color: #fff; font-weight: 600;
  padding: 11px 22px; border-radius: 999px; border: none; cursor: pointer;
  font-size: .95rem; transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn.green { background: var(--green); }
.btn.green:hover { background: var(--green-dark); }
.nav-cta { padding: 9px 18px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* HERO */
/* Full-screen hero — golden-hour festival photo with a faint flag accent */
.hero { position: relative; overflow: hidden; min-height: 92vh; display: grid; align-items: center; padding: 60px 0;
  background: #181109; }
/* The festival photograph */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url(/hero.webp) center 32% / cover no-repeat;
  transform: scale(1.04); animation: heroDrift 24s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.04) translateX(0); } to { transform: scale(1.10) translateX(-1.5%); } }
/* Scrim — darker on the left so the white headline reads, photo's warmth kept on the right */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16,11,6,.86) 0%, rgba(16,11,6,.62) 36%, rgba(16,11,6,.22) 66%, rgba(16,11,6,.40) 100%),
    linear-gradient(180deg, rgba(16,11,6,.45) 0%, transparent 24%, transparent 64%, rgba(16,11,6,.72) 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }

/* Dynamic, staggered entrance */
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes sheen { to { background-position: 200% center; } }
@keyframes floatCard { from { opacity: 0; transform: translateY(26px) scale(.985); } to { opacity: 1; transform: none; } }
.hero-text > * { opacity: 0; animation: heroUp .8s cubic-bezier(.22,.7,.2,1) forwards; }
.hero-text > *:nth-child(1){ animation-delay: .10s; }
.hero-text > *:nth-child(2){ animation-delay: .22s; }
.hero-text > *:nth-child(3){ animation-delay: .36s; }
.hero-text > *:nth-child(4){ animation-delay: .50s; }
.hero-text > *:nth-child(5){ animation-delay: .62s; }
.hero-card-anim { opacity: 0; animation: floatCard .9s cubic-bezier(.22,.7,.2,1) .55s forwards; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08);
  color: var(--gold-light); font-weight: 600; font-size: .8rem; letter-spacing: .12em; border: 1px solid rgba(200,162,74,.34);
  text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.7rem, 5.8vw, 4.3rem); font-weight: 700; line-height: 1.05; color: #faf6ec; letter-spacing: -0.02em; }
.hero h1 .accent {
  display: inline-block;
  background: linear-gradient(100deg, var(--gold) 0%, #fff6df 35%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sheen 7s linear infinite;
}
.hero p.lead { font-size: 1.18rem; color: rgba(248,244,236,.82); margin: 22px 0 32px; max-width: 42ch; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.deadline-chip { margin-top: 26px; font-size: .92rem; color: rgba(248,244,236,.7); letter-spacing: .01em; }
.deadline-chip strong { color: var(--gold-light); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .hero-text > *, .hero-card-anim { opacity: 1; animation: none; }
  .hero h1 .accent, .hero::before { animation: none; transform: none; }
}
.hero-card {
  background: var(--paper); border-radius: 20px; box-shadow: var(--shadow);
  padding: 28px; border: 1px solid rgba(200,162,74,.3);
  background-image: linear-gradient(180deg, rgba(0,115,47,.04), rgba(206,17,38,.04));
}
.hero-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.hero-card ul { list-style: none; display: grid; gap: 12px; }
.hero-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.hero-card li .tick { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Compact page hero variant for inner pages — same festival photo + scrim as home,
   shorter and single-column so the page content gets to work quickly.
   Use <section class="hero hero-page"> with a single .hero-text column. */
.hero.hero-page { min-height: auto; padding: 92px 0 76px; }
.hero.hero-page .hero-grid { grid-template-columns: 1fr; gap: 0; max-width: 820px; }
.hero.hero-page .hero-text p.lead { max-width: 60ch; }
/* Slightly even scrim for the shorter crop so the photo's warmth still shows */
.hero.hero-page::after {
  background:
    linear-gradient(90deg, rgba(16,11,6,.82) 0%, rgba(16,11,6,.58) 48%, rgba(16,11,6,.34) 100%),
    linear-gradient(180deg, rgba(16,11,6,.30) 0%, transparent 30%, transparent 60%, rgba(16,11,6,.55) 100%);
}
/* Warm gold hairline closing the inner hero — quiet, festival-grade detail */
.hero.hero-page::before { box-shadow: inset 0 -3px 0 rgba(200,162,74,.55); }
.hero.hero-page .hero-text > * { animation-name: heroUp; }
/* On inner pages the lead can run a touch larger for editorial weight */
.hero.hero-page .hero-text p.lead { font-size: 1.22rem; }

/* STATS */
.stats { background: var(--green); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 38px 0; text-align: center; }
.stat .num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: var(--gold-light); }
.stat .label { font-size: .95rem; opacity: .92; }

/* SECTIONS */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--ink); }
/* Thin gold hairline under section headings — quiet gold-leaf detail, cascades everywhere */
.section-head h2::after {
  content: ""; display: block; width: 56px; height: 2px; margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft) 55%, var(--gold-rich));
  border-radius: 2px;
}
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }
/* Kickers in deep gold (was flag-red) — the elegant accent reads on cream + dark */
.kicker { color: var(--gold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }

/* Generic prose block for content-heavy inner pages (about / faq intros).
   Keeps the home page untouched while giving inner pages a readable column. */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--ink); margin: 38px 0 14px; }
.prose h3 { font-size: 1.2rem; color: var(--ink); margin: 26px 0 10px; }
.prose p { color: var(--ink); margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 1.2em; color: var(--ink); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* WHY cards */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { position: relative; overflow: hidden; background: var(--paper); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(200,162,74,.22); transition: transform .2s ease, box-shadow .2s ease; }
/* Thin gold hairline crowning each card — gold-leaf accent */
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-rich) 50%, var(--gold-soft));
  opacity: .9;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(32,24,15,.16); }
.card .icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(206,17,38,.1); color: var(--red); font-size: 1.4rem; margin-bottom: 16px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* VENDOR TESTIMONIALS — reuses .card; gold quote mark + cited author */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { display: flex; flex-direction: column; }
.testi::after {
  content: "\201D"; position: absolute; top: 10px; right: 20px;
  font-family: 'Playfair Display', serif; font-size: 4.2rem; line-height: 1;
  color: var(--gold-rich); opacity: .22; pointer-events: none;
}
.testi p.quote { color: var(--ink); font-size: 1.02rem; line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.testi .cite { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.testi .cite .name { font-weight: 700; color: var(--ink); font-size: .98rem; font-style: normal; }
.testi .cite .biz { color: var(--gold-deep); font-weight: 600; font-size: .9rem; }
.testi .cite .cat { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* BOOTH TIERS */
.tiers { background: linear-gradient(180deg, var(--cream), #f4ecda); }
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tier { background: var(--paper); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow);
  border: 1px solid rgba(200,162,74,.25); display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease, box-shadow .2s ease; }
.tier:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(32,24,15,.16); }
.tier.featured { border: 2px solid var(--gold); box-shadow: 0 14px 36px rgba(200,162,74,.22); }
.tier.featured:hover { box-shadow: 0 20px 44px rgba(200,162,74,.3); }
.tier .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 700; padding: 4px 12px;
  border-radius: 999px; letter-spacing: .03em; text-transform: uppercase; }
.tier h3 { font-size: 1.15rem; }
.tier .price { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 800; color: var(--green); margin: 8px 0 4px; }
.tier .price span { font-size: .9rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 500; }
.tier ul { list-style: none; margin: 16px 0 22px; display: grid; gap: 9px; }
.tier li { font-size: .9rem; color: var(--muted); display: flex; gap: 8px; }
.tier li::before { content: "\2713"; color: var(--green); font-weight: 700; }
.tier .btn { margin-top: auto; text-align: center; }

/* FORM */
.apply { background:
    radial-gradient(800px 400px at 100% 0%, rgba(0,115,47,.1), transparent 60%),
    var(--cream); }
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--paper); border-radius: 18px;
  box-shadow: var(--shadow); padding: 40px; border: 1px solid rgba(200,162,74,.3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 600; color: var(--ink); }
label .req { color: var(--red); }
input, select, textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid #e2d9c4;
  border-radius: 10px; background: #fff; color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,115,47,.14); }
textarea { resize: vertical; min-height: 110px; }
.form-foot { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-msg { font-size: .95rem; padding: 12px 16px; border-radius: 10px; width: 100%; display: none; }
.form-msg.error { display: block; background: rgba(206,17,38,.1); color: var(--red-dark); border: 1px solid rgba(206,17,38,.3); }
.submit-btn { font-size: 1.02rem; padding: 14px 34px; }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.success-box { text-align: center; padding: 24px; }
.success-box .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,115,47,.12);
  color: var(--green); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; }
.success-box h3 { font-size: 1.6rem; margin-bottom: 8px; }
.success-box p { color: var(--muted); }

/* FAQ accordion (inner FAQ page) — built on <details>/<summary> so it works without JS */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--paper); border: 1px solid rgba(200,162,74,.25); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.08rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px;
  align-items: center; transition: color .15s ease, background .15s ease; }
.faq-item summary:hover { color: var(--red); background: rgba(206,17,38,.03); }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: -3px; border-radius: var(--radius); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--red); font-weight: 700; font-size: 1.5rem; line-height: 1;
  flex-shrink: 0; transition: transform .18s ease; }
.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item[open] { border-color: rgba(200,162,74,.5); }
.faq-item .faq-body { padding: 2px 24px 22px; color: var(--ink); font-size: .98rem; line-height: 1.65; }

/* FOOTER — premium near-black + gold (matches the .sponsor-luxe / .luxe-band palette) */
footer { position: relative; background:
    radial-gradient(820px 460px at 8% 0%, rgba(230,193,92,.07), transparent 60%),
    linear-gradient(160deg, #141210 0%, var(--noir) 64%, #100d0a 100%);
  color: #d8cfbf; padding: 56px 0 30px; border-top: 1px solid rgba(230,193,92,.28); }
/* Fine gold top hairline glow across the footer */
footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent); opacity: .6; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
footer h4 { font-family: 'Playfair Display', serif; color: var(--gold-soft); margin-bottom: 14px; font-size: 1.15rem; }
footer a { color: var(--gold-rich); }
footer a:hover { color: var(--gold-soft); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.foot-list { list-style: none; display: grid; gap: 8px; font-size: .94rem; }
.socials { display: flex; gap: 14px; margin-top: 8px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); }
.foot-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem; color: #b5aa97; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

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

/* responsive */
@media (max-width: 1024px) {
  /* Tablet — keep multi-column so the page never feels empty on iPad-width screens */
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 56px 0; }
  .hero.hero-page { padding: 76px 0 60px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 18px 22px; gap: 16px; border-bottom: 1px solid rgba(200,162,74,.35);
    box-shadow: 0 16px 30px rgba(32,24,15,.14); }
  /* Active-link underline would float oddly in the stacked menu — pin it left instead */
  .nav-links.open a[aria-current="page"]::after { left: 0; right: auto; bottom: -6px; width: 34px; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .tier-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; text-align: center; }
}

/* ---- Per-page hero photos (override the base /hero.webp) ---- */
.hero.hero-food::before     { background-image: url(/img/food.webp); }
.hero.hero-crafts::before   { background-image: url(/img/crafts.webp); }
.hero.hero-about::before    { background-image: url(/img/dabke.webp); }
.hero.hero-sponsors::before { background-image: url(/img/festival.webp); }
.hero.hero-contact::before  { background-image: url(/img/festival.webp); }
.hero.hero-faq::before      { background-image: url(/img/dabke.webp); }
.hero.hero-schedule::before { background-image: url(/img/music.webp); }

/* ---- Schedule timeline (vertical line + day blocks; reuses the luxe palette) ---- */
.sched-day { margin: 0 auto 56px; max-width: 860px; }
.sched-day:last-child { margin-bottom: 0; }
.sched-day-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px; margin-bottom: 26px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(230,193,92,.28); }
.sched-day-head h3 { color: #fff; font-size: clamp(1.5rem,2.6vw,2rem); margin: 0; }
.sched-day-head .sched-hours { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--gold-rich); letter-spacing: .02em; }
.sched-day-head .sched-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(243,236,224,.55); border: 1px solid rgba(230,193,92,.32); border-radius: 999px; padding: 3px 11px; }
.sched-line { position: relative; padding-left: 30px; }
.sched-line::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold-rich), rgba(230,193,92,.18)); }
.sched-item { position: relative; padding: 0 0 22px; }
.sched-item:last-child { padding-bottom: 0; }
.sched-item::before { content: ""; position: absolute; left: -30px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--noir); border: 2px solid var(--gold-rich);
  box-shadow: 0 0 0 4px rgba(230,193,92,.12); }
.sched-item.is-key::before { background: linear-gradient(95deg, var(--gold-deep), var(--gold-soft)); border-color: var(--gold-soft); }
.sched-time { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem;
  color: var(--gold-soft); margin-bottom: 2px; }
.sched-title { display: block; color: #fff; font-weight: 600; font-size: 1.06rem; line-height: 1.3; }
.sched-desc { display: block; color: rgba(243,236,224,.72); font-size: .94rem; line-height: 1.55; margin-top: 4px; max-width: 60ch; }
.sched-cat { display: inline-block; margin-top: 7px; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold-rich); background: rgba(230,193,92,.08);
  border: 1px solid rgba(230,193,92,.26); border-radius: 6px; padding: 2px 9px; }
.admit-card { max-width: 720px; margin: 0 auto; text-align: center; border-radius: 18px; padding: 34px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid rgba(230,193,92,.24); }
.admit-card .admit-free { font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(1.6rem,3vw,2.2rem); margin: 0 0 8px;
  background: linear-gradient(95deg, var(--gold-deep), var(--gold-soft) 50%, var(--gold-rich));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.admit-card p { color: rgba(243,236,224,.8); margin: 0 auto; max-width: 52ch; }
@media (max-width: 620px) {
  .sched-day-head { gap: 4px 12px; }
}

/* ---- Audit fixes: heading wrap + mobile active-nav highlight ---- */
h2, h3, h4 { text-wrap: balance; }
.nav-links a[aria-current="page"] { color: var(--red); font-weight: 700; }

/* ============================================================
   BLACK + GOLD ACCENT LAYER — reusable, cascades to every page
   (an accent on top of the flag colors; most sections stay cream)
   ============================================================ */

/* Reusable gold text — gold-leaf gradient for headings/numbers on dark */
.gold-text {
  background: linear-gradient(95deg, var(--gold-deep), var(--gold-soft) 42%, var(--gold-rich) 60%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Top-level gold button — generalized from .sponsor-luxe .gold-btn */
.gold-btn {
  background: linear-gradient(95deg, var(--gold-deep), var(--gold-rich) 55%, var(--gold-soft)) !important;
  color: #1a1306 !important; font-weight: 700; box-shadow: 0 8px 22px rgba(230,193,92,.28);
}
.gold-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Reusable near-black + gold band — drop-in premium accent panel for any page */
.luxe-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(230,193,92,.10), transparent 60%),
    radial-gradient(760px 520px at 92% 96%, rgba(206,17,38,.08), transparent 62%),
    linear-gradient(160deg, #141210 0%, var(--noir) 60%, #100d0a 100%);
  color: #f3ece0;
  border-top: 1px solid rgba(230,193,92,.28);
  border-bottom: 1px solid rgba(230,193,92,.28);
}
.luxe-band::before { /* fine gold top hairline glow */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent); opacity: .6;
}
.luxe-band .kicker { color: var(--gold-rich); letter-spacing: .16em; }
.luxe-band h2, .luxe-band h3 { color: #fff; }
/* On dark bands the centered heading hairline reads better in brighter gold */
.luxe-band .section-head h2::after { background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft) 55%, var(--gold-rich)); }
.luxe-band p { color: rgba(243,236,224,.78); }
.luxe-band a { color: var(--gold-rich); }
.luxe-band a:hover { color: var(--gold-soft); }

/* FAITH & HERITAGE band (home) — St. Sharbel + host parish on near-black */
.faith-band { padding: 78px 0; }
.faith-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 52px; align-items: center; }
.faith-figure {
  position: relative; border-radius: 18px; overflow: hidden; padding: 14px;
  background: linear-gradient(160deg, rgba(230,193,92,.18), rgba(12,11,10,.35));
  border: 1px solid rgba(230,193,92,.32);
  box-shadow: 0 22px 54px rgba(0,0,0,.5);
}
.faith-figure img {
  display: block; width: 100%; height: auto; border-radius: 12px;
  border: 1px solid rgba(230,193,92,.45);
}
.faith-figure figcaption {
  margin-top: 12px; text-align: center; font-size: .82rem; letter-spacing: .04em;
  color: rgba(243,236,224,.6);
}
.faith-band .faith-copy h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 12px 0 16px; line-height: 1.1; }
.faith-band .faith-copy p { font-size: 1.06rem; line-height: 1.75; max-width: 52ch; margin-bottom: 14px; }
.faith-band .faith-copy .gold-btn { margin-top: 10px; }

/* NEWSLETTER band (home) — quiet cream band with gold accents above the footer */
.newsletter-band {
  background:
    radial-gradient(700px 320px at 88% 0%, rgba(230,193,92,.14), transparent 60%),
    linear-gradient(180deg, #f4ecda, var(--cream));
  border-top: 1px solid rgba(200,162,74,.3);
  text-align: center;
}
.newsletter-inner { max-width: 620px; margin: 0 auto; }
.newsletter-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--ink); }
.newsletter-band h2::after {
  content: ""; display: block; width: 56px; height: 2px; margin: 14px auto 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft) 55%, var(--gold-rich)); border-radius: 2px;
}
.newsletter-band p { color: var(--muted); margin: 14px 0 24px; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] { flex: 1 1 280px; max-width: 360px; }
.newsletter-note { margin-top: 14px !important; font-size: .85rem !important; color: var(--muted); }
.newsletter-msg { display: none; margin-top: 16px; font-size: .98rem; font-weight: 600; color: var(--green-dark); }

@media (max-width: 900px) {
  .faith-grid { grid-template-columns: 1fr; gap: 34px; }
  .faith-figure { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   SPONSORS — premium BLACK & GOLD band (flag colors kept for CTAs)
   ============================================================ */
.sponsor-luxe {
  --gold-1:#b8893b; --gold-2:#e6c15c; --gold-3:#f6dd98; --noir:#0c0b0a;
  position: relative; overflow: hidden; padding: 88px 0;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(230,193,92,.10), transparent 60%),
    radial-gradient(760px 520px at 92% 96%, rgba(206,17,38,.10), transparent 62%),
    linear-gradient(160deg, #141210 0%, #0c0b0a 60%, #100d0a 100%);
  color: #f3ece0;
  border-top: 1px solid rgba(230,193,92,.28);
  border-bottom: 1px solid rgba(230,193,92,.28);
}
.sponsor-luxe::before { /* fine gold top hairline glow */
  content:""; position:absolute; left:0; right:0; top:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent); opacity:.6;
}
.gold-text {
  background: linear-gradient(95deg, var(--gold-1), var(--gold-3) 42%, var(--gold-2) 60%, var(--gold-1));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sponsor-luxe .lux-grid {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center;
}
.sponsor-luxe .kicker { color: var(--gold-2); letter-spacing:.16em; }
.sponsor-luxe .lux-aside h2 { font-size: clamp(2rem,3.4vw,2.9rem); color:#fff; margin:14px 0 16px; line-height:1.08; }
.sponsor-luxe .lux-aside p { color: rgba(243,236,224,.72); font-size:1.06rem; line-height:1.7; max-width:46ch; }
.sponsor-luxe .lux-stats {
  display:grid; grid-template-columns:repeat(3,auto); gap:34px; margin:30px 0 26px;
}
.sponsor-luxe .lux-stats strong {
  display:block; font-family:'Playfair Display',serif; font-size:2.1rem; font-weight:800;
  background: linear-gradient(95deg,var(--gold-1),var(--gold-3) 50%,var(--gold-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sponsor-luxe .lux-stats span { font-size:.82rem; color:rgba(243,236,224,.6); letter-spacing:.02em; }
.sponsor-luxe .lux-logos { margin:8px 0 28px; }
.sponsor-luxe .lux-logos-label { display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.18em; color:rgba(243,236,224,.45); margin-bottom:12px; }
.sponsor-luxe .logo-row { display:flex; flex-wrap:wrap; gap:10px; }
.sponsor-luxe .logo-chip {
  font-family:'Playfair Display',serif; font-size:.95rem; color:var(--gold-3);
  padding:8px 16px; border:1px solid rgba(230,193,92,.4); border-radius:8px;
  background: rgba(230,193,92,.05); letter-spacing:.02em;
}
/* Gold button */
.gold-btn {
  background: linear-gradient(95deg,var(--gold-1),var(--gold-2) 55%,var(--gold-3)) !important;
  color:#1a1306 !important; font-weight:700; box-shadow:0 8px 22px rgba(230,193,92,.28);
}
.gold-btn:hover { filter:brightness(1.06); transform:translateY(-1px); }

/* Cards */
.sponsor-luxe .lux-cards { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.sponsor-luxe .lux-card {
  position:relative; display:flex; flex-direction:column; border-radius:18px; padding:30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border:1px solid rgba(230,193,92,.22); backdrop-filter: blur(2px);
}
.sponsor-luxe .lux-card.featured {
  background:
    linear-gradient(180deg, rgba(230,193,92,.12), rgba(12,11,10,.2)) padding-box,
    linear-gradient(160deg, var(--gold-3), var(--gold-1)) border-box;
  border:1.5px solid transparent; box-shadow:0 18px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(230,193,92,.15);
}
.sponsor-luxe .lux-card .badge {
  position:absolute; top:-12px; left:26px;
  background: linear-gradient(95deg,var(--gold-1),var(--gold-3)); color:#1a1306;
  font-size:.7rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 14px; border-radius:999px;
}
.sponsor-luxe .lux-card h3 { color:#fff; font-size:1.3rem; margin-bottom:8px; }
.sponsor-luxe .lux-card .price {
  font-family:'Playfair Display',serif; font-size:2.4rem; font-weight:800; margin:6px 0 18px;
  background: linear-gradient(95deg,var(--gold-1),var(--gold-3) 50%,var(--gold-2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.sponsor-luxe .lux-card .price span { font-size:.9rem; color:rgba(243,236,224,.55); -webkit-text-fill-color:rgba(243,236,224,.55); font-family:'Inter',sans-serif; font-weight:500; }
.sponsor-luxe .lux-card .price-talk { font-size:2rem; }
.sponsor-luxe .lux-card ul { list-style:none; display:grid; gap:12px; margin:0 0 24px; }
.sponsor-luxe .lux-card li { position:relative; padding-left:26px; font-size:.95rem; color:rgba(243,236,224,.85); line-height:1.5; }
.sponsor-luxe .lux-card li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--gold-2); font-weight:700; }
.sponsor-luxe .lux-card .btn { margin-top:auto; text-align:center; }
.sponsor-luxe .lux-card .btn.green { background:var(--green); }
.sponsor-luxe .lux-card .btn.green:hover { background:var(--green-dark); }

@media (max-width: 900px) {
  .sponsor-luxe .lux-grid { grid-template-columns:1fr; gap:38px; }
  .sponsor-luxe .lux-cards { grid-template-columns:1fr; }
  .sponsor-luxe .lux-stats { gap:22px; }
}


/* ================================================================
   WHITE / BLACK + LEBANESE FLAG (red-white-green) THEME — global.
   Gold is reserved for the crest emblem only. !important wins on
   every page including the home inline styles.
   ================================================================ */
:root{
  --cream:#ffffff !important;
  --paper:#ffffff !important;
  --ink:#161616 !important;
  --muted:#5c5c5c !important;
  --gold:#00732f !important;        /* repurpose old 'gold' accents → flag green */
  --gold-light:#0e8a40 !important;
}
body{ background:#ffffff !important; color:#161616 !important; }
h1,h2,h3,h4,.section-head h2{ color:#0e0e0e !important; }
a{ color:var(--green) !important; }

/* NAV: white, black links, red hover */
header.nav{ background:rgba(255,255,255,.93) !important; border-bottom:1px solid #ececec !important; }
.nav-links a,.brand,.menu-toggle{ color:#161616 !important; }
.nav-links a:hover,.nav-links a[aria-current="page"]{ color:var(--red) !important; }

/* Section backgrounds → white / light / flag-green band */
.tiers{ background:#f6f6f4 !important; }
.apply{ background:#ffffff !important; }
.cta-band{ background:#f6f6f4 !important; }
.stats{ background:var(--green) !important; border:0 !important; }
.stats .num{ color:#fff !important; }
.stats .label{ color:#e9fff1 !important; }

/* Cards → white with soft shadow + flag accents */
.card,.tier,.hero-card,.form-wrap{ background:#fff !important; border:1px solid #ececec !important; box-shadow:0 10px 30px rgba(0,0,0,.08) !important; color:#161616 !important; }
.card h3,.tier h3,.hero-card h3{ color:#0e0e0e !important; }
.card p,.tier li,.section-head p,.hero-card li{ color:#5c5c5c !important; }
.tier .price{ color:var(--green) !important; }
.tier.featured{ border:2px solid var(--red) !important; }
.card .icon{ background:rgba(206,17,38,.10) !important; color:var(--red) !important; }
.kicker{ color:var(--red) !important; }

/* Inputs */
input,select,textarea{ background:#fff !important; border:1.5px solid #d9d9d9 !important; color:#161616 !important; }
input::placeholder,textarea::placeholder{ color:#9a9a9a !important; }
input:focus,select:focus,textarea:focus{ border-color:var(--green) !important; box-shadow:0 0 0 3px rgba(0,115,47,.15) !important; }
label{ color:#161616 !important; }

/* Footer → black */
footer{ background:#0e0e0e !important; }
footer h4{ color:#fff !important; }
footer a{ color:#cfcfcf !important; }
footer a:hover{ color:#fff !important; }

/* Neutralize the old gold luxe bands → black + white + flag */
.sponsor-luxe,.luxe-band{ background:#0e0e0e !important; }
.gold-text,.sponsor-luxe .lux-card .price,.sponsor-luxe .lux-stats strong{ background:none !important; -webkit-text-fill-color:#fff !important; color:#fff !important; }
.sponsor-luxe .lux-card.featured{ border-color:var(--red) !important; }
.gold-btn{ background:var(--red) !important; color:#fff !important; }
.logo-chip{ color:#fff !important; border-color:rgba(255,255,255,.4) !important; }

/* CTAs keep flag colors */
.btn{ color:#fff !important; }
.btn:not(.green){ background:var(--red) !important; }
.btn.green{ background:var(--green) !important; }

/* Black edges: top nav + bottom footer in black, white content between */
header.nav{ background:#0e0e0e !important; border-bottom:2px solid #000 !important; }
.nav-links a,.brand,.menu-toggle{ color:#fff !important; }
.nav-links a:hover,.nav-links a[aria-current="page"]{ color:#f4647a !important; }
.brand .cedar path{ fill:#e6c15c; }

/* Hero headline/lead must stay LIGHT on the photo (theme forces h1 dark globally) */
.hero .hero-text h1{ color:#fdf8ee !important; text-shadow:0 2px 18px rgba(0,0,0,.6) !important; }
.hero .hero-text h1 .accent{ background:none !important; -webkit-text-fill-color:#f6d98a !important; color:#f6d98a !important; }
.hero .hero-text .lead{ color:#f2ede2 !important; text-shadow:0 1px 12px rgba(0,0,0,.55) !important; }
.hero .hero-text .eyebrow{ color:#f6d98a !important; }

/* Faith crest → clean circular medallion (no box frame, nothing cropped) */
.faith-figure{ background:none !important; border:0 !important; box-shadow:none !important; padding:0 !important; overflow:visible !important; max-width:440px; margin-inline:auto; }
.faith-figure img{ border:0 !important; border-radius:50%; box-shadow:0 0 60px rgba(230,193,92,.18), 0 20px 50px rgba(0,0,0,.55) !important; }
.faith-figure figcaption{ margin-top:16px !important; }

/* ===== NAV polish: compact one-line brand + tighter links ===== */
.nav-inner{ gap:18px; }
.brand{ white-space:nowrap; flex-shrink:0; font-size:1rem !important; gap:9px; line-height:1; }
.brand .cedar{ width:26px; height:26px; flex-shrink:0; }
.nav-links{ gap:16px; flex-wrap:wrap; justify-content:flex-end; }
.nav-links a{ font-size:.88rem; white-space:nowrap; }
.nav-cta{ white-space:nowrap; }
@media (max-width:1240px){ .nav-links{ gap:13px; } .nav-links a{ font-size:.83rem; } .brand{ font-size:.92rem !important; } }
