/* ─── PROJECT BACK LINK ───────────────────────────── */

.project-back {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 1.5rem 1.25rem 0;
  transition: color 0.2s;
}
.project-back:hover { color: var(--purple); }

/* ─── PROJECT TITLE ───────────────────────────────── */

.project-title-section {
  padding: 0.5rem 1.25rem 0.5rem;
  max-width: 900px;
}

.project-category-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(184, 127, 212, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
}

.project-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--green);
}

/* ─── PROJECT BODY: 2-COLUMN ──────────────────────── */

.project-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  padding: 1rem 1.25rem 4rem;
  border-top: none;
  align-items: start;
}

.project-description {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 4rem;
  border-right: none;
  position: relative;
}

.project-description::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 0;
  bottom: 0;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='40'%3E%3Cpath d='M12 0 Q20 10 12 20 Q4 30 12 40' fill='none' stroke='%23f15b27' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 24px 40px;
}
}

.project-description,
.project-description p,
.project-description div {
  font-size: 17px;
  line-height: 1.8 !important;
  color: var(--muted);
}

.project-description p:first-child {
  font-size: 19px;
  color: var(--green);
  font-weight: 600;
  line-height: 1.7;
}

/* ─── CREDITS SIDEBAR ─────────────────────────────── */

.project-credits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 88px;
  padding-left: 3rem;
}

.project-credit {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.credit-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f15b27;
}

.credit-value {
  font-size: 17px;
  color: var(--green);
  line-height: 1.5;
}

.credit-value a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.credit-value a:hover { color: var(--purple); }

/* ─── HERO IMAGE ──────────────────────────────────── */

.project-hero-image {
  padding: 0 1.25rem 3rem;
}

.project-hero-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ─── PROJECT VIDEO ───────────────────────────────── */

.project-video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  display: block;
  background: #000;
  min-height: 400px;
}

/* ─── PROJECT IMAGES ──────────────────────────────── */

.project-images {
  padding: 0 0 4rem;
}

.project-images-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.project-images-grid--two-column {
  grid-template-columns: 1fr 1fr;
}

.project-images-grid--one-column {
  grid-template-columns: 1fr;
}

.project-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ─── PROJECT NAV (PREV / NEXT) ───────────────────── */

.project-nav {
  padding: 2.5rem 1.25rem;
  border-top: none;
  border-bottom: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='10'%3E%3Cpath d='M0 6 Q20 1 40 6 Q60 11 80 6' fill='none' stroke='%23f15b27' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 80px 10px;
  background-position: top left;
}

.project-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.project-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  max-width: 45%;
  transition: opacity 0.2s;
}
.project-nav-link:hover { opacity: 0.65; }

.project-nav-link--next {
  text-align: right;
  margin-left: auto;
}

.project-nav-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-nav-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

/* ─── MOBILE ──────────────────────────────────────── */

@media (max-width: 768px) {
  .project-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-right: 1.25rem;
  }
  .project-description {
    padding-right: 0;
  }
  .project-description::after {
    display: none;
  }
  .project-credits {
    position: static;
    border-top: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='10'%3E%3Cpath d='M0 6 Q20 1 40 6 Q60 11 80 6' fill='none' stroke='%23f15b27' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 80px 10px;
    background-position: top left;
    padding-top: 2rem;
    padding-left: 0;
  }
  .project-images-grid--two-column { grid-template-columns: 1fr; }
  .project-hero-image img { max-height: 320px; }
  .project-nav-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .project-nav-link--next {
    text-align: left;
    margin-left: 0;
  }
}
