/* ═══════════════════════════════════════════════════
   AHS REUNION PAGE — avenalmuseum.com/reunion
   Avenal Buccaneers: Royal Blue, Gold, White
   ═══════════════════════════════════════════════════ */
:root {
  --ahs-royal: #003087;
  --ahs-royal-dark: #001F5C;
  --ahs-royal-deep: #0A1628;
  --ahs-royal-mid: #1A4095;
  --ahs-gold: #CFA847;
  --ahs-gold-bright: #E8C55A;
  --ahs-gold-dark: #A88A34;
  --ahs-white: #FFFFFF;
  --ahs-cream: #FAF8F2;
  --ahs-warm-gray: #F0ECE3;
  --ahs-text: #1C2A3A;
  --ahs-muted: #5E6E7E;
  --ahs-radius: 14px;
}

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

.ahs-reunion-page {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ahs-text);
  background: var(--ahs-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO SECTION ── */
.ahs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--ahs-royal-deep) 0%, var(--ahs-royal) 35%, var(--ahs-royal-mid) 70%, #2A5EA8 100%);
  padding: 3rem 1.5rem 6rem;
  overflow: hidden;
  text-align: center;
}
.ahs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 650px 450px at 15% 25%, rgba(207,168,71,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 85% 75%, rgba(207,168,71,0.06) 0%, transparent 70%);
  pointer-events: none;
}
/* Subtle pattern overlay */
.ahs-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 42px
  );
  pointer-events: none;
}

/* Wave transition */
.ahs-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
}
.ahs-hero-wave svg { display: block; width: 100%; height: 100px; }

/* Hero content */
.ahs-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 840px;
  animation: ahs-fade-up 0.9s ease-out;
}
@keyframes ahs-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* AHS Logo */
.ahs-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  animation: ahs-fade-up 0.9s ease-out 0.15s both;
}
.ahs-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(207,168,71,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.ahs-logo-circle img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
/* Fallback SVG if logo image doesn't load */
.ahs-logo-fallback {
  display: none;
  width: 80px;
  height: 80px;
}
.ahs-logo-circle img[src=""] ~ .ahs-logo-fallback,
.ahs-logo-circle img:not([src]) ~ .ahs-logo-fallback {
  display: block;
}

/* Hosted by badge */
.ahs-hosted-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px 8px 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(207,168,71,0.2);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: ahs-fade-up 0.9s ease-out 0.25s both;
}
.ahs-hosted-badge img {
  height: 28px;
  width: auto;
  border-radius: 4px;
}
.ahs-hosted-badge span {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ahs-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 0.4em;
  animation: ahs-fade-up 0.9s ease-out 0.35s both;
}
.ahs-hero h1 .ahs-gold-text {
  color: var(--ahs-gold-bright);
  font-style: italic;
}

.ahs-hero-subtitle {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  animation: ahs-fade-up 0.9s ease-out 0.5s both;
}

/* Event info pills */
.ahs-event-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  animation: ahs-fade-up 0.9s ease-out 0.6s both;
}
.ahs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207,168,71,0.12);
  border: 1px solid rgba(207,168,71,0.25);
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--ahs-gold-bright);
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.ahs-pill-icon { font-size: 1.1rem; }

/* CTA button */
.ahs-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--ahs-gold-dark), var(--ahs-gold), var(--ahs-gold-bright));
  color: var(--ahs-royal-dark);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(207,168,71,0.3);
  animation: ahs-fade-up 0.9s ease-out 0.75s both;
}
.ahs-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(207,168,71,0.45);
}

/* ── FREE / OLD TIMERS DAY CALLOUT ── */
.ahs-callout-bar {
  background: var(--ahs-gold);
  padding: 1.2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 3;
}
.ahs-callout-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.ahs-callout-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ahs-royal-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.ahs-callout-item .icon {
  font-size: 1.2rem;
}
.ahs-callout-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ahs-royal);
  opacity: 0.3;
}

