/* ── Tokens ──────────────────────────────────────────── */
:root {
  --navy:       #1a2f5e;
  --navy-deep:  #0f1d3a;
  --red:        #c8102e;
  --red-dark:   #a30d23;
  --white:      #ffffff;
  --light:      #f0f4fb;
  --muted:      #5a6a8a;
  --border:     #d0d9ee;
  --font-d:     'Playfair Display', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --max-w:      1100px;
  --radius:     6px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-b); color: var(--navy); background: var(--white); line-height: 1.6; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }

/* ── Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.accent        { color: var(--red); }
.accent-light  { color: rgba(255,255,255,0.6); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Eyebrow ─────────────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow.red   { color: var(--red); }
.eyebrow.muted { color: rgba(255,255,255,0.4); }

/* ── Section titles ──────────────────────────────────── */
.section-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.section-title.light { color: var(--white); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-align: center;
}
.btn-primary         { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-primary:hover   { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline         { background: transparent;  color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover   { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-white           { background: var(--white); color: var(--red);   border-color: var(--white); }
.btn-white:hover     { background: #f0e8e8; }
.btn:focus-visible   { outline: 3px solid var(--red); outline-offset: 3px; }
.full-width          { width: 100%; }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(208,217,238,0.5);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 16px rgba(0,0,0,0.09);
  border-bottom-color: transparent;
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand      { font-family: var(--font-d); font-weight: 700; font-size: 0.95rem; line-height: 1.25; color: var(--navy); display: flex; align-items: center; gap: 0.65rem; }
.nav-badge      { height: 38px; width: auto; display: block; flex-shrink: 0; }
.nav-brand-text { display: block; }
.nav-brand span { font-weight: 400; font-size: 0.78rem; color: var(--muted); }
.nav-menu        { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu a      { font-size: 0.875rem; font-weight: 500; color: var(--navy); transition: color 0.15s; }
.nav-menu a:hover,
.nav-menu a.active { color: var(--red); }
.nav-donate {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.85rem;
  transition: background 0.15s;
}
.nav-donate:hover { background: var(--red-dark) !important; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: 'WEST\ANORRITON';
  position: absolute;
  right: -0.05em;
  bottom: -0.08em;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(6rem, 16vw, 14rem);
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.03em;
  line-height: 0.9;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: pre;
}
.hero-inner {
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.25rem, 5vw, 3rem)
           clamp(2.5rem, 6vh, 4rem) clamp(2rem, 8vw, 7rem);
}
.hero-headline { max-width: 640px; }
.hero h1 {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }

/* ── Section backgrounds ──────────────────────────────  */
.section-white { background: var(--white); padding: clamp(4rem, 8vh, 6rem) 0; }
.section-light { background: var(--light); padding: clamp(4rem, 8vh, 6rem) 0; }
.section-navy  { background: var(--navy);  padding: clamp(4rem, 8vh, 6rem) 0; color: var(--white); }
.section-red   { background: var(--red);   padding: clamp(2.5rem, 5vh, 3.5rem) 0; color: var(--white); }

/* ── Community / Map ─────────────────────────────────── */
.community-section { padding: clamp(4rem, 8vh, 6rem) 0; }
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.community-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.community-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.community-map { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.community-map svg { width: 100%; max-width: 480px; height: auto; filter: drop-shadow(0 0 24px rgba(0,0,0,0.4)); }
.map-caption { font-size: 0.72rem; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; }

/* ── About ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-text p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.75rem; flex-wrap: wrap; }
.about-link { font-size: 0.9rem; font-weight: 600; color: var(--red); }
.about-link:hover { text-decoration: underline; }
.about-logo { display: flex; justify-content: center; align-items: center; }
.about-logo img { max-width: 560px; width: 100%; height: auto; }

/* ── Issues ──────────────────────────────────────────── */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.issue {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
}
.issue-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.issue h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.issue p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── Get Involved cards ──────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
}
.card-icon-svg {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.card h3    { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--navy); }
.card p     { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.card-link  { display: block; margin-top: 0.75rem; font-size: 0.88rem; font-weight: 600; color: var(--red); }
.card-link:hover { text-decoration: underline; }

/* ── Volunteer form ──────────────────────────────────── */
.volunteer-block {
  background: var(--navy);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3rem);
}
.volunteer-header { margin-bottom: 2rem; }
.volunteer-header h3 {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.volunteer-header p { font-size: 0.95rem; color: rgba(255,255,255,0.6); }

.volunteer-form { display: flex; flex-direction: column; gap: 1.75rem; }
.volunteer-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 0.6rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.check-item input[type="checkbox"] { accent-color: var(--red); width: 16px; height: 16px; cursor: pointer; }
.check-item span { line-height: 1.3; }

.volunteer-fields {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}
.volunteer-fields input {
  flex: 1 1 180px;
  padding: 0.72rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.92rem;
}
.volunteer-fields input::placeholder { color: rgba(255,255,255,0.4); }
.volunteer-fields input:focus        { outline: 2px solid var(--red); border-color: transparent; }

/* ── Events (enhanced) ───────────────────────────────── */
.event-card-featured {
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 0;
  overflow: hidden;
}
.event-card-featured .event-date-badge {
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}
.event-month {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.event-card-featured .event-info {
  padding: 1.75rem 2rem;
}
.event-type-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.event-card-featured .event-info h3 {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.event-details { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.event-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--red); opacity: 0.7; }
.event-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.event-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn-text-link { font-size: 0.88rem; font-weight: 600; color: var(--red); }
.btn-text-link:hover { text-decoration: underline; }

/* ── Officials ───────────────────────────────────────── */
.officials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.official-tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.official-placeholder { display: flex; flex-direction: column; gap: 0.75rem; }
.official-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.placeholder-card { opacity: 0.6; }
.official-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.official-name  { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.official-role  { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }

.official-links { display: flex; flex-direction: column; gap: 0.6rem; }
.official-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s, border-color 0.15s;
}
.official-link-card:hover { background: #e4ecf7; border-color: var(--muted); }
.official-link-card svg   { flex-shrink: 0; color: var(--muted); }

.officials-note { font-size: 0.88rem; color: var(--muted); }
.officials-note a { color: var(--red); font-weight: 600; }
.officials-note a:hover { text-decoration: underline; }

/* ── Voting ──────────────────────────────────────────── */
.voting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.voting-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem;
  transition: background 0.15s, border-color 0.15s;
  display: block;
}
.voting-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.voting-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem;
}
.voting-card h3  { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.voting-card p   { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 0.75rem; }
.voting-link     { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.voting-card:hover .voting-link { color: rgba(255,255,255,0.85); }

/* ── Events ──────────────────────────────────────────── */
.events-list  { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.event-date {
  text-align: center;
  min-width: 60px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}
.event-month { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.event-day   { display: block; font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; line-height: 1; margin-top: 0.2rem; }
.event-info h3   { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.event-meta      { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.event-info p:not(.event-meta) { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.events-more     { font-size: 0.9rem; color: var(--muted); }
.events-more a   { color: var(--red); font-weight: 600; }
.events-more a:hover { text-decoration: underline; }

/* ── Newsletter ──────────────────────────────────────── */
.newsletter-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}
.newsletter-text        { flex: 1 1 280px; }
.newsletter-text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.newsletter-text p { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.65; }

.signup-form {
  flex: 1 1 300px;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.signup-form input {
  flex: 1 1 150px;
  padding: 0.72rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.92rem;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.5); }
.signup-form input:focus        { outline: 2px solid rgba(255,255,255,0.6); border-color: transparent; }

/* ── Contact ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-details  { margin-top: 0.25rem; }
.contact-item     { margin-bottom: 1.75rem; }
.contact-label    { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.35rem; }
.contact-item p   { font-size: 0.95rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.contact-item a   { color: rgba(255,255,255,0.72); text-decoration: underline; }
.contact-item a:hover { color: var(--white); }
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.72rem 1rem;
  margin-bottom: 0.7rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.92rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.38); }
.contact-form input:focus,
.contact-form textarea:focus        { outline: 2px solid var(--red); border-color: transparent; }
.contact-form textarea              { resize: vertical; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 4px solid var(--red);
  padding: 2.25rem 0;
  text-align: center;
}
.footer-brand       { font-family: var(--font-d); font-weight: 700; color: var(--white); font-size: 1rem; margin-bottom: 0.6rem; }
.footer-legal       { font-size: 0.72rem; color: rgba(255,255,255,0.38); max-width: 480px; margin: 0 auto 0.5rem; line-height: 1.55; }
.footer-copy        { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-copy a      { color: rgba(255,255,255,0.35); text-decoration: underline; }
.footer-copy a:hover { color: rgba(255,255,255,0.6); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 clamp(1.25rem, 5vw, 3rem) 1rem;
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu a {
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-donate { border-radius: 0; background: none !important; color: var(--red) !important; padding: 0.6rem 0; font-weight: 700 !important; }
  .nav-donate:hover { background: none !important; }
  .contact-grid    { grid-template-columns: 1fr; }
  .community-inner { grid-template-columns: 1fr; }
  .officials-grid  { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-grid   { grid-template-rows: auto auto; }
  .about-logo   { order: -1; }
  .about-logo img { max-width: 280px; }
  .newsletter-inner { flex-direction: column; gap: 1.5rem; }
  .hero-inner   { padding-left: clamp(1.25rem, 5vw, 3rem); }
  .event-card   { grid-template-columns: 1fr; gap: 1rem; }
  .event-date   { width: fit-content; }
}

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
