/* ============================================
   Sugar Hill Neighborhood Consortium
   Aiken, South Carolina
   Main Stylesheet
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors */
  --deep-green: #1F4D3A;
  --warm-gold: #C6A348;
  --cream: #F5F2E9;
  --brick-red: #8C3A2B;
  --dark-text: #2C2C2C;
  --light-text: #F5F2E9;
  --white: #FFFFFF;
  --medium-gray: #6B6B6B;
  --light-gray: #E8E5DC;
  --overlay-dark: rgba(31, 77, 58, 0.85);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1200px;
  --border-radius: 8px;

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
}

a:hover,
a:focus {
  color: var(--warm-gold);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--warm-gold);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1.2rem;
}

/* ---- Utility Classes ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: var(--section-padding);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--warm-gold);
}

.text-green {
  color: var(--deep-green);
}

.bg-green {
  background-color: var(--deep-green);
  color: var(--light-text);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-white {
  background-color: var(--white);
}

.bg-gold-light {
  background-color: rgba(198, 163, 72, 0.1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--deep-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  border-radius: var(--border-radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
  text-decoration: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
  background-color: var(--warm-gold);
  color: var(--dark-text);
  border-color: var(--warm-gold);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #b8923c;
  border-color: #b8923c;
  color: var(--dark-text);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--white);
  color: var(--deep-green);
}

.btn-green {
  background-color: var(--deep-green);
  color: var(--white);
  border-color: var(--deep-green);
}

.btn-green:hover,
.btn-green:focus {
  background-color: #163b2c;
  border-color: #163b2c;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--deep-green);
  border-color: var(--deep-green);
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--deep-green);
  color: var(--white);
}

/* ---- Header & Navigation ---- */
.site-header {
  background-color: var(--deep-green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.header-contact-info a {
  color: rgba(255,255,255,0.8);
}

.header-contact-info a:hover {
  color: var(--warm-gold);
}

.header-social {
  display: flex;
  gap: 1rem;
}

.header-social a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.header-social a:hover {
  color: var(--warm-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo:hover {
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--warm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-green);
}

.logo-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--warm-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--border-radius);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  background: rgba(198, 163, 72, 0.2);
  color: var(--warm-gold);
  text-decoration: none;
}

.nav-cta {
  background: var(--warm-gold) !important;
  color: var(--deep-green) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #b8923c !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2a6b4f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" width="80" height="80"/><circle fill="rgba(198,163,72,0.05)" cx="40" cy="40" r="30"/></svg>') repeat;
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(198, 163, 72, 0.2);
  color: var(--warm-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--warm-gold);
}

.hero .lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 2px solid rgba(198, 163, 72, 0.15);
  border-radius: 50%;
  z-index: 1;
}

.hero-decoration::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 2px solid rgba(198, 163, 72, 0.1);
  border-radius: 50%;
}

