/* Front List Intel — Global Styles */

:root {
  --navy: #0f2235;
  --navy-dark: #091827;
  --gold: #b87916;
  --gold-dark: #94600f;
  --ivory: #f7f3eb;
  --cream: #fffaf1;
  --border: #ddd4c3;
  --text: #182838;
  --muted: #5f6670;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(15, 34, 53, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

body > nav,
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;

  display: flex;
  justify-content: center;
  gap: 34px;

  border-bottom: 1px solid var(--border);
  background: var(--ivory);
  box-shadow: 0 2px 8px rgba(15, 34, 53, 0.06);

  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body > nav a,
.main-nav a {
  text-decoration: none;
  color: var(--navy);
}

body > nav a:hover,
.main-nav a:hover {
  color: var(--gold);
}

/* The Front List uses one combined sticky header,
   so its main nav does not need to be independently sticky. */

.front-list-sticky-header .main-nav {
  position: static;
}
/* =========================================================
   FRONT LIST STICKY HEADER / SUB-NAVIGATION
   ========================================================= */

.front-list-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--ivory);
  box-shadow: 0 2px 8px rgba(15, 34, 53, 0.08);
}

.front-list-sticky-header .main-nav {
  box-shadow: none;
}

.front-list-page-title {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 10px;

  background: var(--ivory);
  text-align: center;
}

.front-list-page-title h1 {
  margin: 0;

  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.front-list-subnav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);

  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.front-list-subnav a {
  color: var(--navy);
  text-decoration: none;
}

.front-list-subnav a:hover {
  color: var(--gold);
}

.front-list-subnav span {
  color: var(--gold);
}

/* =========================================================
   GLOBAL LAYOUT / TYPOGRAPHY
   ========================================================= */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 42px 24px 70px;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 0 0 18px;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
}

p {
  margin: 0 0 18px;
}

ul {
  margin-top: 10px;
}

li {
  margin-bottom: 8px;
}

.section {
  margin: 64px auto;
}

.section-narrow {
  max-width: 760px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);

  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-header {
  max-width: 820px;
  margin: 20px auto 42px;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.page-header > .eyebrow {
  margin-bottom: 10px;
}

.page-header > p:not(.eyebrow):not(.archive-back-to-current) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.issue-week {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.meta {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;
  padding: 13px 22px;

  border: 1px solid transparent;

  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: var(--navy-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy);
  border-color: var(--navy);
}

.button-secondary:hover {
  background: var(--white);
}

.button-gold {
  background: var(--gold);
  color: var(--white);
}

.button-gold:hover {
  background: var(--gold-dark);
}


/* =========================================================
   HOME PAGE
   ========================================================= */

.home-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;

  border: 1px solid var(--border);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.home-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.home-hero-copy {
  position: absolute;
  left: 54px;
  top: 50%;
  transform: translateY(-50%);

  max-width: 430px;
  z-index: 2;
}

.home-hero-copy h1 {
  margin-bottom: 16px;
  font-size: 2.15rem;
  line-height: 1.15;
}

.home-hero-copy p {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.preview-section {
  text-align: center;
}

.preview-section h2 {
  margin-bottom: 12px;
}

.preview-section > p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px 26px;

  background: var(--cream);
  border: 1px solid var(--border);

  text-align: left;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 150px);
  justify-content: center;
  gap: 34px;

  margin: 34px 0;
}

.cover-placeholder {
  height: 225px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee8dc;
  border: 1px solid #d2c5b3;
  box-shadow: 0 10px 22px rgba(15, 34, 53, 0.16);

  color: #776b5d;
  font-size: 0.9rem;
}


/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  margin-top: 70px;
  padding: 46px 38px;

  background: var(--navy);
  color: var(--white);

  text-align: center;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   GENERAL TITLE CARDS
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.title-card {
  padding: 30px;

  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 34, 53, 0.08);

  text-align: left;
  text-decoration: none;
  color: inherit;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.title-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 34, 53, 0.16);
}

.title-card h3 {
  min-height: 3.2em;
  margin-bottom: 6px;
}

.title-card p:last-child {
  margin-bottom: 0;
}

.title-card h2 a,
.title-card .meta a {
  text-decoration: none;
}

.title-card h2 a:hover,
.title-card .meta a:hover {
  color: var(--gold);
}

.title-card h2 {
  min-height: 2.8em;
}

.title-card .meta {
  min-height: 1.6em;
}

.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 10px;

  background: var(--navy);
  color: var(--white);

  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge-gold {
  background: var(--gold);
  color: var(--white);
}

.book-cover {
  width: 150px;
  margin: 0 auto 20px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   HOMEPAGE TITLE CARDS
   ========================================================= */

.preview-section .title-card {
  display: flex;
  flex-direction: column;
}

.preview-section .book-cover {
  width: 150px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 20px;
}


/* =========================================================
   FRONT LIST SAMPLE REPORT
   ========================================================= */

.sample-report {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  align-items: center;

  margin: 0 0 34px;
  padding: 26px 34px;

  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 34, 53, 0.06);
}

