:root {
  /* Colors & Fonts */
  --bg-color: #000;
  --text-color: #fff;
  --primary-font: 'Antonio', sans-serif;
  --accent-font: 'Nothing You Could Do', cursive;

  /* Exact Group/Pictures proportions */
  --logo-width: clamp(220px, 28vw, 440px);
  --h1: clamp(24px, 5vw, 52px);
  --sub: clamp(12px, 1.8vw, 18px);
}

/* Reset-ish */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Base */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--primary-font);
  line-height: 1.5;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--text-color);
  color: var(--bg-color);
  padding: 0.5em 1em;
  z-index: 100;
  transition: top 0.3s ease-in-out;
}
.skip-link:focus { top: 0; }

/* Background video */
#bg-video {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: -1;
}

/* Dark overlay for readability (kept as-is) */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-color: rgba(0,0,0,.4);
  z-index: 0;
}

/* Content layer */
.content, .footer-text { position: relative; z-index: 1; }

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* Logo size matches Group/Pictures */
.logo {
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Spacing under logo */
.text-container { margin-top: 10px; }

/* Headline + subline match Group/Pictures */
.brand {
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-family: var(--primary-font);
}
.brand .top {
  display: block;
  font-weight: 700;
  font-size: var(--h1);
}
.brand .sub {
  display: block;
  font-weight: 700;
  font-size: var(--sub);
  letter-spacing: .14em;
  opacity: .9;
}

/* Footer */
.footer-text {
  font-family: var(--accent-font);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}
