*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:     #C2566B;
  --rose-lt:  #F9EAED;
  --rose-dk:  #8C2D3E;
  --gold:     #D4913A;
  --gold-lt:  #FBF3E6;
  --ink:      #1A1A1A;
  --mid:      #444444;
  --muted:    #767676;
  --rule:     #E5E5E5;
  --cream:    #FAFAFA;
  --white:    #FFFFFF;
  --sans:     'Nunito Sans', sans-serif;
  --max:      780px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); font-size: 18px; line-height: 1.7; -webkit-font-smoothing: antialiased; }

a { color: var(--rose); text-decoration: underline; }
a:hover { color: var(--rose-dk); }

/* ── TOP BAR ── */
.topbar {
  //background: var(--rose-dk);
  background: var(--ink);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}
.topbar a { color: #ffd0d8; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

/* ── NAV ── */
nav {
  border-bottom: 2px solid var(--ink);
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--rose); }
.nav-links {
  display: flex; gap: 0; list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0 1rem;
  height: 64px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s, color 0.15s;
  margin-bottom: -2px;
}
.nav-links a:hover { color: var(--rose); border-bottom-color: var(--rose); }
.nav-donate {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--rose); color: #fff; padding: 0.5rem 1.25rem;
  text-decoration: none; border-radius: 3px;
  transition: background 0.15s;
}
.nav-donate:hover { background: var(--rose-dk); color: #fff; }

/* ── HERO ── */
.hero-outer { border-bottom: 2px solid var(--ink); }
.hero {
  padding: clamp(4rem, 1vw, 3.5rem) clamp(4rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  background-image: url(../Images/bg400.png);
  background-size: cover;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFF;
}
.hero-headline .accent { color:#FFF; }
.hero-sub {
  margin-top: 0.85rem;
  font-size: 0.97rem;
  color: #FFF;
  line-height: 1.7;
  max-width: 480px;
  font-weight:600;
}
.hero-btns {
  margin-top: 1.25rem;
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; text-decoration: none;
  border-radius: 3px; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-filled { background: var(--rose); color: #fff; border: 2px solid var(--rose); }
.btn-filled:hover { background: var(--rose-dk); border-color: var(--rose-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.hero-aside {
  border-left: 2px solid var(--rule);
  padding-left: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.aside-block { }
.aside-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFF; margin-bottom: 0.3rem;
}
.aside-value {
  font-size: 1.4rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1;
  color: #FFF;
}
.aside-value a { color:#FFF; text-decoration: none; }
.aside-value a:hover { text-decoration: underline; }
.aside-desc { font-size: 0.88rem; color: #FFF; margin-top: 0.2rem; }
.aside-divider { border: none; border-top: 1px solid var(--rule); }

/* ── SECTION LAYOUT ── */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1rem, 1vw, 3rem) clamp(1rem, 1vw, 3rem);
}
.section-wrap.wide { max-width: 1400px; margin-left: auto; margin-right: auto; padding: clamp(1rem, 1vw, 3.5rem) clamp(1rem, 4vw, 4rem) }

.section-rule {
  border: none;
  border-top: 2px solid var(--ink);
  max-width: 1160px;
  margin: 0 auto;
}
.section-rule-full {
  border: none;
  border-top: 2px solid var(--ink);
}

.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #FFF; margin-bottom: 0.4rem;
}
h2.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.025em; line-height: 1.1;
  color: var(--ink); margin-bottom: 0.85rem;
}
.section-body { font-size: 1rem; color: var(--mid); line-height: 1.8; }
.section-body + .section-body { margin-top: 1rem; }

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--ink);
  padding: clamp(1rem, 1vw, 2rem) clamp(1rem, 1vw, 3rem);
}
.feature-strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-item {
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.feature-item:last-child { border-right: none; }
.feature-num {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.03em;
  color: var(--rose); line-height: 1;
}
.feature-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 0.25rem;
}
.feature-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; line-height: 1.55; }

/* ── PILLARS ── */
.pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--ink); border-radius: 4px; overflow: hidden;
  margin-top: 1.5rem;
}
.pillar-item {
  padding: 1.25rem 1.4rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.pillar-item:nth-child(even) { border-right: none; }
.pillar-item:nth-child(3), .pillar-item:nth-child(4) { border-bottom: none; }
.pillar-num {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.6rem;
}
.pillar-item h3 {
  font-size: 1.05rem; font-weight: 900; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 0.5rem;
}
.pillar-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── ABOUT + EVENTS SIDE BY SIDE ── */
.about-events-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 1160px;
  margin: 0 auto;
}
.about-row {
  display: grid;
  //grid-template-columns: 2fr 1fr;
  max-width: 1160px;
  margin: 0 auto;
}
.about-col-about {
  padding: clamp(1rem, 1vw, 3rem) clamp(1rem, 1vw, 2.5rem);
 // border-right: 2px solid var(--ink);
}
.about-col {
  padding: clamp(1rem, 1vw, 3rem) clamp(1rem, 1vw, 2.5rem);
  border-right: 2px solid var(--ink);
}
.events-col {
  padding: clamp(1rem, 1vw, 3rem) clamp(1rem, 1vw, 2.5rem);
}
@media (max-width: 800px) {
  .about-events-row { grid-template-columns: 1fr; }
  .about-col { border-right: none; border-bottom: 2px solid var(--ink); }
}

