/* =============================================
   REACH ALLIANCE — Styles
   Template 27 · Outreach
   Palette: Ink + Snow + Ocean Teal
   Fonts: DM Sans (display) + Newsreader (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Newsreader:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --ra-ink:           #1f2024;
  --ra-charcoal:      #36383e;
  --ra-gray:          #6e7179;
  --ra-silver:        #b0b3b8;
  --ra-frost:         #e8e9ec;
  --ra-snow:          #f7f7f8;
  --ra-white:         #ffffff;
  --ra-teal:          #3b8f8f;
  --ra-teal-deep:     #2d7272;
  --ra-teal-glow:     rgba(59, 143, 143, .08);

  --ra-font-display:  'DM Sans', -apple-system, sans-serif;
  --ra-font-body:     'Newsreader', Georgia, serif;

  --ra-nav-height:    68px;
  --ra-banner-height: 34px;
  --ra-radius:        10px;
  --ra-radius-lg:     16px;
  --ra-shadow:        0 2px 16px rgba(0, 0, 0, .04);
  --ra-shadow-lg:     0 10px 40px rgba(0, 0, 0, .08);
  --ra-transition:    .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ra-font-body);
  color: var(--ra-ink);
  background: var(--ra-white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ra-font-display);
  line-height: 1.2;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.ra-container {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- Demo Banner ---------- */
.ra-demo-banner {
  background: var(--ra-ink);
  color: var(--ra-silver);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--ra-font-display);
  font-size: .76rem;
  font-weight: 500;
  height: var(--ra-banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  letter-spacing: .3px;
}

.ra-demo-banner a { color: var(--ra-teal); text-decoration: underline; }

/* ---------- Navigation ---------- */
.ra-nav {
  position: fixed;
  top: var(--ra-banner-height);
  left: 0; width: 100%;
  height: var(--ra-nav-height);
  z-index: 960;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--ra-transition), border-color var(--ra-transition), box-shadow var(--ra-transition);
}

.ra-nav .ra-logo { color: var(--ra-white); }
.ra-nav .ra-nav-links a { color: rgba(255,255,255,.7); }
.ra-nav .ra-nav-links a:hover { color: var(--ra-white); }
.ra-nav .ra-nav-cta { border-color: rgba(255,255,255,.3); color: var(--ra-white) !important; }
.ra-nav .ra-nav-cta:hover { background: var(--ra-white) !important; color: var(--ra-ink) !important; border-color: var(--ra-white); }
.ra-nav .ra-hamburger span { background: var(--ra-white); }

.ra-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-color: var(--ra-frost);
  box-shadow: 0 1px 10px rgba(0,0,0,.04);
}

.ra-nav.scrolled .ra-logo { color: var(--ra-ink); }
.ra-nav.scrolled .ra-nav-links a { color: var(--ra-gray); }
.ra-nav.scrolled .ra-nav-links a:hover { color: var(--ra-ink); }
.ra-nav.scrolled .ra-nav-cta { border-color: var(--ra-ink) !important; color: var(--ra-ink) !important; }
.ra-nav.scrolled .ra-nav-cta:hover { background: var(--ra-ink) !important; color: var(--ra-white) !important; }
.ra-nav.scrolled .ra-hamburger span { background: var(--ra-ink); }

.ra-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 88%; max-width: 1100px; margin: 0 auto;
}

.ra-logo {
  font-family: var(--ra-font-display);
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -.3px;
  transition: color var(--ra-transition);
}

.ra-logo-mark {
  width: 30px; height: 30px;
  background: var(--ra-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ra-white); flex-shrink: 0;
}

.ra-nav-links {
  display: flex; align-items: center; gap: 28px;
}

.ra-nav-links a {
  font-family: var(--ra-font-display);
  font-size: .82rem; font-weight: 500;
  transition: color var(--ra-transition);
  letter-spacing: .2px;
}

.ra-nav-cta {
  font-weight: 600 !important;
  border: 1.5px solid; padding: 8px 22px;
  border-radius: 50px;
  transition: all var(--ra-transition) !important;
}

/* Hamburger */
.ra-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; z-index: 970;
}

