:root {
  color-scheme: light;
  --bg: #f5f1e8;
  --panel: #fffaf0;
  --ink: #161412;
  --muted: #665f56;
  --line: #d8cdbb;
  --accent: #9d2d1f;
  --accent-dark: #6f1e15;
  --steel: #24343a;
  --cream: #fff7e8;
  --shadow: 0 24px 70px rgba(31, 24, 16, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(157, 45, 31, 0.16), transparent 28rem),
    linear-gradient(135deg, #fbf6eb 0%, var(--bg) 48%, #ebe2d2 100%);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.9rem;
}

.home-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 250, 240, 0.72);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 54px;
  padding: 38px 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.notify-form {
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 16px 40px rgba(54, 39, 20, 0.08);
}

.notify-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.form-row {
  display: flex;
  gap: 10px;
}

input,
button {
  min-height: 52px;
  border-radius: 8px;
  font: inherit;
}

input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  padding: 0 14px;
  color: var(--ink);
  background: #fffdf8;
}

button {
  border: 0;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

button:hover {
  background: var(--accent-dark);
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.search-preview {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(36, 52, 58, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #24343a 0%, #172126 100%);
  color: #f7efe0;
  box-shadow: var(--shadow);
}

.search-preview::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: 8px;
  background: rgba(157, 45, 31, 0.18);
}

.preview-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-header span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #f0d7aa;
  opacity: 0.86;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #efe4d0;
  font-weight: 800;
}

.search-icon {
  width: 17px;
  height: 17px;
  border: 2px solid #efe4d0;
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: -6px;
  bottom: -4px;
  border-radius: 999px;
  background: #efe4d0;
  transform: rotate(45deg);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.filter-grid span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: 8px;
  color: #d9c9ad;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.show-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 17px;
  border: 1px solid rgba(255, 247, 232, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.show-card.featured {
  background: #fff7e8;
  color: var(--ink);
}

.show-card h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.show-card p {
  margin-bottom: 0;
  color: inherit;
  line-height: 1.45;
  opacity: 0.78;
}

.show-card strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: var(--accent);
  font-size: 0.82rem;
}

.date {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.feature-band > div {
  min-height: 210px;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(255, 250, 240, 0.9);
}

.feature-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
}

.feature-band h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature-band p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .topbar,
  .hero {
    width: min(100% - 28px, 720px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 20px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5.2rem);
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

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

  .show-card {
    flex-direction: column;
  }
}
