@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,600;6..96,700&family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --paper: #f6f2e8;
  --paper-strong: #efe8d8;
  --ink: #151515;
  --muted: #5d584f;
  --line: rgba(21, 21, 21, 0.14);
  --line-strong: rgba(21, 21, 21, 0.3);
  --accent: #cb5c2f;
  --accent-soft: rgba(203, 92, 47, 0.08);
  --panel: rgba(255, 252, 245, 0.72);
  --shadow: 0 28px 80px rgba(43, 30, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 92, 47, 0.11), transparent 26%),
    radial-gradient(circle at top right, rgba(27, 81, 125, 0.09), transparent 24%),
    linear-gradient(180deg, #f8f3e7 0%, #f4efe2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 100% 32px, 32px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

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

.page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 4rem;
}

.site-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0 1.25rem;
  border-bottom: 1px solid var(--line-strong);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(43, 30, 12, 0.12));
}

.wordmark {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.65rem, 3.8vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup:hover .wordmark {
  color: var(--accent);
}

.site-note,
.back-link {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-hero,
.article-header {
  padding: 3rem 0 2.25rem;
  animation: rise 700ms ease both;
}

.eyebrow,
.section-label,
.kicker {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  max-width: 11.5ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.article-header h1 {
  max-width: 16ch;
  font-size: clamp(2.75rem, 6.2vw, 5.1rem);
  line-height: 0.95;
}

.lede,
.article-dek {
  max-width: 46rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.8;
}

.mascot-note {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 0.45rem 0.75rem 0.45rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.82);
  box-shadow: var(--shadow);
}

.mascot-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mascot-chip {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  object-fit: cover;
}

.home-grid,
.article-aside-grid {
  display: grid;
  gap: 1.1rem;
}

.home-grid {
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
  align-items: start;
}

.story-card,
.brief,
.fact-card,
.album-embed {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.story-card,
.fact-card {
  padding: 1.45rem;
  border-radius: 1.75rem;
}

.story-card-featured {
  padding: 1.8rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.82)),
    linear-gradient(180deg, rgba(203, 92, 47, 0.04), rgba(203, 92, 47, 0));
}

.story-card h2,
.fact-card h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.story-card p,
.brief p,
.fact-card p,
.article-body p,
.meta-row p,
.embed-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.story-card p,
.fact-card p,
.brief p {
  margin-top: 0.9rem;
}

.brief-column {
  display: grid;
  gap: 1rem;
}

.brief {
  padding: 1.2rem 1.15rem;
  border-radius: 1.4rem;
}

.brief h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.site-footer {
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-page {
  max-width: 1040px;
}

.article-shell {
  padding-top: 0.8rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.article-body {
  display: grid;
  gap: 1.2rem;
  max-width: 46rem;
  font-size: 1.12rem;
}

.article-image {
  margin: 1.5rem 0;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.article-image figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-image-hero {
  max-width: 46rem;
}

.article-image-inline {
  max-width: 32rem;
}

.dropcap::first-letter {
  float: left;
  margin: 0.14rem 0.45rem 0 0;
  font-family: "Instrument Serif", serif;
  font-size: 4.7rem;
  line-height: 0.82;
  color: var(--accent);
}

blockquote {
  margin: 0.5rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 1rem 1rem 0;
}

blockquote p {
  font-family: "Instrument Serif", serif;
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--ink);
}

.article-aside-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.article-aside-grid .fact-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.2rem;
}

.article-aside-grid .fact-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.06;
}

.article-aside-grid .fact-card p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.album-embed {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 1.75rem;
}

.embed-copy h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.04;
}

.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(203, 92, 47, 0.4);
  text-underline-offset: 0.2em;
}

.embed-frame {
  min-height: 352px;
  max-width: 520px;
  width: 100%;
  justify-self: end;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(239, 232, 216, 0.68));
}

.embed-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 352px;
  border: 0;
  display: block;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .home-grid,
  .article-aside-grid,
  .album-embed {
    grid-template-columns: 1fr;
  }

  .embed-frame {
    max-width: none;
    justify-self: stretch;
  }

  h1,
  .article-header h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
  }

  .site-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero,
  .article-header {
    padding-top: 2rem;
  }

  .article-body {
    font-size: 1.03rem;
  }

  .article-aside-grid .fact-card {
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .article-aside-grid .fact-card h2 {
    font-size: 1.35rem;
  }

  .dropcap::first-letter {
    font-size: 3.8rem;
  }
}
