/* ==========================================================
   FoodGenius — Sankt Wendel
   Design: Control-room interfaces + molecular gastronomy
   Colors: Derived from flame macro photography & aged brass
   Typography: System fonts, styled with extreme tracking & weight contrast
   ========================================================== */

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

:root {
  /* Backgrounds — deep indigo-blacks, not pure black */
  --bg-void: hsl(235, 22%, 4%);
  --bg-deep: hsl(233, 18%, 7%);
  --bg-surface: hsl(230, 15%, 11%);
  --bg-elevated: hsl(230, 13%, 15%);
  --bg-hover: hsl(230, 12%, 19%);

  /* Primary accent — electric gold, from flame photography */
  --accent: hsl(45, 100%, 56%);
  --accent-muted: hsl(45, 45%, 36%);
  --accent-glow: hsla(45, 100%, 56%, 0.10);
  --accent-glow-mid: hsla(45, 100%, 56%, 0.20);
  --accent-glow-strong: hsla(45, 100%, 56%, 0.35);

  /* Secondary — ember, warmth of open-fire cooking */
  --ember: hsl(8, 72%, 50%);
  --ember-glow: hsla(8, 72%, 50%, 0.15);

  /* Status */
  --open: hsl(145, 65%, 42%);
  --open-glow: hsla(145, 65%, 42%, 0.35);

  /* Text */
  --text-bright: hsl(40, 20%, 91%);
  --text-main: hsl(225, 10%, 65%);
  --text-muted: hsl(225, 8%, 46%);

  /* Borders */
  --border: hsl(230, 12%, 16%);
  --border-light: hsl(230, 10%, 22%);
  --border-accent: hsl(45, 50%, 28%);

  /* Fonts — system stacks, styled distinctively */
  --font-display: 'Trebuchet MS', 'Gill Sans', 'Lucida Grande', sans-serif;
  --font-body: 'Segoe UI', system-ui, 'Helvetica Neue', sans-serif;
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', 'Courier New', monospace;

  /* Type scale: Perfect Fourth (1.333) */
  --text-2xs: 0.625rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.333rem;
  --text-xl: 1.777rem;
  --text-2xl: 2.369rem;
  --text-3xl: 3.157rem;
  --text-4xl: 4.209rem;
  --text-5xl: 5.61rem;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-void);
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* =========================
   AMBIENT LAYERS
   ========================= */

/* Fixed grid background — slow diagonal drift */
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(hsla(230, 18%, 18%, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, hsla(230, 18%, 18%, 0.25) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
  to { background-position: 72px 72px, 72px 72px; }
}

/* Periodic scan line — sweeps top to bottom */
.ambient-scan {
  position: fixed;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
  z-index: 90;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 50%, transparent 95%);
  box-shadow: 0 0 24px 6px var(--accent-glow-mid);
  opacity: 0;
  animation: scanSweep 9s var(--ease-in-out) infinite 2s;
}

@keyframes scanSweep {
  0%   { top: -4px; opacity: 0; }
  4%   { opacity: 0.6; }
  92%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Corner reticle decoration on hero */
.reticle {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
  z-index: 2;
}

.reticle::before,
.reticle::after {
  content: '';
  position: absolute;
  background: var(--accent-muted);
}

.reticle-tl { top: var(--space-md); left: var(--space-md); }
.reticle-tl::before { top: 0; left: 0; width: 24px; height: 1px; }
.reticle-tl::after  { top: 0; left: 0; width: 1px; height: 24px; }

.reticle-br { bottom: var(--space-xl); right: var(--space-md); }
.reticle-br::before { bottom: 0; right: 0; width: 24px; height: 1px; }
.reticle-br::after  { bottom: 0; right: 0; width: 1px; height: 24px; }

/* =========================
   NAVIGATION
   ========================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  padding: 1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: hsla(233, 18%, 7%, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-mark {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.nav-sep {
  width: 1px;
  height: 14px;
  background: var(--border-light);
}

.nav-tagline {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  padding-top: calc(var(--space-xl) + 3rem);
  z-index: 1;
  overflow: hidden;
}

/* Radial warm glow behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.7s var(--ease-out) 0.4s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  line-height: 0.88;
  margin-bottom: var(--space-md);
}

.hero-heading .word-food {
  display: block;
  font-size: clamp(3.8rem, 13vw, 8rem);
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: -0.045em;
  opacity: 0;
  transform: translateY(35px);
  animation: revealUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-heading .word-genius {
  display: block;
  font-size: clamp(3.8rem, 13vw, 8rem);
  font-weight: 200;
  color: var(--accent);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(35px);
  animation: revealUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-heading .word-sub {
  display: block;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-top: 0.3em;
  opacity: 0;
  transform: translateY(35px);
  animation: revealUp 0.8s var(--ease-out) 1s forwards;
}

.hero-rule {
  width: 72px;
  height: 2px;
  background: var(--accent);
  margin-bottom: var(--space-md);
  box-shadow: 0 0 16px var(--accent-glow-mid);
  opacity: 0;
  animation: lineExpand 0.9s var(--ease-out) 1.05s forwards;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-main);
  max-width: 500px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.7s var(--ease-out) 1.15s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bg-void);
  background: var(--accent);
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.7s var(--ease-out) 1.35s forwards;
}

.hero-cta:hover {
  background: var(--text-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--accent-glow-strong);
}

.hero-cta .cta-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.hero-cta:hover .cta-arrow {
  transform: translateX(5px);
}

/* Scroll prompt */
.scroll-prompt {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: revealUp 0.7s var(--ease-out) 2s forwards;
}

.scroll-prompt-text {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.scroll-prompt-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent-muted), transparent);
  animation: pulseLine 2.2s ease-in-out infinite;
}

