:root {
  --bg: #f5f2ea;
  --bg-soft: #ece8de;
  --surface: #fffdf9;
  --text: #2f2018;
  --muted: #7f7367;
  --brand: #cfa13a;
  --brand-deep: #b18423;
  --ring: rgba(207, 161, 58, 0.24);
  --border: #ddd4c4;
  --radius-lg: 22px;
  --radius-md: 15px;
  --shadow-sm: 0 8px 18px rgba(95, 62, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(1200px 500px at 100% -120px, rgba(207, 161, 58, 0.18), transparent 50%),
    radial-gradient(600px 300px at -10% 10%, rgba(207, 161, 58, 0.1), transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: "Hind", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, 920px);
  margin-inline: auto;
}

.main-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  align-content: center;
  padding: 1rem 0 2rem;
}

.topbar {
  padding: 1.2rem 0 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.availability {
  margin-top: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.footer-links {
  border-top: 1px solid rgba(207, 161, 58, 0.33);
  padding: 1rem 0 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--brand-deep);
  font-weight: 600;
}

.copyright {
  width: 100%;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar {
  padding: 1rem 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.overline {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
}

h1 {
  font-family: "Teko", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}

h2 {
  font-size: clamp(1.3rem, 2.9vw, 1.8rem);
}

.pill-link {
  border: 1px solid rgba(207, 161, 58, 0.4);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-deep);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
}

.stack-lg { display: grid; gap: 1.1rem; padding-block: 0.8rem 1.2rem; }
.stack-sm { display: grid; gap: 0.8rem; }

.hero {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(207, 161, 58, 0.32);
  background: linear-gradient(145deg, #fffef9, #f7f3ea);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.hero h2 {
  margin-top: 0.35rem;
}

.label {
  color: var(--brand-deep);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.68rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-soft {
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid rgba(207, 161, 58, 0.32);
}

.card {
  border: 1px solid rgba(207, 161, 58, 0.28);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.center {
  text-align: center;
}

.counter {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  color: var(--brand-deep);
  margin-block: 0.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.section-head a,
.text-link {
  color: var(--brand-deep);
  font-weight: 600;
}

.media-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.play-btn {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}

.grid-2 {
  display: grid;
  gap: 0.9rem;
}

.lift {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 20px rgba(95, 62, 12, 0.14);
}

.search-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.search-inline input {
  width: 100%;
  border: 1px solid rgba(207, 161, 58, 0.33);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  font-size: 0.95rem;
}

.search-inline input:focus-visible {
  outline: 2px solid var(--ring);
  border-color: var(--brand);
}

.search-inline button {
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.72rem 1rem;
  cursor: pointer;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(207, 161, 58, 0.35);
  background: #fff;
  color: var(--text);
  padding: 0.5rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.chip-active {
  background: var(--brand);
  color: #fff;
}

.legal-page {
  padding-block: 1.5rem;
}

.legal-page h2 {
  margin-top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: revealUp 450ms ease forwards;
}

.reveal:nth-child(2) { animation-delay: 90ms; }
.reveal:nth-child(3) { animation-delay: 180ms; }
.reveal:nth-child(4) { animation-delay: 260ms; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}