/* === POSSUM LOVE WEB ZINE === */
/* Dark atmosphere, gold accents, wet Seattle tones */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --bg: #08060a;
  --bg-deep: #050408;
  --bg-elevated: #100d14;
  --surface: #1a1420;
  --gold: #d4a847;
  --gold-dim: rgba(212, 168, 71, 0.15);
  --gold-border: rgba(212, 168, 71, 0.3);

  /* Character neon */
  --neon-green: #00ff88;
  --neon-green-dim: rgba(0, 255, 136, 0.12);
  --neon-pink: #ff4da6;
  --neon-pink-dim: rgba(255, 77, 166, 0.12);

  /* Pastel soft moments */
  --pastel-green: #a8f0cc;
  --pastel-pink: #ffb3d4;

  /* City grays (Seattle) */
  --city-black: #0f0f12;
  --city-gray: #1e1e26;
  --city-slate: #7a7a8c;
  --pale-slate: #b4b4c4;
  --slate-blue: #5a6a8c;
  --navy-blue: #1a2040;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Courier New', monospace;
  --font-accent: 'Cinzel Decorative', 'Cinzel', serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--pale-slate);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.zine-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 6, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
}

.zine-nav-logo {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.zine-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.zine-nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--city-slate);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.zine-nav-links a:hover {
  color: var(--gold);
}

/* === SECTION BASE === */
.zine-section {
  padding: 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--city-slate);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.section-gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* === SHRINE HERO === */
.shrine {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.shrine-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.55) saturate(0.9);
  z-index: 0;
}

.shrine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,6,10,0.2) 0%,
    rgba(8,6,10,0.0) 30%,
    rgba(8,6,10,0.4) 60%,
    rgba(8,6,10,0.95) 100%
  );
  z-index: 1;
}

.shrine-glow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 40vh;
  background: radial-gradient(ellipse, rgba(212,168,71,0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.shrine-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 900px;
}

.shrine-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.8;
}

.shrine-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  color: #f5f0e8;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.shrine-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 48px;
  opacity: 0.7;
}

.shrine-sigil {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sigil-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.shrine-words {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--city-slate);
  text-transform: uppercase;
}

/* === DIVIDER === */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-border), transparent);
  margin: 0;
}

.thin-divider {
  width: 32px;
  height: 1px;
  background: var(--gold-border);
  margin: 48px 0;
}

/* === LUCKY POSS === */
.lucky {
  background: var(--bg-deep);
  padding: 120px 64px;
  position: relative;
}

.lucky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lucky-image-wrap {
  position: relative;
}

.lucky-image-wrap img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,255,136,0.15));
}

.lucky-image-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--neon-green);
  opacity: 0.2;
  pointer-events: none;
}

.lucky-neon-line {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--neon-green);
  opacity: 0.05;
  pointer-events: none;
}

.lucky-text {}

.lucky-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.lucky-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--neon-green);
  text-shadow: 0 0 60px rgba(0,255,136,0.3);
  margin-bottom: 32px;
}

.lucky-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pale-slate);
  max-width: 400px;
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0.7;
}

.lucky-trait {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--city-slate);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,255,136,0.2);
  display: inline-block;
}

/* === BABY POSS === */
.baby {
  background: var(--bg);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}

.baby::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,166,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.baby-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.baby-inner.reversed {
  direction: rtl;
}
.baby-inner.reversed > * {
  direction: ltr;
}

.baby-image-wrap {
  position: relative;
}

.baby-image-wrap img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 0 40px rgba(255,77,166,0.15));
}

.baby-image-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--neon-pink);
  opacity: 0.2;
  pointer-events: none;
}

.baby-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.baby-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--neon-pink);
  text-shadow: 0 0 60px rgba(255,77,166,0.3);
  margin-bottom: 20px;
}

.baby-credit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--city-slate);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.baby-credit::before {
  content: '↗';
  color: var(--neon-pink);
  font-size: 12px;
}

.baby-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pale-slate);
  max-width: 400px;
  margin-bottom: 32px;
  font-style: italic;
  opacity: 0.7;
}

.baby-trait {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--city-slate);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255,77,166,0.2);
  display: inline-block;
}

/* === TAROT GALLERY === */
.tarot {
  background: var(--bg-deep);
  padding: 120px 64px;
  position: relative;
}

.tarot-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.tarot-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.tarot-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 16px;
}

.tarot-subtitle {
  font-size: 14px;
  font-style: italic;
  color: var(--city-slate);
  opacity: 0.7;
}

