/* ===================================================================
   Brady Eidson — Personal Portfolio
   Design Language: Refined Editorial
   Palette: Burgundy / Cream / Charcoal / Black
   =================================================================== */

/* --- Design Tokens --- */
:root {
  /* Core palette */
  --bg:            #EDE8DE;
  --bg-dark:       #1A1614;
  --surface:       #F8F5EE;
  --surface-dim:   #E6E1D5;
  --text:          #1A1614;
  --text-light:    #EDE8DE;
  --muted:         #78736C;
  --accent:        #8B1A1A;
  --accent-hover:  #A62424;
  --rule:          rgba(26, 22, 20, 0.11);
  --rule-light:    rgba(237, 232, 222, 0.12);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(26, 22, 20, 0.04), 0 4px 12px rgba(26, 22, 20, 0.05);
  --shadow-md:   0 4px 12px rgba(26, 22, 20, 0.06), 0 16px 32px rgba(26, 22, 20, 0.08);
  --shadow-lg:   0 8px 24px rgba(26, 22, 20, 0.08), 0 24px 56px rgba(26, 22, 20, 0.1);

  /* Layout */
  --max:        1160px;
  --radius:     14px;
  --radius-lg:  20px;

  /* Motion */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --duration:  0.3s;
}


/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html:focus-within { scroll-behavior: smooth; }

::selection {
  background: rgba(139, 26, 26, 0.16);
  color: var(--text);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration-color: rgba(139, 26, 26, 0.3);
  text-underline-offset: 3px;
  transition: color var(--duration) var(--ease),
              text-decoration-color var(--duration) var(--ease);
}
a:hover { color: var(--accent); text-decoration-color: var(--accent); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}


/* --- Grain Texture --- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 100;
  background-image: url("./assets/noise.svg");
  mix-blend-mode: multiply;
}

.site-header,
main,
.site-footer { position: relative; z-index: 2; }

main {
  flex: 1;
}


/* --- Layout --- */
.container {
  width: min(var(--max), calc(100% - 4rem));
  margin-inline: auto;
}


/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(26, 22, 20, 0.06);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: relative;
}

.brand {
  text-decoration: none;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--duration) var(--ease);
}
.brand:hover { color: var(--accent); }

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border-radius: 10px;
  padding: 0.45rem;
  width: 44px;
  height: 40px;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease);
}
.mobile-menu-toggle:hover { border-color: var(--accent); }

.mobile-menu-toggle .line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Nav Links */
.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-list a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  position: relative;
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.nav-list a:hover {
  color: var(--text);
  background: rgba(139, 26, 26, 0.05);
}
.nav-list a.active {
  color: var(--accent);
  background: rgba(139, 26, 26, 0.07);
  font-weight: 600;
}


/* --- Typography --- */
h1, h2, h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
}
h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  margin-top: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.75;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  max-width: 48ch;
  line-height: 1.8;
  color: color-mix(in srgb, var(--text) 65%, var(--muted));
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: transform var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--rule));
  box-shadow: var(--shadow-sm);
  color: var(--text);
}
.btn:active { transform: translateY(0); }

.btn-primary {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.22);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.28);
  color: #fff;
}

.btn-light {
  border-color: var(--rule-light);
  color: var(--text-light);
  background: rgba(237, 232, 222, 0.08);
}
.btn-light:hover {
  background: rgba(237, 232, 222, 0.14);
  border-color: rgba(237, 232, 222, 0.22);
  color: var(--text-light);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}


/* --- Links --- */
.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding-bottom: 2px;
}
.text-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}
.text-link:hover { color: var(--accent); }
.text-link:hover::after { width: 100%; }
.text-link .arrow { transition: transform 0.3s var(--ease-out); }
.text-link:hover .arrow { transform: translateX(3px); }


/* --- Hero (Home) --- */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(3rem, 8vw, 5rem) clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 65%;
  height: 140%;
  background: radial-gradient(circle, rgba(139, 26, 26, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

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

.hero-title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.04;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hero-accent {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
  border: none;
}

.hero-title,
.hero-accent,
.hero-subtitle {
  opacity: 0;
  animation: fadeSlideIn 0.7s var(--ease) forwards;
}
.hero-accent   { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.15s; }
.hero-cta-anim { animation: fadeSlideIn 0.7s var(--ease) 0.25s forwards; opacity: 0; }

.hero-portrait {
  position: relative;
  z-index: 2;
  animation: fadeSlideIn 0.8s var(--ease) 0.2s forwards;
  opacity: 0;
}

.portrait-frame {
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  padding: 0.55rem;
  position: relative;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 3px);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(139, 26, 26, 0.1);
  border-radius: calc(var(--radius-lg) + 5px);
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
  animation: fadeSlideIn 0.7s var(--ease) 0.6s forwards;
  opacity: 0;
}
.scroll-indicator span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* --- Sections --- */
.section {
  padding-block: clamp(4rem, 8vw, 6rem);
}


.section-accent {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 0.9rem;
}

.section-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  opacity: 0.5;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
}

