/* ==========================================================================
   DONNELL WOOLFORD DREAM CENTER MAIN THEME STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--color-brand-navy);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xl);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.site-logo-link:hover .logo-badge {
  background-color: rgba(255, 255, 255, 0.15);
}

.logo-icon-dw {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--color-brand-orange);
  letter-spacing: 0.05em;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.main-navigation .nav-menu-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-menu-list a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-slate-300);
  transition: all 0.2s ease;
}

.nav-menu-list a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: var(--color-brand-orange);
  text-decoration-thickness: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-donate {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 139, 26, 0.3);
}

.btn-donate:hover {
  background-color: var(--color-brand-orange-hover);
  box-shadow: var(--shadow-orange);
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-slate-300);
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-icon {
  width: 28px;
  height: 28px;
}

/* Mobile Drawer */
.mobile-drawer {
  background-color: var(--color-brand-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem;
}

.mobile-drawer.hidden {
  display: none;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-slate-300);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-donate-li {
  padding-top: 1rem;
}

.btn-donate-mobile {
  display: block;
  text-align: center;
  background-color: var(--color-brand-orange);
  color: #ffffff;
  font-weight: 800;
  padding: 0.85rem;
  border-radius: var(--radius-full);
}

@media (max-width: 991px) {
  .main-navigation {
    display: none;
  }
  .mobile-toggle-btn {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   2. Hero Banner Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  min-height: 600px;
  background-color: var(--color-brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-gradient-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-brand-navy) 0%, rgba(11, 22, 42, 0.75) 50%, rgba(11, 22, 42, 0.5) 100%);
}

.hero-content-container {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.hero-accent-indicator {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.pill-orange-main {
  width: 48px;
  height: 6px;
  background-color: var(--color-brand-orange);
  border-radius: var(--radius-full);
}

.pill-orange-sub {
  width: 12px;
  height: 6px;
  background-color: rgba(200, 56, 3, 0.5);
  border-radius: var(--radius-full);
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.text-highlight-orange {
  color: var(--color-brand-orange);
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-slate-200);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 139, 26, 0.3);
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  background-color: var(--color-brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-hero-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.hero-wave-divider svg {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   3. Common Section Layouts
   -------------------------------------------------------------------------- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-brand-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--color-brand-navy);
  letter-spacing: -0.01em;
}

.section-description {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
}

.section-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-slate-500);
}

.section-divider-bar {
  width: 80px;
  height: 4px;
  background-color: var(--color-brand-orange);
  margin: 1.5rem auto 0;
}

/* --------------------------------------------------------------------------
   4. Mission Pillars Grid
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 56, 3, 0.2);
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(200, 56, 3, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-brand-orange);
}

.pillar-icon {
  width: 32px;
  height: 32px;
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Featured Story Video Section
   -------------------------------------------------------------------------- */
.featured-story-section {
  background-color: #ffffff;
  border-top: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.video-card-wrapper {
  background-color: var(--color-brand-navy-dark);
  border-radius: var(--radius-2xl);
  padding: 0.5rem;
  box-shadow: var(--shadow-2xl);
}

.video-thumbnail-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.story-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--color-brand-navy);
  margin-bottom: 1.25rem;
}

.story-text {
  font-size: 1rem;
  color: var(--color-slate-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.btn-youtube {
  background-color: var(--color-brand-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-youtube:hover {
  background-color: var(--color-brand-orange);
  color: #ffffff;
}

.external-icon {
  width: 16px;
  height: 16px;
}

/* --------------------------------------------------------------------------
   6. Architectural Blueprints Grid
   -------------------------------------------------------------------------- */
.blueprints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blueprint-card {
  background-color: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blueprint-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  border-color: rgba(200, 56, 3, 0.3);
}

.blueprint-frame {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.blueprint-svg {
  width: 100%;
  height: 100%;
}

.svg-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: bold;
}

.coming-soon-badge {
  position: absolute;
  background-color: rgba(6, 11, 21, 0.95);
  color: var(--color-brand-orange);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 56, 3, 0.3);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.blueprint-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blueprint-stage {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-slate-400);
  font-weight: 700;
}

.blueprint-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin-top: 0.25rem;
}

.blueprint-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-orange);
  margin-bottom: 0.75rem;
}

.blueprint-desc {
  font-size: 0.85rem;
  color: var(--color-slate-600);
  line-height: 1.6;
  flex-grow: 1;
}

.blueprint-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--color-slate-400);
}

.status-tag {
  background-color: var(--color-slate-100);
  color: var(--color-brand-navy);
  font-family: var(--font-mono);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   7. Team & Leadership Section
   -------------------------------------------------------------------------- */
.team-section {
  background-color: var(--color-brand-navy);
  color: #ffffff;
}

.orange-tagline {
  color: var(--color-brand-orange) !important;
}

.team-section .section-title {
  color: #ffffff !important;
}

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

.team-card {
  background-color: #ffffff;
  color: var(--color-slate-800);
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.team-photo-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
  transform: scale(1.06);
}

.team-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-brand-navy);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-slate-500);
  letter-spacing: 0.05em;
}