.tarot-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.tarot-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tarot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 71, 0.15);
}

.tarot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88) saturate(0.95);
}

.tarot-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.05);
}

.tarot-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 12px 10px;
  background: linear-gradient(to top, rgba(8,6,10,0.85) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tarot-card:hover .tarot-card-caption {
  opacity: 0.8;
}

@media (max-width: 1100px) {
  .tarot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .tarot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* === BUY THE DECK === */
.buy-section {
  background: var(--bg-deep);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}

.buy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.buy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.buy-product-card {
  position: relative;
}

.buy-card-img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-border);
  filter: brightness(0.85) saturate(0.9);
  box-shadow: 0 0 60px rgba(212,168,71,0.1);
}

.buy-product-card::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212,168,71,0.15);
  pointer-events: none;
}

.buy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.buy-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  opacity: 0.8;
}

.buy-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 28px;
  line-height: 1.05;
}

.buy-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pale-slate);
  max-width: 440px;
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0.7;
}

.buy-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}

.buy-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.buy-price-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--city-slate);
  text-transform: uppercase;
}

.buy-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 40px rgba(212,168,71,0.2);
  margin-bottom: 20px;
}

.buy-cta:hover {
  background: #e8be5c;
  box-shadow: 0 0 60px rgba(212,168,71,0.35);
  transform: translateY(-1px);
}

.buy-cta:active {
  transform: translateY(0);
}

.buy-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--city-slate);
  text-transform: uppercase;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .buy-section {
    padding: 80px 32px;
  }

  .buy-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .buy-product-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .buy-content {
    align-items: center;
    text-align: center;
  }

  .buy-desc {
    text-align: center;
  }
}

/* === SHRINE DIVIDER (mid-article callout) === */
.shrine-divider {
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shrine-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 51, 204, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.shrine-divider-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 51, 204, 0.2);
  padding: 48px 40px;
  background: rgba(255, 51, 204, 0.03);
}

.shrine-divider-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(57, 255, 20, 0.1);
  pointer-events: none;
}

.shrine-divider-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 51, 204, 0.6));
}

.shrine-divider-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 16px;
  line-height: 1.05;
}

.shrine-divider-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--pale-slate);
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 32px;
}

.shrine-divider-form {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.shrine-divider-input {
  flex: 1;
  background: rgba(8,6,10,0.8);
  border: 1px solid rgba(255, 51, 204, 0.3);
  color: var(--pale-slate);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.shrine-divider-input::placeholder {
  color: var(--city-slate);
  opacity: 0.6;
}

.shrine-divider-input:focus {
  border-color: #FF33CC;
  box-shadow: 0 0 16px rgba(255, 51, 204, 0.2);
}

.shrine-divider-btn {
  background: #FFD700;
  color: #08060a;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  white-space: nowrap;
}

.shrine-divider-btn:hover {
  background: #ffe44d;
  box-shadow: 0 0 36px rgba(255, 215, 0, 0.35);
}

.shrine-divider-success {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #39FF14;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: rgba(57, 255, 20, 0.04);
}

.shrine-divider-error {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #FF33CC;
  text-transform: uppercase;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .shrine-divider {
    padding: 56px 24px;
  }
  .shrine-divider-inner {
    padding: 36px 24px;
  }
  .shrine-divider-form {
    flex-direction: column;
  }
  .shrine-divider-btn {
    width: 100%;
  }
}

/* === FOOTER === */
.zine-footer {
  border-top: 1px solid var(--gold-border);
  background: var(--bg-deep);
}

/* Newsletter band inside zine footer */
.zine-footer-newsletter {
  background: var(--bg);
  border-bottom: 1px solid var(--gold-border);
  padding: 56px 64px;
}

.zine-footer-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.zine-footer-newsletter-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 12px;
  line-height: 1.1;
}

.zine-footer-newsletter-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--city-slate);
  font-style: italic;
  opacity: 0.7;
}

