:root {
  --brown-950: #26160e;
  --brown-900: #3b2114;
  --brown-800: #56301b;
  --brown-700: #744326;
  --tan-100: #fff8ed;
  --tan-200: #f6e6cf;
  --gold: #d99a2b;
  --gold-dark: #b87912;
  --cream: #fffdf8;
  --red: #a52d20;
  --text: #2c211b;
  --muted: #6d625b;
  --shadow: 0 18px 45px rgba(50, 27, 12, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img, video { display: block; width: 100%; }

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(38, 22, 14, 0.96);
  color: white;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; letter-spacing: .02em; }
.brand small { color: #e5c9a7; font-size: .78rem; }
.brand-mark { color: var(--gold); font-size: 1.65rem; }

.back-link {
  color: #ffe2b3;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  padding: 88px 0;
  color: white;
  background:
    linear-gradient(115deg, rgba(38,22,14,.96), rgba(86,48,27,.88)),
    radial-gradient(circle at top right, #8c5532, transparent 52%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.hero .eyebrow, .dance-hero .eyebrow { color: #f5bc55; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.035em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.hero-copy {
  max-width: 680px;
  color: #f2dfcd;
  font-size: 1.12rem;
}

.primary-button, .song-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--brown-950);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.primary-button { padding: 14px 22px; margin-top: 12px; }
.primary-button:hover, .song-button:hover { transform: translateY(-2px); background: #efad38; }

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.hero-card-label, .video-type {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4d7ad;
  color: var(--brown-900);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section { padding: 76px 0; }
.intro-section { background: var(--tan-100); }
.song-section { background: #fff; }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading p:last-child { color: var(--muted); }

.video-card {
  overflow: hidden;
  border: 1px solid #ead9c5;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #1d130e;
}

.video-frame video {
  height: 100%;
  object-fit: cover;
}

.video-info { padding: 24px; }
.video-info h2, .video-info h3 { margin-bottom: 10px; }
.video-info p { color: var(--muted); margin-bottom: 0; }

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.song-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 26px;
  border: 1px solid #e6d1b8;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf3, #f4e1c8);
  box-shadow: 0 12px 30px rgba(73, 43, 23, .1);
}

.song-card h3 { font-size: 1.45rem; margin-bottom: 4px; }
.song-card .artist { color: var(--muted); }
.song-card .song-details { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }

.tag {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(86,48,27,.09);
  color: var(--brown-800);
  font-size: .76rem;
  font-weight: 800;
}

.song-button { align-self: flex-start; padding: 11px 17px; }

.dance-hero {
  padding: 72px 0 56px;
  background: var(--brown-900);
  color: white;
}

.dance-hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); margin-bottom: 8px; }
.dance-artist { color: #edd4b6; font-size: 1.15rem; }
.dance-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.dance-meta .tag { background: rgba(255,255,255,.12); color: white; }

.two-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.practice-section { padding-top: 0; }
.practice-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 36px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--tan-200);
}
.practice-card ul { margin: 0; padding-left: 20px; }
.practice-card li + li { margin-top: 9px; }

.site-footer {
  padding: 30px 0;
  background: var(--brown-950);
  color: #ead9c5;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-note { color: #c9ab8f; }

.empty-message {
  grid-column: 1 / -1;
  padding: 28px;
  border: 2px dashed #d9b98f;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 780px) {
  .hero { padding: 60px 0; }
  .hero-grid, .featured-video, .two-video-grid, .practice-card { grid-template-columns: 1fr; }
  .song-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .back-link { font-size: .9rem; }
}
