/* ===== FONTS ===== */
@font-face {
  font-family: 'Aeonik';
  font-weight: 400;
  font-style: normal;
  src: local('Aeonik Regular'), local('Aeonik-Regular');
}

@font-face {
  font-family: 'Aeonik';
  font-weight: 500;
  font-style: normal;
  src: local('Aeonik Medium'), local('Aeonik-Medium');
}

@font-face {
  font-family: 'GT Alpina Condensed';
  font-weight: 100;
  font-style: normal;
  src: local('GT Alpina Condensed Thin'), local('GTAlpina-CondensedThin');
}

@font-face {
  font-family: 'GT Alpina Condensed';
  font-weight: 300;
  font-style: italic;
  src: local('GT Alpina Condensed Light Italic'), local('GTAlpina-CondensedLightItalic');
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: auto;
}

body {
  font-family: 'Aeonik', 'Helvetica Neue', Arial, sans-serif;
  background: #f4f4f4;
  color: #171515;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: visible;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --off-black: #171515;
  --off-white: #f4f4f4;
  --purple: #a4a4ff;
  --white: #ffffff;
  --light-green: #d5fcda;
  --content-width: 1140px;
  --side-padding: 150px;
}

/* ===== SPACERS ===== */
.spacer-s { height: 70px; }
.spacer-n { height: 100px; }
.spacer-l { height: 150px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 25px 50px;
  background: #f4f4f4;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo img {
  width: 59px;
  height: 20px;
}

.nav-links {
  display: flex;
  gap: 40px;
  font-size: 16px;
  line-height: 1;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--purple);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px 9px;
}

.nav-avatar img {
  width: 28px;
  height: 23px;
  object-fit: cover;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 54px;
  height: 792px;
  padding-bottom: 120px;
}

.hero-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-style: normal;
  font-size: 160px;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -3.2px;
  max-width: 1141px;
}

.hero-subtitle {
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
}

.hero-context {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--side-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-context-left {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  max-width: 586px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.3;
  max-width: 371px;
}

.hero-arrow {
  width: 29px;
  height: 48px;
  flex-shrink: 0;
}

.btn-text {
  font-family: 'Aeonik', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: var(--off-black);
}

.btn-text:hover {
  opacity: 0.7;
}

/* ===== SECTION HEADING ===== */
.section-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  max-width: 758px;
}

.section-heading em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 300;
  font-style: italic;
}

.section-heading-light {
  color: var(--off-white);
}

/* ===== LINK ARROW ===== */
.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.link-arrow:hover {
  opacity: 0.7;
}

.link-arrow-light {
  color: #fff;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 0;
}

.audience-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.audience-header .section-heading {
  max-width: 758px;
}

.audience-cards {
  display: flex;
  gap: 31px;
  padding: 56px var(--side-padding) 0;
  overflow-x: auto;
  overflow-y: clip;
  text-transform: uppercase;
  max-width: 1440px;
  margin: 0 auto;
}

.audience-cards::-webkit-scrollbar {
  display: none;
}

.audience-card {
  flex-shrink: 0;
  width: 677px;
  height: 413px;
  background: var(--white);
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.8px;
}

.audience-card-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.2px;
}

/* ===== BDB SECTION ===== */
.bdb {
  background: var(--off-black);
}

.bdb-context {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.bdb-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 100px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--off-white);
  max-width: 893px;
}

.bdb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 100%;
}

.bdb-bubble {
  background: var(--white);
  border-radius: 45px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
}

.bdb-bubble-featured {
  background: var(--purple);
  grid-column: 1;
  grid-row: 1;
  min-height: 454px;
  gap: 28px;
}

.bdb-bubble-label {
  font-size: 17px;
  line-height: 1;
}

.bdb-bubble-desc {
  font-size: 14px;
  line-height: 1.2;
}

.bdb-bubble-featured .bdb-bubble-desc {
  font-size: 16px;
  line-height: 1.2;
}

