/* ══════════════════════════════════════
   NS PAGE HERO — REUSABLE
══════════════════════════════════════ */

.ns-ph {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
}

/* Background */
.ns-ph-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: nsPhZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes nsPhZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}

/* Overlay */
.ns-ph-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Grid lines */
.ns-ph-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1400 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='g' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 80 0 L 0 0 0 80' fill='none' stroke='white' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g)'/%3E%3C/svg%3E");
}

/* Inner layout */
.ns-ph-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 100px;
}

/* Breadcrumb */
.ns-ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
}

.ns-ph-breadcrumb a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.ns-ph-breadcrumb a:hover {
  color: #0873EA;
}

.ns-ph-bc-sep {
  color: rgba(255,255,255,0.2);
}

.ns-ph-bc-current {
  color: #0873EA;
}

/* Eyebrow */
.ns-ph-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ns-ph-eyebrow-line {
  width: 40px;
  height: 1px;
  background: #0873EA;
  flex-shrink: 0;
}

.ns-ph-eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0873EA;
  font-weight: 600;
}

/* Title */
.ns-ph-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  color: #ffffff;
  margin-bottom: 40px;
}

.ns-ph-t1 {
  display: block;
}

.ns-ph-t2 {
  display: block;
  font-style: italic;
  color: #2d8fff;
}

.ns-ph-t3 {
  display: block;
  -webkit-text-stroke: 1px rgba(255,255,255,0.28);
  color: transparent;
}

/* Desc row */
.ns-ph-desc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
}

.ns-ph-desc-row.ns-ph-no-stats {
  grid-template-columns: 1fr;
}

.ns-ph-desc-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  border-left: 2px solid #0873EA;
  padding-left: 20px;
}

/* Stats */
.ns-ph-desc-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 48px;
}

.ns-ph-stat {
  text-align: right;
}

.ns-ph-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.ns-ph-stat-l {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Scroll indicator */
.ns-ph-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right center;
}

.ns-ph-scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.ns-ph-scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0873EA;
  animation: nsPhScroll 2s ease infinite;
}

@keyframes nsPhScroll {
  0%   { left: -100%; }
  100% { left: 100%;  }
}

.ns-ph-scroll-text {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ns-ph-inner {
    padding: 0 40px 80px;
  }
  .ns-ph-desc-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ns-ph-desc-right {
    justify-content: flex-start;
  }
  .ns-ph-scroll {
    right: 40px;
    bottom: 32px;
  }
}

@media (max-width: 768px) {
  .ns-ph {
    min-height: 80vh;
    align-items: center;
  }
  .ns-ph-inner {
    padding: 0 24px 60px;
  }
  .ns-ph-title {
    font-size: clamp(44px, 10vw, 72px);
  }
  .ns-ph-desc-left p {
    font-size: 15px;
  }
  .ns-ph-desc-right {
    gap: 28px;
  }
  .ns-ph-stat-n {
    font-size: 32px;
  }
  .ns-ph-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .ns-ph {
    min-height: 75vh;
  }
  .ns-ph-inner {
    padding: 0 20px 48px;
  }
  .ns-ph-title {
    font-size: clamp(36px, 11vw, 56px);
  }
  .ns-ph-desc-row {
    padding-top: 28px;
  }
  .ns-ph-desc-left p {
    font-size: 14px;
    padding-left: 14px;
  }
  .ns-ph-stat-n {
    font-size: 26px;
  }
  .ns-ph-stat-l {
    font-size: 8px;
  }
}