:root {
  --bg-primary: #F7F5F2;   /* warm off-white */
  --bg-secondary: #ECE9E4; /* soft stone */
  --text-primary: #2B2B2B;
  --text-muted: #6F6F6F;
  --accent: #9A8F82;       /* muted taupe */
  --divider: rgba(0,0,0,0.06);
  --shadow-soft: 0 10px 30px rgba(43, 43, 43, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-full: 999px;
  /* Memorial page colors */
  --navy: #1a2332;
  --gold: #c9a961;
  --sage-green: #87a96b;
  --cream: #faf8f3;
}

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

body {
  margin: 0;
  font-family: "Inter", "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  background: radial-gradient(circle at top left, var(--bg-secondary), var(--bg-primary));
  color: var(--text-primary);
  line-height: 1.75;
}

/* Fade-in animation script will be added via inline script */

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0;
}

h1 {
  font-weight: 500;
}

h2 {
  font-weight: 400;
}

h3 {
  font-weight: 400;
}

p {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

/* Ensure icons maintain their fixed size and don't scale with container */
img.card-icon {
  max-width: 64px !important;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(247, 245, 242, 0.9), rgba(247, 245, 242, 0.6));
  border-bottom: 1px solid var(--divider);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(154, 143, 130, 0.35);
}

.logo-text {
  font-family: "Inter", "Source Sans 3", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav a {
  font-family: "Inter", "Source Sans 3", sans-serif;
  font-weight: 300;
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.nav a.active {
  background: var(--bg-secondary);
  color: var(--accent);
  font-weight: 500;
}

.site-main {
  padding-top: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 7.5rem;
  padding: 0;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 3vw + 1rem, 2.8rem);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-text .lead {
  font-weight: 300;
  color: var(--text-muted);
  max-width: 38rem;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0b1020;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  transform: scale(1.15);
}

.section {
  margin-bottom: 4rem;
  padding: 7.5rem 4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.section-alt {
  background: linear-gradient(to bottom right, var(--bg-primary), var(--bg-secondary));
}

.section h1,
.section h2,
.section h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.section h1 {
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.3;
}

.section h2 {
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.4;
}

.section h3 {
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  line-height: 1.4;
}

.lead {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn {
  font-family: "Inter", "Source Sans 3", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
  line-height: 1.6;
}

.btn.primary,
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(154, 143, 130, 0.4);
}

.btn.primary:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(154, 143, 130, 0.5);
}

.btn.secondary,
.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--divider);
  color: var(--text-primary);
}

.btn.secondary:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--divider);
  color: var(--text-primary);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
  line-height: 1.7;
}

.card h3,
.card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1rem;
}

.card p {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card-activity .card-image {
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  min-width: 64px;
  min-height: 64px;
  margin-bottom: 1rem;
  opacity: 0.9;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.events-list {
  margin-top: 2rem;
}

.event-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
  margin-bottom: 1.5rem;
}

.event-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.event-date {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.event-placeholder {
  border: 2px dashed var(--divider);
  border-radius: var(--radius-md);
  background: rgba(247, 245, 242, 0.5);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  line-height: 1.7;
}

.two-column p {
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.photo-stack {
  position: relative;
  display: grid;
  gap: 1rem;
}

.photo-stack img:first-child {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.photo-stack img:nth-child(2) {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transform: translate(14%, -18%);
}

.about-portrait {
  border-radius: 999px;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.6);
}

.values-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.7;
}

.values-list li {
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.values-list li + li {
  margin-top: 1.25rem;
}

.team-grid .card-person {
  text-align: left;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  filter: sepia(20%) saturate(110%) brightness(105%) contrast(95%);
}

.role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.25rem;
}

.site-footer {
  border-top: 1px solid var(--divider);
  background: var(--bg-primary);
}

.footer-inner {
  font-weight: 300;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin-bottom: 0.75rem;
}

.footer-meta {
  margin-top: 0.4rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--text-primary);
}

.social-link svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav a {
    margin-left: 0;
    margin-right: 0.5rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-stack img:nth-child(2) {
    transform: translate(0, 0);
  }

  .section {
    padding: 4rem 2rem;
  }
  
  .hero {
    margin-bottom: 4rem;
  }
  
  .section h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  
  .section h2 {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
  }
}

/* Memorial page styles */
.memorial-hero {
  position: relative;
  width: 100%;
  margin: 0;
  margin-bottom: 4rem;
  overflow: hidden;
}

.memorial-hero-image {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.memorial-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.memorial-hero-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.85), transparent);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.memorial-hero-quote p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.memorial-content {
  background: var(--cream);
  padding: 4rem 1.5rem;
  margin: 0;
}

