/* Project Page Styles */

/* Project Hero Section */
.project-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8em 2.5em 2.4em;
}

.project-hero__container {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
  text-align: center;
}

.project-hero__title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0;
  padding: 0;
}

.project-hero__subtitle {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 25px auto 0;
  padding: 0;
  max-width: 600px;
  text-align: center;
}

/* Project Meta Information */
.project-meta {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 3em 2.5em 5em;
}

.project-meta__container {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.project-meta__grid {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16em;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.project-meta__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.project-meta__values {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 0.5em;
  width: 100%;
}

.project-meta__label {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0;
  position: relative;
  padding-bottom: 1.5em;
  display: inline-block;
  width: auto;
}


.project-meta__value {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.8125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.1;
  margin: 0;
  text-align: left;
  width: 100%;
}

.project-meta__value:not(:last-child) {
  margin-bottom: 0.35em;
}

.project-meta__live {
  display: flex;
  align-items: center;
}

.project-meta__live-link {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 300;
  color: #FFFFFF;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.project-meta__live-arrow {
  font-size: 1.2em;
  transform: rotate(-45deg);
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .project-meta__container {
    flex-direction: column;
    gap: 2em;
  }

  .project-meta__grid {
    grid-template-columns: repeat(2, max-content);
    gap: 6em;
    width: 100%;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .project-meta {
    padding: 4em 1.5em;
  }

  .project-meta__grid {
    grid-template-columns: 1fr;
    gap: 3em;
  }

  .project-meta__label {
    font-size: 0.8125em;
    padding-bottom: 1.25em;
  }

  .project-meta__value {
    font-size: 0.75em;
  }

  .project-meta__values {
    margin-top: 0.75em;
  }
}

/* Project Content */
.project-content {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0;
}

.project-content__container {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
}

.project-content__hero-image {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.project-content__hero-image:not(:last-child) {
  margin-bottom: 2em;
}

.project-content__spacing {
  height: 2em;
  width: 100%;
}

.project-content__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-content__text {
  width: 100%;
  padding: 6em 2.5em;
  max-width: 900px;
  margin: 0 auto;
}

.project-content__text-block {
  margin-bottom: 3em;
}

.project-content__text-block .project-content__paragraph:not(:last-child) {
  margin-bottom: 0.35em;
}

.project-content__text-block:last-child {
  margin-bottom: 0;
}

.project-content__heading {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.8375em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0;
  position: relative;
  padding-bottom: 1.5em;
  display: inline-block;
  width: auto;
}


.project-content__paragraph {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  text-align: left;
  width: 100%;
}

/* Intro Text Layout */
.project-content__intro-text {
  width: 100%;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 3em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: flex-start;
}

.project-content__intro-paragraph {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
  text-align: left;
  width: 100%;
}

.project-content__skip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  color: #FF6B35;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  margin-top: 0.5em;
}

.project-content__skip-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.project-content__skip-text {
  color: #FF6B35;
  line-height: 1;
}

.project-content__skip-arrow {
  width: 16px;
  height: 16px;
  color: #FF6B35;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.project-content__skip-link:hover .project-content__skip-arrow {
  transform: translateY(2px);
}

.project-content__gallery {
  width: 100%;
  padding: 0 2.5em 6em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}

.project-content__gallery-item {
  width: 100%;
  overflow: hidden;
}

.project-content__gallery-item--full {
  grid-column: 1 / -1;
}

/* New Layout Style - Two Column with Large Title */
.project-content__layout-two-column {
  width: 100%;
  padding: 6em 2.5em;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: start;
}

.project-content__layout-header {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  margin: 0 0 2em 0;
  text-transform: none;
  grid-column: 1 / -1;
}

.project-content__layout-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.project-content__layout-title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: block;
}

.project-content__layout-title-line {
  display: block;
}

.project-content__layout-content {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: flex-start;
}

.project-content__layout-paragraph {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
  text-align: left;
  width: 100%;
}

/* Full Width Two Column Layout */
.project-content__layout-full-width {
  width: 100%;
  padding: 6em 2.5em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6em;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.project-content__layout-full-width .project-content__layout-header {
  grid-column: 1;
  margin-bottom: 3em;
}

.project-content__layout-full-width .project-content__layout-title-wrapper {
  grid-column: 1;
}

.project-content__layout-full-width .project-content__layout-content {
  grid-column: 2;
}

/* Single Column Text Layout (Centered) */
.project-content__layout-centered {
  width: 100%;
  padding: 6em 2.5em;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3em;
}

.project-content__layout-centered .project-content__layout-header {
  text-align: center;
  margin-bottom: 0;
}

.project-content__layout-centered .project-content__layout-title-wrapper {
  align-items: center;
  text-align: center;
}

.project-content__layout-centered .project-content__layout-title {
  text-align: center;
}

.project-content__layout-centered .project-content__layout-content {
  align-items: center;
  text-align: center;
}

.project-content__layout-centered .project-content__layout-paragraph {
  text-align: center;
}

/* List Style Layout */
.project-content__process-section {
  width: 100%;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 3em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.project-content__process-title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 2em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0 0 1.5em 0;
  padding: 0;
  display: block;
  width: 100%;
}

.project-content__process-intro {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 2em 0;
  text-align: left;
  width: 100%;
}

.project-content__process-subheading {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 1em 0;
  text-align: left;
  width: 100%;
}

.project-content__process-subheading strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.project-content__process-followup {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 2em 0 0 0;
  text-align: left;
  width: 100%;
}

.project-content__layout-list {
  width: 100%;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.project-content__process-section .project-content__layout-list {
  padding: 0;
  margin: 0;
  gap: 1em;
}

.project-content__layout-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}

.project-content__layout-list-arrow {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  flex-shrink: 0;
  line-height: 1.8;
}

.project-content__layout-list-text {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* Metrics Section */
.project-content__metrics-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4em 2.5em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  max-width: none;
}

.project-content__metrics-title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 2em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 0 auto 2em;
  padding: 0;
  display: block;
  width: 100%;
  max-width: 1400px;
}

.project-content__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3em 4em;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.project-content__metrics-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
}

.project-content__metrics-arrow {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0;
  flex-shrink: 0;
  line-height: 1.8;
}

.project-content__metrics-text {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.9125em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.project-content__metrics-text strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Subheading Style */
.project-content__layout-subheading {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 1.125em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  margin: 0 0 1em 0;
}

@media screen and (max-width: 1200px) {
  .project-content__layout-two-column,
  .project-content__layout-full-width {
    grid-template-columns: 1fr;
    gap: 3em;
  }

  .project-content__layout-full-width .project-content__layout-header,
  .project-content__layout-full-width .project-content__layout-title-wrapper,
  .project-content__layout-full-width .project-content__layout-content {
    grid-column: 1;
  }

  .project-content__metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 3em;
  }
}

@media screen and (max-width: 768px) {
  .project-content__text {
    padding: 4em 1.5em;
  }

  .project-content__intro-text {
    padding: 0;
    margin: 0 auto 2em;
    gap: 1em;
  }

  .project-content__intro-paragraph {
    font-size: 0.875em;
    line-height: 1.7;
  }

  .project-content__skip-link {
    font-size: 0.875em;
  }

  .project-content__container {
    padding: 0 1.5em;
  }

  .project-content__gallery {
    grid-template-columns: 1fr;
    padding: 0 1.5em 4em;
    gap: 1.5em;
  }

  .project-content__layout-two-column,
  .project-content__layout-full-width,
  .project-content__layout-centered,
  .project-content__layout-list {
    padding: 4em 1.5em;
    gap: 2em;
  }

  .project-content__layout-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .project-content__process-section {
    padding: 0 1.5em;
  }

  .project-content__metrics-section {
    padding: 4em 1.5em;
  }

  .project-content__metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .project-content__metrics-title {
    font-size: 1.75em;
    margin-bottom: 1.5em;
  }
}

/* Project Navigation */
.project-navigation {
  position: relative;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  padding: 6em 2.5em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-navigation__container {
  width: 100%;
  max-width: 2186px;
  margin: 0 auto;
}

.project-navigation__link {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-decoration: none;
  color: #FFFFFF;
}

.project-navigation__label {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-navigation__title {
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  display: inline-block;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .project-navigation {
    padding: 4em 1.5em;
  }
}

