/*
Theme Name: Corey Sinclair
Description: Editorial journalist portfolio — Barlow Condensed 900, bleeding letterforms. Child theme of GeneratePress.
Author: Corey Sinclair
Version: 2.1.0
License: Private
Text Domain: corey-sinclair
Template: generatepress
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;700;900&family=Barlow:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --cream: #F5F0E8;
  --ink:   #1A1A1A;
  --gold:  #B8860B;
  --ink-10: rgba(26,26,26,0.10);
  --ink-15: rgba(26,26,26,0.15);
  --ink-60: rgba(26,26,26,0.60);
  --c-06: rgba(245,240,232,0.06);
  --c-08: rgba(245,240,232,0.08);
  --c-45: rgba(245,240,232,0.45);
  --c-60: rgba(245,240,232,0.60);
  --bc:   'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --nav-h: 50px;
  --max: 1200px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

/* ─── TYPE UTILITIES ─── */
.bc900 {
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.bc700 {
  font-family: var(--bc);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bc400 {
  font-family: var(--bc);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}
.eyebrow {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.gold-rule {
  width: 34px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(26,26,26,0.96);
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  transition: background 0.3s;
}
/* Landing + about: transparent so hero bleeds through, darkens on scroll */
body.page-landing #site-nav,
body.page-about   #site-nav {
  background: transparent;
  border-bottom-color: transparent;
}
#site-nav.scrolled {
  background: rgba(26,26,26,0.96) !important;
  border-bottom-color: rgba(245,240,232,0.08) !important;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  position: relative;
}
.nav-logo {
  position: absolute;
  left: 32px;
  font-family: var(--bc);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
/* Hide on landing/about where hero name takes over — shows on scroll */
body.page-landing .nav-logo,
body.page-about   .nav-logo {
  opacity: 0;
  pointer-events: none;
}
#site-nav.scrolled .nav-logo {
  opacity: 1 !important;
  pointer-events: auto !important;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-menu li a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  padding: 4px 22px;
  border-right: 0.5px solid rgba(245,240,232,0.10);
  display: block;
  transition: color 0.2s;
}
.nav-menu li:first-child a { border-left: 0.5px solid rgba(245,240,232,0.10); }
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a { color: var(--cream); }

/* Nav text is always cream on dark nav */
#site-nav.scrolled .nav-menu li a { color: rgba(245,240,232,0.55); border-color: rgba(245,240,232,0.10); }
#site-nav.scrolled .nav-menu li a:hover { color: var(--cream); }

.nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  display: block;
  background: var(--cream);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-logo { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px 0 40px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    color: rgba(245,240,232,0.6) !important;
    border: none !important;
    padding: 14px 36px;
    font-size: 18px;
  }
  .nav-menu li a:hover { color: var(--cream) !important; }
}

/* ════════════════════════════════════════
   PAGE WRAP
════════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); }
body.page-landing .page-wrap,
body.page-about   .page-wrap { padding-top: 0; }

/* ════════════════════════════════════════
   FULL-WIDTH CAROUSEL (shared all pages)
════════════════════════════════════════ */
.page-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
  background: #0a0a0a;
}
/* About + sub pages shorter carousel */
.page-carousel.carousel-short {
  height: 420px;
  min-height: 320px;
  max-height: 480px;
}
/* Hub pages medium */
.page-carousel.carousel-mid {
  height: 55vh;
  min-height: 360px;
  max-height: 520px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-slide.active .carousel-slide-bg { transform: scale(1); }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.25) 60%, transparent 100%);
}
.carousel-bleed {
  position: absolute;
  pointer-events: none;
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.carousel-bleed.top-left  { top: -0.1em;  left: -0.04em; font-size: clamp(90px,17vw,200px); }
.carousel-bleed.bot-right { bottom: -0.12em; right: -0.04em; font-size: clamp(70px,13vw,160px); }

.carousel-content-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  text-align: center;
  padding: 24px;
}
.carousel-content-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px clamp(28px, 5vw, 80px) 80px;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Carousel UI */
.carousel-ui {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-btn {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(245,240,232,0.3);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  font-size: 13px;
}
.carousel-btn:hover { border-color: rgba(245,240,232,0.7); background: rgba(245,240,232,0.08); }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245,240,232,0.25);
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.35); }
.carousel-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(245,240,232,0.08);
  z-index: 5;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* Carousel text styles */
