:root {
  --bg: #faf7f1;
  --surface: #fffdf8;
  --surface-strong: #f2ece3;
  --surface-glass: rgba(255, 252, 246, 0.86);
  --text: #231f1c;
  --muted: #736759;
  --line: #dccfbe;
  --primary: #1a1a2e;
  --secondary: #4a4e69;
  --accent: #e85d04;
  --accent-soft: #f7d9c4;
  --accent-deep: #c54d0a;
  --accent-gold: #f0b45d;
  --success: #245c3a;
  --danger: #8f332b;
  --shadow: 0 18px 40px rgba(26, 26, 46, 0.08);
  --shadow-soft: 0 14px 30px rgba(40, 30, 20, 0.08);
  --shadow-hover: 0 26px 50px rgba(26, 26, 46, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 28%, #f7f2ea 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inline-size: 460px;
  block-size: 460px;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

body::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.16) 0%, rgba(232, 93, 4, 0.04) 44%, transparent 72%);
}

body::after {
  right: -120px;
  top: 180px;
  background: radial-gradient(circle, rgba(74, 78, 105, 0.14) 0%, rgba(74, 78, 105, 0.05) 40%, transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

iframe {
  width: 100%;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(255, 251, 244, 0.84));
  border-bottom: 1px solid rgba(220, 207, 190, 0.7);
  box-shadow: 0 8px 24px rgba(34, 24, 15, 0.05);
}

.header-inner,
.footer-inner,
.page-width {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

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

.nav-drawer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary), #31365a);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 24px rgba(26, 26, 46, 0.18);
}

.brand-copy strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  inline-size: 48px;
  block-size: 48px;
  border: 1px solid rgba(220, 207, 190, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  color: var(--secondary);
  font-size: 0.98rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(232, 93, 4, 0.08);
  transform: translateY(-1px);
}

.search-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--surface-glass);
  border: 1px solid rgba(220, 207, 190, 0.9);
  border-radius: 999px;
  min-width: 260px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.search-inline input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--primary);
}

.button,
button.button,
.launch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.launch-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button--solid,
.launch-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 16px 28px rgba(232, 93, 4, 0.22);
}

.button--ghost {
  background: rgba(255,255,255,0.52);
  color: var(--primary);
  border-color: var(--line);
}

.page-width {
  padding: 28px 0 0;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
}

.section-heading h2,
.article-main h2,
.archive-intro h1,
.search-intro h1,
.legal-hero h1,
.article-hero h1 {
  font-size: clamp(2.3rem, 3vw, 4.3rem);
  line-height: 1.04;
  margin: 0 0 16px;
  color: var(--primary);
}

.section-heading p,
.archive-intro p,
.search-intro p,
.legal-hero p,
.article-lead,
.article-main p,
.feature-card p,
.category-band p,
.archive-card p,
.related-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.stars {
  color: #f3a23a;
  letter-spacing: 0.14em;
}

.fade-up {
  animation: fadeUp 0.65s ease both;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: scaleX(1.06);
}

.site-footer {
  margin-top: 48px;
  padding: 40px 0 24px;
  background: #1f2238;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 22px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.empty-state {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.empty-state h1,
.empty-state h2 {
  margin-top: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .nav-drawer {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner,
  .page-width {
    width: min(var(--max-width), calc(100% - 20px));
  }

  body.nav-open {
    overflow: hidden;
  }

  .header-inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-drawer {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(220, 207, 190, 0.92);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(247, 242, 234, 0.98));
    box-shadow: var(--shadow-hover);
  }

  .site-header.nav-open .nav-drawer {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav a {
    display: block;
    padding: 14px 16px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(220, 207, 190, 0.7);
  }

  .search-inline {
    width: 100%;
    min-width: 100%;
    border-radius: 20px;
  }

  .search-inline .button {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
