/* ============================================================
   LARSEN WEALTH STRATEGIES — Stylesheet
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:         #1B2A4A;
  --navy-dark:    #111E35;
  --navy-light:   #243558;
  --navy-xlight:  #2E4470;
  --crimson:      #C8102E;
  --crimson-dark: #A50D26;
  --crimson-light:#E8314D;

  /* Neutrals */
  --white:        #FFFFFF;
  --gray-50:      #F8F9FB;
  --gray-100:     #F0F2F5;
  --gray-200:     #E4E7EC;
  --gray-300:     #D1D5DB;
  --gray-400:     #9CA3AF;
  --gray-500:     #6B7280;
  --gray-600:     #4B5563;
  --gray-700:     #374151;
  --gray-800:     #1F2937;
  --gray-900:     #111827;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max:    1200px;
  --container-pad:    clamp(1rem, 4vw, 1.5rem);
  --section-pad-v:    clamp(4rem, 8vw, 6rem);
  --nav-height:       80px;
  --radius:           8px;
  --radius-lg:        12px;
  --radius-xl:        16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.16);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease-base:   300ms ease;
  --ease-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* ── Focus Styles (accessibility) ──────────────────────────── */
:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-padding {
  padding: var(--section-pad-v) 0;
}

.text-center {
  text-align: center;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: var(--space-4);
}

/* Section headings */
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section-intro {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: var(--space-3);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--ease-base), border-color var(--ease-base),
              color var(--ease-base), transform var(--ease-base),
              box-shadow var(--ease-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border: 2px solid var(--crimson);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}

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

.btn-full {
  width: 100%;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--ease-base), box-shadow var(--ease-base),
              backdrop-filter var(--ease-base);
}

.site-header.scrolled {
  background: rgba(17, 30, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.nav-logo img {
  height: 48px;
  width: auto;
  /* Invert logo to white so it's legible on dark header */
  filter: brightness(0) invert(1);
  transition: opacity var(--ease-fast);
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--crimson);
  transition: right var(--ease-base);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  right: 0;
}

.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid var(--crimson);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
}

/* Mobile hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease-base), opacity var(--ease-base);
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback gradient shown until assets/hero.jpg is dropped in */
  background-color: var(--navy-dark);
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: var(--nav-height) var(--container-pad) 0;
}

/* Dark charcoal overlay — dims the photo for text legibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 18, 35, 0.82) 0%,
      rgba(17, 30, 53, 0.70) 55%,
      rgba(17, 30, 53, 0.50) 100%
    );
  pointer-events: none;
  z-index: 0;
}

/* Crimson radial accent — bottom-left warm glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(
    ellipse at 0% 100%,
    rgba(200,16,46,0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Vignette layer for depth */
.hero-decoration {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: var(--space-20) 0;
}

.hero .eyebrow {
  color: var(--crimson-light);
  margin-bottom: var(--space-5);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  max-width: 700px;
}

.hero-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: var(--space-10);
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-start;
}

.about-image {
  position: relative;
  margin-top: 2.25rem;
}

.about-photo-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: var(--gray-200);
}

.about-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative offset frame */
.about-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 3px solid var(--navy);
  border-radius: calc(var(--radius-xl) + 4px);
  z-index: -1;
  opacity: 0.25;
}

/* Crimson accent square */
.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--crimson);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-content h2 {
  margin-bottom: var(--space-1);
}

.about-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--crimson);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.about-bio {
  color: var(--gray-600);
  margin-bottom: var(--space-5);
  font-size: 1rem;
  line-height: 1.75;
}

.about-credentials {
  display: flex;
  gap: var(--space-8);
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  width: 100%;
}

.credential {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.credential-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}

.credential-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1.3;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--crimson);
  transition: transform var(--ease-base), box-shadow var(--ease-base),
              border-color var(--ease-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--crimson);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--crimson);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h2 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-4);
}

.contact-intro {
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-details li > div {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-details strong {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-details a,
.contact-details span {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.contact-details a:hover {
  color: var(--crimson);
}

/* Form card */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group:last-of-type {
  margin-bottom: var(--space-6);
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.required {
  color: var(--crimson);
}

.optional {
  color: var(--gray-400);
  font-weight: 400;
  font-size: 0.8125rem;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.6875rem 1rem;
  width: 100%;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input::placeholder, textarea::placeholder {
  color: var(--gray-400);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

input.error, select.error, textarea.error {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.08);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--crimson);
  min-height: 1rem;
  line-height: 1.4;
}

/* Form states */
.form-success[hidden] {
  display: none;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  color: #065F46;
  font-size: 0.9375rem;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #059669;
}

.form-error-global {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  color: #991B1B;
  font-size: 0.9375rem;
}

.form-error-global a {
  color: var(--crimson-dark);
  text-decoration: underline;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding: var(--space-16) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  margin-bottom: var(--space-5);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-5);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color var(--ease-fast);
}

.footer-nav a:hover {
  color: var(--crimson-light);
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color var(--ease-fast);
}

.footer-contact a:hover {
  color: var(--crimson-light);
}

.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.25) !important;
  line-height: 1.6;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity var(--ease-slow), transform var(--ease-slow);
  will-change: opacity, transform;
}

.fade-in {
  transform: translateY(28px);
}

.fade-in-left {
  transform: translateX(-36px);
}

.fade-in-right {
  transform: translateX(36px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE — Tablet ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .contact-info {
    text-align: center;
  }

  .contact-info .eyebrow {
    display: block;
  }

  .contact-details {
    align-items: center;
  }

  .contact-details li {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-10);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── RESPONSIVE — Mobile ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
    z-index: 10;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(17, 30, 53, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--container-pad) var(--space-6);
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    display: block;
    padding: var(--space-4) 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    display: block;
    margin-top: var(--space-4);
    text-align: center;
    padding: 0.75rem 1rem;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: auto;
  }

  .about-credentials {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .about-credentials {
    flex-direction: column;
    gap: var(--space-4);
  }
}

/* ── Reduced Motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}
