/* =========================================================
   HOGRUNNERS CHARITY RIDERS — Design System #9152
   Navy / Royal Blue / Amber Gold · Outfit + Poppins
   ========================================================= */
:root {
  --navy: #0a192f;
  --navy-deep: #06101f;
  --royal: #1e40af;
  --royal-light: #3b82f6;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --paper: #faf7f2;
  --paper-border: #e8e2d7;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --shadow: 0 16px 40px rgba(10, 25, 47, 0.12);
  --shadow-soft: 0 8px 24px rgba(10, 25, 47, 0.08);
  --radius: 14px;
  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--amber-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-pad {
  padding: 88px 0;
}

.section-title {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.65rem;
}

/* ---- Legal top bar ---- */
.legal-bar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  text-align: center;
}

.legal-bar strong {
  color: var(--amber);
  font-weight: 600;
}

/* ---- Emergency ticker ---- */
.emergency-ticker {
  background: linear-gradient(90deg, #7f1d1d, #b91c1c 40%, #9a3412);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  z-index: 40;
}

.emergency-ticker .ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 28s linear infinite;
}

.emergency-ticker i {
  color: var(--amber);
  margin-right: 6px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---- Navbar ---- */
.site-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-border);
  padding: 0.35rem 0;
  z-index: 1030;
}

.site-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy) !important;
  font-size: 1.05rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.site-nav .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy) !important;
  padding: 0.55rem 0.85rem !important;
  border-radius: 8px;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--royal) !important;
  background: rgba(30, 64, 175, 0.06);
}

.btn-donate-nav {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 0.5rem 1.15rem !important;
  border: none !important;
}

.btn-donate-nav:hover {
  background: var(--amber-dark) !important;
  color: #fff !important;
}

/* ---- Buttons ---- */
.btn-primary-hr {
  background: var(--royal);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-primary-hr:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-hr {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-outline-hr:hover {
  background: #fff;
  color: var(--navy);
}

.btn-amber {
  background: var(--amber);
  border: none;
  color: var(--navy);
  font-weight: 700;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
}

.btn-amber:hover {
  background: var(--amber-dark);
  color: #fff;
}

/* ---- Paper cards ---- */
.paper-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 25, 47, 0.16);
}

.paper-card .card-body-pad {
  padding: 1.35rem 1.4rem 1.5rem;
}

.img-zoom {
  overflow: hidden;
  position: relative;
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.img-zoom:hover img {
  transform: scale(1.04);
}

.program-img {
  height: 210px;
}

.news-img {
  height: 200px;
}

.gallery-img {
  height: 240px;
  border-radius: var(--radius);
}

/* ---- Hero: Offset Diagonal ---- */
.hero-diagonal {
  position: relative;
  background: var(--navy);
  color: #fff;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 110px;
}

.hero-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 25, 47, 0.94) 0%, rgba(10, 25, 47, 0.78) 48%, rgba(10, 25, 47, 0.35) 100%),
    var(--hero-img) center/cover no-repeat;
  z-index: 0;
}

.hero-diagonal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 90px;
  background: var(--white);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-diagonal .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--amber);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.hero-diagonal h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  margin-bottom: 1rem;
}

.hero-diagonal .lead {
  color: #cbd5e1;
  font-size: 1.08rem;
  max-width: 540px;
}

.intake-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  color: var(--text);
}

.intake-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.intake-card .form-control,
.intake-card .form-select {
  border-radius: 10px;
  border-color: var(--paper-border);
  padding: 0.7rem 0.9rem;
}