.sample-report-image {
  height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-right: 34px;
  border-right: 1px solid var(--border);

  overflow: hidden;
}

.sample-report-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

.sample-report-content {
  padding-left: 42px;
}

.sample-report-content .eyebrow {
  margin-bottom: 8px;
}

.sample-report-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.sample-report-content > p:not(.eyebrow):not(.meta) {
  max-width: 520px;
  margin-bottom: 18px;
}

.sample-report-content .button {
  margin: 0 0 8px;
}

.sample-report-content .meta {
  margin: 0;
}


/* =========================================================
   FRONT LIST FEATURED INTRO
   ========================================================= */

.featured-intro {
  position: relative;

  max-width: 820px;
  margin: 0 auto 28px;

  text-align: center;
}

.featured-intro h2 {
  margin-bottom: 8px;
}

.featured-intro p {
  max-width: 720px;
  margin: 0 auto;
}

/* =========================================================
   FRONT LIST SECTION SPACING / ARCHIVES CALLOUT
   ========================================================= */

.front-list-page main {
  padding-top: 34px;
}

.front-list-page .front-list-grid {
  margin-bottom: 72px;
}

.front-list-page .sample-report {
  margin-bottom: 72px;
}

.archives-callout {
  margin: 0 0 72px;
  padding: 42px 38px;

  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 34, 53, 0.06);

  text-align: center;
}

.archives-callout h2 {
  margin-bottom: 12px;
}

.archives-callout > p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

#this-week,
#sample-report,
#archives {
  scroll-margin-top: 190px;
}
/* =========================================================
   FRONT LIST CARDS
   ========================================================= */

.front-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.front-list-grid .title-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.front-list-grid .badge {
  width: 100%;
  margin: 0 0 18px;
}

.front-list-grid .card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.front-list-grid .card-header > a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 150px;
  height: 220px;
  margin-bottom: 20px;
}

.front-list-grid .book-cover {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 220px;

  object-fit: contain;
  margin: 0;
}

.front-list-grid h2 {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 110px;
  margin: 0;

  font-size: 1.45rem;
  line-height: 1.18;
}

.front-list-grid h2 a {
  text-decoration: none;
}

.front-list-grid .meta {
  height: 36px;
  margin: 16px 0 22px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  font-size: 0.88rem;
}

.front-list-grid .card-summary {
  height: 170px;
  overflow: hidden;
}

.front-list-grid .card-summary p {
  margin: 0;
}

.front-list-grid .card-observations {
  margin-top: 22px;
  padding-top: 20px;

  border-top: 1px solid var(--border);
}

.front-list-grid .card-observations h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

.front-list-grid ul {
  margin: 0;
  padding-left: 20px;
}

.front-list-grid li {
  margin-bottom: 8px;
}

.front-list-grid h2 a:hover,
.front-list-grid .meta a:hover {
  color: var(--gold);
}


/* =========================================================
   METHODOLOGY / INFORMATION PAGES
   ========================================================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-box {
  padding: 28px;

  background: var(--cream);
  border: 1px solid var(--border);
}

.methodology-accordion {
  max-width: 900px;
  margin: 56px auto;
}

.methodology-accordion details {
  margin-bottom: 18px;

  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 34, 53, 0.07);
}

.methodology-accordion summary {
  cursor: pointer;
  list-style: none;

  padding: 24px 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--navy);

  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.methodology-accordion summary::-webkit-details-marker {
  display: none;
}

.methodology-accordion summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold);
}

.methodology-accordion details[open] summary::after {
  content: "–";
}

.methodology-accordion summary:hover {
  background: #f1eadf;
  color: var(--gold);
}

.process-step {
  padding: 30px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.process-step + .process-step {
  border-top: 1px solid var(--border);
}

.process-step h2 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.process-step p {
  max-width: 760px;
}

.methodology-accordion .eyebrow {
  margin-bottom: 8px;
}


/* =========================================================
   PRIVACY POLICY
   ========================================================= */

.policy-container {
  max-width: 760px;
  margin: 0 auto 70px;
}

.policy-box {
  padding: 28px;
  margin-bottom: 22px;

  background: var(--cream);
  border: 1px solid var(--border);
}

.policy-box h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.policy-box p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   INDIVIDUAL ARCHIVE TITLE PAGES
   ========================================================= */

.archive-header {
  margin-bottom: 28px;
}

.archive-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  white-space: nowrap;
}

.archive-back {
  margin: 18px 0 0;
  text-align: center;
}