.ra-hamburger span { width: 22px; height: 1.5px; border-radius: 2px; transition: var(--ra-transition); }
.ra-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.ra-hamburger.active span:nth-child(2) { opacity: 0; }
.ra-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.ra-mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 320px; height: 100vh;
  background: var(--ra-white); z-index: 950;
  display: flex; flex-direction: column;
  justify-content: center; gap: 22px;
  padding: 48px 36px;
  transition: right var(--ra-transition);
  box-shadow: -4px 0 24px rgba(0,0,0,.06);
}

.ra-mobile-menu.open { right: 0; }
.ra-mobile-menu a { font-family: var(--ra-font-display); font-size: 1.05rem; font-weight: 500; color: var(--ra-ink); }
.ra-mobile-menu a:hover { color: var(--ra-teal); }
.ra-mobile-menu hr { border: none; border-top: 1px solid var(--ra-frost); }
.ra-mobile-cta { border: 1.5px solid var(--ra-ink); padding: 14px 28px; border-radius: 50px; text-align: center; font-weight: 600 !important; }

/* ---------- Hero ---------- */
.ra-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: calc(var(--ra-banner-height) + var(--ra-nav-height));
}

.ra-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
}

.ra-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,32,36,.55) 0%, rgba(31,32,36,.40) 45%, rgba(31,32,36,.65) 100%);
}

.ra-hero-content {
  position: relative; z-index: 1;
  max-width: 680px; padding: 40px 20px;
}

.ra-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ra-font-display);
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 22px;
}

.ra-hero-label::before, .ra-hero-label::after {
  content: ''; width: 20px; height: 1px;
  background: rgba(255,255,255,.25);
}

.ra-hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.6rem);
  font-weight: 800; color: var(--ra-white);
  line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -.5px;
}

.ra-hero-content h1 em {
  font-family: var(--ra-font-body);
  font-style: italic; font-weight: 400;
}

.ra-hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.68);
  max-width: 500px; margin: 0 auto 36px; line-height: 1.85;
}

.ra-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.ra-btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ra-teal); color: var(--ra-white);
  font-family: var(--ra-font-display);
  font-size: .88rem; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  transition: all var(--ra-transition); letter-spacing: .2px;
}

.ra-btn-teal:hover {
  background: var(--ra-teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,143,143,.3);
}

.ra-btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ra-white);
  font-family: var(--ra-font-display);
  font-size: .88rem; font-weight: 500;
  padding: 14px 32px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all var(--ra-transition);
}

.ra-btn-outline-white:hover {
  border-color: var(--ra-white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ---------- Section Defaults ---------- */
.ra-section { padding: 96px 0; }

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

.ra-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ra-font-display);
  font-size: .7rem; font-weight: 600;
  color: var(--ra-gray); text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 12px;
}

.ra-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--ra-silver); }

.ra-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ra-ink); margin-bottom: 14px; letter-spacing: -.4px;
}

.ra-section-header h2 em {
  font-family: var(--ra-font-body);
  font-style: italic; font-weight: 400;
  color: var(--ra-teal-deep);
}

.ra-section-header p {
  font-size: 1rem; color: var(--ra-gray);
  max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* ---------- Mission ---------- */
.ra-mission {
  background: var(--ra-snow);
  border-bottom: 1px solid var(--ra-frost);
}

.ra-mission-inner {
  max-width: 620px; margin: 0 auto; text-align: center;
}

.ra-mission-rule {
  width: 36px; height: 2px;
  background: var(--ra-teal);
  margin: 0 auto 28px; border-radius: 1px;
}

.ra-mission h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--ra-ink); margin-bottom: 18px;
}

.ra-mission p {
  font-size: 1.05rem; color: var(--ra-charcoal); line-height: 1.9;
}

/* ---------- Programs ---------- */
.ra-programs { background: var(--ra-white); }

.ra-programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.ra-program-card {
  background: var(--ra-white);
  border: 1px solid var(--ra-frost);
  border-radius: var(--ra-radius-lg);
  overflow: hidden;
  transition: all var(--ra-transition);
}

.ra-program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ra-shadow-lg);
  border-color: transparent;
}

.ra-program-thumb {
  height: 200px; overflow: hidden; position: relative;
}

.ra-program-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}

.ra-program-card:hover .ra-program-thumb img { transform: scale(1.04); }

.ra-program-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ra-teal); color: var(--ra-white);
  font-family: var(--ra-font-display);
  font-size: .68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 12px; border-radius: 50px;
}

