:root {
  --bg: #f5ede2;
  --paper: rgba(248, 242, 232, 0.82);
  --paper-strong: #f8f0e5;
  --ink: #181311;
  --muted: #62554f;
  --line: rgba(24, 19, 17, 0.12);
  --gold: #c79a44;
  --scarlet: #c72026;
  --maple: #ef3029;
  --shadow: 0 22px 60px rgba(18, 13, 11, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(239, 48, 41, 0.12), transparent 28%),
    radial-gradient(circle at 15% 18%, rgba(199, 154, 68, 0.18), transparent 22%),
    linear-gradient(180deg, #130f11 0%, #2f1d1b 22%, #efe4d3 22.1%, #f5ede2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 90px),
    linear-gradient(rgba(0, 0, 0, 0.015) 0, rgba(0, 0, 0, 0.015) 1px, transparent 1px, transparent 90px);
  opacity: 0.45;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#000 0.6px, transparent 0.6px);
  background-size: 5px 5px;
}

.news-layout {
  width: min(1600px, calc(100% - 1.25rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 1rem;
  padding: 0.75rem 0 1.25rem;
}

.story-pane {
  min-width: 0;
}

.masthead,
.page-shell,
.site-footer {
  width: 100%;
  margin: 0;
}

.masthead {
  padding: 1.2rem 0 2rem;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0 1rem;
}

.publication-mark,
.credit-note,
.section-label,
.award-type,
.poster-label,
.poster-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.publication-mark,
.powered-by {
  margin: 0;
  color: rgba(255, 248, 240, 0.88);
  font-size: 0.82rem;
}

.powered-by {
  text-decoration: none;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.section,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.section,
.site-footer {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)),
    var(--paper);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: clamp(1.4rem, 3vw, 2.8rem);
  border-radius: 34px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -4rem -3rem auto;
  width: 16rem;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0 26%, transparent 26.5%),
    conic-gradient(from -18deg, var(--maple) 0 62deg, transparent 62deg 118deg, var(--maple) 118deg 180deg, transparent 180deg 242deg, var(--maple) 242deg 304deg, transparent 304deg 360deg);
  filter: blur(0.2px);
  opacity: 0.17;
  transform: rotate(-12deg);
}

.eyebrow,
.section-label,
.poster-label,
.poster-kicker,
.credit-note,
.award-type,
.jury-note {
  font-size: 0.76rem;
  color: var(--muted);
}

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  max-width: 11ch;
  text-transform: uppercase;
  text-wrap: balance;
}

.echo-headline {
  margin: 0.6rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.16em;
  color: var(--scarlet);
}

.hero-lede,
.story-block p,
.award-copy,
.award-meta,
.coverage-card a,
.site-footer p {
  font-size: 1.03rem;
  line-height: 1.7;
}

.hero-lede {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: #2f2421;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(24, 19, 17, 0.18);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.55);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.coverage-card a:hover,
.powered-by:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--scarlet), #871b1f);
  border-color: transparent;
}

.credit-note {
  margin: 1.2rem 0 0;
}

.hero-visual {
  min-height: 640px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 34%, rgba(200, 231, 255, 0.8), rgba(43, 68, 85, 0.18) 22%, rgba(9, 13, 18, 0.94) 44%),
    linear-gradient(125deg, rgba(122, 48, 44, 0.9), rgba(24, 20, 25, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 35%);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr auto;
  gap: 0.9rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.24), transparent 8%),
    radial-gradient(circle at 52% 38%, rgba(50, 93, 133, 0.42), transparent 18%),
    radial-gradient(circle at 52% 38%, rgba(0, 0, 0, 0.48), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.poster-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16)),
    rgba(17, 15, 19, 0.56);
}

.poster-main {
  grid-row: 1 / span 2;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(5, 5, 8, 0.78) 68%),
    radial-gradient(circle at 55% 22%, rgba(173, 219, 255, 0.48), transparent 18%),
    linear-gradient(130deg, rgba(136, 58, 54, 0.5), rgba(13, 17, 21, 0.9));
}

.poster-main::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--maple), rgba(255, 255, 255, 0.14));
}

.poster-secondary,
.poster-tertiary {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.poster-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    linear-gradient(160deg, rgba(239, 48, 41, 0.42), rgba(25, 19, 22, 0.9));
}

