* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2f241b;
  background: #f4efe3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 5vw;
  background: #2f6f43;
  color: #fff7e8;
  border-bottom: 4px solid #2f241b;
}

.logo {
  color: #fff7e8;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff7e8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero {
  border-bottom: 8px solid #2f241b;
  background: #1f1f1f;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 72px 5vw;
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.card {
  background: #fffaf0;
  border: 4px solid #2f241b;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 8px 8px 0 #2f241b;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #2f6f43;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.orange {
  background: #f08a24;
  color: #2f241b;
}

.eyebrow.spotify {
  background: #1db954;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(34px, 6vw, 68px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

.small {
  font-size: 15px;
  margin-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.highlights span {
  padding: 14px;
  border: 2px solid #2f241b;
  border-radius: 18px;
  background: #f7efd8;
  font-weight: 800;
}

.button {
  display: inline-block;
  padding: 16px 26px;
  border: 3px solid #2f241b;
  border-radius: 16px;
  color: #2f241b;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 6px 6px 0 #2f241b;
  transition: transform .15s ease, box-shadow .15s ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #2f241b;
}

.primary {
  background: #f08a24;
}

.spotify-btn {
  background: #1db954;
  color: white;
}

.green-bg {
  background: #dfe6d2;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}

.schedule {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px;
  background: white;
  border: 3px solid #2f241b;
  border-radius: 20px;
}

.schedule-row strong {
  display: block;
  padding: 14px;
  text-align: center;
  background: #f2c84b;
  border-radius: 14px;
  font-size: 22px;
}

.schedule-row p {
  margin: 8px 0 0;
  font-size: 16px;
}

.practical ul {
  padding-left: 20px;
  font-size: 18px;
  line-height: 2;
}

.embed-card iframe {
  display: block;
  border: 0;
  border-radius: 16px;
}

.final-cta {
  background: #2f241b;
  color: #fff7e8;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  border: 4px solid #f2c84b;
  border-radius: 28px;
  background: #5b4031;
}

.cta-box p {
  margin-bottom: 0;
}

footer {
  background: #2f6f43;
  color: #fff7e8;
  padding: 28px 5vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 800px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .section {
    padding: 48px 5vw;
  }

  .highlights,
  .two-col {
    grid-template-columns: 1fr;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