.c-hero-name {
  font-size: clamp(60px, 13vw, 150px);
  color: var(--cream);
  line-height: 0.85;
  display: block;
}
.c-hero-name em { color: var(--gold); font-style: normal; }
.c-hero-rule { width: 38px; height: 2px; background: var(--gold); margin: 16px auto; }
.c-hero-roles {
  font-family: var(--bc);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
}
.c-slide-title {
  font-size: clamp(36px, 7vw, 88px);
  color: var(--cream);
  line-height: 0.9;
}
.c-slide-sub {
  font-family: var(--bc);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  display: block;
  margin-top: 10px;
}

/* ════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════ */
.logo-strip {
  background: var(--cream);
  overflow: hidden;
  border-top: 0.5px solid var(--ink-10);
  position: relative;
}
.logo-strip::before, .logo-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.logo-strip-track {
  display: flex;
  animation: logoScroll 26s linear infinite;
  width: max-content;
}
.logo-strip-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-strip-item {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.38);
  padding: 15px 30px;
  border-right: 0.5px solid rgba(26,26,26,0.08);
  white-space: nowrap;
  display: block;
  transition: color 0.2s;
}
.logo-strip-item:hover { color: var(--ink); }

/* ════════════════════════════════════════
   HUB PAGES
════════════════════════════════════════ */
.hub-section {
  border-top: 0.5px solid rgba(245,240,232,0.07);
  padding: 44px 40px;
}
.hub-section:last-child { border-bottom: 0.5px solid rgba(245,240,232,0.07); }

.outlet-heading {
  font-size: clamp(38px, 7vw, 82px);
  color: var(--cream);
  line-height: 0.88;
  margin-bottom: 0;
}
.outlet-heading em { font-style: normal; }
.outlet-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(245,240,232,0.10);
  margin: 14px 0 28px;
}
.outlet-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
}
.outlet-layout.flip { direction: rtl; }
.outlet-layout.flip > * { direction: ltr; }

/* Meta table — condensed */
.meta-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.meta-tbl td {
  padding: 4px 0;
  font-size: 12px;
  border-bottom: 0.5px solid rgba(245,240,232,0.06);
  vertical-align: top;
}
.meta-tbl td:first-child {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  width: 36%;
  padding-right: 10px;
}
.meta-tbl td:last-child { color: rgba(245,240,232,0.80); font-weight: 300; }
.outlet-blurb {
  font-size: 12px;
  line-height: 1.62;
  color: rgba(245,240,232,0.52);
  font-weight: 300;
  margin: 10px 0 12px;
}
.outlet-link {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s;
}
.outlet-link:hover { color: var(--cream); }

@media (max-width: 768px) {
  .outlet-layout, .outlet-layout.flip { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .hub-section { padding: 36px 24px; }
}

/* ════════════════════════════════════════
   TV FRAME SVG wrapper
════════════════════════════════════════ */
.device-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 8px 0;
}
.device-wrap svg { overflow: visible; }

/* ════════════════════════════════════════
   PRINT COVERS — angled stack
════════════════════════════════════════ */
.covers-wrap { display: flex; justify-content: center; align-items: center; padding: 8px 0; }
.covers-stage { position: relative; width: 220px; height: 264px; }
.cover-main {
  position: absolute;
  top: 0; left: 0;
  width: 156px; height: 208px;
  box-shadow: 6px 8px 28px rgba(0,0,0,0.65);
  transform: rotate(-4deg);
  transform-origin: center;
  overflow: hidden;
}
.cover-main img, .cover-sec img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.cover-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 118px; height: 157px;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.55);
  border: 3px solid var(--ink);
  transform: rotate(3.5deg);
  transform-origin: center;
  overflow: hidden;
}