.ra-program-body { padding: 28px; }

.ra-program-body h3 {
  font-family: var(--ra-font-display);
  font-size: 1.1rem; color: var(--ra-ink);
  margin-bottom: 10px; font-weight: 700;
}

.ra-program-body p {
  font-size: .92rem; color: var(--ra-gray);
  line-height: 1.7; margin-bottom: 20px;
}

.ra-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ra-font-display);
  font-size: .84rem; font-weight: 600;
  color: var(--ra-teal-deep);
  transition: gap var(--ra-transition);
}

.ra-link-arrow:hover { gap: 10px; }

/* ---------- Impact Stats (dark) ---------- */
.ra-impact { background: var(--ra-ink); padding: 88px 0; }

.ra-impact .ra-eyebrow { color: var(--ra-teal); }
.ra-impact .ra-eyebrow::before { background: rgba(59,143,143,.4); }
.ra-impact .ra-section-header h2 { color: var(--ra-white); }
.ra-impact .ra-section-header h2 em { color: var(--ra-teal); }
.ra-impact .ra-section-header p { color: var(--ra-silver); }

.ra-impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}

.ra-impact-item {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--ra-transition);
}

.ra-impact-item:last-child { border-right: none; }
.ra-impact-item:hover { background: rgba(255,255,255,.03); }

.ra-impact-number {
  font-family: var(--ra-font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--ra-white);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.5px;
}

.ra-impact-number span { color: var(--ra-teal); }

.ra-impact-label {
  font-family: var(--ra-font-display);
  font-size: .72rem; font-weight: 600;
  color: var(--ra-silver);
  text-transform: uppercase; letter-spacing: 2px;
}

/* ---------- Stories ---------- */
.ra-stories {
  background: var(--ra-snow);
  border-top: 1px solid var(--ra-frost);
  border-bottom: 1px solid var(--ra-frost);
}

.ra-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}

.ra-story-image {
  border-radius: var(--ra-radius-lg);
  overflow: hidden; box-shadow: var(--ra-shadow-lg);
  position: relative;
}

.ra-story-image img {
  width: 100%; height: 460px; object-fit: cover;
}

.ra-story-image-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--ra-teal); color: var(--ra-white);
  font-family: var(--ra-font-display);
  font-size: .72rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px;
  letter-spacing: .5px;
}

.ra-story-text .ra-eyebrow { display: flex; }

.ra-story-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--ra-ink); margin-bottom: 16px;
}

.ra-story-text blockquote {
  font-family: var(--ra-font-body);
  font-style: italic; font-size: 1.05rem;
  color: var(--ra-charcoal); line-height: 1.85;
  margin-bottom: 20px; padding-left: 20px;
  border-left: 2px solid var(--ra-teal);
}

.ra-story-name {
  font-family: var(--ra-font-display);
  font-size: .86rem; font-weight: 700; color: var(--ra-ink);
  margin-bottom: 2px;
}

.ra-story-role {
  font-family: var(--ra-font-display);
  font-size: .74rem; font-weight: 500; color: var(--ra-gray);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ---------- Ways to Help ---------- */
.ra-help { background: var(--ra-white); }

.ra-help-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.ra-help-card {
  background: var(--ra-white);
  border: 1px solid var(--ra-frost);
  border-radius: var(--ra-radius-lg);
  padding: 36px 28px; text-align: center;
  transition: all var(--ra-transition);
  position: relative; overflow: hidden;
}

.ra-help-card::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: var(--ra-teal);
  border-radius: 0 0 3px 3px;
  opacity: 0; transition: opacity var(--ra-transition);
}

.ra-help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ra-shadow-lg);
  border-color: transparent;
}

.ra-help-card:hover::before { opacity: 1; }

.ra-help-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  background: var(--ra-teal-glow);
  border: 1px solid rgba(59,143,143,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ra-teal-deep);
  transition: all var(--ra-transition);
}

.ra-help-card:hover .ra-help-icon {
  background: var(--ra-teal); border-color: var(--ra-teal);
  color: var(--ra-white);
}

.ra-help-card h3 {
  font-size: 1.05rem; color: var(--ra-ink); margin-bottom: 10px;
}

.ra-help-card p {
  font-size: .92rem; color: var(--ra-gray);
  line-height: 1.7; margin-bottom: 20px;
}

