/* ─── issue.css — shared styles for all individual issue pages ─── */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; }

:root {
  --peach:    #f5a87a;
  --peach-lt: #fcd5b8;
  --peach-dk: #e8834a;
  --pink:     #f03e7a;
  --pink-lt:  #fde8f0;
  --cyan:     #00c8c8;
  --cyan-lt:  #b8f0f0;
  --yellow:   #ffe048;
  --yellow-dk:#f5c800;
  --green:    #2a7a4a;
  --green-lt: #c8f0dc;
  --cream:    #fef9f2;
  --warm-wht: #fff8f0;
  --ink:      #1a1208;
  --ink-mid:  #3d2e1a;
  --ink-lt:   #7a6248;
  --ink-ghost:#b8a898;
  --border:   rgba(60,40,20,0.1);
  --border-md:rgba(60,40,20,0.18);
  --gold:     #c9a96e;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 64px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 900;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .star-badge {
  width: 28px; height: 28px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; border: 2px solid var(--ink);
  animation: spinStar 10s linear infinite;
}
.nav-back {
  font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mid); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--pink); }
.nav-cta {
  font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--pink); color: white; padding: 10px 22px; border-radius: 24px;
  text-decoration: none; border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }

/* ─── ISSUE HEADER ─── */
.issue-pg-header {
  background: linear-gradient(165deg, #1a1210 0%, #0d0908 60%, #141010 100%);
  padding: 80px 48px 64px;
  border-bottom: 2px solid var(--ink);
  position: relative; overflow: hidden;
}
.issue-pg-header::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.issue-header-inner {
  max-width: 760px; margin: 0 auto; position: relative; z-index: 1;
}
.issue-header-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap;
}
.issue-num-badge {
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink);
  padding: 6px 14px; border-radius: 20px; border: 2px solid rgba(0,0,0,0.12);
}
.issue-date-badge {
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; color: rgba(245,240,232,0.4);
}
.issue-pg-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300; line-height: 1.06; letter-spacing: -0.02em;
  color: #f5f0e8; margin-bottom: 16px;
}
.issue-pg-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,0.5);
  margin-bottom: 40px;
}

/* ─── TLDR BOX ─── */
.tldr-wrap {
  background: linear-gradient(165deg, #1a1210 0%, #0d0908 100%);
  padding: 0 48px 64px;
  border-bottom: 2px solid var(--ink);
}
.tldr-wrap-inner { max-width: 760px; margin: 0 auto; }
.tldr-box {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
}
.tldr-label {
  font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.tldr-text {
  font-size: 0.95rem; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,0.65); font-style: italic;
}
.tldr-text a { color: var(--peach); text-decoration: underline; }

/* ─── ARTICLE BODY ─── */
.article-body {
  max-width: 760px; margin: 0 auto; padding: 0 48px;
}
.article-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.article-section:last-child { border-bottom: none; }

.section-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-ghost); display: block; margin-bottom: 10px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 28px;
}
.section-heading.green  { color: var(--green); }
.section-heading.peach  { color: var(--peach-dk); }
.section-heading.yellow { color: var(--yellow-dk); }

.body-text {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); margin-bottom: 18px;
}
.body-text:last-child { margin-bottom: 0; }

/* ─── THE MOMENT — numbered list ─── */
.moment-list {
  list-style: none; display: flex; flex-direction: column; gap: 22px;
  margin: 28px 0;
}
.moment-list li {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start;
  background: var(--warm-wht); border: 2px solid var(--border-md);
  border-radius: 14px; padding: 18px 20px;
}
.moment-num {
  font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 900;
  color: var(--peach); line-height: 1.3;
}
.moment-text {
  font-size: 0.97rem; font-weight: 300; line-height: 1.8;
  color: var(--ink-mid); padding-top: 5px;
}
.moment-text strong { font-weight: 600; color: var(--ink); }

/* ─── RELIVABLE AD ─── */
.relivable-ad {
  background: var(--ink); color: white;
  border: 2px solid var(--ink); border-radius: 20px;
  padding: 32px; margin-top: 40px;
  display: flex; flex-direction: column; gap: 12px;
}
.ad-label {
  font-family: 'Syne', sans-serif; font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); display: block;
}
.ad-text {
  font-size: 0.9rem; font-weight: 300; line-height: 1.75;
  color: rgba(254,249,242,0.6);
}
.ad-text a { color: var(--peach); font-style: italic; text-decoration: underline; }
.ad-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 10px 22px; border-radius: 22px;
  text-decoration: none; width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.ad-cta:hover { background: var(--yellow); transform: translate(-1px,-1px); }

/* ─── PARTY TRENDS IMAGE GRID ─── */
.pt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 28px;
}
.pt-grid img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; border-radius: 12px;
  border: 2px solid var(--border-md);
  display: block;
}

/* ─── THE PARTY REPORT ─── */
.party-report-list {
  display: flex; flex-direction: column;
}
.pr-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.pr-item:first-child { padding-top: 0; }
.pr-item:last-child { border-bottom: none; padding-bottom: 0; }
.pr-headline {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700;
  font-style: italic; line-height: 1.35;
  color: var(--peach-dk); text-decoration: none; display: block; margin-bottom: 10px;
  transition: color 0.2s;
}
.pr-headline:hover { color: var(--pink); }
.pr-body {
  font-size: 0.93rem; font-weight: 300; line-height: 1.78; color: var(--ink-mid);
}

/* ─── LAST CALL ─── */
.last-call-section {
  background: var(--green);
  padding: 64px 48px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.last-call-inner { max-width: 760px; margin: 0 auto; }
.lc-eyebrow {
  font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); display: block; margin-bottom: 12px;
}
.lc-heading {
  font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--yellow);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.lc-body {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.68); margin-bottom: 16px;
}
.lc-question {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-style: italic;
  font-weight: 300; color: white; margin: 28px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--yellow);
  background: rgba(255,255,255,0.07);
  border-radius: 0 14px 14px 0;
  line-height: 1.65;
}
.lc-sign {
  font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink); padding: 60px 64px 36px;
  border-top: 2px solid var(--ink);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 52px;
}
.f-logo-big {
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900;
  color: var(--cream); display: block; margin-bottom: 14px; letter-spacing: -0.02em;
}
.f-brand p {
  font-size: 0.875rem; font-weight: 300; line-height: 1.72;
  color: rgba(254,249,242,0.45); max-width: 280px;
}
.f-socials { display: flex; gap: 10px; margin-top: 20px; }
.f-soc {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1.5px solid rgba(254,249,242,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(254,249,242,0.5); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.f-soc:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.f-col h5 {
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col a { font-size: 0.875rem; font-weight: 300; color: rgba(254,249,242,0.45); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: var(--cream); }
.f-bottom {
  padding-top: 24px; border-top: 1px solid rgba(254,249,242,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.f-bottom p { font-size: 0.72rem; font-weight: 300; color: rgba(254,249,242,0.3); }
.f-bottom a { color: rgba(254,249,242,0.3); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .issue-pg-header { padding: 56px 24px 52px; }
  .tldr-wrap { padding: 0 24px 52px; }
  .article-body { padding: 0 24px; }
  .last-call-section { padding: 52px 24px; }
  footer { padding: 52px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .moment-list li { grid-template-columns: 32px 1fr; gap: 10px; }
}

@keyframes spinStar { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