/* ════════════════════════════════════════
   OUTLET DETAIL PAGES (Star Observer etc.)
════════════════════════════════════════ */
.outlet-meta-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.outlet-sidebar {
  padding: 36px 26px;
}
.outlet-sidebar .s-label {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.62;
  display: block;
  margin-bottom: 3px;
}
.outlet-sidebar .s-value {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  display: block;
  margin-bottom: 14px;
}
.outlet-sidebar .s-value.big {
  font-family: var(--bc);
  font-weight: 900;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 14px;
}
.outlet-sidebar .s-divider {
  height: 0.5px;
  background: currentColor;
  opacity: 0.18;
  margin: 14px 0;
}
.outlet-editorial {
  padding: 36px 40px;
}
.outlet-editorial .ed-label {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  opacity: 0.55;
}
.outlet-editorial .ed-title {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  margin-bottom: 12px;
}
.outlet-editorial .ed-rule {
  width: 26px; height: 2px;
  background: currentColor;
  opacity: 0.4;
  margin-bottom: 18px;
  display: block;
}
.outlet-editorial p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 16px;
  max-width: 660px;
}
@media (max-width: 768px) {
  .outlet-meta-block { grid-template-columns: 1fr; }
  .outlet-editorial { padding: 32px 24px; }
}

/* ════════════════════════════════════════
   ISSUE ENTRIES (alternating grid)
════════════════════════════════════════ */
.issues-section {
  padding: 64px 40px;
}
.issues-section-header { margin-bottom: 44px; }
.issues-section-header .eyebrow { opacity: 0.55; margin-bottom: 10px; }
.issues-section-title { font-size: clamp(36px, 6vw, 68px); line-height: 0.9; }

.issue-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid currentColor;
  padding: 40px 0;
  opacity: 0.88;
}
.issue-entry:last-child { border-bottom: 0.5px solid currentColor; }
.issue-entry.flip { direction: rtl; }
.issue-entry.flip > * { direction: ltr; }

.issue-covers {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 32px;
}
.issue-entry.flip .issue-covers { padding-right: 0; padding-left: 32px; }
.issue-cover-img {
  flex: 0 0 auto;
  width: 130px;
  box-shadow: 3px 5px 16px rgba(0,0,0,0.22);
  transition: transform 0.3s;
}
.issue-cover-img:hover { transform: translateY(-4px) rotate(1deg); }
.issue-cover-img img { width: 100%; display: block; }
.issue-cover-img.secondary { margin-top: 18px; width: 104px; opacity: 0.80; }

.issue-text { display: flex; flex-direction: column; justify-content: center; padding: 12px 0; }
.issue-date {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.38;
  display: block;
  margin-bottom: 9px;
}
.issue-title { font-size: clamp(24px, 4vw, 42px); margin-bottom: 5px; line-height: 0.95; }
.issue-subtitle {
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  opacity: 0.55;
  display: block;
  margin-bottom: 12px;
}
.issue-rule-line { width: 24px; height: 2px; margin-bottom: 12px; display: block; }
.issue-body { font-size: 14px; line-height: 1.70; opacity: 0.76; max-width: 420px; }