.memorial-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.memorial-content-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.memorial-intro {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.memorial-section {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 3rem;
}

.memorial-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 0;
  line-height: 1.3;
}

.memorial-section p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 3rem 0;
  opacity: 0.4;
}

.divider-gold {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 4rem 0;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.events-header-section {
  background: var(--navy);
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.events-header-section .event-badge-large {
  background: var(--gold);
  color: var(--navy);
}

.events-header-section .events-main-heading {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
}

.events-header-section .events-subheading {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}

/* Trust Color Utility Classes */
.bg-trust-navy {
  background-color: var(--navy);
}

.bg-trust-gold {
  background-color: var(--gold);
}

.bg-trust-cream {
  background-color: var(--cream);
}

.bg-trust-sage {
  background-color: var(--sage-green);
}

.text-trust-navy {
  color: var(--navy);
}

.text-trust-gold {
  color: var(--gold);
}

.text-trust-cream {
  color: var(--cream);
}

.text-trust-sage {
  color: var(--sage-green);
}

.text-white {
  color: #ffffff;
}

.text-gray-600 {
  color: #6b7280;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.md\:py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.md\:p-8 {
  padding: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.h-64 {
  height: 16rem;
}

.h-80 {
  height: 20rem;
}

.md\:h-80 {
  height: 20rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.inline-block {
  display: inline-block;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.md\:text-2xl {
  font-size: 1.5rem;
}

.md\:text-3xl {
  font-size: 1.875rem;
}

.md\:text-5xl {
  font-size: 3rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

.items-start {
  align-items: flex-start;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.mr-3 {
  margin-right: 0.75rem;
}

/* Additional utility classes */
.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.bg-trust-gold\/10 {
  background-color: rgba(201, 169, 97, 0.1);
}

.bg-trust-gold\/20 {
  background-color: rgba(201, 169, 97, 0.2);
}

.bg-red-100 {
  background-color: #fee2e2;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.text-red-600 {
  color: #dc2626;
}

.border-red-600 {
  border-color: #dc2626;
}

.border-l-4 {
  border-left-width: 4px;
}

.text-gray-700 {
  color: #374151;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

@media (min-width: 768px) {
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .md\:h-80 {
    height: 20rem;
  }
  
  .md\:p-8 {
    padding: 2rem;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.pull-quote {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-style: italic;
  color: var(--sage-green);
  margin: 2.5rem 0;
  padding: 0;
  border-left: 3px solid var(--sage-green);
  padding-left: 2rem;
  line-height: 1.6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.memorial-cta {
  background: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
  margin: 0;
}

.memorial-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.memorial-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 1rem;
}

.memorial-cta p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .memorial-hero-image {
    height: 50vh;
    min-height: 400px;
  }
  
  .memorial-hero-quote {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .memorial-content-inner h1 {
    font-size: 36px;
  }
  
  .memorial-section h2 {
    font-size: 28px;
  }
  
  .memorial-section {
    padding-left: 2rem;
  }
  
  .timeline-marker {
    width: 10px;
    height: 10px;
    top: 0.4rem;
  }
  
  .pull-quote {
    font-size: 20px;
    padding-left: 1.5rem;
  }
}
/* About page styles */
.btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--gold);
  color: var(--navy);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--navy);
}

.text-left {
  text-align: left;
}

.foundation-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.foundation-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 18px;
  color: #4a4a4a;
}

.foundation-bullet {
  color: var(--gold);
  font-size: 24px;
  margin-right: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pillars-grid.three-pillars {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
  .pillars-grid.three-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pillars-grid.three-pillars {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
  text-align: center;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pillar-svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.pillar-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.pillar-text {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  text-align: center;
}

.team-preview {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(135, 169, 107, 0.1));
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}

.team-preview-content {
  max-width: 600px;
  margin: 0 auto;
}

.team-preview h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.team-preview p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* Mission & Values page styles */
.mission-statement {
  background: var(--navy);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}

.mission-statement-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.mission-statement p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
  border-left: 4px solid var(--gold);
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.value-card p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.how-we-work {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.work-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.work-step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

.work-step-content {
  flex: 1;
}

.work-step-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.work-step-content p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.impact-preview {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}

.impact-preview-content {
  max-width: 600px;
  margin: 0 auto;
}

.impact-preview h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.impact-preview p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .mission-statement {
    padding: 2rem 1.5rem;
  }
  
  .mission-statement h2 {
    font-size: 2rem;
  }
  
  .mission-statement p {
    font-size: 1.25rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .work-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .work-step-number {
    margin-bottom: 1rem;
  }
}

/* Events page styles */
.upcoming-event {
  background: var(--navy);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.upcoming-event-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.event-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.upcoming-event h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.event-date {
  font-size: 1.25rem;
  color: var(--cream);
  opacity: 0.9;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-details-grid h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.event-details-grid p {
  color: var(--cream);
  line-height: 1.7;
}

.event-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-details-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--cream);
  line-height: 1.6;
}

.event-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.event-cta {
  text-align: center;
  margin-top: 2rem;
}

.past-events {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.past-event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
  overflow: hidden;
  display: flex;
}

.past-event-date {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(135, 169, 107, 0.2));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 150px;
  text-align: center;
}

.event-day {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.event-year {
  font-size: 1.25rem;
  color: var(--navy);
  opacity: 0.8;
}

.past-event-content {
  padding: 2rem;
  flex: 1;
}

.past-event-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.past-event-content p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.event-tag {
  background: var(--cream);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.event-type-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-type-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-type-icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.event-type-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.event-type-card p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.newsletter-signup {
  background: var(--navy);
  color: #ffffff;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}

.newsletter-signup-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.newsletter-signup p {
  color: var(--cream);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  font-size: 16px;
  color: var(--navy);
}

.event-organize-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.event-organize-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.event-organize-cta p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .upcoming-event {
    padding: 2rem 1.5rem;
  }
  
  .upcoming-event h2 {
    font-size: 2rem;
  }
  
  .event-details-grid {
    grid-template-columns: 1fr;
  }
  
  .past-event-card {
    flex-direction: column;
  }
  
  .past-event-date {
    min-width: 100%;
    padding: 1.5rem;
  }
  
  .event-types-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    width: 100%;
  }
}

/* Get Involved page styles */
.involvement-options {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}

.involvement-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.08);
  overflow: hidden;
}

.involvement-card-layout {
  display: flex;
}

.involvement-card-side {
  min-width: 40%;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--gold));
}

.volunteer-layout {
  flex-direction: row-reverse;
}

.volunteer-side {
  background: linear-gradient(135deg, var(--sage-green), var(--gold));
}

.partner-side {
  background: linear-gradient(135deg, #c96a5a, var(--gold));
}

.involvement-icon-wrapper {
  text-align: center;
}

.involvement-icon {
  width: 96px;
  height: 96px;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  display: block;
}

.involvement-card-side h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  margin: 0;
}

.involvement-card-content {
  padding: 3rem;
  flex: 1;
}

.involvement-card-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.involvement-card-content p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.involvement-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.involvement-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.volunteer-item {
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.volunteer-item h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.volunteer-item p {
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}

.other-ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.other-way-card {
  text-align: center;
  padding: 2rem;
}

.other-way-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.other-way-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.other-way-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.other-way-card p {
  font-family: "Source Sans Pro", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.7;
}

.impact-stats {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(135, 169, 107, 0.1));
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.impact-stats-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.impact-stats h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.impact-stats p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 16px;
  color: #4a4a4a;
}

.impact-cta {
  text-align: center;
}

.final-cta {
  text-align: center;
  margin: 3rem 0 2rem;
}

.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.25rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .involvement-card-layout {
    flex-direction: column;
  }
  
  .volunteer-layout {
    flex-direction: column;
  }
  
  .involvement-card-side {
    min-width: 100%;
    padding: 2rem;
  }
  
  .involvement-card-content {
    padding: 2rem;
  }
  
  .volunteer-grid {
    grid-template-columns: 1fr;
  }
  
  .other-ways-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .final-cta p {
    font-size: 1.125rem;
  }
}

/* Dropdown Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Inter", "Source Sans 3", sans-serif;
  font-weight: 300;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.nav-link.active {
  background: var(--bg-secondary);
  color: var(--accent);
  font-weight: 500;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(43, 43, 43, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
  padding: 0.5rem 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--accent);
}

.dropdown-menu a.active {
  background: var(--bg-secondary);
  color: var(--accent);
  font-weight: 500;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
}

.team-member {
  text-align: center;
}

.team-member h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
  }
  
  .dropdown-menu {
    min-width: 180px;
    left: auto;
    right: 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Events Page - New Styles */
.events-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.event-card-poetry,
.event-card-medical {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.event-card-gradient {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.poetry-gradient {
  background: linear-gradient(135deg, var(--navy), rgba(201, 169, 97, 0.2));
}

.medical-gradient {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.event-icon-large {
  color: rgba(255, 255, 255, 0.9);
}

.event-icon-large svg {
  width: 128px;
  height: 128px;
}

.event-card-content {
  padding: 2rem;
  position: relative;
}

.event-date-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.event-card-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.event-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.event-details-poetry,
.event-details-medical {
  margin: 1.5rem 0;
}

.event-details-poetry p,
.event-details-medical p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.event-memorial {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

.medical-services {
  margin: 1rem 0;
}

.medical-services ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.medical-services li {
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.medical-services li:before {
  content: "• ";
  color: #dc2626;
  font-weight: bold;
  margin-right: 0.5rem;
}

.medical-phone {
  margin-top: 1rem;
}

.medical-phone a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
}

.medical-phone a:hover {
  text-decoration: underline;
}

.event-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn.medical-call {
  background: #dc2626;
  color: white;
}

.btn.medical-call:hover {
  background: #b91c1c;
}

.btn.medical-register {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 2px solid #dc2626;
}

.btn.medical-register:hover {
  background: rgba(220, 38, 38, 0.2);
}

/* Poets Grid */
.poets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.poet-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}

.poet-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.poet-icon svg {
  color: var(--navy);
}

.poet-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.poet-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Why Events Grid */
.why-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.why-event-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.04);
}

.why-event-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.why-event-card p {
  color: #4a4a4a;
  line-height: 1.7;
}

@media (max-width: 968px) {
  .events-grid-two {
    grid-template-columns: 1fr;
  }
  
  .poets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .poets-grid {
    grid-template-columns: 1fr;
  }
  
  .event-cta-group {
    flex-direction: column;
  }
  
  .event-cta-group .btn {
    width: 100%;
    text-align: center;
  }
}

/* Events Page - New Design Styles */
.event-badge-large {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.events-main-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.events-subheading {
  font-size: 1.25rem;
  color: #4a4a4a;
  max-width: 48rem;
  margin: 0 auto;
}

.event-card-new {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(43, 43, 43, 0.08);
  overflow: hidden;
}

.event-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

.event-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.event-header-poetry {
  background: linear-gradient(135deg, var(--navy), rgba(201, 169, 97, 0.2));
  padding: 2rem;
  text-align: center;
}

.event-header-medical {
  background: linear-gradient(135deg, #dc2626, #f87171);
  padding: 2rem;
  text-align: center;
}

.event-header-icon {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 1rem;
  display: block;
}

.event-title-hindi {
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.event-title-english {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.event-details-wrapper {
  padding: 2rem;
}

.event-tag-cultural {
  display: inline-block;
  background: rgba(201, 169, 97, 0.1);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.event-tag-medical {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.event-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.event-memorial-text {
  color: var(--sage-green);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.event-memorial-text-medical {
  color: var(--sage-green);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.event-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-info-item {
  display: flex;
  align-items: flex-start;
}

.event-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 97, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.event-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.event-info-icon-medical {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.event-info-icon-medical svg {
  width: 20px;
  height: 20px;
  color: #dc2626;
}

.event-info-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.event-info-sublabel {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.event-description {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.medical-special-box {
  background: rgba(220, 38, 38, 0.05);
  border-left: 4px solid #dc2626;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.medical-special-box p {
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
}

.poets-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.poet-card-new {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.poet-icon-new {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.poet-icon-new svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

/* About Page Hero Section */
.about-hero-section {
  background: var(--navy);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: var(--cream);
  max-width: 48rem;
  margin: 0 auto;
}

/* Featured Events Banner */
.featured-events-banner {
  background: linear-gradient(to bottom right, rgba(201, 169, 97, 0.1), rgba(135, 169, 107, 0.1));
  border-bottom: 4px solid var(--gold);
  padding: 3rem 0;
}

.featured-events-inner {
  max-width: 80rem;
  margin: 0 auto;
}

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

.event-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.featured-events-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.featured-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Dr. Radhey Portrait Card */
.dr-radhey-portrait-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.portrait-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
  display: flex;
  align-items: flex-end;
}

.portrait-overlay-content {
  padding: 1.5rem;
  width: 100%;
  color: white;
}

.portrait-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.portrait-overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
}

.portrait-subtitle {
  font-size: 0.875rem;
  color: var(--cream);
  margin: 0;
}

/* Events Summary Card */
.events-summary-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-summary-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.event-summary-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.event-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.event-icon-poetry {
  background: rgba(201, 169, 97, 0.2);
}

.event-icon-health {
  background: rgba(220, 38, 38, 0.1);
}

.event-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.event-icon-poetry .event-icon {
  color: var(--navy);
}

.event-icon-health .event-icon {
  color: #dc2626;
}

.event-summary-item h4 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.event-summary-item p {
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
}

/* New Featured Events Homepage Layout */
.featured-events-homepage {
  background: linear-gradient(to bottom right, var(--cream), white);
  padding: 4rem 0 5rem;
}

.featured-events-homepage .container {
  max-width: 1080px;
}

.featured-events-badge-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.event-badge-large {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-events-main-content {
  max-width: 72rem;
  margin: 0 auto;
}

.featured-events-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Playfair Display", serif;
}

.featured-events-layout-grid {
  display: grid !important;
  grid-template-columns: 2fr 3fr !important;
  gap: 2rem 3rem;
  align-items: start;
}

@media (min-width: 769px) {
  .featured-events-layout-grid {
    grid-template-columns: 2fr 3fr !important;
  }
}

/* Portrait Column */
.featured-events-portrait-column {
  position: relative;
}

.dr-radhey-portrait-card-sticky {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: sticky;
  top: 6rem;
}

.portrait-image-container {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
}

.portrait-image-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portrait-card-footer {
  padding: 1.5rem;
  text-align: center;
  background: var(--navy);
  color: white;
}

.portrait-footer-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.portrait-card-footer h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: white;
  font-family: "Playfair Display", serif;
}

.portrait-footer-subtitle {
  font-size: 0.875rem;
  color: var(--cream);
  margin: 0;
}

/* Events Details Column */
.featured-events-details-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.events-details-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.events-details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
}

.event-detail-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--cream);
}

.event-detail-item-last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.event-detail-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.event-icon-large {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.event-icon-large.event-icon-poetry {
  background: rgba(201, 169, 97, 0.2);
}

.event-icon-large.event-icon-health {
  background: rgba(220, 38, 38, 0.1);
}

.event-icon-svg {
  width: 1.75rem;
  height: 1.75rem;
}

.event-icon-large.event-icon-poetry .event-icon-svg {
  color: var(--navy) !important;
  stroke: var(--navy) !important;
}

.event-icon-large.event-icon-health .event-icon-svg {
  color: #dc2626 !important;
  stroke: #dc2626 !important;
}

.event-detail-content {
  flex: 1;
}

.event-detail-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.event-detail-content > p {
  color: #374151;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.event-badges-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-info-badge {
  display: inline-block;
  background: rgba(201, 169, 97, 0.1);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.event-info-badge-red {
  background: rgba(254, 242, 242, 1);
  color: #dc2626;
}

.events-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--cream);
}

.featured-events-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 4rem 0;
}

/* Responsive */
@media (min-width: 768px) {
  .featured-events-main-title {
    font-size: 2.5rem;
  }

  .events-cta-group {
    flex-direction: row;
  }

  .events-cta-group .btn {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.125rem;
  }

  .featured-events-header h2 {
    font-size: 1.5rem;
  }

  .featured-events-grid {
    grid-template-columns: 1fr;
  }

  .events-summary-card {
    padding: 1.5rem;
  }

  .featured-events-layout-grid {
    grid-template-columns: 1fr;
  }

  .dr-radhey-portrait-card-sticky {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .featured-events-main-title {
    font-size: 1.75rem;
  }

  .events-details-card {
    padding: 1.5rem;
  }
}

/* Beginning Section Layout */
.beginning-section-layout {
  display: grid !important;
  grid-template-columns: 1fr 2fr !important;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
  width: 100%;
}

.beginning-image-wrapper {
  position: relative;
  width: 100%;
}

.beginning-portrait-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  display: block;
}

.beginning-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 769px) {
  .beginning-section-layout {
    grid-template-columns: 1fr 2fr !important;
  }
}

@media (max-width: 768px) {
  .beginning-section-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .beginning-image-wrapper {
    text-align: center;
  }

  .beginning-portrait-image {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
}

.contact-form-wrapper iframe {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 600px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
}

.poet-name {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.poet-genre {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.why-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.why-event-card-new {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.why-event-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-event-icon svg {
  width: 32px;
  height: 32px;
  color: var(--navy);
}

.why-event-icon-medical {
  width: 64px;
  height: 64px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-event-icon-medical svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.why-event-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.why-event-text {
  color: #4a4a4a;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 968px) {
  .events-main-heading {
    font-size: 2rem;
  }
  
  .why-events-grid {
    grid-template-columns: 1fr;
  }
  
  .poets-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .poets-grid-new {
    grid-template-columns: 1fr;
  }
  
  .event-cta-group {
    flex-direction: column;
  }
  
  .event-cta-group .btn {
    width: 100%;
    text-align: center;
  }
}
