/* ============================================================
   Education Transformation Enterprises Inc  —  styles.css
   Casumi-inspired Finance Consulting Design
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy:         #294283;
  --navy-dark:    #1C2E5C;
  --accent:       #F68B10;
  --accent-hover: #DD7A0A;
  --page-bg:      #F7F8FC;
  --white:        #ffffff;
  --ink:          #000000;
  --text:         #333333;
  --text-light:   #69B6B4;
  --border:       #E5E7EB;
  --card-shadow:  0 2px 20px rgba(41, 66, 131, 0.06);
  --card-hover:   0 8px 40px rgba(41, 66, 131, 0.10);
  --nav-bg:       #ffffff;
  --blue:         #3B6AB9;
  --orange:       #F68B10;
  --pink:         #EE4589;
  --teal:         #69B6B4;
  --sky:          #53AFE6;
  --muted:        #69B6B4;
  --font-body:    'Inter', 'Roboto', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
  --max-w:        1200px;
  --radius:       10px;
  --ease:         250ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--white); color: var(--text); line-height: 1.7; font-size: 1rem; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }
a     { color: inherit; text-decoration: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; left: 0; transform: translateY(-100%);
  padding: 0.5rem 1rem; background: var(--accent); color: #fff;
  font-weight: 600; z-index: 999; transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ================================================================
   HEADER & NAV
================================================================ */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 300ms ease;
}

.header-top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.brand-link { display: flex; align-items: center; gap: 0.65rem; color: var(--navy); }

.brand-logo {
  width: 40px; height: 40px;
  border-radius: 8px; object-fit: cover;
  border: none; flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  white-space: normal; line-height: 1.3;
}

.menu-btn {
  display: none; background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--navy);
  padding: 0.35rem 0.6rem; cursor: pointer; font-size: 1.25rem; line-height: 1;
  flex-shrink: 0; align-items: center; justify-content: center;
}
.menu-btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.nav-bar { background: var(--white); border-top: 1px solid var(--border); }

.nav-list {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 0.75rem;
  display: flex; flex-wrap: wrap;
}

.nav-link {
  display: block; padding: 0.65rem 0.85rem;
  color: var(--text); font-size: 0.875rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }
.nav-link:focus-visible { outline: 3px solid var(--accent); outline-offset: -2px; }

/* ================================================================
   HERO  (Home)
================================================================ */

.hero {
  position: relative;
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--navy-dark);
  background-image: url('https://lh3.googleusercontent.com/sitesv/APaQ0SROzg0UQe3uHL-Q2OyNx5kgF5msMGSbMAtQ_T9fDgWwolXEqhcK1_7vy0Ks_e4vBqVHUaXWXW6x93KM6D4ZeWqLQW1_Ne9InbHuYLknhwKYFQk4f1qtzCYLhuNdFoskyOmkqGiG5Ghh7bilzZ1C4ZRkMZWHSY4h0skXwD0_AB9nN_MnWX-3HDXoKgQ=w1280');
  background-size: cover; background-position: center;
  padding: 1.5rem 1.5rem;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28, 46, 92, 0.82) 0%, rgba(41, 66, 131, 0.68) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 780px; width: 100%; }

.hero-logo {
  width: min(110px, 35vw);
  margin: 0 auto 0.5rem;
  border-radius: var(--radius);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8); font-weight: 400; line-height: 1.5;
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--accent); color: #fff;
  border-radius: 50px; font-weight: 600; font-size: 1rem;
  transition: background var(--ease), transform var(--ease);
  box-shadow: 0 4px 20px rgba(246, 139, 16, 0.35);
}
.hero-cta:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ================================================================
   PAGE HEADER  (inner pages)
================================================================ */