/* About preview on Home */
.about-preview {
  max-width: 58ch;
}
.about-preview p {
  font-size: 1.02rem;
}


/* --- Cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--rule));
  box-shadow: var(--shadow-md);
}
.card:hover::before { transform: scaleX(1); }

.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

/* Card icon (used on contact page) */
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 26, 26, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}


/* --- Dark Section / CTA --- */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 26, 26, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.section-dark h2 { color: var(--text-light); }
.section-dark p {
  color: color-mix(in srgb, var(--text-light) 60%, transparent);
  margin-inline: auto;
}
.section-dark .eyebrow {
  color: rgba(237, 232, 222, 0.45);
  justify-content: center;
}
.section-dark .eyebrow::before { background: rgba(237, 232, 222, 0.25); }

.section-cta {
  text-align: center;
  max-width: 46ch;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.section-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2rem;
}


/* --- Page Layouts --- */
.page {
  padding-block: clamp(4rem, 10vw, 7rem);
}


/* --- About Page --- */
.about-page {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.about-intro {
  max-width: 68ch;
}
.about-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.about-sections {
  display: grid;
  gap: 0;
}

.rule-top {
  border-top: 1px solid var(--rule);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}

.clean-list {
  padding-left: 1.2rem;
  margin: 0;
}
.clean-list li {
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.clean-list li::marker {
  color: var(--accent);
}


/* --- Resume --- */
.resume-section {
  max-width: 78ch;
}

.resume-contact {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.resume-contact .divider {
  padding-inline: 0.4rem;
  opacity: 0.4;
}

.resume-block + .resume-block {
  margin-top: 2rem;
}

.resume-block h3 {
  font-size: 1.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1rem;
}

/* Education Timeline */
.education-timeline {
  display: grid;
  gap: 0;
}

.education-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  padding: 1.1rem 0.75rem;
  border-bottom: 1px solid var(--rule);
  border-radius: 6px;
  transition: background 0.25s var(--ease);
}
.education-row:first-child {
  border-top: 1px solid var(--rule);
}
.education-row:hover {
  background: rgba(139, 26, 26, 0.025);
}

.education-right {
  text-align: right;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Skills */
.skills-tag-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.skills-tag-grid li {
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--rule));
  border-radius: 999px;
  padding: 0.38rem 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
  transition: all var(--duration) var(--ease);
}
.skills-tag-grid li:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(139, 26, 26, 0.05);
}


/* --- Interests Page --- */
.editorial-list {
  margin-top: 3rem;
  display: grid;
  gap: 1.1rem;
}

.editorial-item {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.editorial-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  opacity: 0.5;
  transition: opacity var(--duration) var(--ease);
}
.editorial-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--rule));
  box-shadow: var(--shadow-md);
}
.editorial-item:hover::before { opacity: 1; }

.interest-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  user-select: none;
  padding-top: 0.15rem;
}

.editorial-item h2 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.editorial-item p:last-child { margin-bottom: 0; }


/* --- Contact Page --- */
.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid .card {
  display: flex;
  flex-direction: column;
}
.contact-grid .card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.contact-grid .card p {
  font-size: 0.92rem;
}
.contact-grid .card .btn,
.contact-grid .card .stacked-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}
.social-link:hover { color: var(--accent); }

.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--accent);
  transition: transform var(--duration) var(--ease);
}
.social-link:hover svg { transform: scale(1.1); }


/* --- Footer --- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.footer-brand:hover { color: rgba(237, 232, 222, 0.7); }

.footer-center {
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--text-light) 40%, transparent);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: color-mix(in srgb, var(--text-light) 55%, transparent);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
}
.footer-links a:hover { color: var(--text-light); }


/* --- Utilities --- */
.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;
}


/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease),
              transform 0.8s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 0.1s);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* --- Responsive --- */
@media (max-width: 960px) {
  .hero { min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-portrait {
    order: 0;
    max-width: 300px;
    margin-inline: auto;
  }
  .hero-cta { justify-content: center; }
  .hero .eyebrow { justify-content: center; }
  .hero-title { margin-inline: auto; }
  .hero-accent { margin-inline: auto; }
  .hero-subtitle { margin-inline: auto; }
  .scroll-indicator { display: none; }

  .cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .education-row {
    grid-template-columns: 1fr;
  }
  .education-right {
    text-align: left;
  }

  .container { width: min(var(--max), calc(100% - 2.5rem)); }
}

@media (max-width: 767px) {
  .mobile-menu-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    width: min(280px, 90vw);
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: block; }

  .nav-list {
    flex-direction: column;
    gap: 0.15rem;
  }
  .nav-list a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
  }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  .editorial-item {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }
  .interest-number { font-size: 2rem; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
