/* ==========================================================================
   DON LOGAN'S AMERICAN OUTREACH - RESPONSIVE & MOBILE STYLES
   ========================================================================== */

/* --- Tablet / Medium Screen Adjustments (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .editorial-row,
  .editorial-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .editorial-image-frame img {
    height: 380px;
  }

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

  .footer-brand-wrap {
    grid-column: 1 / -1;
  }
}

/* --- Mobile Breakpoint (max-width: 768px) --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-padding-lg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header & Navigation */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #0E0E0E;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
    border-top: 1px solid #222;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 8px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn {
    display: none; /* Desktop CTA hidden; mobile sticky bar and menu CTA take over */
  }

  .nav-menu .mobile-menu-cta {
    display: block;
    width: 100%;
    margin-top: 16px;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-pillars-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* 4 Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  /* Community Banner */
  .community-banner-overlay {
    position: relative;
    background: #111;
    padding: 32px 24px;
  }

  .community-banner-img {
    height: 240px;
  }

  /* Support Card */
  .support-cta-card {
    padding: 40px 24px;
  }

  .support-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .support-cta-buttons .btn {
    width: 100%;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-card {
    padding: 24px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Mobile Sticky Bottom Support Bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(197, 160, 89, 0.35);
    padding: 10px 16px;
    z-index: 998;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-bottom-bar .bottom-text {
    font-size: 0.8125rem;
    color: #CCC8BF;
    line-height: 1.3;
  }

  .mobile-bottom-bar .bottom-text strong {
    color: #FFF;
    display: block;
  }

  .mobile-bottom-bar .btn {
    padding: 10px 18px;
    font-size: 0.8125rem;
  }

  body {
    padding-bottom: 65px; /* Offset for sticky bottom bar */
  }

  /* Concept Review Bar Mobile Layout */
  .concept-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hide mobile bottom bar on desktop */
@media (min-width: 769px) {
  .mobile-bottom-bar {
    display: none;
  }
  .nav-menu .mobile-menu-cta {
    display: none;
  }
}
