/* ============================================
   JOHNNIE'S PLACE - BRAND COLORS
   ============================================ */
:root {
  /* PRIMARY BRAND COLORS */
  --brand-primary: #CB6330;        /* Wood brown - main brand color */
  --brand-primary-dark: #A34F24;   /* Darker brown for hover states */
  --brand-primary-light: #D97A47;  /* Lighter brown for subtle accents */

  --brand-accent: #FECE00;         /* Golden yellow - CTAs, highlights */
  --brand-accent-dark: #D4AA00;    /* Darker yellow for hover */
  --brand-accent-light: #FFD83D;   /* Lighter yellow */

  /* FLOWER ACCENTS */
  --accent-pink: #FF7EB0;
  --accent-purple: #B987EA;
  --accent-blue: #8AC7FD;

  /* LIGHT THEME */
  --bg-primary: #FFFDF8;           /* Warm white */
  --bg-secondary: #F5F2E3;         /* Cream - from building facade */
  --bg-card: #FFFFFF;
  --text-primary: #232323;         /* Charcoal black - from logo outlines */
  --text-secondary: #5C4A3A;       /* Warm dark brown */
  --text-muted: #8A7A6A;           /* Muted warm gray */
  --border-color: #E8DFD0;         /* Warm border */
  --shadow-color: rgba(203, 99, 48, 0.08);
  --shadow-strong: rgba(203, 99, 48, 0.16);
}

[data-theme="dark"] {
  --bg-primary: #1A1610;
  --bg-secondary: #252016;
  --bg-card: #2E2820;
  --text-primary: #F5F2E3;
  --text-secondary: #C8BBA8;
  --text-muted: #8A7E6E;
  --border-color: #3A3228;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --shadow-strong: rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--brand-primary-dark);
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.3;
  color: var(--text-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px var(--shadow-color);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

/* Dropdown menu styles */
.nav-links li {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  position: relative;
  bottom: auto;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.nav-dropdown:hover > a::after {
  opacity: 1;
  transform: translateY(2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px var(--shadow-color);
  z-index: 1000;
  margin-top: 12px;
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.dropdown-menu a:hover {
  background: var(--bg-secondary);
  color: var(--brand-primary);
  padding-left: 24px;
}

.dropdown-menu a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand-accent);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(254, 206, 0, 0.3);
}

.btn-primary:hover {
  background: var(--brand-accent-light);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(254, 206, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-secondary:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary-inverse {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-inverse:hover {
  background: white;
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  opacity: 0.06;
  animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-accent) 0%, transparent 70%);
  opacity: 0.05;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px var(--shadow-color);
  border: 1px solid var(--border-color);
  position: relative;
}

.hero-quote {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--brand-accent);
}

.hero-attribution {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
  color: var(--brand-primary);
}

.feature-card:hover .feature-icon {
  background: var(--brand-accent);
  color: var(--text-primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   VISION SECTION
   ============================================ */
.mission-section {
  background: var(--bg-secondary);
}

.vision-section {
  background: var(--bg-primary);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.vision-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.emphasis-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brand-primary);
  border-left: 4px solid var(--brand-accent);
  padding-left: 20px;
  margin: 32px 0;
}

.quote-attribution {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
}

.vision-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vision-image {
  width: 100%;
  border-radius: 20px;
}

.vision-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   STORY LAYOUT
   ============================================ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.story-image {
  width: 100%;
  border-radius: 2px;
  display: block;
}

/* White mat frame for Johnnie's photos */
.photo-frame {
  background: #ffffff;
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.07);
  display: block;
}

.photo-frame img {
  display: block;
  width: 100%;
  border-radius: 2px;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
  background: var(--bg-secondary);
}

.philosophy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.philosophy-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.leader-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.3s;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-color);
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.role {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.bio {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   LEGAL SECTION
   ============================================ */
.legal-section {
  background: var(--bg-secondary);
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.status-item {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.status-item h4 {
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.status-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   MISSION STATEMENT
   ============================================ */
.mission-statement-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 4px solid var(--brand-accent);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.what-we-provide-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand-primary);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   FUTURE SECTION
   ============================================ */
.future-section {
  background: var(--bg-secondary);
}

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

.future-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.future-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.future-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.stat-box h4 {
  color: var(--brand-accent);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.stat-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   SUPPORT GRID
   ============================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 48px 40px;
  transition: all 0.4s;
  text-align: center;
}

.support-card:hover {
  box-shadow: 0 16px 48px var(--shadow-color);
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.support-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   FUNDRAISER SECTION
   ============================================ */
.fundraiser-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
}

.fundraiser-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.fundraiser-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.fundraiser-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.fundraiser-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.fundraiser-stat {
  text-align: center;
}

.fundraiser-stat .stat-number {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
}

.fundraiser-stat .stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fundraiser-description {
  margin-bottom: 32px;
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate-section {
  background: var(--bg-secondary);
}

.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.donate-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.donate-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.tax-info {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  margin-top: 32px;
}

.tax-info h4 {
  color: var(--brand-primary);
  margin-bottom: 8px;
  font-size: 1rem;
}

.tax-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.donate-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px var(--shadow-color);
}

.donate-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-color);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--brand-primary);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--brand-primary);
}

.contact-form-section {
  background: var(--bg-secondary);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.contact-form-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px var(--shadow-color);
}

.leadership-contact-section {
  background: var(--bg-secondary);
}

.leadership-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.leader-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.leader-contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
  padding: 120px 24px;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--brand-primary);
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-layout,
  .vision-layout,
  .donate-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .features-grid,
  .services-grid,
  .support-grid,
  .contact-grid,
  .leadership-grid,
  .leadership-contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-status,
  .future-stats,
  .vision-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

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

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-grid {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-color);
}

