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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0F0505;
  color: #E8E0D0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: #8B1520;
  color: #E8E0D0;
  border: 1px solid #8B1520;
}

.btn--primary:hover {
  background: #A01C28;
  border-color: #A01C28;
}

.btn--secondary {
  background: transparent;
  color: #8B1520;
  border: 1px solid #8B1520;
}

.btn--secondary:hover {
  background: rgba(139, 21, 32, 0.12);
  color: #E8E0D0;
}

.footer {
  border-top: 1px solid rgba(139, 21, 32, 0.35);
  background: #1A0606;
  padding: 40px 0;
  margin-top: 80px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #E8E0D0;
  letter-spacing: 2px;
  position: relative;
}

.footer__logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8B1520;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(232, 224, 208, 0.6);
  transition: color 0.25s ease;
}

.footer__nav a:hover {
  color: #8B1520;
}

.footer__copy {
  font-size: 13px;
  color: rgba(232, 224, 208, 0.35);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(139, 21, 32, 0.35);
  margin: 0;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}