.poster-tertiary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    linear-gradient(160deg, rgba(199, 154, 68, 0.42), rgba(23, 22, 18, 0.9));
}

.poster-title,
.poster-mini-title {
  font-family: "Bebas Neue", sans-serif;
  color: #fff8ef;
  letter-spacing: 0.08em;
}

.poster-title {
  margin: 0.4rem 0 0;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
}

.poster-mini-title {
  font-size: 1.8rem;
  margin: 0;
}

.poster-mini-copy,
.poster-kicker,
.poster-label {
  margin: 0;
  color: rgba(255, 248, 240, 0.86);
}

.page-shell {
  padding-bottom: 2rem;
}

.section {
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.section-split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 1.2rem;
}

.section-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  margin-top: 0.15rem;
}

.section-heading.compact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.story-block p + p {
  margin-top: 1rem;
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(255, 245, 235, 0.82), rgba(244, 227, 210, 0.75)),
    var(--paper-strong);
}

blockquote {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 18ch;
}

.quote-credit {
  margin: 1rem 0 0;
  font-weight: 700;
  color: var(--muted);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.award-card,
.list-card,
.coverage-card {
  border-radius: 22px;
  border: 1px solid rgba(24, 19, 17, 0.1);
  background: rgba(255, 252, 247, 0.78);
}

.award-card {
  padding: 1.1rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-card.featured {
  background:
    linear-gradient(145deg, rgba(199, 154, 68, 0.16), rgba(255, 255, 255, 0.72)),
    rgba(255, 252, 247, 0.86);
}

.award-card h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0.25rem 0;
}

.award-meta,
.award-copy,
.jury-note {
  color: var(--muted);
  margin: 0;
}

.editorial-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-card,
.coverage-card {
  padding: 1.15rem;
}

.accent-card {
  background:
    linear-gradient(145deg, rgba(239, 48, 41, 0.12), rgba(255, 255, 255, 0.72)),
    rgba(255, 252, 247, 0.86);
}

.award-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.9rem;
  line-height: 1.6;
}

.coverage-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.coverage-card a {
  display: block;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(24, 19, 17, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.coverage-card a:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(199, 32, 38, 0.25);
}

.site-footer {
  margin-bottom: 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
}

.mirror-pane {
  min-width: 0;
}

.mirror-shell {
  position: sticky;
  top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: calc(100vh - 1.6rem);
  padding: 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(19, 15, 17, 0.96), rgba(37, 24, 22, 0.96)),
    rgba(14, 13, 16, 0.95);
  box-shadow: 0 24px 80px rgba(8, 7, 10, 0.42);
}

.mirror-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mirror-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 244, 231, 0.64);
}

.mirror-topbar h2 {
  margin-top: 0.2rem;
  color: #fff5e9;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.mirror-topbar a {
  display: inline-flex;
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff5e9;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.mirror-note {
  margin: 0;
  color: rgba(255, 244, 231, 0.72);
  line-height: 1.6;
}

.mirror-frame {
  flex: 1;
  min-height: 72vh;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #fff;
}

.mirror-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: #2d2522;
}

.site-footer p + p {
  margin-top: 0.6rem;
}

.site-footer a,
.site-footer span {
  color: var(--scarlet);
  text-decoration: none;
  font-weight: 700;
}

.hero-copy,
.hero-visual,
.section {
  animation: fade-up 700ms ease both;
}

.hero-visual {
  animation-delay: 80ms;
}

.section:nth-of-type(2) {
  animation-delay: 120ms;
}

.section:nth-of-type(3) {
  animation-delay: 180ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@media (max-width: 1080px) {
  .news-layout,
  .hero-grid,
  .section-split,
  .section-two-column {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .mirror-shell {
    position: relative;
    min-height: 780px;
  }
}

@media (max-width: 720px) {
  .news-layout {
    width: min(100% - 0.75rem, 1600px);
  }

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

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.8rem);
  }

  .hero-visual {
    min-height: 480px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.1fr auto auto;
  }

  .poster-main {
    grid-row: auto;
  }

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

  blockquote {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .mirror-topbar {
    flex-direction: column;
  }
}