@media (max-width: 768px) {
  .issue-entry, .issue-entry.flip { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .issue-covers, .issue-entry.flip .issue-covers { padding: 0; }
  .issues-section { padding: 52px 24px; }
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.about-split-left {
  padding: 60px 52px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-gold-line { width: 32px; height: 0.5px; background: var(--gold); margin-bottom: 24px; }
.about-intro {
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245,240,232,0.75);
  max-width: 460px;
  margin-bottom: 20px;
}
.about-rule { width: 34px; height: 2px; background: var(--gold); }
.about-split-right {
  position: relative;
  overflow: hidden;
  background: #111;
}
.about-right-bg {
  position: absolute;
  inset: 0;
}
.about-right-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.about-name-bleed {
  position: absolute;
  bottom: -0.1em; right: -0.04em;
  font-size: clamp(60px, 12vw, 130px);
  color: rgba(245,240,232,0.05);
  pointer-events: none;
  z-index: 1;
}
.polaroids-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pol-stage { position: relative; width: 280px; height: 320px; }
.polaroid {
  position: absolute;
  background: #fff;
  padding: 8px 8px 32px;
  box-shadow: 4px 8px 24px rgba(0,0,0,0.6);
}
.polaroid-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #444;
}
.polaroid-caption {
  font-family: var(--bc);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  margin-top: 6px;
}
.polaroid:nth-child(1) { width: 180px; height: 215px; top: 10px; left: 0; transform: rotate(-4deg); }
.polaroid:nth-child(2) { width: 148px; height: 175px; top: 120px; left: 118px; transform: rotate(3deg); }

.about-body-wrap {
  background: var(--cream);
  color: var(--ink);
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-body-wrap p {
  font-size: 15px;
  line-height: 1.78;
  color: #3a3a3a;
  margin-bottom: 16px;
}
.about-drop::first-letter {
  font-family: var(--bc);
  font-weight: 900;
  font-size: 4.8em;
  line-height: 0.75;
  float: left;
  margin-right: 6px;
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-right { min-height: 360px; }
  .about-body-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* About page — full-width content area for Custom HTML blocks
   Sits outside the constrained about-body-wrap grid             */
.about-page-content {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  /* Reset any inherited cream/light styles from above */
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.75;
}
/* Neutralise WP block wrapper padding */
.about-page-content > .wp-block-group,
.about-page-content > .wp-block-group__inner-container {
  padding: 0;
  margin: 0;
  max-width: none;
}
/* Paragraphs inside page content area keep cream text */
.about-page-content p {
  color: rgba(245,240,232,0.75);
  margin-bottom: 16px;
}


/* Logo strip image variant */
.logo-img {
  height: 24px !important;
  max-height: 24px !important;
  width: auto !important;
  max-width: none;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s;
}
.logo-strip-item:hover .logo-img {
  filter: grayscale(0%) opacity(1);
}

/* Outlet info column (used in hub-outlet-row.php) */
.outlet-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#site-footer {
  background: var(--ink);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--gold);
}
.footer-logo { font-size: 28px; color: var(--cream); }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-copy {
  font-family: var(--bc);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.32);
}
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
@media (max-width: 640px) {
  #site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
}

/* ════════════════════════════════════════
   BACK LINK
════════════════════════════════════════ */
.back-link-bar {
  text-align: center;
  padding: 14px 32px;
  border-top: 0.5px solid currentColor;
  opacity: 0.25;
}
.back-link-bar a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.back-link-bar a:hover { opacity: 0.7; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   STAR OBSERVER — ISSUES GRID
════════════════════════════════════════ */
.so-issues-wrap {
  background: var(--ink);
  color: var(--cream);
}
.so-issues-header {
  padding: 56px clamp(28px, 5vw, 80px) 32px;
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.so-issues-title {
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
  margin-top: 8px;
}
.so-issues-title em { font-style: italic; }
.so-issues-rule {
  width: 28px; height: 2px;
  display: block;
  margin-top: 14px;
}

/* Year divider */
.so-year-div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(28px, 5vw, 80px);
  background: rgba(245,240,232,0.02);
  border-bottom: 0.5px solid rgba(245,240,232,0.06);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.so-year-lbl {
  font-family: var(--bc);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 90px);
  color: rgba(245,240,232,0.06);
  line-height: 1;
  text-transform: uppercase;
}
.so-year-rule {
  flex: 1;
  height: 0.5px;
  background: rgba(245,240,232,0.07);
}

/* Issue row — full-width two equal columns, same background */
.so-issue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  background: var(--ink);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
/* Flip: swap column order */
.so-issue-row.flip .so-cover-cell { order: 2; }
.so-issue-row.flip .so-text-cell  { order: 1; }

/* Cover cell */
.so-cover-cell {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
}

/* Single square cover */
.so-cov-single {
  position: relative;
  width: 210px;
  height: 210px;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.75);
  transform: rotate(-2.5deg);
  transform-origin: center center;
  flex-shrink: 0;
  overflow: hidden;
}

/* Stacked covers */
.so-cov-stack {
  position: relative;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}
.so-cov-main {
  position: absolute;
  top: 0; left: 0;
  width: 196px; height: 196px;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.75);
  transform: rotate(-3.5deg);
  transform-origin: center center;
  overflow: hidden;
}
.so-cov-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 148px; height: 148px;
  box-shadow: 4px 8px 24px rgba(0,0,0,0.7);
  border: 3px solid var(--ink);
  transform: rotate(3deg);
  transform-origin: center center;
  overflow: hidden;
}

