/* ============================================
   RON NYBERG FOR IBEW 613 — CAMPAIGN SITE
   Design: bold, high-end, union-proud
   Palette: deep navy + electric amber + white
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2042;
  --navy-light: #1a3a6e;
  --amber:      #e8a020;
  --amber-dark: #c4820e;
  --amber-glow: #f5c442;
  --white:      #ffffff;
  --off-white:  #f5f6f8;
  --gray-100:   #e8eaed;
  --gray-300:   #9aa3b2;
  --gray-500:   #4a5568;
  --text:       #1a1f2e;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITIES ── */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-glow);
  border-color: var(--amber-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-gold {
  background: var(--amber);
  color: var(--navy);
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-gold:hover {
  background: var(--amber-glow);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--amber-glow) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px min(5vw, 96px) 80px;
  gap: clamp(24px, 4vw, 64px);
}

/* Full-bleed navy bg behind the grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: -2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,58,110,0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232,160,32,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-photo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: min(520px, 70vh);
}
.hero-photo {
  width: 100%;
  max-width: min(400px, 38vw);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: top center;
  border-radius: 16px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}


.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  width: 28px;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── QUOTE BANNER ── */
.quote-banner {
  background: var(--navy-mid);
  padding: 56px 24px;
  text-align: center;
}
.quote-banner blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.65;
}
.quote-banner cite {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── PLATFORM ── */
#platform {
  padding: 96px 0;
  background: var(--off-white);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}
.platform-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.platform-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.platform-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

/* ── ABOUT ── */
#about {
  padding: 96px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-stack {
  position: relative;
  margin: 0;
}
.about-photo-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-photo-secondary {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 42%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  border: 4px solid var(--white);
  aspect-ratio: 1;
  object-fit: cover;
}

.about-text-col p {
  color: var(--gray-500);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.about-text-col p strong { color: var(--navy); }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-100);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-300);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── GALLERY ── */
/* ── LIFESTYLE STRIP ── */
.lifestyle-strip {
  background: var(--navy-deep);
  padding: 0;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 280px;
}
.lifestyle-item {
  overflow: hidden;
  position: relative;
}
.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}
.lifestyle-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ── GALLERY ── */
.gallery-section {
  padding: 96px 0;
  background: var(--navy);
}
.gallery-section .section-label { color: var(--amber); }
.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px 220px;
  gap: 16px;
  margin-top: 48px;
}
/* Left tall: Ron, col 1, rows 1–2 */
.gallery-item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}
/* Middle 4 items: cols 2–3, rows 1–2 */
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }
/* AMPED panoramic: full width, row 3 */
.gallery-item--panoramic {
  grid-column: 1 / -1;
  grid-row: 3;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── UPDATES ── */
#updates {
  padding: 96px 0;
  background: var(--off-white);
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.update-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.update-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.update-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.update-card.featured h3 a,
.update-card.featured .update-meta { color: rgba(255,255,255,0.6); }
.update-card.featured p { color: rgba(255,255,255,0.75); }
.update-card.featured .update-link { color: var(--amber); }

.update-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 3px 10px;
  border-radius: 40px;
  margin-bottom: 14px;
  width: fit-content;
}
.update-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.update-card h3 a { transition: color var(--transition); }
.update-card h3 a:hover { color: var(--amber); }
.update-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.update-meta {
  font-size: 0.78rem;
  color: var(--gray-300);
  margin-bottom: 12px;
}
.update-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber-dark);
  transition: color var(--transition);
}
.update-link:hover { color: var(--amber); }

/* ── RAFFLES ── */
#raffles {
  padding: 96px 0;
  background: var(--white);
}

.raffle-note {
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-500);
}

.raffles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

.raffle-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.raffle-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.raffle-img-wrap {
  height: 360px;
  overflow: hidden;
  background: var(--off-white);
}
.raffle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.raffle-card:hover .raffle-img-wrap img { transform: scale(1.04); }
.raffle-body {
  padding: 24px 28px 28px;
}
.raffle-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.raffle-body p { font-size: 0.93rem; color: var(--gray-500); margin-bottom: 16px; }
.raffle-details {
  list-style: none;
  margin-bottom: 16px;
}
.raffle-details li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 4px 0;
}
.raffle-how {
  font-size: 0.85rem;
  color: var(--amber-dark);
  font-weight: 600;
  background: rgba(232,160,32,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px !important;
  line-height: 1.6;
}

/* ── DONATE STRIP ── */
.donate-strip {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  padding: 72px 0;
}
.donate-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.donate-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 6px;
}
.donate-text p { color: rgba(10,22,40,0.7); font-size: 0.97rem; }
.donate-strip .btn-gold {
  background: var(--navy);
  color: var(--amber);
  border: none;
}
.donate-strip .btn-gold:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

