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

:root {
  --forest-700: #1B4332;
  --forest-600: #2d6a4f;
  --forest-500: #3d7a4e;
  --cream-50: #FDFBF7;
  --cream-100: #FAF6EE;
  --warm-400: #D4A373;
  --warm-500: #BC6C25;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #777777;
  --line: rgba(27, 67, 50, 0.12);
  --line-strong: rgba(27, 67, 50, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-icon {
  animation: preloader-spin 1.5s linear infinite;
  color: var(--warm-400);
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--warm-400);
  border-radius: 2px;
  animation: preloader-bar-move 1s ease-in-out infinite;
}

@keyframes preloader-bar-move {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--forest-700);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--forest-700);
}

.logo-icon {
  color: var(--forest-700);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest-600);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--forest-700);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest-700);
  padding: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}

.btn-forest {
  background: var(--forest-700);
  color: #fff;
}

.btn-forest:hover {
  background: var(--forest-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #0f231a 0%, #1B4332 35%, #2d6a4f 70%, #3d7a4e 100%);
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(45, 106, 79, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(61, 122, 78, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212, 163, 115, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-accent {
  color: var(--warm-400);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

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

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

/* Section shared */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: var(--forest-700);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--cream-50);
}

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

.services .section-subtitle {
  margin: 0 auto 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-700), var(--forest-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 67, 50, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--forest-700);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--forest-700);
  color: #fff;
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--forest-700);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-image {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 600/340;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.03);
}

/* Why Us */
.why-us {
  padding: 100px 0;
  background: var(--cream-100);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-us-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/9;
}

.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 40%;
  border: 2px solid var(--warm-400);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

.why-us-content {
  max-width: 480px;
}

.why-us-content .section-subtitle {
  margin-bottom: 48px;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reason-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--warm-400);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}

.reason-title {
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--forest-700);
  margin-bottom: 6px;
}

.reason-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.why-us-cta {
  padding-top: 8px;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--cream-50);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content {
  max-width: 520px;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-detail svg {
  color: var(--forest-600);
  flex-shrink: 0;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.detail-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 400;
}

.detail-value a {
  color: var(--forest-600);
  transition: color var(--transition);
}

.detail-value a:hover {
  color: var(--forest-700);
  text-decoration: underline;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 600/750;
}

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

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -20px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 500/400;
  border: 4px solid var(--cream-50);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  max-width: 280px;
}

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

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 96px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f231a 0%, #1B4332 50%, #2d6a4f 100%);
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(45, 106, 79, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--cream-100);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  max-width: 440px;
}

.contact-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.contact-method:hover {
  border-color: var(--line-strong);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--forest-700);
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-method:hover .contact-method-icon {
  background: var(--forest-700);
  color: #fff;
}

.contact-method-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-method-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-method a {
  color: inherit;
  transition: color var(--transition);
}

.contact-method a:hover {
  color: var(--forest-600);
  text-decoration: underline;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.form-input:focus {
  border-color: var(--forest-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--cream-100);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--forest-700);
  font-size: 0.9375rem;
  font-weight: 400;
}

.form-success svg {
  color: var(--forest-600);
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: var(--forest-700);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-footer {
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--warm-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-700);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 900;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
}

.scroll-top:hover {
  background: var(--forest-600);
  transform: translateY(-2px);
}

.scroll-top svg {
  color: #fff;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--forest-700);
  transition: color var(--transition);
}

.nav-overlay a:hover {
  color: var(--warm-400);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest-700);
  padding: 8px;
}

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

  .service-card:nth-child(6) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    padding: 120px 20px 80px;
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .service-card:nth-child(6) {
    max-width: none;
  }

  .why-us-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-image {
    aspect-ratio: 4/3;
  }

  .why-us-image-accent {
    display: none;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: none;
    border: none;
    margin-top: 16px;
    box-shadow: none;
  }

  .about-image-grid {
    gap: 16px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 72px 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
}

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