.page-header {
  background: var(--page-bg); color: var(--navy);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--navy); margin: 0;
}
.page-header p {
  margin-top: 0.65rem; font-size: 1.05rem;
  color: var(--text); font-weight: 400;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ================================================================
   MAIN CONTENT WRAPPER
================================================================ */

.main-wrap {
  max-width: var(--max-w); margin: 0 auto; padding: 3rem 1.5rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.card:hover { box-shadow: var(--card-hover); }
.card h2 { color: var(--navy); font-family: var(--font-display); font-size: 1.45rem; margin-bottom: 0.85rem; font-weight: 600; }
.card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; }
.card p  { color: var(--text); margin-bottom: 0.85rem; line-height: 1.75; }
.card p:last-child { margin-bottom: 0; }

/* --- Icon Cards Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-top: none;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.icon-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent); border-radius: var(--radius) var(--radius) 0 0;
}
.icon-card:hover { box-shadow: var(--card-hover); transform: translateY(-4px); }
.icon-card .icon {
  font-size: 1.6rem; margin-bottom: 1rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246, 139, 16, 0.08);
  border-radius: 12px;
}
.icon-card h3    { color: var(--navy); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 600; }
.icon-card p     { color: var(--text); font-size: 0.94rem; line-height: 1.7; }

/* --- Section Title --- */
.section-title {
  color: var(--navy); font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700;
  margin-bottom: 1.5rem; padding-bottom: 0;
  border-bottom: none;
  position: relative;
}
.section-title::after {
  content: ''; display: block;
  width: 50px; height: 3px;
  background: var(--accent);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* --- Highlight Box --- */
.highlight-box {
  background: var(--page-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.highlight-box p { color: var(--text); line-height: 1.75; }

/* --- Check List --- */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative; color: var(--text); line-height: 1.7;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700; font-size: 1.05rem;
}

/* --- Past Activities --- */
.past-activities-wrap { display: grid; gap: 1.5rem; }
.activity-card { margin-bottom: 0; }
.activity-card h2 { margin-bottom: 1rem; }

.event-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.photo-grid figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--page-bg);
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--ease), filter var(--ease);
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.86);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 3rem);
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(28, 46, 92, 0.9);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.lightbox-caption {
  margin: 0.75rem 0 0;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
}

/* --- Two-column layout --- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block; padding: 0.7rem 1.6rem;
  border-radius: 50px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all var(--ease);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.btn-primary  { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(246, 139, 16, 0.25); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 24px rgba(246, 139, 16, 0.35); }
.btn-secondary { background: var(--navy); color: #fff; box-shadow: 0 4px 16px rgba(41, 66, 131, 0.2); }
.btn-secondary:hover { background: var(--navy-dark); }
.btn-outline  { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* --- Fee Table --- */
.fee-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.fee-table th {
  background: var(--navy); color: #fff;
  padding: 0.9rem 1.25rem; text-align: left; font-weight: 600;
  font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.02em;
}
.fee-table td { padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:nth-child(even) td { background: var(--page-bg); }
.fee-table tr:hover td { background: rgba(246, 139, 16, 0.04); }
.fee-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--card-shadow); margin-bottom: 2rem; border: 1px solid var(--border); }

/* --- Contact Form --- */
.contact-form .form-group { margin-bottom: 1.1rem; }
.contact-form label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy); font-size: 0.92rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--white); color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 139, 16, 0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* --- Social Grid --- */
.social-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  margin-top: 0.75rem;
}
.social-link {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1rem 0.5rem;
  background: var(--page-bg); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.social-link:hover {
  background: var(--white); transform: translateY(-2px);
  box-shadow: var(--card-hover);
}
.social-icon { font-size: 1.6rem; line-height: 1; }
.social-name { font-size: 0.8rem; color: var(--text); }

/* --- Donor List --- */
.donor-list { columns: 2; column-gap: 2rem; }
.donor-list li { padding: 0.4rem 0; color: var(--text); break-inside: avoid; }
.donor-list li::before { content: '⭐ '; }

/* --- Step/Process List --- */
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.85rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
  box-shadow: 0 3px 12px rgba(246, 139, 16, 0.25);
}

/* ================================================================
   GOOGLE CALENDAR EMBED
================================================================ */

.gcal-section {
  background: var(--page-bg);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}
.gcal-wrap {
  max-width: var(--max-w); margin: 0 auto;
}
.gcal-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.gcal-icon {
  font-size: 2rem; line-height: 1;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246, 139, 16, 0.1);
  border-radius: 14px; flex-shrink: 0;
}
.gcal-title {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 700; color: var(--navy);
  margin: 0 0 0.2rem;
}
.gcal-subtitle {
  font-size: 1rem; color: var(--text); margin: 0; line-height: 1.5;
}
.custom-calendar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.calendar-nav-btn {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ease);
}

.calendar-nav-btn:hover {
  background: var(--accent-hover);
}

.calendar-nav-btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

.calendar-month-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  min-width: 200px;
  text-align: center;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.weekday {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  padding: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  line-height: 1.2;
  overflow: hidden;
}

.calendar-day:hover {
  background: rgba(232, 89, 79, 0.05);
  border-color: var(--accent);
}

.calendar-day.other-month {
  color: var(--text-light);
  opacity: 0.5;
}

