:root {
  --white: #ffffff;
  --surface: #f6f6f6;
  --ink: #163865;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--white);
  background: #0b0b0b;
}

.hero {
  position: relative;
  min-height: min(100vh, 820px);
  padding: clamp(16px, 4vw, 40px);
  isolation: isolate;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.76) contrast(0.92) saturate(0.88) sepia(0.12);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 18, 8, 0.3) 0%,
    rgba(22, 10, 6, 0.18) 36%,
    rgba(20, 9, 6, 0.44) 100%
  );
}

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