/* ── CONTACT ── */
#contact {
  padding: 96px 0;
  background: var(--navy);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-text .section-label { color: var(--amber); }
.contact-text .section-title { color: var(--white); margin-bottom: 20px; }
.contact-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-icons { display: flex; flex-direction: column; gap: 16px; }
.contact-icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.contact-icon-item svg { width: 22px; min-width: 22px; color: var(--amber); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--gray-100);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
  background: var(--white);
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  min-height: 24px;
}
.form-feedback.success { color: #2d7a3a; }
.form-feedback.error { color: #c0392b; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo img { width: 40px; opacity: 0.9; }
.footer-logo strong { display: block; color: var(--white); font-size: 0.92rem; }
.footer-logo span { display: block; color: var(--amber); font-size: 0.73rem; letter-spacing: 0.08em; margin-top: 2px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber); }

.footer-legal {
  width: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── RESPONSIVE ── */

/* Tablet: 900px and below */
@media (max-width: 900px) {
  /* Reduce section vertical padding on tablet */
  #platform, #about, .gallery-section, #updates, #raffles, #contact,
  .cta-strip, .donate-strip { padding-top: 72px; padding-bottom: 72px; }
  .quote-banner { padding: 48px 24px; }

  /* Hero: stack vertically */
  #hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 56px;
    min-height: auto;
    gap: 32px;
  }
  .hero-photo-wrap {
    min-height: auto;
    justify-content: center;
    align-items: center;
  }
  .hero-photo {
    max-height: 400px;
    border-radius: 12px;
  }
  .scroll-hint { display: none; }

  /* About: single column, clean stacking */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); height: 400px; }
  .about-photo-stack { max-width: 480px; margin: 0 auto; }
  .about-photo-secondary { right: -8px; bottom: -8px; }

  /* Contact: single column */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Gallery: 2-col, no fixed row heights */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item { height: 220px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3),
  .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .gallery-item--tall { grid-row: auto !important; grid-column: auto !important; height: 280px; }
  .gallery-item--panoramic { grid-column: 1 / -1 !important; grid-row: auto !important; height: 180px; }

  /* CTA + donate: stack */
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .donate-inner { flex-direction: column; text-align: center; }
  .donate-strip .btn-gold { width: 100%; max-width: 280px; justify-content: center; }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    padding: 8px 0 16px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
  }
  .nav-cta {
    margin: 12px 24px 0;
    border-radius: 8px !important;
    text-align: center;
    justify-content: center;
    display: flex;
    width: calc(100% - 48px);
    border-bottom: none !important;
  }

  /* Hero adjustments */
  #hero { padding: 88px 20px 48px; gap: 28px; }
  .hero-badge { font-size: 0.68rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-photo { max-height: 320px; }

  /* Section padding tighter on mobile */
  #platform, #about, .gallery-section, #updates, #raffles, #contact { padding: 60px 0; }
  .cta-strip, .donate-strip { padding: 56px 0; }

  /* Platform: single column */
  .platform-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .platform-card { padding: 24px 20px; }

  /* Gallery: single column on mobile */
  .gallery-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); height: 360px; }
  .gallery-item { height: 220px; }
  .gallery-item--tall { grid-row: auto !important; grid-column: auto !important; height: 280px; }
  .gallery-item--panoramic { grid-column: 1 !important; grid-row: auto !important; height: 160px; }

  /* Updates: single column */
  .updates-grid { grid-template-columns: 1fr; }

  /* Raffles: single column */
  .raffles-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; border-radius: var(--radius); }
  .form-group input, .form-group textarea { font-size: 1rem; } /* prevent iOS zoom */

  /* About stats */
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .stat-num { font-size: 1.7rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav { gap: 4px 16px; }

  /* Quote banner */
  .quote-banner { padding: 40px 20px; }

  /* CTA strip */
  .cta-strip-inner .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* Small phones: 420px and below */
@media (max-width: 420px) {
  .hero-headline { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .hero-photo { max-height: 260px; }
  .about-photo-secondary { display: none; } /* too cramped on tiny screens */
  .nav-inner { padding: 0 16px; }
  .section-inner { padding: 0 16px; }
  .contact-form { padding: 20px 16px; }
  .raffle-body { padding: 20px 16px 24px; }
}
