/* Page-specific styles originally from index.html */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 70%),
  radial-gradient(ellipse 30% 40% at 20% 30%, rgba(184,74,42,0.05) 0%, transparent 60%),
  linear-gradient(to bottom, #0a0a08 0%, #111108 100%);
}

.hero-rule {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin-bottom: 2rem;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--off-white);
  animation: fadeUp 1s ease 0.35s both;
  position: relative;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  margin-top: 1.5rem;
  line-height: 1.8;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  animation: fadeUp 1s ease 0.65s both;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease 1s both;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.manifesto {
  padding: 7rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.manifesto blockquote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  position: relative;
}

.manifesto blockquote::before {
  content: '"';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  line-height: 1;
  font-style: normal;
}

.manifesto cite {
  display: block;
  margin-top: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
}

.issues {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.issues-header {
  margin-bottom: 4rem;
  text-align: center;
}

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

.issue-card--under-03 {
  grid-column: 2;
}

.issue-card {
  position: relative;
  background: #111108;
  overflow: hidden;
  cursor: pointer;
}

.issue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.95) 0%, rgba(10,10,8,0.4) 50%, transparent 100%);
  z-index: 2;
  transition: opacity 0.4s;
}

.issue-cover {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: sepia(0.2) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s;
}

.issue-card:hover .issue-cover {
  transform: scale(1.04);
  filter: sepia(0) contrast(1.1);
}

.issue-cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a14 0%, #0f0f0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.issue-cover-placeholder span {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
}

.issue-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  z-index: 3;
  transform: translateY(4px);
  transition: transform 0.3s;
}

.issue-card:hover .issue-info {
  transform: translateY(0);
}

.issue-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.issue-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.issue-excerpt {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.issue-card:hover .issue-excerpt {
  max-height: 120px;
}

.issue-order-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.issue-order-btn:hover {
  background: var(--gold-light);
}

.price-banner {
  background: var(--gold);
  padding: 1.5rem 2rem;
  text-align: center;
}

.price-banner p {
  color: var(--black);
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-banner strong {
  font-size: 1.1rem;
}

.why-print {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-print-text h2 {
  margin-bottom: 1.5rem;
}

.why-print-text p {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pillar {
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 1.5rem;
  transition: border-color 0.3s;
}

.pillar:hover {
  border-color: var(--gold);
}

.pillar-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
  line-height: 1.7;
}

.contributors {
  padding: 6rem 2rem;
  background: #0d0d0b;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  text-align: center;
}

.contributors-inner {
  max-width: 900px; margin: 0 auto;
}

.contributors h2 {
  margin-bottom: 3rem;
}

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  border: 1px solid rgba(201,168,76,0.1);
}

.contributor-item {
  padding: 1.5rem 1rem;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.contributor-item:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.15);
}

.contributor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.2rem;
}

.contributor-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.about {
  padding: 7rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.order-cta {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #111108, #0f0d06);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
  position: relative;
  overflow: hidden;
}

.order-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.order-cta h2 {
  margin-bottom: 1rem;
}

.order-cta p {
  color: rgba(245,240,232,0.5);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact {
  padding: 6rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact h2 {
  margin-bottom: 2rem; text-align: center;
}

@media (max-width: 900px) {
  .issues-grid {
    grid-template-columns: 1fr; max-width: 400px; margin: 0 auto;
  }
  .issue-card--under-03 {
    grid-column: 1;
  }
  .why-print {
    grid-template-columns: 1fr; gap: 3rem;
  }
}


.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-band {
  background: #0d0d0b;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.order-cta-inner {
  position: relative;
  z-index: 2;
}