.archive-back a {
  display: inline-block;

  color: var(--gold);

  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.archive-back a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.archive-dossier {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: stretch;

  margin-top: 30px;
}

.archive-cover-panel,
.archive-info-panel {
  padding: 28px;

  background: var(--cream);
  border: 1px solid var(--border);
}

.archive-cover-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive-cover {
  width: auto;
  max-width: 210px;
  max-height: 315px;

  object-fit: contain;

  margin: 0 auto 24px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.archive-cover-panel .button {
  align-self: center;
}
.archive-back-to-current {
  margin: 24px 0 0;
  text-align: center;
}

.archive-back-to-current a {
  color: var(--gold);

  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.archive-back-to-current a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* Archive Timeline */

.archive-timeline {
  margin-top: 2.2rem;
  text-align: left;
}

.archive-timeline ul {
  margin: 0.6rem 0 0 1rem;
  padding: 0;
}

.archive-timeline li {
  margin: 0.55rem 0;
  line-height: 1.45;
}


/* Archive Information */

.archive-info-panel ul {
  margin: 0 0 22px;
  padding-left: 20px;
}

.archive-info-panel li {
  margin-bottom: 6px;
}


/* Archive Snapshot */

.archive-stats {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.archive-stats li {
  margin: 0.55rem 0;
  line-height: 1.5;
}

.archive-stats strong {
  display: inline-block;
  width: 220px;
}


/* Optional Archive Snapshot Table */

.archive-snapshot-table {
  max-width: 760px;
  margin: 42px auto;
}

.archive-snapshot-table .eyebrow {
  text-align: center;
}

.archive-snapshot-table table {
  width: 100%;
  border-collapse: collapse;

  background: var(--cream);
  border: 1px solid var(--border);
}

.archive-snapshot-table th,
.archive-snapshot-table td {
  padding: 14px 18px;

  border-bottom: 1px solid var(--border);

  text-align: left;
}

.archive-snapshot-table th {
  width: 45%;

  color: var(--gold);

  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-snapshot-table tr:last-child th,
.archive-snapshot-table tr:last-child td {
  border-bottom: none;
}


/* =========================================================
   ARCHIVES INDEX CARDS
   ========================================================= */

.archive-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;

  margin-top: 34px;
}

.archive-card {
  padding: 26px;

  display: flex;
  flex-direction: column;

  background: var(--cream);
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(15, 34, 53, 0.08);

  text-align: left;
}

.archive-card .badge {
  width: fit-content;
  height: 28px;
  margin-bottom: 18px;
}

.archive-card-cover {
  height: 175px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
}

.archive-card-cover .book-cover {
  width: auto;
  max-width: 125px;
  max-height: 175px;

  object-fit: contain;
  margin: 0;
}

.archive-card-title {
  height: 78px;

  display: flex;
  align-items: flex-start;
}

.archive-card-title h2 {
  margin: 0;

  font-size: 1.45rem;
  line-height: 1.15;
}

.archive-card-title h2 a {
  text-decoration: none;
}

.archive-card-author {
  height: 30px;
}

.archive-card-author .meta {
  margin: 0;
}

.archive-card-summary {
  height: 105px;
  overflow: hidden;
}

.archive-card-summary p {
  margin: 0;
}

.archive-card-link {
  margin-top: auto;
}

.archive-card .text-link {
  color: var(--gold);

  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.archive-card h2 a:hover,
.archive-card .text-link:hover {
  color: var(--gold);
}


/* =========================================================
   SUBSCRIBE PAGE
   ========================================================= */

.founding-card-header {
  min-height: 92px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 50px;

  border-top: 1px solid var(--border);

  text-align: center;

  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .card-grid,
  .front-list-grid,
  .archive-card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sample-report {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px;
  }

  .sample-report-image {
    height: auto;
    max-height: none;

    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sample-report-image img {
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
  }

  .sample-report-content {
    padding: 26px 0 0;
    text-align: center;
  }

  .sample-report-content > p:not(.eyebrow):not(.meta) {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero-copy h1 {
    font-size: 1.8rem;
  }

  .front-list-grid h2,
  .front-list-grid .meta,
  .front-list-grid .card-summary {
    height: auto;
  }

  .archive-header h1 {
    white-space: normal;
  }

  .archive-dossier {
    grid-template-columns: 1fr;
  }

  .archive-card-title,
  .archive-card-author,
  .archive-card-summary {
    height: auto;
  }
}


@media (max-width: 850px) {

 body > nav,
.main-nav {
  flex-wrap: wrap;
  gap: 18px;
}

.front-list-subnav {
  gap: 14px;
  padding-left: 12px;
  padding-right: 12px;
}

.front-list-page-title {
  padding-top: 10px;
  padding-bottom: 8px;
}

#this-week,
#sample-report,
#archives {
  scroll-margin-top: 210px;
}

  main {
    padding-top: 28px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero img {
    height: 320px;
    object-position: right center;
  }

  .home-hero-copy {
    position: static;
    transform: none;

    max-width: none;
    padding: 34px 26px;

    text-align: center;
  }

  .home-hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .cover-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cover-placeholder {
    height: 190px;
  }
}


@media (max-width: 560px) {

  .sample-report {
    padding: 20px;
  }

  .sample-report-image {
    padding-bottom: 20px;
  }

  .sample-report-content {
    padding-top: 22px;
  }

  .cover-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .cover-placeholder {
    width: 150px;
  }
}
