:root {
  --black: #0b0b0a;
  --panel: #141412;
  --cream: #efe5cf;
  --bright-cream: #fff7e8;
  --gold: #9a7d4c;
  --red: #ff2924;
}

* { box-sizing: border-box; }

html { background: var(--black); }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at top center, rgba(194, 156, 88, 0.10), transparent 40rem),
    linear-gradient(180deg, #10100f 0%, #050505 100%);
  font-family: "Source Serif 4", Georgia, serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0 52%, rgba(0,0,0,0.38) 100%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 22px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(10px, 1.4vh, 18px) clamp(26px, 2.5vw, 36px) clamp(10px, 1.4vh, 18px);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(154,125,76,0.23), 0 0 80px rgba(0,0,0,0.85);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  width: clamp(46px, 5vw, 72px);
  height: clamp(46px, 5vw, 72px);
  pointer-events: none;
  opacity: 0.82;
}

.page-shell::before {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--cream);
  border-left: 2px solid var(--cream);
  box-shadow: inset 18px 18px 0 -16px var(--gold);
}

.page-shell::after {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  box-shadow: inset -18px -18px 0 -16px var(--gold);
}

.site-header {
  text-align: center;
  padding: 0 0 clamp(13px, 1.65vh, 20px);
}

.eyebrow {
  margin-top: clamp(4px, 0.6vh, 8px);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.62rem, 0.82vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream);
}

.eyebrow span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 14px 2px;
  background: var(--red);
  transform: rotate(45deg);
}

h1 {
  margin: clamp(5px, 0.7vh, 10px) 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 10.4vw, 9.65rem);
  line-height: 0.79;
  font-weight: 400;
  letter-spacing: 0.058em;
  text-transform: uppercase;
  color: var(--cream);
}

.red-rule {
  width: min(590px, 46vw);
  height: 1px;
  margin: clamp(8px, 1.1vh, 14px) auto clamp(10px, 1.25vh, 16px);
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  position: relative;
}

.red-rule::after {
  content: "";
  position: absolute;
  top: -4px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.tagline {
  margin: 0;
  font-size: clamp(1.08rem, 1.74vw, 1.72rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--bright-cream);
}

.scandal {
  margin: clamp(3px, 0.45vh, 6px) 0 0;
  font-size: clamp(0.98rem, 1.35vw, 1.28rem);
  line-height: 1.1;
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
}

.season {
  max-width: 1000px;
  margin: clamp(8px, 1.05vh, 14px) auto 0;
  font-size: clamp(0.96rem, 1.28vw, 1.18rem);
  line-height: 1.16;
  font-weight: 700;
  color: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.35vw, 20px);
}

.story-card {
  position: relative;
  min-height: clamp(300px, 35.6vh, 382px);
  padding: clamp(16px, 1.85vh, 25px) clamp(12px, 1.35vw, 20px) clamp(14px, 1.7vh, 21px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.023), transparent),
    var(--panel);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(154,125,76,0.14);
}

.story-card::before,
.story-card::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  opacity: 0.9;
}

.story-card::before {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.story-card::after {
  bottom: 8px;
  right: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.story-number {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.9rem, 2.65vw, 3rem);
  line-height: 1;
  color: var(--red);
  font-weight: 500;
}

.story-number::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: clamp(8px, 1vh, 13px) auto clamp(13px, 1.55vh, 21px);
  background: var(--gold);
}

.story-card h2 {
  margin: 0;
  min-height: clamp(58px, 7.15vh, 86px);
  font-size: clamp(1.18rem, 1.58vw, 1.78rem);
  line-height: 1.025;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--bright-cream);
}

.story-card h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: clamp(8px, 1vh, 13px) auto 0;
  background: var(--red);
}

.story-card p {
  margin: clamp(12px, 1.45vh, 18px) 0 0;
  font-size: clamp(0.86rem, 1vw, 1.1rem);
  line-height: 1.3;
  font-weight: 600;
  color: #fbf0d4;
}

.status {
  margin-top: auto;
  padding-top: clamp(12px, 1.45vh, 20px);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.68rem, 0.8vw, 0.88rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red);
}

.archive-strip {
  margin-top: clamp(12px, 1.45vh, 20px);
  padding: clamp(10px, 1.25vh, 16px) clamp(14px, 2vw, 24px);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.archive-strip p {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.32vw, 1.28rem);
  line-height: 1.18;
  text-align: center;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(10px, 1.4vh, 18px);
  font-family: "Inter", Arial, sans-serif;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: clamp(0.84rem, 1.16vw, 1.12rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-links .dot {
  color: var(--red);
  font-size: 0.8rem;
}

/* Subpages */
.content-shell {
  width: min(1120px, calc(100% - 22px));
  padding-bottom: 32px;
}

.subpage-header {
  text-align: center;
  padding: 24px 0 14px;
}

.home-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--cream);
  text-decoration: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
}

