:root {
  --yellow: #ffc928;
  --yellow-dark: #e9ae00;
  --black: #111111;
  --white: #ffffff;
  --cream: #fff8df;
  --blue: #1296d4;
  --green: #35a852;
  --coral: #ff6868;
  --shadow: 0 24px 60px rgba(17, 17, 17, .16);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  font-family: 'Nunito', system-ui, sans-serif;
  background: radial-gradient(circle at top left, #ffe77a 0 18rem, transparent 18rem), var(--cream);
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 223, .88);
  backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--black);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: 'Baloo 2'; font-weight: 800; font-size: 1.35rem; }
.brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 16px; border: 3px solid var(--black); }
.nav { display: flex; align-items: center; gap: 22px; font-weight: 900; }
.nav a { text-decoration: none; }
.nav-cta, .button, form button { border: 3px solid var(--black); box-shadow: 5px 5px 0 var(--black); border-radius: 999px; padding: 10px 18px; background: var(--yellow); font-weight: 900; transition: .15s ease; }
.nav-cta:hover, .button:hover, form button:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--black); }
.menu-toggle { display: none; background: var(--yellow); border: 3px solid var(--black); border-radius: 12px; font-size: 1.3rem; }
.hero { min-height: 78vh; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: clamp(42px, 7vw, 100px) clamp(18px, 5vw, 72px); position: relative; overflow: hidden; }
.hero::after { content: '● ◆ ▲ ✦ ●'; position: absolute; right: 4vw; top: 12vh; font-size: clamp(2rem, 7vw, 6rem); color: rgba(17,17,17,.07); transform: rotate(12deg); }
.eyebrow, .section-label { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
h1, h2, h3 { font-family: 'Baloo 2', system-ui, sans-serif; line-height: .95; margin: 0 0 16px; }
h1 { font-size: clamp(3.2rem, 8vw, 7.4rem); max-width: 900px; }
h2 { font-size: clamp(2.1rem, 5vw, 4.2rem); }
h3 { font-size: 2rem; }
p { font-size: 1.1rem; line-height: 1.65; }
.hero-copy p:not(.eyebrow) { max-width: 640px; font-size: 1.25rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-block; text-decoration: none; }
.button.secondary { background: var(--white); }
.button.dark { background: var(--black); color: var(--yellow); }
.hero-card { justify-self: center; width: min(430px, 90vw); aspect-ratio: 1; background: var(--white); border: 5px solid var(--black); border-radius: 48px; box-shadow: var(--shadow), 12px 12px 0 var(--yellow); display: grid; place-items: center; rotate: 2deg; }
.hero-card img { width: 90%; border-radius: 34px; }
.section { padding: clamp(52px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; background: var(--black); color: var(--white); }
.intro .section-label { color: var(--yellow); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border: 4px solid var(--black); border-radius: var(--radius); padding: 28px; box-shadow: 8px 8px 0 var(--black); }
.card.featured { background: var(--yellow); }
.tag { display: inline-block; background: var(--black); color: var(--white); border-radius: 999px; padding: 6px 12px; font-weight: 900; margin-bottom: 18px; }
.card a { font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.dice-panel { min-height: 320px; border: 5px solid var(--black); border-radius: 42px; background: linear-gradient(135deg, var(--yellow), #fff1a6); box-shadow: 12px 12px 0 var(--black); display: grid; grid-template-columns: repeat(2, 1fr); place-items: center; font-size: clamp(3rem, 9vw, 6rem); }
.list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.list-grid a { background: var(--white); border: 4px solid var(--black); border-radius: 24px; padding: 24px; text-decoration: none; font-weight: 900; box-shadow: 6px 6px 0 var(--black); }
.youtube { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; background: var(--black); color: var(--white); border-block: 5px solid var(--black); }
.youtube .section-label { color: var(--yellow); }
.video-panel { background: var(--yellow); border: 5px solid var(--white); border-radius: 34px; padding: 14px; box-shadow: 12px 12px 0 rgba(255,255,255,.25); }
.video-panel iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 22px; background: #000; }
.video-grid-section { background: linear-gradient(180deg, #fff8df, #fff1a6); }
.video-cards .card h3 { min-height: 3.6rem; }
.agenda { background: var(--yellow); border-block: 5px solid var(--black); }
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; }
form { display: grid; gap: 14px; background: var(--white); border: 4px solid var(--black); border-radius: var(--radius); padding: 24px; box-shadow: 8px 8px 0 var(--black); }
input, textarea { width: 100%; border: 3px solid var(--black); border-radius: 18px; padding: 14px 16px; font: inherit; background: #fffdf3; }
textarea { min-height: 140px; resize: vertical; }
form button { justify-self: start; cursor: pointer; }
footer { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px clamp(18px, 5vw, 72px); background: var(--black); color: var(--white); }
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; left: 18px; right: 18px; top: 88px; padding: 22px; background: var(--white); border: 4px solid var(--black); border-radius: 24px; box-shadow: 8px 8px 0 var(--black); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .hero, .intro, .split, .contact, .youtube { grid-template-columns: 1fr; }
  .cards, .list-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
}
