/* Raziel Coaching — minimalist luxury executive advisory */

:root {
  --bg: #f4f1eb;
  --bg-elevated: #ebe7df;
  --bg-dark: #1c1f24;
  --text: #1a1d22;
  --text-muted: #5c6169;
  --text-subtle: #8a9099;
  --accent: #2d5a4a;
  --accent-hover: #1e4235;
  --accent-light: #e3efe8;
  --accent-warm: #9a6b42;
  --accent-warm-light: #f3e8dc;
  --highlight: #4a8f73;
  --border: rgba(26, 29, 34, 0.12);
  --border-strong: rgba(26, 29, 34, 0.22);

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --max-width: 72rem;
  --header-height: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 90, 74, 0.09), transparent),
    radial-gradient(ellipse 40% 30% at 100% 40%, rgba(154, 107, 66, 0.06), transparent),
    var(--bg);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--text);
  color: var(--bg);
}

.skip-link:focus {
  top: var(--space-sm);
}

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-warm);
}

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

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

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

.nav-cta {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f4f1eb !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 1.25rem var(--space-lg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.875rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-sm) var(--space-2xl);
  background: linear-gradient(
    165deg,
    var(--accent-light) 0%,
    transparent 42%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-lead {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: #f4f1eb;
  box-shadow: 0 4px 20px rgba(45, 90, 74, 0.25);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(45, 90, 74, 0.35);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sections */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.4rem 0.85rem;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-header {
  max-width: 40rem;
  margin-bottom: var(--space-2xl);
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-intro {
  margin-top: var(--space-md);
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 36rem;
}

/* Philosophy */

.philosophy {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dual-wing {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .dual-wing {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: start;
  }
}

.wing {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.wing:hover {
  border-color: rgba(45, 90, 74, 0.35);
  box-shadow: 0 24px 48px -24px rgba(45, 90, 74, 0.15);
}

.wing-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-lg);
  color: var(--accent);
}

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

.wing-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.wing-body {
  color: var(--text-muted);
  font-size: 1rem;
}

.wing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}

@media (min-width: 768px) {
  .wing-divider {
    padding: var(--space-xl) 0;
    flex-direction: column;
  }

  .wing-divider::before,
  .wing-divider::after {
    content: "";
    width: 1px;
    flex: 1;
    background: var(--border);
  }
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  flex-shrink: 0;
}

/* Engagements */

.engagements {
  padding: var(--space-3xl) 0;
}

.engagement-cards {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .engagement-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

.card {
  padding: var(--space-xl);
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.card-index {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.card-body {
  color: var(--text-muted);
  flex: 1;
}

.card-note {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-subtle);
}

.regulatory-note {
  margin-top: var(--space-xl);
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* Contact */

.contact {
  padding: var(--space-3xl) 0;
  background: var(--bg-dark);
  color: #e8e6e1;
}

.contact .section-label {
  color: #c8e0d6;
  background: rgba(74, 143, 115, 0.25);
}

.contact .section-title {
  color: #f4f1eb;
}

.contact-inner {
  display: grid;
  gap: var(--space-2xl);
}

.contact-faces {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) 0;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .contact-faces {
    justify-content: flex-start;
  }
}

.contact-faces img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: -0.5rem;
  filter: saturate(0.85);
}

.contact-faces img:first-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-3xl);
  }
}

.contact-lead {
  margin-top: var(--space-md);
  color: #a8a9ad;
  font-size: 1.0625rem;
  max-width: 28rem;
}

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

.form-status {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #c8e0d6;
  margin: 0;
}

.form-status--error {
  color: #f0b4b4;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8d92;
}

.form-row input,
.form-row textarea {
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f1eb;
  resize: vertical;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.contact .btn-primary {
  background: var(--highlight);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 143, 115, 0.35);
}

.contact .btn-primary:hover {
  background: #5aa88a;
  box-shadow: 0 6px 24px rgba(74, 143, 115, 0.45);
}

/* Footer */

.site-footer {
  background: var(--bg-dark);
  color: #d8d6d1;
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #f4f1eb;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-logo em {
  font-style: italic;
  font-weight: 400;
  color: #c4a882;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #8f9196;
  max-width: 22rem;
}

.footer-nav-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e7379;
  margin-bottom: var(--space-md);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  color: #c4c2bd;
  transition: color 0.25s ease;
}

.footer-nav-list a:hover {
  color: #9fd4b8;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #c4c2bd;
  padding: 0.5rem 0;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.footer-linkedin:hover {
  color: #9fd4b8;
  transform: translateX(2px);
}

.footer-linkedin-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-rule {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.12) 80%,
    transparent
  );
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-copy {
  font-size: 0.8125rem;
  color: #8f9196;
}

.footer-legal {
  font-size: 0.6875rem;
  line-height: 1.75;
  color: #5c6169;
  max-width: 56rem;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Mission */

.mission {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: min(12rem, 28vw) 1fr;
    gap: var(--space-2xl);
  }
}

.mission-portrait {
  margin: 0 auto;
  width: min(12rem, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.2);
}

.mission-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

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

@media (min-width: 768px) {
  .mission-content {
    text-align: left;
  }

  .mission-portrait {
    margin: 0;
  }
}

.mission-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.mission-support {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent-warm);
  margin-bottom: var(--space-md);
}

.mission-body {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Community */

.community {
  padding: var(--space-3xl) 0 var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-intro {
  margin-inline: auto;
}

.community-panorama {
  margin: var(--space-xl) auto 0;
  width: min(100%, 72rem);
  aspect-ratio: 21 / 8;
  min-height: 11rem;
  max-height: min(36vh, 20rem);
  overflow: hidden;
  border: 1px solid rgba(45, 90, 74, 0.25);
  box-shadow: 0 12px 40px -16px rgba(45, 90, 74, 0.2);
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .community-panorama {
    aspect-ratio: 21 / 7;
    max-height: 24rem;
  }
}

.community-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s var(--ease-out), filter 0.4s ease;
  filter: saturate(0.9);
}

.community-panorama:hover img {
  transform: scale(1.02);
  filter: saturate(1);
}

/* Stats */

.stats {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, var(--accent-light) 50%, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.stat-item {
  padding: var(--space-md) var(--space-sm);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--highlight);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Values */

.values {
  padding: var(--space-3xl) 0;
}

.values-grid {
  display: grid;
  gap: var(--space-md);
}

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

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

.value-card {
  padding: var(--space-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(45, 90, 74, 0.4);
  box-shadow: inset 3px 0 0 var(--accent);
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--accent);
}

.value-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Offerings */

.offerings {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--accent-warm-light) 0%, var(--bg-elevated) 55%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--bg);
}

.offering {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}

.offering:last-child {
  border-bottom: none;
}

.offering:hover {
  background: rgba(45, 90, 74, 0.06);
}

@media (min-width: 768px) {
  .offering {
    grid-template-columns: 3rem 1fr;
    align-items: start;
    gap: var(--space-xl);
  }
}

.offering-index {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-warm);
}

.offering-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.offering-body {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.engagements-divider {
  margin: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
}

.engagements-divider span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-line {
    animation: none;
  }
}

html.no-js .reveal {
  opacity: 1;
  transform: none;
}