.subpage-header h1 {
  font-size: clamp(3.3rem, 8vw, 7.4rem);
}

.content-page {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  background: rgba(20, 20, 18, 0.74);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(154,125,76,0.16);
}

.content-page p,
.content-page li {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.58;
  font-weight: 500;
  color: #fbf0d4;
}

.content-page p:first-child {
  margin-top: 0;
}

.content-page strong {
  color: var(--bright-cream);
}

.content-page ul {
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
}

.content-page a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,41,36,0.55);
}

.email-line {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Extra compression for shorter laptop/browser windows */
@media (max-height: 790px) and (min-width: 1000px) {
  .page-shell {
    width: min(1480px, calc(100% - 16px));
    padding: 8px 34px 8px;
  }

  .eyebrow { font-size: 0.62rem; }

  h1 { font-size: clamp(4.55rem, 9.55vw, 8.35rem); }

  .red-rule { margin: 7px auto 9px; }

  .tagline { font-size: clamp(1rem, 1.52vw, 1.42rem); }

  .scandal { font-size: clamp(0.92rem, 1.18vw, 1.12rem); }

  .season {
    font-size: clamp(0.86rem, 1.1vw, 1rem);
    margin-top: 7px;
  }

  .site-header { padding-bottom: 9px; }

  .story-grid { gap: 12px; }

  .story-card {
    min-height: 284px;
    padding: 13px 12px 12px;
  }

  .story-number { font-size: clamp(1.62rem, 2.22vw, 2.28rem); }

  .story-number::after {
    margin: 6px auto 10px;
    width: 58px;
  }

  .story-card h2 {
    font-size: clamp(1.03rem, 1.36vw, 1.42rem);
    min-height: 52px;
  }

  .story-card h2::after {
    width: 48px;
    margin-top: 7px;
  }

  .story-card p {
    font-size: clamp(0.8rem, 0.9vw, 0.94rem);
    line-height: 1.2;
    margin-top: 9px;
  }

  .status {
    font-size: 0.66rem;
    padding-top: 9px;
  }

  .archive-strip {
    margin-top: 10px;
    padding: 8px 18px;
  }

  .archive-strip p {
    font-size: clamp(0.86rem, 1.08vw, 1rem);
    line-height: 1.12;
  }

  .footer-links { padding-top: 8px; }

  .footer-links a {
    font-size: clamp(0.75rem, 1vw, 0.92rem);
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 18px, 760px);
    min-height: 100vh;
    padding: 18px 16px 18px;
  }

  .page-shell::before,
  .page-shell::after {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(3.3rem, 15.5vw, 6.3rem);
    letter-spacing: 0.04em;
  }

  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }

  .tagline { font-size: clamp(1.04rem, 4.7vw, 1.55rem); }

  .scandal { font-size: clamp(0.92rem, 4vw, 1.18rem); }

  .season { font-size: clamp(0.86rem, 3.5vw, 1.05rem); }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
  }

  .story-card {
    min-height: auto;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "num title"
      "num copy"
      "status status";
    column-gap: 14px;
    row-gap: 7px;
    align-items: start;
    text-align: left;
    padding: 15px 14px 13px;
  }

  .story-number {
    grid-area: num;
    font-size: 1.82rem;
    align-self: start;
    text-align: center;
    padding-top: 1px;
  }

  .story-number::after {
    width: 36px;
    margin: 7px auto 0;
  }

  .story-card h2 {
    grid-area: title;
    min-height: auto;
    font-size: clamp(1.04rem, 4.2vw, 1.38rem);
    line-height: 1.14;
    letter-spacing: 0.02em;
  }

  .story-card h2 br { display: none; }

  .story-card h2::after { display: none; }

  .story-card p {
    grid-area: copy;
    font-size: clamp(0.9rem, 3.45vw, 1rem);
    line-height: 1.38;
    margin: 0;
    max-width: 100%;
  }

  .status {
    grid-area: status;
    padding: 7px 0 0;
    margin: 0;
    text-align: right;
    font-size: 0.66rem;
    line-height: 1.2;
    letter-spacing: 0.11em;
  }

  .archive-strip {
    padding: 14px 10px;
    margin-top: 16px;
  }

  .archive-strip p {
    font-size: 0.9rem;
    line-height: 1.33;
  }

  .footer-links {
    gap: 13px;
    padding-top: 15px;
  }

  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .footer-links .dot { font-size: 0.55rem; }

  .subpage-header {
    padding-top: 28px;
  }

  .subpage-header h1 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
  }

  .content-page {
    padding: 20px 18px;
  }

  .content-page p,
  .content-page li {
    font-size: 1rem;
    line-height: 1.5;
  }
}
