/* Amon Broker — single stylesheet, no build step */

/* ============ tokens ============ */
:root {
  --background: hsl(210 20% 98%);
  --foreground: hsl(222 47% 11%);
  --card: hsl(0 0% 100%);
  --secondary: hsl(210 40% 96%);
  --muted-fg: hsl(215 16% 47%);
  --border: hsl(214 32% 91%);

  --navy: hsl(217 71% 23%);
  --navy-dark: hsl(220 60% 15%);
  --gold: hsl(38 92% 50%);
  --gold-light: hsl(43 96% 65%);

  --on-navy: hsl(210 40% 98%);
  --on-navy-soft: hsl(210 40% 98% / 0.7);

  --gradient-hero: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);

  --shadow-soft: 0 4px 20px -2px hsl(217 71% 23% / 0.1);
  --shadow-elevated: 0 20px 40px -10px hsl(217 71% 23% / 0.2);
  --shadow-gold: 0 10px 30px -5px hsl(38 92% 50% / 0.3);

  --radius: 0.75rem;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-h: 5rem;
}

/* ============ base ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.container.narrow { max-width: 56rem; }
.center { text-align: center; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--foreground);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-hero {
  background: var(--gradient-gold);
  color: var(--foreground);
  box-shadow: var(--shadow-gold);
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-hero:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: var(--on-navy);
  border: 1px solid hsl(210 40% 98% / 0.3);
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-hero-outline:hover {
  background: hsl(210 40% 98% / 0.1);
  border-color: hsl(210 40% 98% / 0.5);
}

.btn-block { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-row.center { justify-content: center; }

/* ============ header ============ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: hsl(210 20% 98% / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(214 32% 91% / 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--navy);
  color: var(--on-navy);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-mark-gold {
  background: var(--gold);
  color: var(--foreground);
}

.brand-text { display: flex; flex-direction: column; }

.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--secondary);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover { color: var(--foreground); }

.lang-btn.active {
  background: var(--navy);
  color: var(--on-navy);
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

.menu-btn .icon { width: 1.5rem; height: 1.5rem; }
.menu-btn .icon-close { display: none; }
.header.menu-open .menu-btn .icon-menu { display: none; }
.header.menu-open .menu-btn .icon-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.header.menu-open .mobile-menu { display: block; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mobile-menu nav > a {
  padding: 0.5rem 0;
  font-weight: 500;
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-actions .btn { flex: 1; }

@media (min-width: 768px) {
  .nav-links, .header-actions { display: flex; }
  .menu-btn, .mobile-menu { display: none; }
  .header.menu-open .mobile-menu { display: none; }
}

/* ============ hero / dark sections ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(64px);
}

.blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; }
.blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; opacity: 0.5; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: hsl(210 40% 98% / 0.1);
  border: 1px solid hsl(210 40% 98% / 0.2);
  backdrop-filter: blur(4px);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(210 40% 98% / 0.9);
  margin-bottom: 2rem;
}

.badge .icon { width: 1rem; height: 1rem; color: var(--gold); }

.badge-gold {
  background: hsl(38 92% 50% / 0.1);
  border-color: hsl(38 92% 50% / 0.2);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--on-navy);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--on-navy-soft);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(210 40% 98% / 0.8);
}

.highlight .icon { color: var(--gold); }

.hero .cta-row { justify-content: center; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: auto; }

/* ============ sections ============ */
.section { padding: 6rem 0; }
.section-alt { background: hsl(210 40% 96% / 0.5); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
}

.subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 4rem 0 2.5rem;
}

/* ============ grids & cards ============ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-tight { gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: hsl(217 71% 23% / 0.1);
  color: var(--navy);
  flex-shrink: 0;
}

.card-icon .icon { width: 1.5rem; height: 1.5rem; }

.card-icon-solid {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--navy);
  color: var(--on-navy);
}

.card-icon-solid .icon { width: 1.75rem; height: 1.75rem; }

/* services */
.service-card {
  position: relative;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.service-step {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 700;
  color: hsl(210 40% 96%);
  transition: color 0.3s;
  line-height: 1;
}

.service-card:hover .service-step { color: hsl(38 92% 50% / 0.2); }
.service-card:hover .card-icon-solid { background: var(--gold); color: var(--foreground); }

.service-card .card-icon { margin-bottom: 1.5rem; }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.service-card p { color: var(--muted-fg); }

.service-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold) !important;
  margin-bottom: 0;
}

/* free services */
.free-card {
  position: relative;
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
}

@media (min-width: 768px) {
  .free-card { padding: 3rem; }
}

