/* Loader styling */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* Spinner */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255,255,255,0.3);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Content reveal */
#content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

#content.show {
  opacity: 1;
  visibility: visible;
}

/* General section background */
.stand-for {
    background-color: rgba(206, 213, 241, 0.771);
    backdrop-filter: blur(10px);
    padding: 60px 80px;
    color: #222;
}

/* Flexbox container for 3 columns */
.stand-for-container {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr; /* Left narrow, middle & right wider */
  gap: 40px;
  align-items: start;
}

/* Left big heading */
.stand-for-left h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -1px;
}

/* Middle content */
.stand-for-middle {
  font-size: 18px;
  line-height: 1.6;
}
.stand-for-middle .philosophy-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.stand-for-middle hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #999;
}
.signature h3 {
  font-size: 36px;
  font-family: "Georgia", serif;
}
.signature span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0.5px;
  color: #444;
}

/* Right image + values */
.stand-for-right img {
  max-width: 100%;
  display: block;
  margin-bottom: 30px;
}
.key-values h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.key-values ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.key-values li {
  border-bottom: 1px solid #222;
  padding: 8px 0;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .stand-for-container {
    grid-template-columns: 1fr; /* stack */
    gap: 20px;
  }
  .stand-for-left h2 {
    font-size: 48px;
    text-align: center;
  }
  .stand-for-middle,
  .stand-for-right {
    text-align: center;
  }

  .hero-cta > .btn { font-size: 0.8rem; }

}


@media (max-width: 600px) {

  .hero-cta {
  justify-content: center; 
  transform: translateX(16px);
  }
}

@media (max-width: 500px) {

  .hero-cta {
  transform: translateX(12px);
  }

  footer.site-footer .footer-grid p.brand.small {
    font-size: 1.1rem; transform: translateY(10px); }
}