/* --- THE GLOBAL CONTAINER --- */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

/* --- GLOBAL LAYOUT HELPERS --- */
.text-center {
  text-align: center;
  justify-content: center;
}

/* --- GLOBAL SECTION SPACING --- */
.section {
  padding: 180px 0;
  border-top: 1px solid var(--hairline);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

/* --- LEADERSHIP EDITORIAL SECTION --- */
.leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.leader-intro {
  max-width: 450px;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  align-items: start;
}
.leader-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
}
.leader-card.offset-down {
  transform: translateY(40px);
}
.leader-image {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--black);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-bottom: 25px;
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition);
}
.leader-card:hover .leader-image img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.leader-info h4 {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.leader-info p {
  font-size: 0.8rem;
  color: var(--grey);
}

/* Values Grid Structure */
.values-list {
  margin-top: 50px;
}
.value-row {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 3fr;
  padding: 40px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: var(--transition);
}
.value-row:hover {
  padding-left: 20px;
  background-color: rgba(255, 255, 255, 0.01);
}
.v-num {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--grey);
}
.v-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.v-desc {
  font-size: 0.95rem;
  color: var(--grey);
  font-weight: 300;
}

/* Stats Counter Grid */
.stats-section {
  padding: 100px 0;
}
.stats-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stat-box h3 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 15px;
}
.stat-box p {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}

/* --- THE CTA SECTION CENTERING RULES --- */
.final-portfolio-cta h2,
.final-case-cta h2,
.final-about-cta h2,
.final-services-cta h2 {
  text-align: center;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--grey);
  margin: 0 auto 40px auto; 
  max-width: 500px; 
  text-align: center;
  font-weight: 300;
}
.portfolio-cta-btns,
.case-cta-btns,
.about-cta-btns,
.services-cta-btns {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* --- FOOTER --- */
footer {
  padding: 60px 0;
  opacity: 0.4;
  font-size: 0.7rem;
  border-top: 1px solid var(--hairline);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}