/* ---- Page Hero (Interior Pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--deep-green) 0%, #2a6b4f 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" width="80" height="80"/><circle fill="rgba(198,163,72,0.05)" cx="40" cy="40" r="30"/></svg>') repeat;
  background-size: 80px 80px;
}

.page-hero * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.page-hero .breadcrumb a {
  color: var(--warm-gold);
}

.page-hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0.75rem auto 0;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header .overline {
  display: inline-block;
  color: var(--warm-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--medium-gray);
  font-size: 1.05rem;
}

.bg-green .section-header h2,
.bg-green .section-header .overline {
  color: var(--warm-gold);
}

.bg-green .section-header p {
  color: rgba(255,255,255,0.8);
}

/* ---- Highlights / Features Grid ---- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-bottom-color: var(--warm-gold);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(31, 77, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ---- History Preview ---- */
.history-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.history-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.history-image .placeholder-img {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #3a7d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

.history-content .overline {
  display: inline-block;
  color: var(--warm-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ---- Announcements ---- */
.announcements-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.announcement-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.announcement-card .card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--brick-red) 0%, #a84a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.announcement-card .card-body {
  padding: 1.5rem;
}

.announcement-card .card-date {
  font-size: 0.8rem;
  color: var(--warm-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.announcement-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.announcement-card p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ---- Voices / Testimonials ---- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.voice-card {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--warm-gold);
}

.voice-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.voice-card .attribution {
  color: var(--warm-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--brick-red) 0%, #a84a3a 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--warm-gold);
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-spacer {
  grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2.5rem;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--warm-gold);
  border: 4px solid var(--cream);
  border-radius: 50%;
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--warm-gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ---- Content Sections ---- */
.content-section {
  padding: var(--section-padding);
}

.content-section h2 {
  margin-bottom: 1.5rem;
}

.content-section p + p {
  margin-top: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-column.reversed {
  direction: rtl;
}

.two-column.reversed > * {
  direction: ltr;
}

/* ---- Mission / Vision Cards ---- */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mv-card {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.mv-card.mission {
  background: var(--deep-green);
  color: var(--white);
}

.mv-card.vision {
  background: var(--white);
  border: 2px solid var(--deep-green);
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.mv-card.mission h3 {
  color: var(--warm-gold);
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.mv-card.mission p {
  color: rgba(255,255,255,0.9);
}

/* ---- Goals List ---- */
.goals-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.goal-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.goal-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--warm-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--deep-green);
}

.goal-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.goal-item p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ---- Leadership Grid ---- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.leader-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.leader-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-green) 0%, #3a7d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  border: 4px solid var(--warm-gold);
}

.leader-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.leader-card .leader-role {
  color: var(--warm-gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Resource Cards ---- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.resource-card .card-header {
  padding: 2rem;
  background: var(--deep-green);
  color: var(--white);
}

.resource-card .card-header h3 {
  color: var(--warm-gold);
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.resource-card .card-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.resource-card .card-body {
  padding: 2rem;
}

.resource-card .card-body ul {
  list-style: none;
}

.resource-card .card-body li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--medium-gray);
}

.resource-card .card-body li:last-child {
  border-bottom: none;
}

.resource-card .card-body li::before {
  content: '→ ';
  color: var(--warm-gold);
  font-weight: 700;
}

/* ---- News Grid ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.news-card .card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2a6b4f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.news-card .card-body {
  padding: 1.75rem;
}

.news-card .card-tag {
  display: inline-block;
  background: rgba(31, 77, 58, 0.1);
  color: var(--deep-green);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.news-card .card-date {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.news-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.news-card p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.news-card .read-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--warm-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---- Involvement Cards ---- */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.involve-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-top: 4px solid var(--warm-gold);
}

.involve-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.involve-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(198, 163, 72, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.involve-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.involve-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* ---- Visit Section ---- */
.visit-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.visit-item {
  text-align: center;
  padding: 2rem;
}

.visit-item .visit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--warm-gold);
}

.visit-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.visit-item p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-section h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(31, 77, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--deep-green);
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.contact-detail p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--deep-green);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  background: var(--cream);
  color: var(--dark-text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(198, 163, 72, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ---- Newsletter Signup ---- */
.newsletter-section {
  background: var(--deep-green);
  padding: 3rem 0;
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: var(--warm-gold);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.newsletter-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.8rem 1.25rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  min-width: 280px;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--warm-gold);
  background: rgba(255,255,255,0.15);
}

/* ---- Photo Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 220px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep-green) 0%, #3a7d5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  transition: var(--transition);
}

.gallery-item:hover .placeholder-img {
  transform: scale(1.05);
}

/* ---- Footer ---- */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-about .logo-icon {
  width: 45px;
  height: 45px;
  font-size: 1rem;
}

.footer-about .logo-icon-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-about .logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--warm-gold);
  color: var(--deep-green);
  text-decoration: none;
}

.footer-column h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-column ul li a:hover {
  color: var(--warm-gold);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

/* ---- Legacy Section ---- */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.legacy-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-bottom: 4px solid var(--warm-gold);
}

.legacy-card .legacy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legacy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.legacy-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
}

/* ---- Event Calendar ---- */
.events-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  align-items: center;
}

.event-date-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--deep-green);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.event-date-box .month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-gold);
}

.event-date-box .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.event-info p {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.event-info .event-time {
  font-size: 0.85rem;
  color: var(--warm-gold);
  font-weight: 600;
}

/* ---- Programs Grid ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.program-card .card-accent {
  height: 6px;
  background: linear-gradient(to right, var(--deep-green), var(--warm-gold));
}

.program-card .card-body {
  padding: 2rem;
}

.program-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.program-card p {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  html { font-size: 17px; }
  
  .hero h1 { font-size: 2.6rem; }
  .hero-decoration { display: none; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .history-preview,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .timeline::before { left: 20px; }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }
  
  .timeline-item .timeline-spacer { display: none; }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: left;
  }
  
  .timeline-dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero .lead { font-size: 1.05rem; }
  
  .page-hero h1 { font-size: 2.2rem; }
  
  .header-top { display: none; }
  
  .nav-toggle { display: block; }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--deep-green);
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    text-align: center;
  }
  
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form input {
    min-width: unset;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlights-grid,
  .announcements-list,
  .voices-grid,
  .news-grid,
  .resource-grid,
  .involve-grid,
  .legacy-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .hero h1 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.8rem; }
  
  .section-padding { padding: 3rem 0; }
}

/* ---- Print Styles ---- */
@media print {
  .site-header, .site-footer, .nav-toggle, .newsletter-section, .cta-banner {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }
  
  a { color: #000; text-decoration: underline; }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
    color: #000;
  }
  
  .hero h1, .page-hero h1 {
    color: #000;
  }
}
