/* ================================================================
   HERO
   ================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--off-black);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  border-right: var(--border);
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.hero-issue {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 24px;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 28px; text-transform: uppercase;
}
.hero-h1 em {
  font-style: italic; font-weight: 400;
  display: block; color: var(--silver);
  font-size: 0.75em; text-transform: none;
}

.hero-sub {
  font-size: 14px; color: var(--gray);
  line-height: 1.7; max-width: 380px; margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-right {
  background: var(--charcoal);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.6));
}

.hero-img-main {
  width: 320px; height: 480px;
  background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative; z-index: 1;
}

.hero-caption {
  position: absolute; bottom: 32px; left: 32px; z-index: 2;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--silver);
}

.hero-number {
  position: absolute; top: 40px; right: 40px; z-index: 2;
  font-family: var(--ff-display); font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1; user-select: none;
}

/* Page hero (for shop/guide/celeb pages) */
.page-hero {
  background: var(--off-black);
  padding: 72px var(--page-gutter) 56px;
  border-bottom: var(--border);
}
.page-hero__label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.02em;
}
.page-hero__title em { font-style: italic; font-weight: 400; }
.page-hero__sub {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; margin-top: 16px; max-width: 560px;
}