/* Team Modal Overlay */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.team-modal-overlay.hidden {
  display: none;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 22, 42, 0.8);
  backdrop-filter: blur(4px);
}

.team-modal-content {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--color-slate-200);
  animation: modalPop 0.25s ease-out forwards;
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.team-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  z-index: 20;
}

.team-modal-header {
  background-color: var(--color-brand-navy);
  color: #ffffff;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.team-modal-photo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}

.team-modal-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.team-modal-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-orange);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.team-modal-body {
  padding: 0;
}

.team-modal-bio-text {
  padding: 2rem 1.75rem;
  font-size: 0.925rem;
  color: var(--color-slate-700);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   8. Direct Contact & Correspondence
   -------------------------------------------------------------------------- */
.contact-split-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 2.5rem;
}

@media (max-width: 991px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-box {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-brand-navy);
}

.form-notice {
  font-size: 0.75rem;
  color: var(--color-slate-400);
  margin-bottom: 1.5rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-slate-500);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-200);
  background-color: rgba(248, 250, 252, 0.5);
  outline: none;
  transition: border-color 0.2s ease;
}

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

.btn-send-message {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-send-message:hover {
  background-color: var(--color-brand-orange-hover);
}

.send-icon {
  width: 16px;
  height: 16px;
}

/* Contact Coordinates Box */
.contact-coordinates-box {
  background-color: var(--color-brand-navy);
  color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.coord-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-brand-orange);
  font-weight: 700;
}

.coord-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.coord-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coord-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.coord-icon-badge {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-orange);
  flex-shrink: 0;
}

.coord-icon-badge svg {
  width: 20px;
  height: 20px;
}

.coord-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-slate-400);
  display: block;
}

.coord-subheader {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-slate-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.coord-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0.75rem 0;
}

.coord-title-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.coord-subrole {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--color-slate-400);
  display: block;
  margin-top: 0.15rem;
}

.coord-phone-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.25rem;
}

.coord-val {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   9. Pre-Footer Banner & Footer
   -------------------------------------------------------------------------- */
.banner-cta-section {
  background-color: var(--color-brand-orange);
  color: #ffffff;
  padding: 3rem 1.5rem;
}

.banner-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 991px) {
  .banner-cta-container {
    flex-direction: column;
    text-align: center;
  }
}

.banner-title {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 900;
}

.banner-subtext {
  font-size: 0.875rem;
  margin-top: 0.35rem;
  opacity: 0.9;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.action-icon {
  width: 18px;
  height: 18px;
}

.btn-banner-get-involved {
  background-color: #ffffff;
  color: var(--color-brand-orange);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

.btn-banner-get-involved:hover {
  background-color: var(--color-brand-navy);
  color: #ffffff;
}

/* Site Footer */
.site-footer {
  background-color: var(--color-brand-navy-dark);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-contact-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-slate-300);
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--color-brand-orange);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--color-slate-400);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.social-icons a:hover {
  background-color: var(--color-brand-orange);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer-bottom-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-slate-400);
}

/* --------------------------------------------------------------------------
   10. Comprehensive Mobile & Tablet Responsive Enhancements
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .contact-split-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .blueprints-grid {
    grid-template-columns: 1fr !important;
    gap: 1.75rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

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

@media (max-width: 640px) {
  .header-container {
    padding: 0.75rem 1rem;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.55rem;
  }

  .btn-donate {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-content-container {
    padding: 3rem 1.25rem 4rem;
  }

  .hero-headline {
    font-size: 2.15rem;
    line-height: 1.15;
  }

  .hero-subtitle-short {
    font-size: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.85rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }

  .section-container {
    padding: 3rem 1.25rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .story-headline {
    font-size: 1.4rem;
  }

  .blueprint-card {
    min-width: 0;
    width: 100%;
  }

  .blueprint-frame {
    height: 180px;
  }

  /* Team Member Section Mobile Responsiveness */
  .team-grid {
    grid-template-columns: 1fr !important;
    max-width: 360px;
    margin: 0 auto;
    gap: 1.5rem;
  }

  .team-card {
    padding: 1.5rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .team-photo-frame {
    height: auto !important;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 260px;
    margin: 0 auto 1.25rem;
  }

  /* Contact Section Mobile Responsiveness */
  .contact-form-box,
  .contact-coordinates-box {
    padding: 1.75rem 1.25rem !important;
    width: 100%;
    box-sizing: border-box;
    border-radius: var(--radius-xl);
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }

  .btn-send-message {
    width: 100%;
    box-sizing: border-box;
    padding: 0.95rem 1.25rem;
    font-size: 0.85rem;
  }

  .coord-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
  }

  .coord-item {
    gap: 0.85rem;
  }

  .coord-icon-badge {
    width: 34px;
    height: 34px;
  }

  .coord-icon-badge svg {
    width: 18px;
    height: 18px;
  }

  .coord-title-text {
    font-size: 0.88rem;
  }

  .coord-phone-val {
    font-size: 1rem;
    word-break: break-word;
  }

  .coord-val {
    font-size: 0.825rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .quick-action-item {
    justify-content: center;
  }

  .btn-banner-get-involved {
    width: 100%;
    text-align: center;
  }
}