@keyframes pulseLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.25; transform: scaleY(0.5); }
}

/* =========================
   SHARED SECTION STYLES
   ========================= */

.section {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  z-index: 1;
}

.section--alt {
  background: var(--bg-void);
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 180px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, var(--text-3xl));
  color: var(--text-bright);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: var(--space-md);
}

/* Diagonal divider between sections */
.divider-angle {
  position: relative;
  height: 80px;
  z-index: 1;
  background: var(--bg-deep);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}

.divider-angle--rev {
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.divider-angle--alt {
  background: var(--bg-void);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* =========================
   SERVICES / LEISTUNGEN
   ========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-sm);
}

.svc-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out);
}

/* Top glow line on hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc-card:hover {
  background: var(--bg-surface);
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.svc-card:hover::before { opacity: 1; }

.svc-num {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--bg-elevated);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.4s ease;
  user-select: none;
}

.svc-card:hover .svc-num {
  color: var(--accent-glow-mid);
}

.svc-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}

.svc-desc {
  font-size: var(--text-sm);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================
   ABOUT / ÜBER UNS
   ========================= */

.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-lg);
  align-items: start;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, var(--text-xl));
  color: var(--text-bright);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.about-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* Geometric visual */
.about-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--border-light);
}

.geo-a {
  width: 200px;
  height: 200px;
  border-color: var(--accent-muted);
  animation: geoSpin 28s linear infinite;
}

.geo-b {
  width: 150px;
  height: 150px;
  animation: geoSpin 22s linear infinite reverse;
}

.geo-c {
  width: 80px;
  height: 80px;
  border-color: var(--accent-muted);
  background: var(--accent-glow);
  animation: geoSpin 18s linear infinite;
}

@keyframes geoSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Stats row */
.stats-row {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

/* =========================
   HOURS / ÖFFNUNGSZEITEN
   ========================= */

.hours-table {
  max-width: 580px;
  margin-top: var(--space-sm);
}

.hours-row {
  display: flex;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }

.hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.hours-dot--open {
  background: var(--open);
  box-shadow: 0 0 8px var(--open-glow);
}

.hours-dot--closed {
  background: var(--ember);
  box-shadow: 0 0 8px var(--ember-glow);
}

.hours-day {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-bright);
  width: 160px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.hours-time {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.hours-time--off {
  color: var(--text-muted);
  font-style: italic;
}

.hours-note {
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* =========================
   PRODUCTS / PRODUKTE
   ========================= */

.products-list {
  max-width: 700px;
  margin-top: var(--space-sm);
}

.product-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.35s ease;
}

.product-row:last-child { border-bottom: none; }

.product-row:hover { border-color: var(--border-accent); }

.product-icon {
  font-size: var(--text-sm);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: color 0.3s ease;
}

.product-row:hover .product-icon {
  color: var(--text-bright);
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-name {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.product-row:hover .product-name {
  color: var(--text-bright);
}

.product-desc {
  font-size: var(--text-sm);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================
   CONTACT / KONTAKT
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-sm);
}

.contact-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: border-color 0.35s ease;
}

.contact-card:hover {
  border-color: var(--border-accent);
}

.contact-card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
}

.contact-card-body {
  font-size: var(--text-base);
  color: var(--text-bright);
  line-height: 1.75;
}

.contact-card-body a {
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-card-body a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.site-footer p {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.footer-accent {
  color: var(--accent-muted);
}

/* =========================
   KEYFRAMES
   ========================= */

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  0%   { width: 0; opacity: 0; }
  100% { width: 72px; opacity: 1; }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

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

  .stats-row {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 4.5rem;
    --space-lg: 2.5rem;
    --space-md: 1.25rem;
  }

  nav {
    padding: 0.85rem var(--space-sm);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: hsla(233, 18%, 7%, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--space-sm);
    gap: 1.15rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-tagline { display: none; }
  .nav-sep { display: none; }

  .hero {
    padding: var(--space-xl) var(--space-sm);
    padding-top: calc(var(--space-xl) + 2rem);
  }

  .hero-heading .word-food,
  .hero-heading .word-genius {
    font-size: clamp(2.8rem, 16vw, 4.5rem);
  }

  .hero-heading .word-sub {
    font-size: clamp(1.2rem, 5vw, 2rem);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .svc-card {
    padding: 2rem 1.25rem 1.75rem;
  }

  .hours-day { width: 110px; }

  .divider-angle { height: 50px; }

  .scroll-prompt { bottom: 1.5rem; }

  .reticle { display: none; }
}

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

  .ambient-grid { animation: none; }
  .ambient-scan { display: none; }
  .reveal { opacity: 1; transform: none; }
}
