:root {
  --bg: #f6f1e8;
  --paper: #ffffff;
  --ink: #1d1d1d;
  --muted: #5f5f5f;
  --accent: #8b1e1e;
  --accent-dark: #641313;
  --line: #ddd3c4;
  --green: #0b3d16;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(135deg, #0a0f13, #1d1d1d 62%, #0b3d16);
  color: white;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #f1e9dc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: bold;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.subtitle {
  margin: 0.75rem 0 0;
  color: #ffd46b;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: bold;
}

.lead {
  max-width: 720px;
  color: #f1e9dc;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}

.hero-cover img {
  max-width: 100%;
  max-height: 520px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: white;
  border-color: #f1e9dc;
}

.button.secondary-dark {
  background: transparent;
  color: var(--accent);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent);
  padding: 0.75rem 1rem;
  text-align: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 0.7rem;
  display: inline-block;
}

main {
  padding: 2rem 0;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.card h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.split img,
.wide-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}

.wide-image {
  margin: 1rem 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
}

.link-grid a {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem;
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

footer {
  background: var(--ink);
  color: #f1e9dc;
  padding: 2rem 0;
}

footer a {
  color: white;
  display: inline-block;
  margin-left: 1rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0.25rem 0 0;
  color: #d9d0c2;
}

@media (max-width: 800px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .footer-grid {
    display: block;
    text-align: center;
  }

  footer a {
    margin: 0.5rem;
  }

  .nav a {
    margin: 0.25rem 0.45rem;
  }
}


.video-link-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1.1fr;
  gap: 1rem;
  align-items: center;
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.video-link-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.video-link-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .video-link-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
