/* ============================================
   THE REBORN SIGNAL — CANON
   Warmth / Vinyl / Concrete / West Coast
   ============================================ */

.page-canon {
  background: #0D0A07;
}

/* ── CANON HERO ── */

.canon-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.canon-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 512px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.canon-hero-image {
  position: relative;
  background: var(--canon-concrete);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.canon-hero-image .placeholder-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--canon-concrete) 0%, #1A1408 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.canon-hero-image .placeholder-photo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 8rem;
  color: var(--canon-amber);
  opacity: 0.08;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.canon-hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #0D0A07 0%, var(--canon-concrete) 100%);
}

.canon-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--canon-amber);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.canon-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--canon-amber);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.canon-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--canon-warm-white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  opacity: 0.6;
}

/* ── CANON BIO ── */

.canon-bio {
  padding: 8rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.canon-bio-section {
  margin-bottom: 6rem;
}

.canon-bio-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--canon-amber);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 135, 58, 0.2);
}

.canon-bio-section p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--canon-warm-white);
  opacity: 0.8;
}

.canon-sound {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--canon-burn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.canon-sound::before,
.canon-sound::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--canon-amber);
  margin: 0 auto;
  opacity: 0.4;
}

.canon-sound::before {
  margin-bottom: 2rem;
}

.canon-sound::after {
  margin-top: 2rem;
}

/* ── TROPHIES ── */

.canon-trophies {
  padding: 4rem 2rem 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.canon-trophies h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--canon-amber);
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.trophies-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: trophy-crack 8s ease-in-out infinite;
}

.trophy-item:nth-child(2) { animation-delay: 2s; }
.trophy-item:nth-child(3) { animation-delay: 4s; }
.trophy-item:nth-child(4) { animation-delay: 6s; }

.trophy-item svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
  filter: sepia(1) saturate(0.5) brightness(0.8);
}

.trophy-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #555;
  text-transform: uppercase;
  text-align: center;
}

/* ── CIPHER BLEED (right edge) ── */

.canon-cipher-bleed {
  position: fixed;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.canon-cipher-bleed::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 0;
  width: 1px;
  height: 40%;
  background: var(--cipher-cyan);
  opacity: 0.15;
  box-shadow: 0 0 8px rgba(0, 255, 225, 0.1);
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .canon-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .canon-hero-image {
    min-height: 40vh;
  }

  .canon-hero-text {
    padding: 4rem 2rem;
  }
}

@media (max-width: 640px) {
  .canon-bio {
    padding: 4rem 1.5rem;
  }

  .trophies-row {
    gap: 2rem;
  }
}
