/* Basic reset & variables */
:root {
  --bg: #0f0f11;
  --fg: #1a1a1d;
  --ink: #0b0b0c;
  --text: #1a1a1a;
  --muted: #6b7280;
  --brand: #2b6cb0;
  --brand-2: #6c63ff;
  --surface: #ffffff;
  --surface-alt: #f6f7fb;
  --ring: rgba(108, 99, 255, 0.35);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  font-weight: 400;
}

/* Headings with friendly, rounded feel */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-weight: 800; }
h2 { font-weight: 700; font-size: 2rem; margin-bottom: 2.5rem; }
#framework h2 { margin-top: -1rem; }
h3 { font-weight: 600; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.small { width: min(900px, 92%); }
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding: 0.8rem 0; }
.brand { text-decoration:none; color:var(--ink); font-weight:800; font-size:1.05rem; letter-spacing:0.1px; }
.nav { list-style:none; display:flex; gap:1rem; margin:0; padding:0; }
.nav a { 
  text-decoration:none; 
  color:var(--ink); 
  padding:0.5rem 0.6rem; 
  border-radius:8px;
  transition: all 0.3s ease;
  position: relative;
}
.nav a:hover, .nav a:focus { 
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}
.nav a.active {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 600;
}

.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 0; top: 0; width:auto; height:auto; padding:0.75rem 1rem; background:#000; color:#fff; z-index:1000; }

.site-header { position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid #eee; z-index: 100; }

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}


.hero {
  position: relative;
  background: radial-gradient(1000px 600px at 10% 10%, #eef2ff, transparent),
              radial-gradient(900px 500px at 80% 0%, #f0fff4, transparent),
              #ffffff;
  padding: 6rem 0 4rem;
  text-align:center;
  overflow: hidden;
}

/* Hero background images - will rotate */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Dark overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 11, 12, 0.25), rgba(43, 108, 176, 0.2));
  z-index: 1;
}

/* Ensure content is above background */
.hero-inner {
  position: relative;
  z-index: 2;
}

/* Background image states - you'll add your images here */
.hero.bg-generations::before {
  background-image: url('hero-generations.jpg');
  opacity: 0.5;
}

.hero.bg-culture::before {
  background-image: url('hero-culture.jpg');
  opacity: 0.5;
}

.hero.bg-harmony::before {
  background-image: url('hero-harmony.jpg');
  opacity: 0.5;
}

.hero h1 { 
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); 
  line-height: 1.15; 
  margin: 0; 
  color: #0b0b0c;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero .accent { 
  color: #0b0b0c;
  font-weight: 800;
}

/* Rotating text container */
.lead { 
  font-size: clamp(1.3rem, 2.8vw, 1.65rem); 
  color: #0b0b0c; 
  margin: 1rem auto 2rem;
  max-width: 680px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  min-height: 2.5em;
  font-family: 'Playwrite US Modern', cursive;
  letter-spacing: 0.01em;
  font-size: 2.2rem;
}

.rotating-text {
  position: relative;
  display: block;
}

.text-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  white-space: nowrap;
}

.text-item.active {
  position: relative;
  left: auto;
  transform: none;
  opacity: 1;
}
.cta-group { display:flex; gap:0.8rem; justify-content:center; flex-wrap: wrap; }
.btn { 
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  padding:0.9rem 1.4rem; 
  border-radius: 14px; 
  border: 2px solid #e6e6ef; 
  text-decoration:none; 
  cursor:pointer; 
  transition: all 0.2s ease; 
  font-weight:600;
  font-size: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn.primary { 
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); 
  color: #fff; 
  border: none;
  box-shadow: 0 4px 14px rgba(108, 99, 255, 0.25);
}
.btn.ghost { 
  background:#fff; 
  color:#111;
  border-color: #d1d5db;
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 28px rgba(0,0,0,0.12); 
}
.btn.primary:hover {
  box-shadow: 0 10px 28px rgba(108, 99, 255, 0.35);
}
.btn:focus { outline: 3px solid var(--ring); outline-offset: 2px; }

