/* Home Page Specific Styles */
.stationary-gallery .project-item {
  position: relative;
}

.stationary-gallery .project-info {
  position: absolute !important;
  bottom: 2rem !important;
  right: 2rem !important;
  text-align: right !important;
  margin-top: 0 !important;
  z-index: 5;
  pointer-events: none;
}

.stationary-gallery .project-image-wrapper {
  position: relative;
}

.stationary-gallery .project-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 4rem;
}

.philosophy-title {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  opacity: 0.3;
  margin-bottom: 2rem;
  display: block;
}

.about-stats-row {
  display: flex;
  justify-content: space-between;
  padding: 8rem 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  max-width: var(--container-width);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-english);
  font-size: 2.22rem;
  font-weight: 200;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.5;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  align-items: center;
  justify-items: center;
  margin-top: 4rem;
}

.client-box {
  opacity: 0.45;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(1);
  text-align: center;
  padding: 1rem;
}

.client-box:hover {
  opacity: 1;
  transform: translateY(-8px);
  filter: grayscale(0);
}

.client-name {
  font-family: var(--font-english);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: white;
  text-transform: uppercase;
  display: block;
}

.client-sub {
  font-family: var(--font-english);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  opacity: 0.4;
  margin-top: 0.75rem;
  display: block;
}

.status-container-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pulsating-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 15px #4ade80;
}

.pulsating-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-anim 2.5s infinite;
}

@keyframes pulse-anim {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.status-label-bold {
  font-family: var(--font-english);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: white;
  text-transform: uppercase;
}

.time-display {
  font-family: var(--font-english);
  font-size: 5rem;
  font-weight: 100;
  color: white;
  opacity: 1;
  letter-spacing: -3px;
  margin-top: 0.5rem;
  line-height: 1;
}

.location-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--text-secondary);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
  font-family: var(--font-english);
}

.coords-label {
  font-family: var(--font-english);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.4;
  margin-top: 2rem;
  display: block;
}

.venture-strip-container {
  display: flex;
  gap: 2rem;
  padding: 0 10%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.venture-strip-container::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 450px;
  height: 550px;
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0a0a0a;
  cursor: pointer;
}

.news-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.35;
  filter: grayscale(1);
}

.news-card:hover .news-card-img {
  transform: scale(1.1);
  opacity: 0.6;
  filter: grayscale(0.2);
}

.news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  z-index: 2;
  text-align: right;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.news-tag {
  font-family: var(--font-english);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.news-date {
  font-family: var(--font-english);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
  opacity: 0.3;
  color: white;
  text-transform: uppercase;
}

.cta-button:hover .cta-text-main {
  opacity: 0 !important;
  transform: translateY(-25px) !important;
}

.cta-button:hover .cta-text-hover {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cta-button:hover {
  background: white !important;
  color: black !important;
  border-color: white !important;
}

.footer-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 200;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
  display: inline-block;
}

.footer-link:hover {
  opacity: 1;
  transform: translateX(-10px);
  color: white;
}

.footer-col-title {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-secondary);
  opacity: 0.6;
  font-family: var(--font-english);
}

.footer-active {
  color: white !important;
  opacity: 1 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}

@media (max-width: 900px) {
  .studio-status-section {
    flex-direction: column-reverse;
    gap: 6rem;
    text-align: center;
    padding: 10rem 5%;
  }
  .status-container-inner {
    justify-content: center;
  }
  .time-info {
    width: 100%;
    text-align: center !important;
  }
  .status-info {
    width: 100%;
    text-align: center !important;
  }
  .time-display {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .news-card {
    flex: 0 0 85vw;
    height: 450px;
  }
}