.free-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: hsl(38 92% 50% / 0.1);
  filter: blur(64px);
  transform: translate(50%, -50%);
}

.free-content { position: relative; z-index: 1; }

.free-card h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.free-lede { font-size: 1.125rem; }
.free-card p { color: var(--muted-fg); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--background);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
}

.pill .icon { color: var(--gold); }

/* insurance types */
.type-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.type-card:hover { border-color: hsl(38 92% 50% / 0.5); }
.type-card:hover .card-icon { background: hsl(38 92% 50% / 0.1); color: var(--gold); }
.type-card:hover h3 { color: var(--gold); }

.type-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.type-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin: 0;
}

/* ============ partners ============ */
.partners {
  padding: 4rem 0;
  background: hsl(210 40% 96% / 0.3);
  border-top: 1px solid hsl(214 32% 91% / 0.5);
  border-bottom: 1px solid hsl(214 32% 91% / 0.5);
}

.partners .section-header { margin-bottom: 2.5rem; }

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
}

.partner {
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: all 0.3s;
}

.partner:hover {
  border-color: hsl(38 92% 50% / 0.3);
  color: var(--foreground);
}

/* ============ about ============ */
.stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats { flex-direction: row; gap: 6rem; }
}

.stat { text-align: center; }

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.75rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 1.125rem;
  color: var(--muted-fg);
}

.stat-divider {
  display: none;
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

@media (min-width: 768px) {
  .stat-divider { display: block; }
}

.mission-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .mission-card { padding: 3rem; }
}

.mission-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.mission-card p {
  font-size: 1.125rem;
  color: var(--muted-fg);
  margin: 0;
}

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

.value-card .card-icon { margin: 0 auto 1rem; }

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin: 0;
}

.why-grid {
  max-width: 56rem;
  margin: 0 auto;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: var(--radius);
  padding: 1rem;
}

.why-item .icon { color: var(--gold); }

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: 6rem 0;
  background: var(--gradient-hero);
  overflow: hidden;
}

.cta .container { position: relative; z-index: 1; }

.cta h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--on-navy);
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.125rem;
  color: var(--on-navy-soft);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

/* ============ contact ============ */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form-card {
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .contact-form-card { padding: 2.5rem; }
}

.contact-form-card h3, .contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.field { margin-bottom: 1.5rem; }

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.field input, .field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input { height: 3rem; }
.field textarea { resize: none; }

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px hsl(217 71% 23% / 0.1);
}

.field input::placeholder, .field textarea::placeholder {
  color: var(--muted-fg);
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-fg);
  text-align: center;
}

.contact-info > h3 { margin-top: 0; }
.contact-info > h3:not(:first-child) { margin-top: 2rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.info-item .card-icon { width: 2.5rem; height: 2.5rem; }
.info-item .card-icon .icon { width: 1.25rem; height: 1.25rem; }

.info-label {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.25rem;
}

.info-item a {
  display: block;
  font-weight: 500;
  transition: color 0.2s;
}

.info-item a:hover { color: var(--gold); }

.info-value { font-weight: 500; margin: 0; }

.social-row {
  display: flex;
  gap: 1rem;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid hsl(214 32% 91% / 0.5);
  transition: all 0.3s;
}

.social-row a:hover {
  background: var(--navy);
  color: var(--on-navy);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 16rem;
  margin-top: 2rem;
  background: hsl(210 40% 96% / 0.5);
  border: 1px solid hsl(214 32% 91% / 0.5);
  border-radius: 1rem;
  color: var(--muted-fg);
}

.map-placeholder .icon { width: 2rem; height: 2rem; }
.map-placeholder p { margin: 0; }

/* ============ footer ============ */
.footer {
  background: var(--navy);
  color: var(--on-navy);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand p {
  color: var(--on-navy-soft);
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
}

.footer .social-row a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: hsl(210 40% 98% / 0.1);
  border: none;
  color: var(--on-navy);
}

.footer .social-row a:hover {
  background: var(--gold);
  color: var(--foreground);
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-grid ul li {
  margin-bottom: 0.75rem;
  color: var(--on-navy-soft);
}

.footer-grid ul a {
  color: var(--on-navy-soft);
  transition: color 0.2s;
}

.footer-grid ul a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact .icon { color: var(--gold); margin-top: 0.2rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(210 40% 98% / 0.1);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: hsl(210 40% 98% / 0.5);
  margin: 0;
}

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-size: 0.875rem;
  color: hsl(210 40% 98% / 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ============ animations ============ */
.fade-up {
  animation: fadeUp 0.6s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* scroll reveals: only hide when JS is available */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .fade-up { animation: none; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