.section { padding: 4.5rem 0; }
.section.alt { background: var(--surface-alt); }

/* Add breathing room to content */
.section p {
  line-height: 1.7;
}

/* About section with floating card effect */
.about-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(17, 17, 17, 0.08);
  margin-bottom: 3rem;
}

.about-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.profile-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sectors strip - seamless, no card */
.sectors-strip {
  text-align: center;
  padding: 2rem 0 0;
  max-width: 100%;
  margin: 0 auto;
}

.sectors-strip h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.sector-list {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text);
  margin: 0 auto 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.sector-list .dot {
  color: var(--brand-2);
  font-weight: 900;
  margin: 0 0.5rem;
  font-size: 1.2em;
}

.signature-promise {
  font-size: 1.3rem;
  color: var(--muted);
  font-family: 'Playwrite US Modern', cursive;
  line-height: 1.6;
  margin-top: 1.8rem;
  font-weight: 400;
}

.grid-2 { display:grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card { background:#fff; border:1px solid #eee; border-radius: 16px; padding: 1.1rem 1.1rem; box-shadow: 0 6px 18px rgba(17,17,17,0.03); }
.offer.card h3 { margin-top:0; }

/* Offerings List with Purple Dots */
.offerings-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.offerings-list::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  opacity: 0.3;
}
.offering-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}
.offering-item:last-child {
  margin-bottom: 0;
}
.offering-item h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  position: relative;
}
.offering-item h3::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 4px 15px rgba(107, 99, 255, 0.3);
  z-index: 1;
}
.offering-item p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.checklist { padding-left: 1.1rem; }
.checklist li { margin: 0.2rem 0; }

.pillars { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar { 
  background:#fff; 
  border-radius: 16px; 
  padding: 2rem 1.5rem; 
  position: relative;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 99, 255, 0.15);
}
.pillar h3 { 
  margin-top:0; 
  font-size: 1.05rem; 
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pillar h3::before {
  content: attr(data-number);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.badges { display:flex; flex-wrap:wrap; gap:1.2rem; margin: 1rem 0 1.5rem; justify-content: center; }
.badge { 
  background:#fff; 
  border:1px solid #e6e6ef; 
  padding: 0.65rem 1.2rem; 
  border-radius: 999px; 
  font-weight:600; 
  font-size:1rem;
  box-shadow: 0 4px 20px rgba(107, 99, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(107, 99, 255, 0.25);
}
.note { 
  color: var(--muted); 
  margin-top: 0.6rem; 
  font-family: 'Playwrite US Modern', cursive;
  font-size: 1.3rem;
  text-align: center;
  font-weight: 400;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(107, 99, 255, 0.15);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--brand-2);
  opacity: 0.2;
  line-height: 1;
}
.testimonial .quote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

/* Events Section */
.event-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), var(--brand-2)) 1;
  max-width: 900px;
  margin: 0 auto;
}

.event-header {
  margin-bottom: 2rem;
  text-align: center;
}

.event-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  font-weight: 700;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.meta-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid transparent;
  border-image: linear-gradient(135deg, var(--brand), var(--brand-2)) 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 99, 255, 0.15);
}

.meta-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
  visibility: hidden;
  height: 0;
}

.meta-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.meta-item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.event-description {
  margin-bottom: 2rem;
}