/* ── SECTION COMMONS ── */
.ahs-section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ahs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ahs-gold-dark);
  margin-bottom: 0.8rem;
}
.ahs-section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--ahs-gold);
  border-radius: 1px;
}
.ahs-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--ahs-royal);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.ahs-section-desc {
  color: var(--ahs-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* ── CLASS REUNION SPOTLIGHT ── */
.ahs-class-spotlight {
  background: var(--ahs-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,48,135,0.06);
  border: 1px solid rgba(0,48,135,0.06);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.ahs-class-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ahs-royal), var(--ahs-gold), var(--ahs-royal));
}
.ahs-class-spotlight h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ahs-royal);
  margin-bottom: 0.3rem;
}
.ahs-class-spotlight > p {
  color: var(--ahs-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.ahs-class-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ahs-class-card {
  background: linear-gradient(135deg, var(--ahs-royal), var(--ahs-royal-mid));
  border-radius: var(--ahs-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ahs-class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,48,135,0.2);
}
.ahs-class-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ahs-gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.ahs-class-card:hover::after { transform: scaleX(1); }
.ahs-class-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--ahs-gold-bright);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ahs-class-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}
.ahs-class-reunion-num {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3rem;
}
.ahs-photo-time {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(207,168,71,0.1);
  border: 1px solid rgba(207,168,71,0.2);
  border-radius: 12px;
  color: var(--ahs-gold-dark);
  font-weight: 700;
  font-size: 1rem;
}
.ahs-photo-time .cam { font-size: 1.3rem; }

/* ── EVENT DETAIL CARDS ── */
.ahs-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.ahs-detail-card {
  background: var(--ahs-white);
  border-radius: var(--ahs-radius);
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,48,135,0.05);
  border: 1px solid rgba(0,48,135,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ahs-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,48,135,0.1);
}
.ahs-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,48,135,0.07), rgba(0,48,135,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
}
.ahs-detail-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ahs-royal);
  margin-bottom: 0.4rem;
}
.ahs-detail-card p {
  color: var(--ahs-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.ahs-highlight {
  color: var(--ahs-gold-dark);
  font-weight: 700;
}

/* ── SCHEDULE SECTION (DARK) ── */
.ahs-schedule {
  background: var(--ahs-royal);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.ahs-schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 350px at 10% 85%, rgba(207,168,71,0.08), transparent),
    radial-gradient(ellipse 600px 400px at 90% 15%, rgba(42,94,168,0.25), transparent);
}
.ahs-schedule-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ahs-schedule .ahs-section-label { color: var(--ahs-gold-bright); }
.ahs-schedule .ahs-section-title { color: #fff; }
.ahs-schedule .ahs-section-desc { color: rgba(255,255,255,0.55); }

.ahs-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 680px;
}
.ahs-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--ahs-gold), rgba(207,168,71,0.12));
}
.ahs-tl-item {
  display: flex;
  gap: 1.8rem;
  padding: 1.3rem 0;
}
.ahs-tl-dot {
  min-width: 48px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.ahs-tl-dot .dot {
  width: 12px;
  height: 12px;
  background: var(--ahs-gold);
  border-radius: 50%;
  border: 3px solid var(--ahs-royal);
  box-shadow: 0 0 0 3px rgba(207,168,71,0.25);
  position: relative;
  z-index: 1;
}
.ahs-tl-dot .dot.photo-dot {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 4px rgba(207,168,71,0.4), 0 0 16px rgba(207,168,71,0.3);
}
.ahs-tl-body h4 {
  color: var(--ahs-gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}
.ahs-tl-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.ahs-tl-body p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}
.ahs-tl-body .photo-highlight {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 5px 14px;
  background: rgba(207,168,71,0.15);
  border: 1px solid rgba(207,168,71,0.3);
  border-radius: 8px;
  color: var(--ahs-gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── DONATION & DRINK DEAL ── */
.ahs-donation-section {
  padding: 5rem 1.5rem;
  background: var(--ahs-warm-gray);
}
.ahs-donation-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.ahs-donation-card {
  background: var(--ahs-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,48,135,0.06);
  border: 1px solid rgba(0,48,135,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ahs-donation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 1rem;
}
.ahs-donation-card:first-child .ahs-donation-icon {
  background: rgba(0,48,135,0.08);
}
.ahs-donation-card:last-child .ahs-donation-icon {
  background: rgba(207,168,71,0.12);
}
.ahs-donation-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ahs-royal);
  margin-bottom: 0.4rem;
}
.ahs-donation-card p {
  color: var(--ahs-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  flex-grow: 1;
}
.ahs-donation-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ahs-gold-dark);
  margin: 0.5rem 0;
}

/* ── REGISTRATION FORM ── */
.ahs-register {
  padding: 5rem 1.5rem;
}
.ahs-form-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: var(--ahs-white);
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,48,135,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.ahs-form-side {
  background: linear-gradient(170deg, var(--ahs-royal), var(--ahs-royal-deep));
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.ahs-form-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 80%, rgba(207,168,71,0.1), transparent 60%);
}
.ahs-form-side-content {
  position: relative;
  z-index: 1;
}
.ahs-form-side h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.ahs-form-side p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.ahs-side-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.ahs-side-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ahs-side-info-item .info-icon {
  font-size: 1.1rem;
  margin-top: 1px;
}
.ahs-side-info-item .info-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}
.ahs-side-info-item .info-text strong {
  color: var(--ahs-gold-bright);
  display: block;
  font-size: 0.88rem;
}