/* Real images inside covers */
.so-cov-single img,
.so-cov-main img,
.so-cov-sec img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text cell */
.so-text-cell {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(28px, 4vw, 56px);
}
.so-iss-date {
  font-family: var(--bc);
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.18);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.so-iss-title {
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 10px;
}
.so-iss-star {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: rgba(245,240,232,0.46);
  display: block;
  margin-bottom: 18px;
}
.so-iss-rule {
  width: 28px; height: 2px;
  display: block;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.so-iss-body {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(245,240,232,0.60);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 20px;
}
.so-iss-link {
  font-family: var(--bc);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  border-bottom: 1.5px solid;
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s;
  align-self: flex-start;
}
.so-iss-link:hover { color: var(--cream); }

@media (max-width: 768px) {
  .so-issue-row,
  .so-issue-row.flip .so-cover-cell,
  .so-issue-row.flip .so-text-cell {
    grid-template-columns: 1fr;
    order: unset;
  }
  .so-issue-row { grid-template-columns: 1fr; }
  .so-cover-cell,
  .so-text-cell { padding: 36px 24px; }
  .so-issues-header { padding: 40px 24px 24px; }
}

/* ════════════════════════════════════════
   HUB PAGES — ALTERNATING FULL-WIDTH ROWS
   Logo + device visual on same side,
   alternating left/right per outlet.
════════════════════════════════════════ */
.hub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 0.5px solid rgba(245,240,232,0.07);
}
.hub-row.flip .hub-visual { order: 2; }
.hub-row.flip .hub-info   { order: 1; }

/* Visual side: dark, contains logo name + device */
.hub-visual {
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 48px 64px;
  gap: 28px;
  position: relative;
  overflow: visible;
}
/* Clips only the bg image/gradient — device can overflow freely */
.hub-visual-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hub-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transition: opacity 0.4s;
  z-index: 0;
  overflow: hidden;
}
.hub-row:hover .hub-visual-bg { opacity: 0.28; }
.hub-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  z-index: 0;
}

/* Outlet name inside visual */
.hub-outlet-name {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hub-outlet-name-text {
  font-size: clamp(28px, 5vw, 56px);
  color: rgba(245,240,232,0.92);
  line-height: 1.0;
  margin-bottom: 0;
}
.hub-outlet-name-text em { font-style: normal; }
.hub-outlet-name-rule {
  width: 36px; height: 1.5px;
  background: var(--gold);
  margin: 12px auto;
}
.hub-outlet-name-sub {
  font-family: var(--bc);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.38);
}

/* Device inside visual */
.hub-device { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }

/* Info side: matches ink background */
.hub-info {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(32px, 5vw, 80px);
}
.hub-info > * {
  max-width: 520px;
}

/* Hub print covers — same as before but inside hub-visual */
.hub-covers-stage {
  position: relative;
  width: 300px; height: 300px;
  margin: 0 auto;
}
.hub-cover-main {
  position: absolute;
  top: 0; left: 0;
  width: 190px; height: 190px;
  box-shadow: 8px 10px 32px rgba(0,0,0,0.75);
  transform: rotate(-4deg);
  transform-origin: center center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hub-cover-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 142px; height: 142px;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.65);
  border: 3px solid #0d0d0d;
  transform: rotate(3.5deg);
  transform-origin: center center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hub-cover-main img,
.hub-cover-sec img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

@media (max-width: 900px) {
  .hub-row, .hub-row.flip .hub-visual, .hub-row.flip .hub-info {
    grid-template-columns: 1fr;
    order: unset;
  }
  .hub-row { grid-template-columns: 1fr; }
  .hub-visual { min-height: 320px; }
  .hub-info { padding: 36px 20px; }
  .hub-info > * { max-width: 100%; }
}

/* ════════════════════════════════════════
   OUTLET EDITORIAL — dark theme overrides
   (styles defined above in outlet detail section)
════════════════════════════════════════ */