.event-description h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.event-description p {
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.event-contact {
  background: #f9fafb;
  border-left: 3px solid var(--brand-2);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.event-contact p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.event-contact strong {
  color: var(--text);
}

.event-contact a {
  color: var(--brand-2);
  text-decoration: none;
  font-weight: 500;
}

.event-contact a:hover {
  text-decoration: underline;
}

.rsvp-btn {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  overflow-y: auto;
}

.modal.hidden {
  display: none;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.modal-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  color: var(--text);
}

.modal-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.rsvp-form .form-grid {
  margin-bottom: 1rem;
}

.rsvp-form select {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
  cursor: pointer;
}

.rsvp-form select:focus {
  outline: 3px solid var(--ring);
  border-color: transparent;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.modal-actions .btn {
  flex: 1;
}

/* Past Events Page Styles */
.past-events-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.past-event-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.past-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-left-color: var(--brand-2);
}

.past-event-badge {
  display: inline-block;
  background: #f3f4f6;
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.past-event-card h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.past-event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e5e7eb;
}

.past-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.past-event-description {
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.past-event-highlights {
  background: var(--surface-alt);
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.past-event-highlights strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-weight: 700;
}

.past-event-highlights ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.past-event-highlights li {
  margin: 0.4rem 0;
  line-height: 1.6;
  color: var(--text);
}

.back-link:hover {
  color: var(--brand);
  text-decoration: underline;
}

/* Past Events Page Styles */
.past-events-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.past-event-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #e5e7eb;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.past-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-left-color: var(--brand-2);
}

.past-event-badge {
  display: inline-block;
  background: #f3f4f6;
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.past-event-card h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.past-event-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e5e7eb;
}

.past-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.past-event-description {
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.past-event-highlights {
  background: var(--surface-alt);
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.past-event-highlights strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text);
  font-weight: 700;
}

.past-event-highlights ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.past-event-highlights li {
  margin: 0.4rem 0;
  line-height: 1.6;
  color: var(--text);
}

.back-link:hover {
  color: var(--brand);
  text-decoration: underline;
}

.contact { border-top:1px solid #eee; }
.contact-form { margin-top: 1rem; }
.form-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.form-grid label { display:flex; flex-direction:column; gap:0.35rem; font-weight:600; }
.form-grid input, .form-grid textarea {
  border:1px solid #ddd; border-radius:12px; padding:0.8rem 0.9rem; font: inherit; background:#fff;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 3px solid var(--ring); border-color: transparent; }

.span-2 { grid-column: span 2; }

/* Honeypot field - hidden from users and screen readers */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Form status messages */
.alert { 
  margin-top: 1rem; 
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.1rem; 
  border-radius: 12px; 
  font-weight: 500;
  text-align: center;
}
.alert.success { 
  background: #ecfdf5; 
  border: 1px solid #a7f3d0; 
  color: #065f46; 
}
.alert.error { 
  background: #fef2f2; 
  border: 1px solid #fecaca; 
  color: #991b1b; 
}
.hidden { display: none; }

.site-footer { padding: 2rem 0; border-top: 1px solid #eee; text-align:center; color: var(--muted); }

.tiny { font-size: 0.9rem; color: var(--muted); }
.email-prefer {
  font-family: 'Playwrite US Modern', cursive;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  margin-top: 1.5rem;
}
.email-prefer a {
  color: var(--brand-2);
  text-decoration: none;
  transition: color 0.2s ease;
}
.email-prefer a:hover {
  color: var(--brand);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  
  /* Allow sector list to wrap on mobile */
  .sector-list {
    white-space: normal;
    font-size: 1rem;
  }
  
  /* Events responsive */
  .event-card {
    padding: 1.5rem;
  }
  
  .event-card h3 {
    font-size: 1.4rem;
  }
  
  .event-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .about-card {
    padding: 1.5rem;
  }
  
  .about-image {
    margin-bottom: 1.5rem;
  }
  
  .profile-photo {
    max-width: 300px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide and transform navigation for mobile */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 4rem 0 2rem 0;
    overflow-y: auto;
  }
  
  .main-nav.active {
    transform: translateX(0);
  }
  
  .nav {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  
  .nav li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav li:last-child {
    border-bottom: none;
  }
  
  .nav a {
    display: block;
    padding: 1rem 0.8rem;
    border-radius: 0;
    font-size: 1.1rem;
  }
  
  .nav a:hover,
  .nav a:focus {
    background: var(--surface-alt);
  }
}