.zine-footer-newsletter-fields {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.zine-footer-newsletter-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(255, 51, 204, 0.25);
  color: var(--pale-slate);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.zine-footer-newsletter-input::placeholder {
  color: var(--city-slate);
  opacity: 0.5;
}

.zine-footer-newsletter-input:focus {
  border-color: #FF33CC;
  box-shadow: 0 0 14px rgba(255, 51, 204, 0.2);
}

.zine-footer-newsletter-btn {
  background: #FFD700;
  color: #08060a;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  white-space: nowrap;
}

.zine-footer-newsletter-btn:hover {
  background: #ffe44d;
  box-shadow: 0 0 32px rgba(255, 215, 0, 0.3);
}

.zine-footer-newsletter-success {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #39FF14;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  background: rgba(57, 255, 20, 0.04);
  margin-top: 8px;
}

.zine-footer-newsletter-error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #FF33CC;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.zine-footer-brand-row {
  padding: 28px 64px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zine-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zine-footer-logo {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.zine-footer-credit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--city-slate);
}

.zine-footer-co {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--city-slate);
}

/* === SHARE BUTTONS === */
.share-section {
  background: var(--bg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.share-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 77, 166, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.share-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.share-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--city-slate);
  text-transform: uppercase;
  margin-bottom: 36px;
  display: block;
  opacity: 0.7;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: box-shadow 0.25s, transform 0.15s, background 0.2s;
  cursor: pointer;
}

.share-btn:active {
  transform: scale(0.97);
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Twitter/X */
.share-twitter {
  color: var(--neon-green);
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.05);
}
.share-twitter:hover {
  background: rgba(0, 255, 136, 0.12);
  box-shadow: 0 4px 24px rgba(0, 255, 136, 0.2), 0 0 16px rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.6);
  color: #39FF14;
}

/* Instagram */
.share-instagram {
  color: var(--neon-pink);
  border-color: rgba(255, 77, 166, 0.3);
  background: rgba(255, 77, 166, 0.05);
}
.share-instagram:hover {
  background: rgba(255, 77, 166, 0.12);
  box-shadow: 0 4px 24px rgba(255, 77, 166, 0.2), 0 0 16px rgba(255, 77, 166, 0.1);
  border-color: rgba(255, 77, 166, 0.6);
  color: #ff4da6;
}

/* Threads */
.share-threads {
  color: var(--gold);
  border-color: rgba(212, 168, 71, 0.3);
  background: rgba(212, 168, 71, 0.05);
}
.share-threads:hover {
  background: rgba(212, 168, 71, 0.12);
  box-shadow: 0 4px 24px rgba(212, 168, 71, 0.2), 0 0 16px rgba(212, 168, 71, 0.1);
  border-color: rgba(212, 168, 71, 0.6);
}

@media (max-width: 600px) {
  .share-section {
    padding: 56px 24px;
  }
  .share-buttons {
    gap: 12px;
  }
  .share-btn {
    padding: 12px 20px;
  }
}

@media (max-width: 900px) {
  .lucky-inner,
  .baby-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .baby-inner.reversed {
    direction: ltr;
  }

  .shrine-content {
    padding: 0 32px 60px;
  }

  .lucky, .baby, .tarot {
    padding: 80px 32px;
  }

  .zine-nav-links {
    display: none;
  }

  .zine-footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === SHRINE STORIES (CMS-driven) === */
.shrine-story {
  background: var(--bg-deep);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.shrine-story::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212,168,71,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.shrine-story-image-wrap {
  max-width: 900px;
  margin: 0 auto 56px;
  position: relative;
}

.shrine-story-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--gold-border);
  filter: brightness(0.8) saturate(0.85);
}

.shrine-story-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.shrine-story-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.shrine-story-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  color: #f5f0e8;
  margin-bottom: 36px;
}

.shrine-story-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--pale-slate);
  font-style: italic;
  opacity: 0.8;
}

.shrine-story-body p {
  margin-bottom: 1.5em;
}

.shrine-story-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .shrine-story {
    padding: 72px 32px;
  }
}

/* === NEWSLETTER SIGNUP === */
.newsletter-section {
  background: var(--bg-deep);
  padding: 120px 64px;
  text-align: center;
}

.newsletter-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #f5f0e8;
  margin-bottom: 20px;
}

.newsletter-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pale-slate);
  max-width: 440px;
  margin: 0 auto 48px;
  font-style: italic;
  opacity: 0.7;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-fields {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.newsletter-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  color: var(--pale-slate);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder {
  color: var(--city-slate);
  opacity: 0.6;
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(212,168,71,0.15);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #e8be5c;
  box-shadow: 0 0 60px rgba(212,168,71,0.3);
}

.newsletter-success {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 16px;
  border: 1px solid var(--gold-border);
}

@media (max-width: 600px) {
  .newsletter-fields {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .shrine-title {
    font-size: 56px;
  }
}