/* Form fields */
.ahs-form-main {
  padding: 2.5rem;
}
.ahs-form-main h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ahs-royal);
  margin-bottom: 0.2rem;
}
.ahs-form-sub {
  color: var(--ahs-muted);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}
.ahs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.ahs-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ahs-field.full { grid-column: 1 / -1; }
.ahs-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ahs-text);
}
.ahs-field input,
.ahs-field select,
.ahs-field textarea {
  padding: 11px 14px;
  border: 2px solid rgba(0,48,135,0.08);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ahs-text);
  background: var(--ahs-cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.ahs-field input:focus,
.ahs-field select:focus,
.ahs-field textarea:focus {
  border-color: var(--ahs-gold);
  box-shadow: 0 0 0 3px rgba(207,168,71,0.1);
  background: #fff;
}
.ahs-field input::placeholder { color: #B0B8C4; }
.ahs-field select { cursor: pointer; }
.ahs-field textarea { resize: vertical; min-height: 70px; }

.ahs-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 1rem 0 1.5rem;
  padding: 12px 16px;
  background: rgba(207,168,71,0.06);
  border: 1px solid rgba(207,168,71,0.15);
  border-radius: 10px;
}
.ahs-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ahs-royal);
  cursor: pointer;
}
.ahs-checkbox-row label {
  font-size: 0.85rem;
  color: var(--ahs-text);
  line-height: 1.5;
  cursor: pointer;
}
.ahs-checkbox-row label strong { color: var(--ahs-gold-dark); }

.ahs-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--ahs-gold-dark), var(--ahs-gold), var(--ahs-gold-bright));
  color: var(--ahs-royal-dark);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(207,168,71,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.ahs-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(207,168,71,0.4);
}

/* ── FOOTER ── */
.ahs-footer {
  background: var(--ahs-royal-deep);
  padding: 3.5rem 1.5rem 1.5rem;
  text-align: center;
}
.ahs-footer-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ahs-footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.ahs-footer-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ahs-footer-logo-item img {
  height: 48px;
  width: auto;
  filter: brightness(0.9);
  border-radius: 6px;
}
.ahs-footer-logo-item span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ahs-footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem 0;
}
.ahs-footer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  line-height: 1.8;
}
.ahs-footer a {
  color: var(--ahs-gold);
  text-decoration: none;
}
.ahs-footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ahs-form-wrapper { grid-template-columns: 1fr; }
  .ahs-form-side { padding: 2rem 1.5rem; }
  .ahs-form-row { grid-template-columns: 1fr; }
  .ahs-donation-inner { grid-template-columns: 1fr; }
  .ahs-class-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
  .ahs-event-pills { flex-direction: column; align-items: center; }
  .ahs-callout-inner { flex-direction: column; gap: 0.8rem; }
  .ahs-callout-divider { display: none; }
}

/* ── SCROLL ANIMATIONS ── */
.ahs-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ahs-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
