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

html,
body {
  margin: 0;
  padding: 0;
  background: #ede9e3;
  color: #242424;
  font-family: -apple-system, "Helvetica Neue", "PingFang SC", sans-serif;
}

body {
  min-height: 100vh;
}

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

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

.detail-shell {
  padding: 24px 24px 72px;
}

.detail-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.detail-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-nav {
  display: flex;
  gap: 10px;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-frame {
  background: #fff;
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  padding: 40px;
  margin-bottom: 40px;
}

.detail-cover {
  min-height: 100%;
  object-fit: cover;
  background: #ddd6ce;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
}

.detail-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
  margin-bottom: 18px;
}

.detail-title {
  margin: 0 0 20px;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.detail-summary {
  margin: 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}

.detail-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}

.detail-grid {
  display: grid;
  gap: 24px;
}

.detail-asset {
  padding: 16px;
}

.detail-asset img,
.detail-asset video {
  background: #ddd6ce;
}

.detail-empty {
  padding: 48px 40px;
}

.detail-empty .detail-title {
  font-size: clamp(40px, 6vw, 80px);
}

.category-header {
  padding: 40px;
  margin-bottom: 24px;
}

.category-title {
  margin: 0 0 12px;
  font-size: clamp(54px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.category-subtitle {
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}

.category-grid {
  display: grid;
  gap: 24px;
}

.category-item {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 16px;
}

.category-item-cover {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ddd6ce;
}

.category-item-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.category-item-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.category-item-summary {
  margin: 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
}

.category-item-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

@media (max-width: 980px) {
  .detail-shell {
    padding-inline: 16px;
  }

  .detail-hero,
  .category-header {
    padding: 24px;
  }

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

  .detail-copy {
    min-height: auto;
  }

  .category-item {
    grid-template-columns: 1fr;
  }
}
