:root {
  --paper: #f8f4ed;
  --paper-strong: #fffaf2;
  --ink: #121315;
  --ink-soft: #4e5358;
  --muted: #76706a;
  --line: #ded6ca;
  --red: #8b1a1a;
  --red-dark: #681212;
  --gold: #c9a86c;
  --green: #2f6b56;
  --blue: #27556a;
  --black: #090a0c;
  --white: #ffffff;
  --shadow: 0 16px 36px rgba(18, 19, 21, 0.12);
  --radius: 8px;
  --shell: 1180px;
  font-family: "Funnel Sans", Inter, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Funnel Sans", Inter, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.section-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - var(--shell)) / 2));
  background: rgba(248, 244, 237, 0.92);
  border-bottom: 1px solid rgba(18, 19, 21, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.brand__name {
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  background: rgba(139, 26, 26, 0.08);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.news-board {
  padding: 42px 0 72px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(248, 244, 237, 1)),
    var(--paper);
}

.news-board__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  grid-template-areas:
    "lead story"
    "list story";
  gap: 28px;
  align-items: start;
}

.news-board__lead {
  grid-area: lead;
  padding-top: 18px;
}

.section-kicker,
.story-meta {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Newsreader", Georgia, serif;
  color: var(--ink);
}

h1 {
  max-width: 620px;
  font-size: clamp(44px, 5.7vw, 76px);
  hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 26px;
}

.news-board__intro,
.section-heading p,
.subscription-copy,
.apps-grid p,
.about-grid p,
.site-footer p {
  color: var(--ink-soft);
  font-size: 18px;
}

.lead-story,
.news-item,
.catalogue-tool,
.venue-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 8px 24px rgba(18, 19, 21, 0.08);
}

.lead-story {
  grid-area: story;
  overflow: hidden;
}

.lead-story img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.lead-story__body {
  padding: clamp(22px, 4vw, 34px);
}

.lead-story h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.lead-story p:not(.story-meta) {
  color: var(--ink-soft);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  outline: none;
}

.news-list {
  grid-area: list;
  display: grid;
  gap: 12px;
}

.news-item {
  padding: 18px;
}

.news-item time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.news-item h2 {
  margin-bottom: 8px;
  font-family: "Funnel Sans", Inter, sans-serif;
  font-size: 18px;
  line-height: 1.25;
}

.news-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.catalogue-section,
.venues-section,
.subscription-section,
.apps-section,
.about-section {
  padding: 82px 0;
}

.catalogue-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.catalogue-tool {
  overflow: hidden;
}

.catalogue-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.catalogue-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 2;
  stroke-linecap: round;
}

.catalogue-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
}

.catalogue-search__clear {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
}

.catalogue-search__clear:hover,
.catalogue-search__clear:focus-visible {
  border-color: var(--line);
  background: var(--paper);
  outline: none;
}

.catalogue-search__clear svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
}

.catalogue-tabs {
  display: flex;
  gap: 2px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.catalogue-tab {
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--ink-soft);
  background: transparent;
  font-weight: 800;
}

.catalogue-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.catalogue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 18px;
}

.catalogue-results {
  display: grid;
  gap: 10px;
}

