:root {
  --color-bg: #ffffff;
  --color-text: #181818;
  --color-muted: #525252;
  --color-line: #e4e4e4;
  --color-panel: #efefef;
  --color-accent: #b4270a;
  --color-accent-bright: #f45230;
  --shadow-soft: 0 24px 60px rgba(24, 24, 24, 0.08);
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  transition:
    background-color 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--color-text);
  color: #fff;
}

.button-dark:hover {
  background: rgba(24, 24, 24, 0.78);
}

.button-light {
  background: #fff;
  color: var(--color-text);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.82);
}

.button-outline {
  border: 0;
  background: var(--color-accent-bright);
  color: #fff;
}

.button-outline:hover {
  background: rgba(244, 82, 48, 0.68);
}

.button-wide {
  width: 100%;
}

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

.js .reveal {
  animation: reveal-up 0.8s var(--ease) both;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
