/* ============================================================
   PROFILE PAGE · CINEMATIC DOSSIER STYLE
   ============================================================ */

/* ---- PROFILE HERO ---- */
.profile-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.profile-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.profile-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,40,0.98) 0%,
    rgba(10,20,40,0.7) 40%,
    rgba(10,20,40,0.3) 70%,
    rgba(10,20,40,0.5) 100%
  );
}
.profile-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}
.profile-hero-inner {
  position: relative;
  z-index: 2;
}
.profile-hero-h1 {
  font-family: "Geometos Neue Bold", "Geometos Neue", var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--bone);
  margin: 1rem 0 1.5rem;
}
.profile-hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(244,241,234,0.75);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.profile-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(244,241,234,0.5);
}

/* ---- PROFILE SECTIONS ---- */
.profile-section {
  padding: 6rem 0;
  position: relative;
}
.profile-section:nth-child(even) {
  background: rgba(10,20,40,0.4);
}

/* ---- PROFILE GRID ---- */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.profile-grid-reverse .profile-text-col { order: 1; }
.profile-grid-reverse .profile-img-col { order: 2; }
@media (min-width: 768px) {
  .profile-grid-reverse .profile-text-col { order: 2; }
  .profile-grid-reverse .profile-img-col { order: 1; }
}

/* ---- PROFILE TEXT ---- */
.profile-text-col p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244,241,234,0.8);
  margin-bottom: 1.25rem;
}
.profile-lead {
  font-size: 1.2rem !important;
  color: var(--bone) !important;
  font-weight: 500;
}
.profile-h2 {
  font-family: "Geometos Neue Bold", "Geometos Neue", var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--bone);
  margin: 1rem 0 2rem;
}
.profile-h2 .orange { color: var(--orange); }
.text-center { text-align: center; }

/* ---- PROFILE QUOTE ---- */
.profile-quote {
  border-left: 3px solid var(--orange);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
}
.profile-quote p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--bone) !important;
  margin: 0 !important;
}

/* ---- PROFILE IMAGE FRAME ---- */
.profile-img-col {
  display: flex;
  justify-content: center;
}
.profile-img-frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.profile-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 2px;
  filter: contrast(1.05) saturate(1.1);
}
.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--orange);
  border-style: solid;
  border-width: 0;
  opacity: 0.7;
}
.fc-tl { top: -8px; left: -8px; border-top-width: 2px; border-left-width: 2px; }
.fc-tr { top: -8px; right: -8px; border-top-width: 2px; border-right-width: 2px; }
.fc-bl { bottom: -8px; left: -8px; border-bottom-width: 2px; border-left-width: 2px; }
.fc-br { bottom: -8px; right: -8px; border-bottom-width: 2px; border-right-width: 2px; }

/* ---- PERSECUTION SECTION ---- */
.profile-persecution {
  background: linear-gradient(135deg, rgba(10,20,40,0.95), rgba(30,10,10,0.9));
  padding: 6rem 0;
}
.profile-persecution-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/img/constitution_texture.webp') center/cover no-repeat;
  opacity: 0.06;
}
.profile-persecution-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.profile-persecution-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(244,241,234,0.8);
  margin-bottom: 1.25rem;
}
.persecution-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem;
  background: rgba(255,107,26,0.05);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: 4px;
}
@media (min-width: 640px) {
  .persecution-stats { grid-template-columns: repeat(4, 1fr); }
}
.p-stat { text-align: center; }
.p-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1.2;
}
.p-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(244,241,234,0.5);
  margin-top: 0.5rem;
}
.profile-cta-btn {
  display: inline-flex;
  margin-top: 2rem;
}

/* ---- WHY SECTION ---- */
.profile-why {
  background: linear-gradient(180deg, rgba(10,20,40,0.6), rgba(10,20,40,0.9));
}
.profile-why-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.profile-why-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(244,241,234,0.8);
  margin-bottom: 1.25rem;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 400ms var(--ease-out);
  filter: contrast(1.05) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.1) saturate(1.2);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10,20,40,0.9), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption .mono-hud {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--orange);
}

/* ---- CTA GRID ---- */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .cta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: repeat(4, 1fr); } }

.cta-card {
  background: rgba(244,241,234,0.03);
  border: 1px solid rgba(244,241,234,0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
}
.cta-card:hover {
  border-color: rgba(255,107,26,0.3);
  background: rgba(255,107,26,0.04);
}
.cta-icon {
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.cta-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--bone);
}
.cta-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(244,241,234,0.6);
  line-height: 1.5;
  flex: 1;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-outline {
  background: transparent !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
}
.btn-outline:hover {
  background: var(--orange) !important;
  color: var(--navy) !important;
}

/* ---- NAV ACTIVE STATE ---- */
.nav-link.active {
  color: var(--orange);
}
