/* ============================================
   goHAM Foundation — Shared Stylesheet
   Colors: #E21272 | #DF358D | #FC65B2 | #DE3588 | #303030
   Fonts: Poppins SemiBold (headings) | Montserrat Medium (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Montserrat:wght@400;500;600&display=swap');

/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #303030;
  background: #fff;
  line-height: 1.7;
}

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

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.25; }

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: #303030; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: #DF358D; }
h4 { font-size: 1.1rem; color: #303030; }
p  { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: #303030; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FC65B2;
  margin-bottom: 0.6rem;
}

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
section.tight { padding: 60px 0; }
section.bg-gray  { background: #F7F7F7; }
section.bg-pink  { background: #E21272; }
section.bg-lpink { background: #FC65B2; }
section.bg-dark  { background: #303030; }
section.bg-white { background: #fff; }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 7px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  /* Ensure touch targets meet 44px minimum */
  min-height: 44px;
  line-height: 1.4;
}

.btn-primary {
  background: #E21272;
  color: #fff;
  border-color: #E21272;
}
.btn-primary:hover { background: #DF358D; border-color: #DF358D; }

.btn-secondary {
  background: #fff;
  color: #E21272;
  border-color: #E21272;
}
.btn-secondary:hover { background: #FDE8F3; }

.btn-white {
  background: #fff;
  color: #E21272;
  border-color: #fff;
}
.btn-white:hover { background: #FDE8F3; border-color: #FDE8F3; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn + .btn { margin-left: 12px; }

/* ── NAVIGATION ───────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo img {
  height: 52px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #303030;
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: #E21272; }

.navbar-links .btn-primary {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Mobile hamburger — reset browser defaults, ensure touch-friendly */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  /* Reset browser button defaults */
  background: none;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  /* Ensure 44px touch target */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #303030;
  border-radius: 2px;
  transition: 0.3s;
  pointer-events: none;
}

/* Hamburger active state — animate to X when open */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 20px 24px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 999;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #303030;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  /* Ensure touch targets */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { color: #E21272; }
.mobile-menu .btn-primary { text-align: center; margin-top: 6px; justify-content: center; }

/* Page top offset for fixed nav */
.page-content { padding-top: 72px; }

/* ── HERO SECTIONS ────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(226, 18, 114, 0.50);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  color: #fff;
  padding: 60px 0;
}

.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p  { color: rgba(255,255,255,0.92); font-size: 1.08rem; margin-bottom: 30px; }

/* Hero button wrapper — allows wrapping on small screens */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-btns .btn { margin-left: 0 !important; margin-top: 0 !important; }

.hero-short {
  min-height: 320px;
  background: #E21272;
}

/* ── CARDS ────────────────────────────────── */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 32px;
  border-left: 5px solid #E21272;
}

.card-pink-top {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-top: 5px solid #E21272;
  padding: 32px;
}

/* ── GRID HELPERS ─────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Responsive large-gap helper — reduces on mobile */
.gap-60 { gap: 60px; }

/* ── FULL-WIDTH STRIPS ────────────────────── */
.strip {
  padding: 70px 0;
  text-align: center;
}

.strip h2 { color: #fff; margin-bottom: 16px; }
.strip p  { color: rgba(255,255,255,0.92); max-width: 680px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ── STAT BLOCKS ──────────────────────────── */
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #E21272;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #303030;
}

/* ── BLOCKQUOTE ───────────────────────────── */
blockquote {
  border-left: 5px solid #E21272;
  padding: 16px 24px;
  background: #FDE8F3;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  color: #DF358D;
  font-size: 1.08rem;
}
blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: #303030;
  margin-top: 10px;
  font-weight: 600;
}

/* ── SECTION INTRO ────────────────────────── */
.section-intro { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-intro h2 { margin-bottom: 14px; }
.section-intro p  { font-size: 1.02rem; color: #555; }

/* ── IMPACT LEVEL CARDS ───────────────────── */
.impact-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  padding: 28px 24px;
  text-align: center;
  border-top: 4px solid #E21272;
}
.impact-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #E21272;
  margin-bottom: 8px;
}
.impact-desc { font-size: 0.95rem; color: #555; }

/* ── SPONSORSHIP TIERS ────────────────────── */
.tier-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured { border: 3px solid #E21272; }

.tier-icon { font-size: 2.2rem; margin-bottom: 10px; }
.tier-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #303030;
  margin-bottom: 4px;
}
.tier-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #E21272;
  margin-bottom: 16px;
}
.tier-benefits { text-align: left; }
.tier-benefits li {
  font-size: 0.9rem;
  color: #444;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  gap: 8px;
}
.tier-benefits li::before { content: '✓'; color: #E21272; font-weight: 700; flex-shrink: 0; }

.matching-callout {
  background: #FDE8F3;
  border: 2px solid #E21272;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 36px 0;
  text-align: center;
}
.matching-callout strong { color: #E21272; }

/* ── TEAM CARDS ───────────────────────────── */
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  padding-top: 24px;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

/* Board flex grid responsive */
.board-flex { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.board-flex .team-card { flex: 0 0 calc(33.333% - 16px); }

@media (max-width: 960px) {
  .board-flex .team-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .board-flex .team-card { flex: 0 0 100%; }
}
.team-card-body { padding: 20px 16px; }
.team-card-body h4 { color: #303030; margin-bottom: 4px; }
.team-card-body span { font-size: 0.88rem; color: #E21272; font-weight: 600; }

/* Responsive wrapper for team/board card flex grid */
.team-flex-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 200px;
  max-width: 340px;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #FC65B2, #E21272);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
}

/* ── CONTACT FORM ─────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #303030;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #303030;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #E21272; }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── CONTACT INFO ─────────────────────────── */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: #FDE8F3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.88rem; color: #E21272; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-info-item p  { font-size: 0.95rem; color: #555; margin: 0; }

/* ── SOCIAL ICONS ─────────────────────────── */
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #E21272;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  font-weight: 700;
}
.social-icon:hover { background: #DF358D; transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #303030;
  color: #fff;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 16px;
}
.footer-logo img { height: 44px; display: block; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 20px; }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FC65B2;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #FC65B2; }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; }

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-bottom a { color: #FC65B2; }

/* ── FOOTER SHARED ADDITIONS ──────────────── */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.72); transition: color 0.25s ease; }
.footer-links a:hover { color: #FC65B2; }
.footer-contact-line { font-size: 0.87rem; color: rgba(255,255,255,0.68); margin-bottom: 8px; }
.footer-contact-line a { color: rgba(255,255,255,0.68); }
.footer-contact-line a:hover { color: #FC65B2; }
.footer-donate-btn { display: inline-block; background: #E21272; color: #fff; padding: 9px 20px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; transition: background 0.25s ease; }
.footer-donate-btn:hover { background: #DF358D; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.09); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease; }
.footer-social-icon:hover { background: #E21272; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.35); max-width: 1200px; margin: 0 auto; }
.footer-bar a { color: rgba(255,255,255,0.35); text-decoration: underline; }

/* ── NEWSLETTER STRIP ─────────────────────── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 7px;
  border: 1.5px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input:focus { border-color: #E21272; }

.inline-signup { display: flex; flex-direction: column; gap: 10px; max-width: 520px; margin: 0 auto; }
.inline-signup-row { display: flex; gap: 12px; }
.inline-signup input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 7px;
  border: 1.5px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93rem;
  outline: none;
}
.inline-signup input:focus { border-color: #E21272; }

/* ── EVENT DETAIL ITEMS ───────────────────── */
.event-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-detail-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
}
.event-detail-item .event-icon { font-size: 2rem; margin-bottom: 10px; }
.event-detail-item h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #FC65B2; margin-bottom: 6px; }
.event-detail-item p  { font-size: 0.95rem; color: #303030; font-weight: 600; margin: 0; }

/* ── TRUST BADGES ─────────────────────────── */
.trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
}
.trust-badge .badge-icon { font-size: 1.2rem; }

/* ── HALIMAH MEMORIAL ─────────────────────── */
.memorial-section {
  background: linear-gradient(135deg, #FDE8F3 0%, #fff 60%);
}
.memorial-photo-wrap {
  position: relative;
}
.memorial-photo-wrap img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(226,18,114,0.18);
  width: 100%;
  object-fit: cover;
}
.memorial-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: #E21272;
  color: #fff;
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.memorial-badge span { font-size: 1.6rem; display: block; }

/* ── PHOTO GALLERY ────────────────────────── */
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.photo-duo img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 300px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* ── VALUES CARDS ─────────────────────────── */
.value-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  padding: 32px 24px;
  border-top: 5px solid #E21272;
  text-align: center;
}
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.15rem; color: #303030; margin-bottom: 10px; }
.value-card p  { font-size: 0.93rem; color: #555; }

/* ── UTILITIES ────────────────────────────── */
.text-center { text-align: center; }
.text-pink   { color: #E21272; }
.text-white  { color: #fff; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── RESPONSIVE ───────────────────────────── */

/* Tablet — 960px */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .event-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Medium tablet — 860px */
@media (max-width: 860px) {
  /* Navbar gap tightens before hamburger kicks in */
  .navbar-links { gap: 20px; }
  .navbar-links a { font-size: 0.82rem; }
}

/* Mobile — 720px */
@media (max-width: 720px) {
  section { padding: 56px 0; }
  section.tight { padding: 44px 0; }

  .grid-2       { grid-template-columns: 1fr; gap: 32px; }
  .grid-3       { grid-template-columns: 1fr; }
  .grid-2-tight { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  .gap-60 { gap: 32px; }

  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 420px; }
  .hero-content { padding: 48px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .event-detail-grid { grid-template-columns: repeat(2, 1fr); }

  .photo-duo { grid-template-columns: 1fr; }
  .photo-duo img { height: 240px; }

  .inline-signup-row { flex-direction: column; }

  /* Buttons stack vertically in hero and strips on mobile */
  .btn + .btn { margin-left: 0; margin-top: 10px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: auto; }

  /* Board cards: 2-per-row on mobile */
  .team-flex-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 150px;
  }
}

/* Small mobile — 480px */
@media (max-width: 480px) {
  section { padding: 44px 0; }

  .container { padding: 0 16px; }

  .grid-4 { grid-template-columns: 1fr; }
  .tier-card { padding: 24px 18px; }

  .event-detail-grid { grid-template-columns: 1fr; }

  .hero { min-height: 360px; }
  .hero-content { padding: 36px 0; }
  /* Full-width stacked buttons on very small screens */
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* Strip buttons stack full-width */
  .strip .btn + .btn { margin-left: 0; margin-top: 10px; display: block; }

  /* Board cards: 1-per-row on very small screens */
  .team-flex-item {
    flex: 0 0 100%;
    max-width: 400px;
    min-width: unset;
  }

  .memorial-badge {
    width: 70px; height: 70px;
    font-size: 0.6rem;
    bottom: -10px; right: -10px;
  }
  .memorial-badge span { font-size: 1.2rem; }

  .stat-number { font-size: 2.2rem; }

  blockquote { padding: 14px 16px; font-size: 0.98rem; }
}