.floating-badge {
  position: absolute;
  background: #fff;
  color: var(--navy);
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.floating-badge i {
  color: var(--royal);
}

.fb-1 { top: 18%; right: 4%; }
.fb-2 { bottom: 22%; right: 12%; }

/* ---- Stats ---- */
.stats-band {
  background: var(--navy);
  color: #fff;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-item i {
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-item .num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.stat-item .label {
  color: #94a3b8;
  font-size: 0.88rem;
}

/* ---- Transparency bars ---- */
.fund-bar {
  background: #e2e8f0;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.fund-bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.fund-programs { width: 88%; background: var(--royal); }
.fund-admin { width: 8%; background: var(--amber); }
.fund-raise { width: 4%; background: #64748b; }

/* ---- Leadership preview ---- */
.leader-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--amber);
}

.board-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ---- Partners ---- */
.partner-strip {
  background: var(--paper);
  border-top: 1px solid var(--paper-border);
  border-bottom: 1px solid var(--paper-border);
  padding: 2rem 0;
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--paper-border);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  margin: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.partner-pill i {
  color: var(--royal);
}

/* ---- Newsletter ---- */
.newsletter-band {
  background:
    linear-gradient(120deg, rgba(10, 25, 47, 0.92), rgba(30, 64, 175, 0.85)),
    url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem 2rem;
}

.newsletter-band h2 {
  color: #fff;
}

/* ---- Page hero (inner) ---- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.55)),
    var(--page-hero-img, url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 640px;
}

/* ---- Values ---- */
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(30, 64, 175, 0.1);
  color: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* ---- Steps ---- */
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

/* ---- Testimonials ---- */
.avatar-sm {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Donation ---- */
.donate-tier {
  border: 2px solid var(--paper-border);
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy);
  transition: all 0.2s ease;
}

.donate-tier:hover,
.donate-tier.active {
  border-color: var(--royal);
  background: rgba(30, 64, 175, 0.06);
  color: var(--royal);
}

.freq-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.freq-toggle button {
  border: none;
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

.freq-toggle button.active {
  background: var(--royal);
  color: #fff;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.25rem;
}

/* ---- News article ---- */
.article-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-pill {
  display: inline-block;
  background: rgba(30, 64, 175, 0.08);
  color: var(--royal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-right: 0.35rem;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--paper-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #fff;
  margin-right: 0.35rem;
}

.share-btn:hover {
  background: var(--royal);
  color: #fff;
  border-color: var(--royal);
}

/* ---- Contact ---- */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--paper-border);
  font-size: 0.92rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow-soft);
  background: var(--paper);
  min-height: 360px;
}

.map-embed {
  border: 0;
  display: block;
  width: 100%;
  height: 360px;
}

.contact-panel {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.6rem 1.75rem;
}

.contact-panel--accent {
  border-left: 4px solid var(--amber);
}

.contact-panel .form-control,
.contact-panel .form-select {
  border-color: var(--paper-border);
  border-radius: 10px;
}

.contact-panel .form-control:focus,
.contact-panel .form-select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
}

/* ---- Privacy ---- */
.privacy-section {
  margin-bottom: 2.25rem;
}

.privacy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

/* ---- Footer (enhanced) ---- */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(30, 64, 175, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(245, 158, 11, 0.12), transparent 50%),
    var(--navy-deep);
  color: #94a3b8;
  padding: 0 0 1.5rem;
  margin-top: 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  display: block;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
  margin-bottom: 0;
}

.footer-cta {
  margin: -8px 0 2.75rem;
  position: relative;
  z-index: 1;
}

.footer-cta-inner {
  background: linear-gradient(115deg, var(--royal) 0%, #1e3a8a 55%, #0f172a 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.footer-cta-inner h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin: 0 0 0.35rem;
}

.footer-cta-inner p {
  color: #cbd5e1;
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 0;
  border: 2px solid rgba(245, 158, 11, 0.55);
  background: #fff;
}

.footer-brand-name {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
}

.footer-brand-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-footer h5 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--amber);
  opacity: 0.7;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-contact-item i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.footer-contact-item strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.ein-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--amber);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0.35rem 0.35rem 0.35rem 0;
}

.ein-chip i {
  font-size: 0.8rem;
}

.footer-trust {
  margin-top: 2.25rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: #cbd5e1;
}

.trust-pill i {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  font-size: 0.84rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.footer-bottom-links a {
  font-weight: 500;
}

.social-round {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  margin-right: 0.45rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-round:hover {
  background: var(--royal);
  border-color: var(--royal);
  color: #fff !important;
  transform: translateY(-2px);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--amber);
  color: var(--navy);
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(10, 25, 47, 0.28);
  cursor: pointer;
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #fff;
}

@media (max-width: 991.98px) {
  .site-footer::before {
    height: 36px;
  }
  .footer-cta {
    margin-top: -4px;
  }
}

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--paper-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

/* ---- Toast ---- */
.toast-success {
  position: fixed;
  top: 90px;
  right: 20px;
  background: #065f46;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 2100;
  display: none;
}

.toast-success.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Social activity gallery ---- */
.social-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.social-frame .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(10, 25, 47, 0.88));
  color: #fff;
  padding: 1.5rem 1rem 0.9rem;
  font-size: 0.82rem;
}

/* ---- Accordion tweaks ---- */
.accordion-button:not(.collapsed) {
  background: rgba(30, 64, 175, 0.06);
  color: var(--royal);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .floating-badge { display: none; }
  .hero-diagonal { min-height: auto; padding: 50px 0 100px; }
  .intake-card { margin-top: 2rem; }
  .section-pad { padding: 64px 0; }
}

@media (max-width: 575.98px) {
  .brand-text { display: none; }
  .legal-bar { font-size: 0.72rem; }
}
