* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #faf9f7;
  color: #111;
}

/* TOP BAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #faf9f7;
  border-bottom: 2px solid #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.live-indicator {
  font-weight: 800;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-indicator .dot {
  width: 10px;
  height: 10px;
  background: #e10600;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

/* HERO */
.hero {
  padding: 80px 24px 60px;
  max-width: 1100px;
  margin: auto;
}

.hero-card {
  position: relative;
  border: 3px solid #111;
  padding: 40px;
  background: #fff;
  animation: slideIn 0.8s ease-out;
}

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

.hero h1 {
  font-size: 3.8rem;
  margin: 0;
  font-weight: 900;
}

.lower-third {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: #e10600;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-bio {
  max-width: 700px;
  margin-top: 50px;
  line-height: 1.6;
}

/* SECTIONS */
.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: auto;
}

.alt {
  background: #f1f0ee;
}

h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  border: 2px solid #111;
  padding: 20px;
  background: #fff;
  position: relative;
}

.card.hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card.hover:hover {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0 #e10600;
}

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.card.wide {
  grid-column: span 1;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 30px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  border-bottom: 3px solid #e10600;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}