/* ===== IMPACT ===== */
.bdb-impact {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.impact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.impact-header .section-heading {
  max-width: 697px;
}

.impact-metrics {
  display: flex;
  align-items: flex-start;
  gap: 0;
  height: 154px;
}

.impact-metric {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 100%;
}

.impact-metric p {
  font-size: 20px;
  line-height: 1.2;
  color: var(--off-white);
}

.impact-divider {
  width: 1px;
  height: 100%;
  background: rgba(244, 244, 244, 0.3);
  flex-shrink: 0;
}

/* ===== CASES ===== */
.cases {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cases-header .section-heading {
  max-width: 757px;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 68px;
}

.case-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.case-info {
  width: 419px;
  height: 658px;
  background: var(--white);
  border-radius: 5px 0 0 5px;
  padding: 50px;
  flex-shrink: 0;
}

.case-info-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.case-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-name {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -1.2px;
}

.case-context {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-desc {
  font-size: 20px;
  line-height: 1.3;
}

.case-tags {
  display: flex;
  gap: 14px;
}

.tag {
  display: inline-block;
  background: var(--light-green);
  border-radius: 44px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.case-results {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-results-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.case-results-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.case-result {
  display: flex;
  align-items: center;
  gap: 24px;
}

.case-result-number {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-result-text {
  font-size: 16px;
  line-height: 1.3;
  max-width: 218px;
}

.case-image {
  width: 720px;
  height: 658px;
  border-radius: 0 5px 5px 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-image-arrow {
  position: absolute;
  width: 136px;
  height: 136px;
  border-radius: 81px;
  background: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 249px;
  left: 354px;
}

.case-image-arrow img {
  width: 48px;
  height: 29px;
  transform: rotate(-90deg);
}

/* ===== CTA ===== */
.cta-section {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.cta-box {
  background: var(--purple);
  border-radius: 0;
  padding: 60px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.cta-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1.2px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-black);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.btn-dark:hover {
  opacity: 0.9;
}

/* ===== REVIEWS ===== */
.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 74px;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: var(--content-width);
}

.reviews-header .section-heading {
  max-width: 469px;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-page-current,
.reviews-page-total {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.reviews-page-line {
  width: 30px;
  height: 1px;
  background: var(--off-black);
  margin: 0 10px;
}

.reviews-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: clip;
  padding-left: calc((100% - var(--content-width)) / 2 + var(--content-width) - 582px);
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 26px;
  height: 433px;
  align-items: center;
}

.review-card {
  width: 582px;
  height: 100%;
  background: var(--white);
  border-radius: 5px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 46px;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-avatar {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  flex-shrink: 0;
}

.review-author-info {
  font-size: 20px;
  line-height: 1.3;
}

.review-quote {
  font-size: 30px;
  line-height: 1.2;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--off-black);
  padding: 150px var(--side-padding) 50px;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 82px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 101px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex-shrink: 0;
}

.footer-heading {
  font-size: 40px;
  line-height: 1.2;
  color: var(--off-white);
  max-width: 385px;
}

.footer-heading em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-style: italic;
}

.footer-columns {
  display: flex;
  gap: 23px;
  flex: 1;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.footer-col-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 23px;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  opacity: 0.5;
}

.footer-col-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-divider {
  width: var(--content-width);
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-logo {
  width: 1138px;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1139px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  opacity: 0.5;
}

.back-to-top {
  opacity: 1;
}

.back-to-top:hover {
  opacity: 0.8;
}

/* ===== NAV CURRENT ===== */
.nav-current {
  font-size: 16px;
  line-height: 1;
  cursor: default;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 0 150px 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-intro-text {
  font-size: 40px;
  line-height: 1.2;
  max-width: 946px;
}

.about-intro-text em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 300;
  font-style: italic;
}

.about-hero-image {
  padding: 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-hero-image img {
  width: 100%;
  height: 631px;
  object-fit: cover;
  border-radius: 5px;
}

/* Who We Are */
.about-who {
  padding: 10px 150px 10px 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-who-inner {
  display: flex;
  gap: 207px;
  align-items: flex-start;
  max-width: 946px;
}

.about-who-title {
  font-size: 40px;
  line-height: 1.2;
  width: 278px;
  flex-shrink: 0;
}

.about-who-text {
  font-size: 20px;
  line-height: 1.3;
  flex: 1;
}

/* How We Think */
.about-how {
  padding: 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-how-inner {
  display: flex;
  gap: 46px;
  max-width: 946px;
}

.about-how-left {
  display: flex;
  flex-direction: column;
  gap: 104px;
  flex-shrink: 0;
}

.about-how-title {
  font-size: 40px;
  line-height: 1.2;
  width: 278px;
}

.about-how-illustration {
  width: 436px;
  height: 413px;
}

.about-how-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about-how-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 454px;
}

.about-how-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-how-heading {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.about-how-desc {
  font-size: 20px;
  line-height: 1.3;
}

/* Images Grid */
.about-images {
  padding: 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-images-grid {
  position: relative;
  width: 1134px;
  height: 1185px;
}

.about-img {
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-1 {
  width: 595px;
  height: 476px;
  left: 0;
  top: 0;
}

.about-img-2 {
  width: 462px;
  height: 648px;
  left: 672px;
  top: 210px;
}

.about-img-3 {
  width: 398px;
  height: 580px;
  left: 115px;
  top: 605px;
}

/* ===== TEAM SECTION ===== */
.team-wrapper {
  position: relative;
  background: #e2f0fd;
  padding-top: 100px;
}

.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.team-title-container {
  position: relative;
  text-align: center;
  transition: filter 0.3s ease, opacity 0.3s ease;
  z-index: 1;
}

.team-title-container.is-fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.team-title-container.is-bottom {
  position: absolute;
  bottom: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.team-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 160px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -3.2px;
  color: var(--off-black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-title-line.revealed {
  opacity: 1;
  transform: translateY(0);
}

.team-title-gap {
  display: inline-block;
  width: 80px;
}

.team-founder-link {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  position: absolute;
  right: -100px;
  bottom: 0;
}

.team-subtitle {
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  max-width: 433px;
  color: var(--off-black);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Team Grid */
.team-grid {
  position: relative;
  width: 1140px;
  height: 2074px;
  margin: 0 auto;
  z-index: 2;
}

.team-member {
  position: absolute;
  width: 267px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.team-portrait {
  width: 100%;
  aspect-ratio: 1080 / 1350;
  overflow: hidden;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 20px;
  line-height: 1.3;
}

.team-role {
  font-size: 20px;
  line-height: 1.3;
  opacity: 0.5;
}

/* Join Us CTA */
.team-join {
  background: #e2f0fd;
  padding: 0 150px;
}

.team-join-inner {
  width: 100%;
}

.team-join-box {
  background: var(--white);
  border-radius: 5px;
  padding: 60px 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.team-section-spacer {
  height: 100px;
  background: #e2f0fd;
}

/* ===== INSIGHTS ===== */
.insights {
  padding: 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.insights-header .section-heading {
  max-width: 757px;
}

.insights-grid {
  display: flex;
  gap: 24px;
  margin-top: 74px;
}

.insight-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 558px;
}

.insight-image {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insight-title {
  font-size: 20px;
  line-height: 1.3;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.insight-tag {
  display: inline-block;
  background: var(--white);
  border-radius: 44px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.insight-time {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

/* ===== APPROACH PAGE ===== */

/* Nav variant with wordmark */
.nav-approach .nav-inner {
  gap: 222px;
}

.nav-approach .nav-logo-wordmark img {
  width: 256px;
  height: 26px;
}

/* Hero */
.approach-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  min-height: 100vh;
  justify-content: flex-end;
}

.approach-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 50px;
}

.approach-hero-line {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 160px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -3.2px;
  text-align: center;
}

.approach-hero-line-1 {
  align-self: center;
  transform: translateX(-12%);
}

.approach-hero-line-2 {
  align-self: center;
  transform: translateX(20%);
}

.approach-hero-line-3 {
  align-self: center;
  transform: translateX(6%);
  position: relative;
}

.approach-reg {
  font-family: 'Aeonik', sans-serif;
  font-size: 36px;
  line-height: 1;
  position: absolute;
  top: 0;
  margin-left: 4px;
}

.approach-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 var(--side-padding);
  margin: 0 auto;
}

.approach-intro-text {
  font-size: 40px;
  line-height: 1.2;
  max-width: 757px;
}

.approach-intro-text em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 300;
  font-style: italic;
}

/* Scheme - Three Circles */
.approach-scheme {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.approach-scheme-circles {
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle {
  width: 386px;
  height: 386px;
  border-radius: 50%;
  border: 1px solid var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -44px;
  flex-shrink: 0;
}

.approach-circle:last-child {
  margin-right: 0;
}

.approach-circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  width: 230px;
}

.approach-circle-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.approach-circle-desc {
  font-size: 16px;
  line-height: 1.3;
}

/* Big Quote */
.approach-quote {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.approach-quote-text {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 100px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2px;
  max-width: 1030px;
}

/* Context (Dark Section) */
.approach-context {
  background: var(--off-black);
}

.approach-context-intro {
  display: flex;
  justify-content: center;
}

.approach-context-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 100px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: var(--off-white);
  max-width: 1030px;
}

/* Phase Cards */
.approach-phases {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.approach-phases-stack {
  display: flex;
  flex-direction: column;
  gap: 31px;
  align-items: center;
  width: 100%;
}

.approach-phase-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  width: 559px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.approach-phase-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--off-black);
}

.approach-phase-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approach-phase-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: var(--off-black);
}

.approach-phase-desc {
  font-size: 20px;
  line-height: 1.3;
  color: var(--off-black);
}

/* Overview Grid */
.approach-overview {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.approach-overview-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approach-overview-row {
  display: flex;
  gap: 31px;
}

.approach-overview-card {
  flex: 1;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  min-height: 306px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--off-black);
}

/* Impact Focus */
.approach-impact {
  background: var(--off-black);
}

.approach-impact-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.approach-impact-carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: clip;
  padding-left: calc(50% - 300px);
}

.approach-impact-carousel::-webkit-scrollbar {
  display: none;
}

.approach-impact-track {
  display: flex;
  gap: 160px;
  height: 384px;
  align-items: center;
  padding-right: 80px;
}

.approach-impact-item {
  width: 600px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  text-align: center;
  color: var(--off-white);
  opacity: 0.2;
}

.approach-impact-item-active {
  opacity: 1;
}

.approach-impact-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.approach-impact-desc {
  font-size: 20px;
  line-height: 1.3;
  max-width: 523px;
}

/* Approach CTA */
.approach-cta {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

.approach-cta-box {
  background: var(--purple);
  border-radius: 10px;
  padding: 60px 150px;
  display: flex;
  justify-content: center;
}

.approach-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 744px;
}

.approach-cta-title {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 100;
  font-size: 60px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -1.2px;
  color: var(--off-black);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  color: var(--off-black);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-light:hover {
  opacity: 0.9;
}

/* Footer legal policies inline */
.footer-legal-policies {
  display: flex;
  gap: 20px;
}

/* ===== SECTION FADE TRANSITION ===== */
.section-fade-to-dark {
  height: 150px;
  background: linear-gradient(to bottom, var(--off-white) 0%, var(--off-black) 100%);
}

.section-fade-to-light {
  height: 150px;
  background: linear-gradient(to bottom, var(--off-black) 0%, var(--off-white) 100%);
}

/* ===== CONTACT PAGE ===== */
.contact-intro {
  padding: 0 150px 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-intro-text {
  font-size: 40px;
  line-height: 1.2;
  max-width: 946px;
}

.contact-intro-text em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 300;
  font-style: italic;
}

/* Contact Form */
.contact-form-section {
  padding: 0 246px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form-row {
  display: flex;
  gap: 25px;
}

.contact-form-row-full {
  width: 100%;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.contact-field-full {
  width: 100%;
}

.contact-label {
  font-size: 16px;
  line-height: 1.3;
  color: var(--off-black);
}

.contact-input {
  background: var(--off-white);
  border: 1px solid #c8c7c7;
  border-radius: 5px;
  padding: 20px;
  font-family: 'Aeonik', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--off-black);
  outline: none;
  width: 100%;
}

.contact-input::placeholder {
  color: #c8c7c7;
}

.contact-input:focus {
  border-color: var(--off-black);
}

.contact-textarea {
  background: var(--off-white);
  border: 1px solid #c8c7c7;
  border-radius: 5px;
  padding: 20px;
  font-family: 'Aeonik', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--off-black);
  outline: none;
  width: 100%;
  height: 288px;
  resize: vertical;
}

.contact-textarea:focus {
  border-color: var(--off-black);
}

.contact-form .btn-dark {
  align-self: flex-start;
}

/* Contact CTA */
.contact-cta-section {
  padding: 0 var(--side-padding);
  max-width: 1440px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info-section {
  padding: 0 150px 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-info-inner {
  display: flex;
  gap: 207px;
  align-items: flex-start;
}

.contact-info-title {
  font-size: 40px;
  line-height: 1.2;
  width: 278px;
  flex-shrink: 0;
}

.contact-info-title em {
  font-family: 'GT Alpina Condensed', Georgia, serif;
  font-weight: 300;
  font-style: italic;
}

.contact-info-details {
  font-size: 20px;
  line-height: 1.3;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Contact Image */
.contact-image-section {
  padding: 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-image-section img {
  width: 100%;
  aspect-ratio: 2500 / 1406;
  object-fit: cover;
  border-radius: 5px;
}

/* Careers */
.contact-careers {
  padding: 0 150px 0 150px;
  max-width: 1440px;
  margin: 0 auto;
}

.contact-careers-inner {
  display: flex;
  gap: 207px;
  align-items: flex-start;
}

.contact-careers-title {
  font-size: 40px;
  line-height: 1.2;
  width: 278px;
  flex-shrink: 0;
}

.contact-careers-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-careers-text {
  font-size: 20px;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
