/* ─── AREAS.CSS ─────────────────────────────── */

.page-header {
  padding: 64px 24px 24px;
  text-align: center;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 20px 24px 36px;
}

/* ─── AREA SECTION ───────────────────────────── */
.area-section {
  padding: 72px 24px;
}

.area-header {
  margin-bottom: 44px;
}

.area-title {
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
}

/* ─── SUBCATEGORY ────────────────────────────── */
.subcategory {
  margin-bottom: 52px;
}

.subcategory-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ─── WORK GRID ──────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.work-grid-1 {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.work-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.2s;
}

.work-card:hover {
  border-color: rgba(249,81,162,0.25);
}

.work-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245,245,240,0.72);
  margin-bottom: 16px;
}

.work-desc strong {
  color: var(--white);
  font-weight: 700;
}

.single-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ─── VIDEO / REEL ────────────────────────────── */
.reel-format {
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background: rgba(249,81,162,0.06);
  border: 2px dashed rgba(249,81,162,0.3);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.reel-inner {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reel-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.reel-inner p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245,245,240,0.7);
}

.file-note {
  font-size: 0.72rem !important;
  color: var(--gray) !important;
  margin-top: 8px;
}

.file-note code {
  background: rgba(255,255,255,0.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.reel-video {
  width: 100%;
  max-height: 480px;
  border-radius: 14px;
  background: #000;
  display: block;
  object-fit: contain;
}

.video-info {
  padding: 16px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245,245,240,0.7);
}

.video-info p strong {
  color: var(--white);
}

/* ─── DIVIDER ────────────────────────────────── */
.area-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  margin: 0 40px;
  opacity: 0.25;
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 680px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid-1 {
    max-width: 100%;
  }
}
