/* Anka Oto Bodrum — Premium Corporate Theme */

:root {
  --background: #fafbfc;
  --foreground: #0a1628;
  --navy: #0a1628;
  --navy-light: #152238;
  --gold: #c9a962;
  --gold-light: #dfc88a;
  --muted: #f1f4f8;
  --muted-foreground: #5a6578;
  --card: #ffffff;
  --border: rgba(10, 22, 40, 0.08);
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", "DM Sans", serif;
  --header-height: 5rem;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dark {
  --background: #060d18;
  --foreground: #f5f7fa;
  --muted: #0f1a2e;
  --muted-foreground: #94a3b8;
  --card: #0f1a2e;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(201, 169, 98, 0.3);
  color: var(--navy);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; }

.container-wide {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 2rem; } }

.section-padding { padding-block: 5rem; }
@media (min-width: 1024px) { .section-padding { padding-block: 7rem; } }

.section { padding-block: 5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }

.section-muted { background: color-mix(in srgb, var(--muted) 50%, transparent); }
.section-gallery { background: color-mix(in srgb, var(--muted) 30%, transparent); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.dark .section-title { color: var(--foreground); }
.section-desc {
  margin-top: 1rem;
  max-width: 42rem;
  margin-inline: auto;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dark .glass {
  background: rgba(10, 22, 40, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn-block-sm { flex: 1; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.45);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--muted);
  color: var(--navy);
  border: 1px solid var(--border);
}
.dark .btn-secondary { background: var(--navy-light); color: var(--foreground); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-block: 1rem;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  padding-block: 0.5rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.dark .site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  transition: transform var(--transition);
}
@media (min-width: 640px) { .logo-img { height: 3rem; } }
.site-header.is-scrolled .logo-img { transform: scale(0.9); }

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}
.site-header.is-scrolled .logo-text { color: var(--navy); }
.dark.site-header.is-scrolled .logo-text,
.dark .site-header.is-scrolled .logo-text { color: var(--foreground); }

.header-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  transition: color var(--transition);
}
.site-header.is-scrolled .nav-link { color: var(--navy); }
.dark .site-header.is-scrolled .nav-link { color: var(--foreground); }
.nav-link:hover, .nav-link.is-active { color: var(--gold); }

.nav-indicator {
  position: absolute;
  bottom: 0.125rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link.is-active .nav-indicator { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background var(--transition), color var(--transition);
}
.site-header.is-scrolled .theme-toggle { color: var(--navy); }
.dark .site-header.is-scrolled .theme-toggle { color: var(--foreground); }
.theme-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.site-header.is-scrolled .theme-toggle:hover { background: rgba(10, 22, 40, 0.05); }

.icon-moon { display: none; }
.dark .icon-sun { display: none; }
.dark .icon-moon { display: block; }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0.625rem;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.site-header.is-scrolled .mobile-menu-btn { color: var(--navy); }
.dark .site-header.is-scrolled .mobile-menu-btn { color: var(--foreground); }
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-menu { display: none; }
.mobile-menu-btn[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dark .mobile-nav { background: rgba(10, 22, 40, 0.85); }
.mobile-nav[hidden] { display: none; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

.mobile-nav-link {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.is-active {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(2px);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.4), transparent 40%, rgba(10, 22, 40, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 8rem;
}

.hero-inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.3);
  background: rgba(201, 169, 98, 0.1);
  border-radius: 999px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 98, 0.3);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(10, 22, 40, 0.05);
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.dark .service-icon { background: rgba(255, 255, 255, 0.05); color: var(--gold); }
.service-card:hover .service-icon { background: rgba(201, 169, 98, 0.1); color: var(--gold); }

.service-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.dark .service-title { color: var(--foreground); }

.service-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Gallery */
.gallery-empty { text-align: center; color: var(--muted-foreground); }

.gallery-slider { position: relative; }

.gallery-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}
.gallery-viewport.is-dragging { cursor: grabbing; }

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.gallery-track.no-transition { transition: none; }

.gallery-slide {
  flex: 0 0 85%;
  padding-left: 1rem;
  min-width: 0;
}
@media (min-width: 640px) { .gallery-slide { flex: 0 0 70%; } }
@media (min-width: 1024px) { .gallery-slide { flex: 0 0 60%; } }

.gallery-slide-btn {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-slide-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide-btn:hover img { transform: scale(1.05); }
.gallery-slide-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0);
  transition: background var(--transition);
}
.gallery-slide-btn:hover::after { background: rgba(10, 22, 40, 0.2); }

.gallery-zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: var(--shadow);
}
.dark .gallery-zoom { background: rgba(15, 26, 46, 0.9); color: #fff; }
.gallery-slide-btn:hover .gallery-zoom { opacity: 1; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--card);
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition);
}
.dark .gallery-nav { color: var(--foreground); }
.gallery-nav:hover { transform: translateY(-50%) scale(1.05); }
.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }
@media (min-width: 640px) {
  .gallery-prev { left: 1rem; }
  .gallery-next { right: 1rem; }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.2);
  transition: width var(--transition), background var(--transition);
}
.dark .gallery-dot { background: rgba(255, 255, 255, 0.2); }
.gallery-dot.is-active {
  width: 2rem;
  background: var(--gold);
}
.gallery-dot:hover:not(.is-active) { background: rgba(10, 22, 40, 0.4); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.lightbox[hidden] { display: none; }

.lightbox-content {
  max-width: 80rem;
  width: 100%;
  max-height: 85vh;
  animation: scaleIn 0.3s ease;
}
.lightbox-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.1); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.1); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-text {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text-secondary { font-size: 1rem; }

.about-highlights {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .about-highlights { grid-template-columns: repeat(3, 1fr); }
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
}

.highlight-title { font-weight: 600; color: var(--navy); margin-bottom: 0.125rem; }
.dark .highlight-title { color: var(--foreground); }
.highlight-desc { font-size: 0.875rem; color: var(--muted-foreground); }

/* Contact */
.contact-card {
  max-width: 42rem;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .contact-card { padding: 2.5rem; } }

.contact-items { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background var(--transition);
}
.contact-item:hover { background: rgba(10, 22, 40, 0.05); }
.dark .contact-item:hover { background: rgba(255, 255, 255, 0.05); }

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  transition: background var(--transition);
}
.contact-item:hover .contact-icon { background: rgba(201, 169, 98, 0.2); }

.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.contact-value { font-weight: 500; color: var(--navy); }
.dark .contact-value { color: var(--foreground); }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .contact-actions { flex-direction: row; } }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner { padding-bottom: 2rem; padding-top: 4rem; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links, .footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a, .footer-contact a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-inner.reveal { opacity: 1; transform: none; }
.hero-inner.reveal .hero-badge,
.hero-inner.reveal .hero-title,
.hero-inner.reveal .hero-subtitle,
.hero-inner.reveal .hero-actions > * {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-inner.reveal .hero-title { animation-delay: 0.1s; }
.hero-inner.reveal .hero-subtitle { animation-delay: 0.2s; }
.hero-inner.reveal .hero-actions { animation: fadeUp 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards; opacity: 0; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