.catalogue-result {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 10px;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalogue-result:hover,
.catalogue-result:focus-visible {
  border-color: rgba(139, 26, 26, 0.35);
  box-shadow: 0 12px 28px rgba(18, 19, 21, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.catalogue-result__art {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}

.catalogue-result__art.release,
.catalogue-result__art.publisher {
  border-radius: var(--radius);
}

.catalogue-result__art.release {
  background: var(--red);
}

.catalogue-result__art.publisher {
  background: var(--green);
}

.catalogue-result__body {
  min-width: 0;
}

.catalogue-result__type {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalogue-result__title {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.catalogue-result__meta {
  color: var(--ink-soft);
  font-size: 14px;
}

.catalogue-result__tag {
  justify-self: end;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.catalogue-empty {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.catalogue-stats {
  display: grid;
  align-content: start;
  gap: 12px;
}

.catalogue-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.catalogue-stats strong {
  display: block;
  color: var(--red);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.catalogue-stats span {
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-page {
  min-height: 100vh;
  background: var(--paper);
}

.detail-hero {
  padding: 54px 0 68px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(248, 244, 237, 1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.detail-hero--error {
  min-height: 58vh;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.detail-back:hover,
.detail-back:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  outline: none;
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  margin-top: 22px;
}

.detail-hero__mark {
  display: grid;
  place-items: center;
  width: 168px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
}

.detail-hero__mark.release,
.detail-hero__mark.publisher {
  border-radius: var(--radius);
}

.detail-hero__mark.release {
  background: var(--red);
}

.detail-hero__mark.publisher {
  background: var(--green);
}

.detail-hero h1 {
  max-width: 900px;
}

.detail-lede {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.detail-actions a:hover,
.detail-actions a:focus-visible {
  background: var(--red-dark);
  outline: 2px solid rgba(201, 168, 108, 0.55);
  outline-offset: 2px;
}

.detail-content {
  padding: 58px 0 86px;
  background: var(--white);
}

.detail-content__grid {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.detail-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}

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

.detail-stat-grid div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.detail-stat-grid strong {
  display: block;
  color: var(--red);
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.detail-stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.detail-facts {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.detail-facts div {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border-top: 1px solid var(--line);
}

.detail-facts div:first-child {
  border-top: 0;
}

.detail-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.detail-facts a {
  color: var(--red);
  text-decoration: none;
}

.detail-facts a:hover,
.detail-facts a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  outline: none;
}

.detail-main {
  display: grid;
  gap: 30px;
}

.detail-section__heading {
  margin-bottom: 16px;
}

.detail-section__heading h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.detail-list {
  display: grid;
  gap: 10px;
}

.detail-list-item {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 16px 18px;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  text-decoration: none;
}

a.detail-list-item {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.detail-list-item:hover,
a.detail-list-item:focus-visible {
  border-color: rgba(139, 26, 26, 0.35);
  box-shadow: 0 10px 24px rgba(18, 19, 21, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.detail-list-item__tag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-list-item__title {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.detail-list-item__meta {
  color: var(--ink-soft);
  font-size: 14px;
}

.detail-list-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.detail-list-item__links a {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.detail-list-item__links a:hover,
.detail-list-item__links a:focus-visible {
  color: var(--red-dark);
  text-decoration: underline;
  outline: none;
}

.detail-empty {
  margin: 0;
  padding: 18px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 700;
}

.venues-section {
  background: #efe7db;
}

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

.venue-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card > div {
  padding: 20px;
}

.venue-card p:not(.story-meta) {
  color: var(--ink-soft);
}

.event-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border-top: 1px solid var(--line);
}

.event-list time {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.event-list span {
  color: var(--ink);
  font-weight: 700;
}

.subscription-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.9), rgba(9, 10, 12, 1)),
    var(--black);
}

.subscription-section h2,
.subscription-section h3 {
  color: var(--white);
}

.subscription-section .section-kicker,
.subscription-section .story-meta {
  color: var(--gold);
}

.subscription-copy {
  color: rgba(255, 255, 255, 0.72);
}

.subscription-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.email-field {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.email-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  outline: none;
}

.email-field input:focus {
  border-color: var(--gold);
}

.subscription-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 700;
}

.subscription-status.is-error {
  color: #f5a3a3;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.plan-card--featured {
  border-color: var(--gold);
  background: rgba(201, 168, 108, 0.12);
}

.plan-card p {
  margin: 0;
}

.plan-price {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
}

.plan-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.purchase-button:hover,
.purchase-button:focus-visible {
  background: var(--red-dark);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.apps-section {
  background: var(--white);
}

.apps-grid,
.about-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  min-height: 58px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  text-decoration: none;
}

.store-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.store-button small,
.store-button span {
  display: block;
}

.store-button small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.1;
}

.store-button span {
  font-weight: 800;
  line-height: 1.15;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
}

.about-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.site-footer strong {
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.policy-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 26, 26, 0.22), transparent 34%),
    linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
}

.policy-hero {
  padding: 84px 0 46px;
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(44px, 8vw, 86px);
}

.policy-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.policy-content {
  padding: 0 0 86px;
}

.policy-shell {
  max-width: 860px;
}

.policy-section {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.policy-section p {
  margin: 0 0 14px;
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.policy-section a {
  color: var(--gold);
  font-weight: 700;
}

.policy-section strong {
  color: var(--white);
}

.policy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--burgundy);
  color: white !important;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    font-size: 18px;
  }

  .news-board__grid,
  .subscription-grid,
  .apps-grid,
  .about-grid,
  .detail-content__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-board__grid {
    grid-template-areas:
      "lead"
      "story"
      "list";
  }

  .catalogue-layout,
  .venue-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-sidebar {
    grid-row: 2;
  }

  .detail-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-links,
  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, var(--shell));
  }

  .news-board,
  .catalogue-section,
  .venues-section,
  .subscription-section,
  .apps-section,
  .about-section {
    padding: 54px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .detail-hero {
    padding: 36px 0 48px;
  }

  .detail-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-hero__mark {
    width: 108px;
    font-size: 42px;
  }

  .detail-lede {
    font-size: 18px;
  }

  .detail-content {
    padding: 42px 0 58px;
  }

  .detail-stat-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-result {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .catalogue-result__art {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .catalogue-result__tag {
    grid-column: 2;
    justify-self: start;
  }

  .catalogue-stats {
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

/* 2026 light editorial design */
:root {
  --paper: #f7f3ec;
  --paper-strong: #ffffff;
  --ink: #18191b;
  --ink-soft: #62666b;
  --muted: #90949a;
  --line: #d8d1c6;
  --blue: #bfd4de;
  --green: #d9e8e0;
  --gold: #946a28;
  --radius: 10px;
  --shell: 1240px;
}

:focus-visible { outline: 3px solid rgba(139, 26, 26, .34); outline-offset: 3px; }
.site-header { min-height: 78px; background: rgba(247, 243, 236, .94); }
.brand__mark { background: var(--blue); color: #273943; }
.brand__name { font-size: 30px; font-weight: 600; }
.site-nav a { font-weight: 600; }
.site-nav .account-link { margin-left: 8px; padding-inline: 18px; color: #fff; background: var(--red); }
.site-nav .account-link:hover, .site-nav .account-link:focus-visible { color: #fff; background: var(--red-dark); }
.news-board { padding: clamp(54px, 7vw, 96px) 0 82px; }
.news-board__grid {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  grid-template-areas: "lead story" "list story";
  gap: clamp(30px, 5vw, 72px);
}
.news-board__lead { align-self: center; padding: 20px 0 34px; }
h1 { max-width: 680px; font-size: clamp(54px, 6.5vw, 92px); font-weight: 600; letter-spacing: -.035em; }
h2, h3 { font-weight: 600; }
.news-board__intro { max-width: 580px; font-size: clamp(18px, 2vw, 22px); }
.lead-story { border: 0; box-shadow: none; background: transparent; }
.lead-story img { aspect-ratio: 4 / 5; border-radius: 160px 160px var(--radius) var(--radius); object-position: 52% center; }
.lead-story__body { padding: 24px 0 0; }
.lead-story h2 { font-size: clamp(32px, 3.6vw, 50px); }
.news-list { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-column: 1 / -1; }
.news-item { background: transparent; border-width: 1px 0 0; border-radius: 0; box-shadow: none; padding: 20px 0; }
.catalogue-section { background: #fff; }
.catalogue-tool, .plan-card, .about-grid img { box-shadow: none; }
.catalogue-tool { border-radius: var(--radius); }
.catalogue-stats div { background: var(--paper); }
.subscription-section { background: var(--blue); }
.plan-card--featured { background: #18191b; color: #fff; }
.plan-card--featured h3, .plan-card--featured p { color: #fff; }
.subscription-section h2 { color: var(--ink); }
.subscription-section .subscription-copy { color: #35454c; }
.subscription-grid { grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr); gap: clamp(38px, 7vw, 96px); align-items: center; }
.subscription-steps { display: grid; gap: 13px; padding: 0; margin: 30px 0 0; list-style: none; }
.subscription-steps li { display: flex; align-items: center; gap: 13px; color: #273943; font-weight: 700; }
.subscription-steps strong { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(39,57,67,.34); border-radius: 50%; font: 600 17px/1 "Newsreader", Georgia, serif; }
.subscription-console { min-height: 480px; padding: clamp(26px, 4vw, 42px); border: 0; border-radius: 4px; box-shadow: 18px 18px 0 rgba(39,57,67,.13); }
.plan-price-row { display: flex; align-items: center; gap: 14px; }
.plan-price-row .plan-price { font: 600 clamp(48px, 5vw, 68px)/.95 "Newsreader", Georgia, serif; letter-spacing: -.03em; }
.plan-price-row > span { color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.35; }
.plan-benefits { display: grid; gap: 9px; padding: 18px 0 22px; margin: 0; border-bottom: 1px solid rgba(255,255,255,.16); list-style: none; }
.plan-benefits li::before { content: "✓"; margin-right: 9px; color: #b9d5dd; font-weight: 800; }
.subscription-state { display: grid; gap: 13px; padding-top: 21px; }
.subscription-state[hidden] { display: none; }
.subscription-state h3 { margin: 0; font-size: 25px; }
.subscription-state > p { color: rgba(255,255,255,.7); font-size: 13px; }
.verified-identity { display: grid; padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); }
.verified-identity strong { color: #fff; font-size: 16px; }
.verified-identity span { color: rgba(255,255,255,.65); font-size: 12px; }
.purchase-button { width: 100%; text-decoration: none; cursor: pointer; }
.purchase-button:disabled, .secondary-button:disabled { cursor: wait; opacity: .65; }
.secondary-button { min-height: 46px; padding: 0 16px; border: 1px solid rgba(255,255,255,.34); border-radius: var(--radius); color: #fff; background: transparent; font-weight: 800; }
.secondary-button:hover, .secondary-button:focus-visible { border-color: #fff; background: rgba(255,255,255,.08); }
.danger-button { color: #f1b1ab; border-color: rgba(241,177,171,.5); }
.subscription-pill { width: max-content; padding: 5px 10px; border-radius: 999px; color: #183c31; background: #cce6dc; font-size: 12px; font-weight: 800; }
.subscription-spinner { width: 34px; height: 34px; border: 3px solid rgba(255,255,255,.2); border-top-color: #fff; border-radius: 50%; animation: subscription-spin .8s linear infinite; }
@keyframes subscription-spin { to { transform: rotate(360deg); } }
.about-grid img { border-radius: 140px 140px var(--radius) var(--radius); }
.venues-section { display: none; }

@media (max-width: 900px) {
  .news-board__grid { grid-template-columns: 1fr; grid-template-areas: "lead" "story" "list"; }
  .lead-story { max-width: 680px; }
  .lead-story img { aspect-ratio: 4 / 3; border-radius: 100px 100px var(--radius) var(--radius); }
  .news-list { grid-template-columns: 1fr; grid-column: auto; }
  .subscription-grid { grid-template-columns: 1fr; }
  .subscription-console { max-width: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Subscription-first storefront */
.site-nav .account-link { margin-left: 8px; color: var(--ink-soft); background: transparent; }
.site-nav .account-link:hover,
.site-nav .account-link:focus-visible { color: var(--red); background: rgba(139, 26, 26, .08); }
.site-nav .nav-subscription { min-height: 44px; padding-inline: 19px; color: #fff; background: var(--red); }
.site-nav .nav-subscription:hover,
.site-nav .nav-subscription:focus-visible { color: #fff; background: var(--red-dark); }

.subscription-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 7vw, 88px) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.72), transparent 31%),
    var(--blue);
}
.subscription-hero h1 { max-width: 720px; color: var(--ink); }
.subscription-hero__copy { align-self: center; }
.subscription-hero .subscription-copy { max-width: 650px; margin: 22px 0 0; color: #35454c; font-size: clamp(18px, 2vw, 22px); }
.hero-price { display: flex; align-items: center; gap: 15px; margin-top: 28px; }
.hero-price strong { font: 600 clamp(52px, 6vw, 78px)/.9 "Newsreader", Georgia, serif; letter-spacing: -.04em; }
.hero-price span { color: #35454c; font-size: 13px; line-height: 1.35; }
.renewal-note { max-width: 570px; margin: 15px 0 24px; color: #273943; font-weight: 650; }
.hero-primary-cta { width: min(100%, 310px); min-height: 54px; margin: 0; font-size: 17px; text-decoration: none; }
.hero-secondary-cta { display: inline-flex; align-items: center; min-height: 48px; margin-left: 18px; color: #273943; font-weight: 800; text-underline-offset: 4px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 9px 20px; margin: 24px 0 0; padding: 0; color: #273943; list-style: none; font-size: 13px; font-weight: 750; }
.hero-assurances li::before { content: "✓"; margin-right: 7px; }
.subscription-hero .subscription-console { align-self: center; }
.subscription-state h2 { color: #fff; font-size: 25px; }

.free-section { padding: clamp(66px, 9vw, 112px) 0; background: #efe7db; }
.free-grid { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(0, 1fr); gap: clamp(36px, 8vw, 110px); align-items: center; }
.free-grid > div:last-child { max-width: 640px; }
.free-grid p:not(.section-kicker) { color: var(--ink-soft); font-size: 18px; }
.free-album { aspect-ratio: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(24px, 5vw, 46px); color: #fff; background: linear-gradient(145deg, #6d1717, #171719 70%); box-shadow: 18px 18px 0 rgba(18,19,21,.13); }
.free-album span { margin-bottom: auto; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.free-album strong { font: 600 clamp(42px, 6vw, 76px)/.9 "Newsreader", Georgia, serif; }
.free-album small { margin-top: 10px; color: rgba(255,255,255,.68); }
.secondary-light-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 17px; color: var(--ink); border: 1px solid var(--ink); border-radius: var(--radius); background: transparent; font-weight: 800; text-decoration: none; }
.secondary-light-button:hover, .secondary-light-button:focus-visible { color: #fff; background: var(--ink); outline: none; }

.faq-section { padding: clamp(70px, 9vw, 116px) 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr); gap: clamp(38px, 8vw, 110px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; cursor: pointer; font-weight: 800; }
.faq-list summary::after { content: "+"; color: var(--red); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 700px; margin: -3px 0 22px; color: var(--ink-soft); }

@media (max-width: 760px) {
  .subscription-hero { min-height: auto; }
  .hero-primary-cta { width: 100%; }
  .hero-secondary-cta { width: 100%; justify-content: center; margin: 8px 0 0; }
  .hero-assurances { display: grid; }
  .free-grid, .faq-grid { grid-template-columns: 1fr; }
  .free-album { width: min(100%, 460px); }
}

@media (max-width: 420px) {
  .section-shell { width: min(var(--shell), calc(100% - 28px)); }
  .subscription-hero { padding-top: 34px; }
  .subscription-console { min-height: 0; padding: 24px 20px; box-shadow: 9px 9px 0 rgba(39,57,67,.13); }
  .hero-price strong { font-size: 54px; }
}