/* ---------- Events ---------- */
.ra-events {
  background: var(--ra-snow);
  border-top: 1px solid var(--ra-frost);
  border-bottom: 1px solid var(--ra-frost);
}

.ra-events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.ra-event-card {
  background: var(--ra-white);
  border: 1px solid var(--ra-frost);
  border-radius: var(--ra-radius-lg);
  padding: 28px;
  transition: all var(--ra-transition);
}

.ra-event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ra-shadow-lg);
  border-color: transparent;
}

.ra-event-date {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}

.ra-event-date-box {
  width: 52px; height: 52px;
  background: var(--ra-teal-glow);
  border: 1px solid rgba(59,143,143,.2);
  border-radius: var(--ra-radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.ra-event-date-month {
  font-family: var(--ra-font-display);
  font-size: .6rem; font-weight: 700;
  color: var(--ra-teal-deep);
  text-transform: uppercase; letter-spacing: 1px;
  line-height: 1;
}

.ra-event-date-day {
  font-family: var(--ra-font-display);
  font-size: 1.2rem; font-weight: 800;
  color: var(--ra-ink); line-height: 1.1;
}

.ra-event-date-info {
  font-family: var(--ra-font-display);
  font-size: .78rem; font-weight: 500;
  color: var(--ra-gray); line-height: 1.4;
}

.ra-event-card h3 {
  font-size: 1.05rem; color: var(--ra-ink);
  margin-bottom: 8px;
}

.ra-event-card p {
  font-size: .9rem; color: var(--ra-gray);
  line-height: 1.65; margin-bottom: 16px;
}

/* ---------- CTA ---------- */
.ra-cta {
  background: var(--ra-teal); padding: 88px 0;
  text-align: center; position: relative; overflow: hidden;
}

.ra-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.12) 0%, transparent 65%);
}

.ra-cta-inner { position: relative; z-index: 1; }

.ra-cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--ra-white); margin-bottom: 14px; letter-spacing: -.4px;
}

.ra-cta p {
  font-size: 1rem; color: rgba(255,255,255,.75);
  max-width: 440px; margin: 0 auto 32px; line-height: 1.8;
}

.ra-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ra-ink); color: var(--ra-white);
  font-family: var(--ra-font-display);
  font-size: .88rem; font-weight: 700;
  padding: 14px 34px; border-radius: 50px;
  transition: all var(--ra-transition);
}

.ra-btn-dark:hover {
  background: var(--ra-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.25);
}

/* ---------- Footer ---------- */
.ra-footer {
  background: var(--ra-ink); padding: 64px 0 24px;
}

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

.ra-footer-brand .ra-logo { margin-bottom: 14px; color: var(--ra-white); }

.ra-footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.4);
  line-height: 1.7; max-width: 260px;
}

.ra-footer-col h4 {
  font-family: var(--ra-font-display);
  font-size: .68rem; font-weight: 700;
  color: var(--ra-teal);
  text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 18px;
}

.ra-footer-col ul li { margin-bottom: 10px; }

.ra-footer-col ul li a {
  font-family: var(--ra-font-display);
  font-size: .84rem; font-weight: 400;
  color: rgba(255,255,255,.4);
  transition: color var(--ra-transition);
}

.ra-footer-col ul li a:hover { color: var(--ra-white); }

.ra-footer-social {
  display: flex; gap: 8px; margin-top: 18px;
}

.ra-footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  transition: all var(--ra-transition);
}

.ra-footer-social a:hover { border-color: var(--ra-teal); color: var(--ra-teal); }

.ra-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ra-font-display);
  font-size: .76rem; color: rgba(255,255,255,.2);
}

.ra-footer-bottom a { color: rgba(255,255,255,.2); transition: color var(--ra-transition); }
.ra-footer-bottom a:hover { color: var(--ra-teal); }

/* ---------- Scroll Reveal ---------- */
.ra-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.ra-reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .ra-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .ra-impact-item:nth-child(2) { border-right: none; }
  .ra-impact-item:nth-child(3), .ra-impact-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); }
  .ra-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .ra-events-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .ra-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ra-hamburger { display: flex; }
  .ra-nav-links { display: none; }
  .ra-programs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .ra-help-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .ra-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ra-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .ra-section { padding: 68px 0; }
  .ra-hero-content h1 { font-size: 2.2rem; }
}
