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

:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-muted: #000000;
  --color-accent: #D7282F;
  --font: 'Big Shoulders Stack', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Fade-in on load ─── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Main container ─── */

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 560px;
  padding: 4rem 2rem 3rem;
}

/* ─── Logo ─── */

.logo img {
  width: clamp(140px, 40vw, 240px);
  height: auto;
  display: block;
  animation: fadeUp 0.7s var(--ease) both;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.logo img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

/* ─── Heading ─── */

.heading {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  animation: fadeUp 0.7s var(--ease) 0.15s both;
}

/* ─── Divider ─── */

.container::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: var(--color-accent);
  opacity: 0.4;
  animation: fadeUp 0.7s var(--ease) 0.25s both;
}

/* ─── Social & contact ─── */

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  animation: fadeUp 0.7s var(--ease) 0.35s both;
}

/* Instagram — icon only */

.social-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social-ig:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

/* Emails — text only, side by side */

.social-emails {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-email {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.25s var(--ease);
}

.social-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease);
}

.social-email:hover {
  color: var(--color-accent);
}

.social-email:hover::after {
  width: 100%;
}

/* ─── Footer ─── */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video */

.footer-video {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.footer-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}

/* Copyright */

.footer-copy {
  padding: 1.25rem 2rem;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}

.footer-copy:hover {
  opacity: 0.8;
}

/* ─── Responsive ─── */

@media (max-width: 480px) {
  .social-emails {
    gap: 1rem;
  }

  .social-email {
    font-size: 0.7rem;
  }

  .footer-video video {
    min-height: 220px;
    object-fit: cover;
  }
}
