/* ==========================================================================
   Lucky Opportunity Organization — Design System
   Palette: clover green + lucky gold on warm cream
   ========================================================================== */

:root {
  /* Brand colors */
  --green-900: #0f3d27;
  --green-700: #1f7a4d;
  --green-600: #2a9461;
  --green-500: #34a86f;
  --green-100: #e3f3ea;

  --gold-600: #d99a16;
  --gold-500: #f4b323;
  --gold-300: #fbd97a;
  --gold-100: #fdf3da;

  --cream: #fbf8f1;
  --paper: #ffffff;
  --ink: #1c2620;
  --ink-soft: #4a5650;
  --line: #e7e2d6;

  --shadow-sm: 0 1px 3px rgba(15, 61, 39, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 61, 39, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 61, 39, 0.16);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1120px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

/* --------------------------------------------------------------------------
   Base / reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { max-width: 100%; display: block; }

a { color: var(--green-700); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--green { background: var(--green-900); color: #eafff3; }
.section--green h2, .section--green h3 { color: #fff; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}
.section--green .eyebrow { color: var(--gold-300); }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-left: auto; margin-right: auto; }
.center .eyebrow { display: inline-flex; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold-500); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--gold-300); color: var(--green-900); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--green { background: var(--green-700); color: #fff; }
.btn--green:hover { background: var(--green-900); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn--outline:hover { background: var(--green-700); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand-badge {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--green-900);
  border: 2px solid var(--green-900);
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 4px var(--green-900);
  display: grid; place-items: center;
  font-family: "Pinyon Script", "Snell Roundhand", "Apple Chancery", cursive;
  font-size: 1.85rem;
  line-height: 1;
  padding-bottom: 4px;
  flex: none;
}
.site-footer .brand-badge { background: #fff; color: var(--green-900); }

.hero-logo {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 0 1.6rem;
}
.brand-name { line-height: 1.05; }
.brand-name b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--green-900); font-weight: 600; }
.brand-name span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
}
.nav-links a:hover { background: var(--green-100); color: var(--green-900); }
.nav-links a.active { color: var(--green-700); }
.nav-cta { margin-left: .4rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; left: 0; right: 0; }
.nav-toggle span::after { position: absolute; top: 7px; left: 0; right: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .28s ease;
    visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: .8rem .75rem; font-size: 1.05rem; }
  .nav-cta { margin: .5rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(244,179,35,.18), transparent 60%),
    linear-gradient(160deg, #ffffff 0%, var(--cream) 55%, var(--green-100) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero h1 { margin-bottom: 1rem; }
.hero .lead { margin-bottom: 1.8rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem .4rem .5rem;
  font-size: .85rem; font-weight: 700; color: var(--green-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.hero-badge i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-style: normal; font-size: .9rem;
}
.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero-art::after {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,179,35,.45), transparent 70%);
}
.hero-art .clover { font-size: 3rem; line-height: 1; }
.hero-art blockquote { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.35; margin: 0; position: relative; z-index: 1; }
.hero-art cite { font-style: normal; font-size: .9rem; opacity: .85; font-family: var(--font); }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 260px; }
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-500);
  line-height: 1;
}
.section--green .stat span { color: #cdeede; font-size: .95rem; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } }

/* --------------------------------------------------------------------------
   Cards / grid
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card ul { color: var(--ink-soft); margin: .6rem 0 0; padding-left: 1.1rem; font-size: .96rem; }
.card ul li { margin-bottom: .3rem; }

/* feature list (about) */
.feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature .ico {
  flex: none;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center; font-size: 1.3rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .97rem; }

/* two-column media block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse .split-media { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}
.split-media {
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--gold-100), var(--green-100));
  border: 1px solid var(--line);
  min-height: 320px;
  display: grid; place-items: center;
  padding: 2rem;
  text-align: center;
  color: var(--green-700);
}
.split-media .emoji { font-size: 4.5rem; }

/* --------------------------------------------------------------------------
   Steps / process
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: grid; place-items: center; font-weight: 800;
  font-family: var(--font-display);
}
.step h3 { margin-bottom: .2rem; font-size: 1.1rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "🍀";
  position: absolute; font-size: 12rem; opacity: .08;
  top: -2rem; right: -1rem; transform: rotate(15deg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8f3e4; max-width: 50ch; margin: 0 auto 1.6rem; }

/* --------------------------------------------------------------------------
   Contact / forms
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center; box-shadow: var(--shadow-sm); }
.contact-card .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-size: 1.4rem; }
.contact-card b { display: block; color: var(--green-900); font-family: var(--font-display); }
.contact-card a, .contact-card span { color: var(--ink-soft); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .4rem; color: var(--green-900); }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green-600); background: #fff; outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin: .9rem 0 0; }
.hp { position: absolute; left: -9999px; }

/* --------------------------------------------------------------------------
   FAQ / accordion
   -------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .25rem 1.4rem; margin-bottom: .9rem;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-weight: 700; color: var(--green-900); font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green-600); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); margin: 0 0 1.1rem; }

/* --------------------------------------------------------------------------
   Page hero (interior)
   -------------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(244,179,35,.16), transparent 60%),
    linear-gradient(160deg, #fff, var(--green-100));
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { margin-bottom: 0; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { font-weight: 600; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--green-900); color: #cdeede; padding: clamp(3rem, 6vw, 4rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer .brand-name b { color: #fff; }
.site-footer .brand-name span { color: #8fc4ab; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer a { color: #cdeede; }
.site-footer a:hover { color: var(--gold-300); }
.footer-about p { color: #a9d6c2; font-size: .95rem; max-width: 34ch; }
.social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  color: #fff; font-size: 1.1rem;
}
.social a:hover { background: var(--gold-500); color: var(--green-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .85rem; color: #8fc4ab;
}
.footer-bottom a { color: #8fc4ab; }
.footer-bottom a:hover { color: var(--gold-300); }

/* --------------------------------------------------------------------------
   Misc utilities
   -------------------------------------------------------------------------- */
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag { background: var(--green-100); color: var(--green-700); border-radius: 999px; padding: .35rem .9rem; font-size: .85rem; font-weight: 700; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

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

/* --------------------------------------------------------------------------
   Featured / recent events
   -------------------------------------------------------------------------- */
.feature-event {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.feature-event__media {
  position: relative;
  min-height: 320px;
  background: var(--green-100);
}
.feature-event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.feature-event__media .img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 1.05rem;
  background: repeating-linear-gradient(45deg, var(--green-100), var(--green-100) 12px, #d9ecdf 12px, #d9ecdf 24px);
}
.feature-event__body { padding: 2.25rem 2.5rem 2.25rem 0; }
.event-date {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .85rem; letter-spacing: .02em;
  color: var(--gold-600);
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .feature-event { grid-template-columns: 1fr; }
  .feature-event__media { min-height: 240px; }
  .feature-event__body { padding: 1.5rem 1.5rem 2rem; }
}

.feature-event--reverse { grid-template-columns: 1fr 1.15fr; }
.feature-event--reverse .feature-event__media { order: 2; }
.feature-event--reverse .feature-event__body { order: 1; padding: 2.25rem 0 2.25rem 2.5rem; }
@media (max-width: 760px) {
  .feature-event--reverse { grid-template-columns: 1fr; }
  .feature-event--reverse .feature-event__media { order: 0; }
  .feature-event--reverse .feature-event__body { order: 0; padding: 1.5rem 1.5rem 2rem; }
}
.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.event-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-100);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.event-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.event-gallery .img-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: .5rem; font-size: .8rem; color: var(--green-700);
  background: repeating-linear-gradient(45deg, var(--green-100), var(--green-100) 10px, #d9ecdf 10px, #d9ecdf 20px);
}
@media (max-width: 680px) { .event-gallery { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Homepage event cards (link to events page)
   -------------------------------------------------------------------------- */
.event-link-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
  color: var(--ink);
}
.event-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); }
.event-link-card__media { aspect-ratio: 3 / 2; background: var(--green-100); }
.event-link-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-link-card__body { padding: 1.25rem 1.4rem 1.5rem; }
.event-link-card__body h3 { margin: .35rem 0 .4rem; }
.event-link-card__body p { margin: 0; color: var(--ink-soft); }

/* Header logo image (replaces text badge) */
.brand-logo { height: 50px; width: auto; display: block; }
@media (max-width: 600px) { .brand-logo { height: 40px; } }