.blog-post-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-date {
  color: var(--brand-primary);
  font-weight: 600;
}

.blog-author {
  color: var(--text-muted);
}

.blog-post-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.blog-post-excerpt {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.3s;
}

.blog-read-more:hover {
  color: var(--brand-primary-dark);
}

.blog-empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: var(--bg-secondary);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.newsletter-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

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

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
  margin-bottom: 24px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--brand-primary);
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.newsletter-note strong {
  color: var(--text-primary);
}

.newsletter-note a {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* Newsletter Preferences */
.newsletter-preferences {
  margin: 0 0 24px 0;
  text-align: left;
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.preferences-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.preference-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.preference-option:hover {
  color: var(--brand-primary);
}

.preference-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand-primary);
}

.preference-option span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.preference-option:hover span {
  color: var(--brand-primary);
}

/* Form Messages */
.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter Button */
.newsletter-form button[type="submit"] {
  width: 100%;
  padding: 14px 32px;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Button Loading State */
.btn-loading {
  opacity: 0.7;
}

.newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .newsletter-preferences {
    padding: 20px;
  }
}

/* ============================================
   EVENT STYLES
   ============================================ */
.events-grid {
  display: grid;
  gap: 24px;
}

.event-card {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-color);
}

.event-date {
  text-align: center;
  min-width: 80px;
}

.event-month {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-top: 4px;
}

.event-details h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.event-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.event-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.event-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.3s;
}

.event-link:hover {
  color: var(--brand-primary-dark);
}

.events-empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.events-empty-state p {
  margin-bottom: 20px;
}

/* CALENDAR STYLES */
.calendar-container {
  max-width: 900px;
  margin: 0 auto;
}

.calendar-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
}

.calendar-placeholder h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.calendar-placeholder p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.calendar-placeholder a {
  color: var(--brand-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    min-width: auto;
  }

  .calendar-placeholder {
    padding: 60px 24px;
  }
}

/* BLOG CATEGORY TAG */
.blog-category {
  background: var(--brand-accent);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BLOG POST CONTENT PAGE */
.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.blog-post-content h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
}

.blog-post-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.blog-post-content p {
  margin-bottom: 24px;
}

.blog-post-content a {
  color: var(--brand-primary);
  font-weight: 600;
}

.blog-post-content a:hover {
  color: var(--brand-primary-dark);
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--brand-primary);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

/* ============================================
   FUNDRAISER STYLES
   ============================================ */
.fundraisers-grid {
  display: grid;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.fundraiser-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.fundraiser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-color);
}

.fundraiser-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.fundraiser-content {
  padding: 32px;
}

.fundraiser-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
}

.fundraiser-header h2 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--text-primary);
}

.fundraiser-status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-active {
  background: #d4edda;
  color: #155724;
}

.status-completed {
  background: #cce5ff;
  color: #004085;
}

.status-upcoming {
  background: #fff3cd;
  color: #856404;
}

.fundraiser-event {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.event-date-prominent {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-location-prominent {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.fundraiser-excerpt {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.fundraiser-progress {
  margin: 24px 0;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.progress-current {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.progress-goal {
  color: var(--text-muted);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--bg-secondary);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  border-radius: 50px;
  transition: width 0.5s ease;
}

.fundraiser-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.fundraiser-link {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.3s;
}

.fundraiser-link:hover {
  color: var(--brand-primary-dark);
}

.fundraiser-actions {
  display: flex;
  gap: 12px;
}

.empty-state,
.loading-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .fundraiser-header {
    flex-direction: column;
  }

  .fundraiser-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .fundraiser-actions {
    flex-direction: column;
  }

  .fundraiser-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Team Page ── */
.team-member {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 880px;
  margin: 0 auto 64px;
}

.team-member-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 10px solid #ffffff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text-muted);
}

.team-member-title {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin: 4px 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-member-bio p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-member-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
