body {
  font-family: Arial, sans-serif;
  background: #D2B48C; /* Tan */
  margin: 0;
  padding: 0;
  color: #4A403A; /* Earthy brown */
}
header {
  background: #8B4513; /* Saddle Brown */
  color: #FFF8E7; /* Light cream */
  padding: 2rem 1rem;
  text-align: center;
}
.header-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}
main {
  max-width: 700px;
  margin: 2rem auto;
  background: #FFF8E7; /* Light cream */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 2rem;
}

.feature-video {
  background: linear-gradient(145deg, #4A1F06, #8B4513);
  color: #FFF8E7;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-copy {
  margin-bottom: 0.8rem;
}

.feature-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #FFD78A;
  font-size: 0.78rem;
}

.feature-copy h2 {
  margin: 0.25rem 0 0.5rem 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.feature-copy p {
  margin: 0;
  color: #F7E8CF;
}

.feature-player-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 248, 231, 0.35);
}

.feature-player {
  width: 100%;
  display: block;
  background: #000;
}

section {
  margin-bottom: 2rem;
}
.gallery .images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.gallery img {
  max-width: 200px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.videos .video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 800px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.video-tile {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.video-tile video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  background: #000;
}

.video-tile p {
  margin: 0.6rem 0 0 0;
  font-size: 0.9rem;
  color: #444;
  text-align: center;
}

@media (max-width: 600px) {
  main {
    padding: 1rem;
  }
  .feature-copy h2 {
    font-size: 1.3rem;
  }
  .gallery img, .videos video {
    max-width: 100%;
  }
  section.videos {
    margin-bottom: 1rem;
  }
}
.footer-text {
  text-align: center;
  color: #888;
  font-size: 0.9em;
}
footer {
  background: #A0522D; /* Sienna */
  color: #FFF;
  text-align: center;
  padding: 1rem;
}