/* ── EVENTS ── */
.events-list { margin-top: 1rem; }
.event-item {
  display: grid; grid-template-columns: 68px 1fr;
  gap: 1.1rem; align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.event-item:first-child { border-top: 1px solid var(--rule); }
.event-date-block {
  text-align: center;
  background: var(--rose);
  border-radius: 3px;
  padding: 0.4rem 0.3rem;
  flex-shrink: 0;
}
.ev-day { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.ev-mon { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 0.15rem; }
.event-content h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; line-height: 1.35;
}
.event-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.event-content a { font-size: 0.82rem; font-weight: 700; color: var(--rose); text-decoration: none; display: inline-block; margin-top: 0.4rem; letter-spacing: 0.02em; }
.event-content a::after { content: ' \2192'; }
.event-content a:hover { color: var(--rose-dk); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--rose);
  padding: clamp(1rem, 1vw, 3.5rem) clamp(1rem, 1vw, 3rem);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 0.95rem; max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.7; }
.btn-white {
  background: #fff; color: var(--rose); border: 2px solid #fff;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.75rem 1.75rem; border-radius: 3px; text-decoration: none;
  display: inline-block; margin: 0.35rem;
  transition: background 0.15s, color 0.15s;
}
.btn-white:hover { background: var(--rose-dk); color: #fff; border-color: var(--rose-dk); }
.btn-outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.75rem 1.75rem; border-radius: 3px; text-decoration: none;
  display: inline-block; margin: 0.35rem;
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: var(--gold-lt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.newsletter-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.newsletter-inner h3 { font-size: 1rem; font-weight: 900; letter-spacing: -0.01em; flex-shrink: 0; color: var(--ink); }
.newsletter-inner p { font-size: 0.88rem; color: var(--muted); flex: 1; min-width: 200px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: 1.5rem;
}
.service-card {
  border: 2px solid var(--rule);
  border-radius: 4px;
  padding: 1.25rem 1.4rem;
  transition: border-color 0.15s;
}
.service-card:hover { border-color: var(--rose); }
.service-card .sc-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.6rem;
}
.service-card h3 { font-size: 1rem; font-weight: 900; color: var(--ink); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.service-card a { font-size: 0.82rem; font-weight: 700; color: var(--rose); text-decoration: none; display: inline-block; margin-top: 0.75rem; }
.service-card a:hover { color: var(--rose-dk); text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: clamp(1rem, 1vw, 3rem) clamp(1rem, 1vw, 3rem) 1.5rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-name {
  font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.footer-brand .brand-name span { color: var(--rose); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 240px; }
.footer-contact { margin-top: 1.25rem; }
.footer-contact a {
  display: block; font-size: 0.82rem; color: rgba(255,255,255,0.55);
  text-decoration: none; margin-bottom: 0.35rem;
}
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1160px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-aside { border-left: none; border-top: 2px solid var(--rule); padding-left: 0; padding-top: 2rem; flex-direction: row; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .feature-item:last-child { border-bottom: none; }
  .pillars { grid-template-columns: 1fr; }
  .pillar-item { border-right: none !important; }
  .pillar-item:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}/* Hamburger Menu - ADD THIS */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  transition: opacity 0.15s;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.tabbar {
    display: flex;
    border: 1px solid #ccc;
    background: #f3f3f3;
}

.tab {
    padding: 14px 20px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    border-right: 1px solid #ccc;
    background: #f3f3f3;
}

.tab.active {
    background: #d9d9d9;
}

.tabcontent {
    display: none;
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px;
    background: #fff;
}

.tabcontent.active {
    display: block;
}

@media (max-width: 800px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links.active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 60vh !important;
    background: var(--white) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 2rem 2rem 2rem !important;
    transform: translateX(0) !important;
    opacity: 0.98 !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;  /* Overrides display: none */
    z-index: 100 !important;
  }
  
  .nav-links {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .nav-links a {
    font-size: 1.4rem !important;
    padding: 1rem 2rem !important;
    border-bottom: none !important;
  }
  
  .nav-donate {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
  }
}