.calendar-day.today {
  background: rgba(246, 139, 16, 0.1);
  border-color: var(--accent);
  font-weight: 600;
}

.day-number {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.day-events {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.day-events.multiple::after {
  content: ' +';
}

/* ================================================================
   CALENDAR EVENT MODAL
================================================================ */

.calendar-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.calendar-modal.open {
  display: flex;
}

.calendar-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
}

.calendar-modal-dialog {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.calendar-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color var(--ease);
}

.calendar-modal-close:hover {
  color: var(--navy);
}

.calendar-modal-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.calendar-modal-date {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.calendar-modal-event {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.calendar-modal-event:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.calendar-modal-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.calendar-modal-time {
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.calendar-modal-location {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calendar-modal-location::before {
  content: '📍';
  font-size: 1rem;
}

.calendar-modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.gcal-note {
  text-align: center; margin-top: 1.25rem;
  font-size: 0.92rem; color: var(--text);
}
.gcal-actions {
  margin-top: 1rem;
  margin-bottom: 0;
}
.gcal-note a {
  color: var(--accent); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
.gcal-note a:hover { color: var(--accent-hover); }

/* ================================================================
   EVENTS CALENDAR
================================================================ */

.events-section {
  background: var(--page-bg);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border);
}
.events-wrap {
  max-width: var(--max-w); margin: 0 auto;
}
.events-intro {
  text-align: center; color: var(--text);
  font-size: 1.05rem; margin-bottom: 2.5rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.events-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.events-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.event-card {
  display: flex; gap: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.event-card:hover { box-shadow: var(--card-hover); transform: translateY(-3px); }

.event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 64px; height: 72px;
  background: var(--accent);
  border-radius: 10px;
  color: #fff; flex-shrink: 0;
}
.event-month {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  line-height: 1;
}
.event-day {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700; line-height: 1.1;
}

.event-details { flex: 1; min-width: 0; }
.event-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.35rem;
}
.event-meta {
  font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem;
}
.event-time, .event-location { white-space: nowrap; }
.event-desc {
  font-size: 0.9rem; color: var(--text); line-height: 1.65; margin-bottom: 0.85rem;
}
.event-register {
  padding: 0.5rem 1.2rem; font-size: 0.85rem;
}

/* ================================================================
   REVIEWS
================================================================ */

.reviews-section {
  margin-bottom: 2rem;
}

.reviews-intro {
  margin-top: -0.4rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.25rem;
  transition: box-shadow var(--ease), transform var(--ease);
}

.review-card:hover {
  box-shadow: var(--card-hover);
  transform: translateY(-3px);
}

.review-stars {
  color: #F4B400;
  letter-spacing: 0.08em;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.review-text {
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.75;
}

.review-author {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ================================================================
   FOOTER
================================================================ */

.site-footer {
  background: var(--navy-dark);
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  align-items: center; justify-content: space-between;
}
.footer-inner p { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.65); font-size: 0.88rem; transition: color var(--ease); }
.footer-links a:hover { color: #fff; }

/* ================================================================
   RESPONSIVE
================================================================ */

@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .nav-bar  { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
  .nav-bar.open { max-height: 640px; overflow-y: auto; }
  .nav-list { flex-direction: column; padding: 0.5rem 0.8rem 0.9rem; }
  .nav-link { padding: 0.7rem 0.9rem; border-bottom: none; border-radius: 8px; font-size: 0.95rem; }
  .nav-link.active { background: rgba(246, 139, 16, 0.06); border-bottom: none; }
  .brand-name { font-size: 0.93rem; }
  .two-col    { grid-template-columns: 1fr; }
  .donor-list { columns: 1; }
  .hero { min-height: 200px; padding: 1.5rem 1.25rem; }
  .hero-logo { width: min(120px, 40vw); }
  .fee-table th, .fee-table td { padding: 0.6rem 0.75rem; font-size: 0.88rem; }
  .card-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid img { height: 250px; }
  .events-calendar { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .gcal-header { flex-direction: column; text-align: center; gap: 0.5rem; }
  .calendar-day { font-size: 0.75rem; }
  .day-number { font-size: 0.8rem; }
  .day-events { font-size: 0.65rem; }
  .calendar-modal-dialog { max-width: 95%; padding: 1.5rem; }
  .calendar-modal-title { font-size: 1.1rem; }
  .event-card { flex-direction: row; }
  .main-wrap { padding: 2rem 1.25rem; }
  .page-header { padding: 2rem 1.25rem; }
}
