:root {
  color-scheme: light;
  --ink: #263532;
  --muted: #71817c;
  --paper: #e9e3d7;
  --card: #fbfaf5;
  --line: #d9ded5;
  --accent: #c66b43;
  --accent-dark: #93452e;
  --green: #a8b8a1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.68), transparent 28rem),
    linear-gradient(135deg, #eee9df 0%, var(--paper) 55%, #ded8cb 100%);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
}

.site-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 42px;
}

.hero {
  position: relative;
  max-width: 650px;
  margin-bottom: 48px;
  padding-left: 24px;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  content: "";
}
.eyebrow, .section-label {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .18em;
}

h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: .06em;
  text-shadow: 1px 1px 0 rgba(255,255,255,.7);
  line-height: 1.1;
}
h2 { margin-bottom: 12px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.3; }
.lead { color: var(--muted); font-size: 1.08rem; }

.latest-card, .about, .history {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 18px 38px rgba(62, 57, 45, .10), 0 2px 4px rgba(62, 57, 45, .08);
}

.latest-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 190px;
  margin-bottom: 28px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,.82), rgba(242,245,237,.86)),
    repeating-linear-gradient(0deg, rgba(121,104,77,.035) 0 1px, transparent 1px 4px);
}
.latest-card::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(147,69,46,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(147,69,46,.045), 0 0 0 36px rgba(147,69,46,.035);
  content: "";
}
.latest-card > * { position: relative; z-index: 1; }
.card-text, .about p, .empty-history p { color: var(--muted); }
.card-text { margin-bottom: 0; }
.play-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 52px;
  padding: 10px 22px;
  border-radius: 999px;
  color: white;
  border: 1px solid var(--accent-dark);
  background: linear-gradient(#d37b50, var(--accent));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 4px 10px rgba(147,69,46,.18);
  font-weight: 700;
  text-decoration: none;
}
.play-button.is-placeholder { cursor: default; opacity: .65; }

.about, .history { margin-bottom: 28px; padding: 30px 34px; }
.about p { max-width: 680px; margin-bottom: 0; }
.section-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.coming-soon { color: var(--muted); font-size: .8rem; }
.empty-history {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding: 18px 20px;
  border: 1px dashed #aeb9aa;
  background: rgba(242, 245, 237, .54);
  border-radius: 12px;
}
.empty-history p { margin: 0; }
.empty-icon { color: var(--accent); font-size: 1.8rem; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
}

@media (max-width: 600px) {
  .site-shell { width: min(100% - 28px, 880px); padding-top: 44px; }
  .latest-card { display: block; padding: 26px; }
  .play-button { width: 100%; margin-top: 22px; }
  .about, .history { padding: 26px; }
  footer { display: block; }
  footer span { display: block; margin-top: 4px; }
}
