/* =========================================================
   PT MUDA JAYA MULTINIAGA
   HOME PAGE
   ========================================================= */


/* =========================================================
   01. HERO
   ========================================================= */

.home-hero {
  position: relative;

  width: 100%;
  min-height: max(
    620px,
    calc(100svh - var(--header-height))
  );

  overflow: hidden;

  background-color: var(--color-black);
  color: var(--color-white);
}


/* =========================================================
   HERO BACKGROUND
   ========================================================= */

.home-hero__media {
  position: absolute;
  inset: 0;

  z-index: 0;
}


/* =========================================================
   HERO CAROUSEL SLIDES
   ========================================================= */

.home-hero__slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0;

  transform: scale(1);

  pointer-events: none;

  transition:
    opacity 900ms var(--ease-smooth);
}

.home-hero__slide.is-active {
  opacity: 1;

  animation:
    hero-image-zoom 6s linear forwards;
}

@keyframes hero-image-zoom {

  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }

}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.home-hero__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background-color: rgba(0, 0, 0, 0.40);
}

.home-hero__overlay::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.02) 35%,
      rgba(0, 0, 0, 0.42) 100%
    );
}


/* =========================================================
   HERO INNER
   ========================================================= */

.home-hero__inner {
  position: relative;

  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(420px, 0.75fr);
  grid-template-rows:
    1fr
    auto;

  column-gap: 60px;

  min-height: max(
    620px,
    calc(100svh - var(--header-height))
  );

  padding-top: 90px;
  padding-bottom: 28px;
}


/* =========================================================
   HERO COPY
   ========================================================= */

.home-hero__content {
  align-self: center;

  max-width: 720px;
}

.home-hero__title {
  max-width: 720px;

  font-size:
    clamp(
      2.8rem,
      3.6vw,
      3.75rem
    );

  line-height: 1.40;
  letter-spacing: -0.015em;
  font-weight: 600;

  white-space: pre-line;
}

.home-hero__description {
  max-width: 500px;

  margin-top: 28px;

  font-size: 0.95rem;
  line-height: 1.75;

  color: rgba(255, 255, 255, 0.92);
}


/* =========================================================
   HERO CTA
   ========================================================= */

.btn--hero {
  min-height: 42px;

  margin-top: 70px;
  padding-inline: 18px;

  border-radius: var(--radius-pill);

  background-color: rgba(0, 0, 0, 0.88);
  color: var(--color-white);

  font-size: 0.78rem;
  font-weight: 500;

  transition:
    background-color var(--duration-fast) var(--ease-smooth),
    transform var(--duration-fast) var(--ease-standard);
}

.btn--hero:hover {
  background-color: var(--color-green);

  transform: translateY(-2px);
}


/* =========================================================
   HERO STATISTICS
   ========================================================= */

.home-hero__stats {
  align-self: end;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 34px;

  padding-bottom: 76px;
}

.hero-stat {
  display: flex;
  flex-direction: column;

  gap: 8px;
}

.hero-stat__number {
  color: var(--color-white);

  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-stat__label {
  color: rgba(255, 255, 255, 0.92);

  font-size: 0.72rem;
  line-height: 1.4;
}


/* =========================================================
   HERO PROJECT CAROUSEL NAVIGATION
   ========================================================= */

.home-hero__navigation {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 36px;

  margin-top: 100px;
}

.hero-project {
  position: relative;

  display: grid;
  grid-template-columns:
    auto
    1fr;
  align-items: center;

  column-gap: 7px;

  padding: 0 0 13px;

  color: rgba(255, 255, 255, 0.72);

  text-align: left;

  transition:
    color var(--duration-fast) var(--ease-smooth);
}

.hero-project__dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background-color: var(--color-gold);
}

.hero-project__name {
  overflow: hidden;

  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.25;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.hero-project__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 1px;

  overflow: hidden;

  background-color: rgba(255, 255, 255, 0.45);
}

.hero-project__line::after {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 0%;
  height: 100%;

  background-color: var(--color-white);
}

.hero-project.is-active {
  color: var(--color-white);
}

.hero-project.is-active .hero-project__line {
  background-color: rgba(255, 255, 255, 0.75);
}

.hero-project.is-active .hero-project__line::after {
  animation:
    hero-progress 6s linear forwards;
}

.hero-project:hover {
  color: var(--color-white);
}

@keyframes hero-progress {

  from {
    width: 0%;
  }

  to {
    width: 100%;
  }

}


/* =========================================================
   02. ABOUT MJM
   ========================================================= */

.home-about {
  position: relative;

  width: 100%;

  padding:
    96px
    0
    110px;

  background-color: var(--color-white);
  color: var(--color-black);
}

.home-about__inner {
  display: flex;
  flex-direction: column;
}


/* =========================================================
   ABOUT — SECTION LABEL
   ========================================================= */

.home-about__label {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 44px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 500;
}

.home-about__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   ABOUT — MAIN GRID
   ========================================================= */

.home-about__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(420px, 0.95fr);

  align-items: start;

  column-gap: 110px;
}


/* =========================================================
   ABOUT — LEFT CONTENT
   ========================================================= */

.home-about__left {
  min-width: 0;
}

.home-about__title {
  max-width: 570px;

  font-size:
    clamp(
      2.45rem,
      3.15vw,
      3.35rem
    );

  line-height: 1.40;
  letter-spacing: -0.015em;
  font-weight: 600;

  white-space: pre-line;
}


/* =========================================================
   ABOUT — VALUE POINTS
   ========================================================= */

.home-about__values {
  display: grid;
  grid-template-columns:
    repeat(3, max-content);

  gap: 46px;

  margin-top: 52px;
}

.home-about__value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  margin-bottom: 13px;
}

.home-about__value-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.home-about__value strong {
  margin-bottom: 5px;

  color: var(--color-black);

  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
}

.home-about__value span {
  color: var(--color-grey-500);

  font-size: 0.62rem;
  line-height: 1.4;
}


/* =========================================================
   ABOUT — RIGHT CONTENT
   ========================================================= */

.home-about__right {
  padding-top: 4px;
}

.home-about__copy {
  max-width: 520px;
}

.home-about__copy p {
  color: var(--color-grey-700);

  font-size: 0.82rem;
  line-height: 1.78;
}

.home-about__copy p + p {
  margin-top: 22px;
}

.home-about__button {
  align-self: flex-start;

  min-height: 38px;

  margin-top: 68px;
  padding-inline: 18px;

  font-size: 0.7rem;
}


/* =========================================================
   03. CORE SERVICES
   ========================================================= */

.home-services {
  position: relative;

  width: 100%;

  padding:
    84px
    0
    110px;

  overflow: hidden;

  background-color: #050505;
  color: var(--color-white);
}

.home-services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* =========================================================
   SERVICES — SECTION LABEL
   ========================================================= */

.home-services__label {
  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 500;
}

.home-services__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   SERVICES — TITLE
   ========================================================= */

.home-services__title {
  max-width: 860px;

  margin-top: 38px;

  color: var(--color-white);

  font-size:
    clamp(
      1.45rem,
      2vw,
      1.9rem
    );

  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;

  text-align: center;
}


/* =========================================================
   SERVICES — GRID
   ========================================================= */

.home-services__grid {
  display: grid;
  grid-template-columns:
    repeat(6, 1fr);

  gap: 28px 16px;

  width: 100%;

  margin-top: 58px;
}


/* =========================================================
   SERVICES — CARD
   ========================================================= */

.service-card {
  position: relative;

  min-height: 245px;

  padding:
    32px
    32px
    34px;

  overflow: visible;

  border-radius: 34px;

  color: var(--color-white);

  isolation: isolate;

  cursor: pointer;

  transition:
    transform 420ms var(--ease-standard),
    background-color 420ms var(--ease-standard),
    box-shadow 420ms var(--ease-standard);
}

.service-card:nth-child(1) {
  grid-column: 1 / 3;
}

.service-card:nth-child(2) {
  grid-column: 3 / 5;
}

.service-card:nth-child(3) {
  grid-column: 5 / 7;
}

.service-card:nth-child(4) {
  grid-column: 2 / 4;
}

.service-card:nth-child(5) {
  grid-column: 4 / 6;
}


/* =========================================================
   SERVICES — CARD COLORS
   ========================================================= */

.service-card--dark {
  background-color: #232321;
}

.service-card--gold {
  background-color: #9a8149;
}

.service-card--dark:hover {
  background-color: #2b2b28;

  transform: translateY(-6px);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.service-card--gold:hover {
  background-color: #a58b50;

  transform: translateY(-6px);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   SERVICES — CUT-OUT / NOTCH
   ========================================================= */

.service-card::after {
  content: "";

  position: absolute;
  right: -15px;
  bottom: -15px;

  z-index: 1;

  width: 76px;
  height: 76px;

  border-radius: 50%;

  background-color: #050505;

  pointer-events: none;
}


/* =========================================================
   SERVICES — CONTENT
   ========================================================= */

.service-card__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;

  height: 100%;
}

.service-card__content h3 {
  max-width: 210px;

  color: var(--color-white);

  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.service-card__content p {
  max-width: 210px;

  margin-top: auto;
  padding-top: 48px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.68rem;
  line-height: 1.55;
}

.service-card--gold .service-card__content p {
  color: rgba(255, 255, 255, 0.88);
}


/* =========================================================
   SERVICES — ARROW
   ========================================================= */

.service-card__arrow {
  position: absolute;
  top: 25px;
  right: 26px;

  z-index: 3;

  color: var(--color-gold);

  font-size: 1.1rem;
  line-height: 1;

  transition:
    transform 380ms var(--ease-standard),
    color 380ms var(--ease-standard);
}

.service-card--gold .service-card__arrow {
  color: #12120f;
}

.service-card:hover .service-card__arrow {
  transform: translate(4px, -4px);
}


/* =========================================================
   SERVICES — ICON
   ========================================================= */

.service-card__icon {
  position: absolute;
  right: -3px;
  bottom: -3px;

  z-index: 4;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  border-radius: 50%;

  background-color: #fff5df;

  transition:
    transform 420ms var(--ease-standard);
}

.service-card__icon img {
  width: 27px;
  height: 27px;

  object-fit: contain;
}

.service-card:hover .service-card__icon {
  transform: scale(1.07);
}


/* =========================================================
   04. HOW MJM CREATES VALUE
   ========================================================= */

.home-value {
  position: relative;

  width: 100%;

  padding:
    96px
    0
    120px;

  overflow: hidden;

  background-color: var(--color-white);
  color: var(--color-black);
}

.home-value__inner {
  display: flex;
  flex-direction: column;
}


/* =========================================================
   VALUE — SECTION LABEL
   ========================================================= */

.home-value__label {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 42px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 500;
}

.home-value__label-line {
  display: block;

  width: 44px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   VALUE — MAIN GRID
   ========================================================= */

.home-value__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(440px, 0.9fr);

  align-items: start;

  column-gap: 88px;
}


/* =========================================================
   VALUE — LEFT SIDE
   ========================================================= */

.home-value__left {
  min-width: 0;
}

.home-value__title {
  max-width: 620px;

  font-size: clamp(2.55rem, 4.2vw, 3.7rem);
  font-weight: 600;
  line-height: 1.34;
  letter-spacing: -0.02em;

  white-space: pre-line;
}

.home-value__cards {
  display: flex;
  flex-direction: column;

  gap: 16px;

  margin-top: 44px;
}


/* =========================================================
   VALUE — CARD
   ========================================================= */

.value-card {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    170px;
  align-items: stretch;

  min-height: 118px;

  overflow: hidden;

  border-radius: 28px;

  background-color: #ececec;
}

.value-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 20px 26px 20px 28px;
}

.value-card__content h3 {
  margin-bottom: 10px;

  color: var(--color-black);

  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.value-card__content p {
  max-width: 360px;

  color: var(--color-grey-700);

  font-size: 0.76rem;
  line-height: 1.62;
}

.value-card__image {
  position: relative;

  width: 100%;
  height: 100%;
}

.value-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   VALUE — RIGHT PROCESS PANEL
   ========================================================= */

.home-value__right {
  min-width: 0;
}

.value-process {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 54px;
  row-gap: 44px;

  padding: 58px 52px 46px;

  border-radius: 56px;

  background-color: #ececec;
}

.value-process__item {
  min-width: 0;
}

.value-process__item--last {
  grid-column: 1 / 2;
}

.value-process__meta {
  display: flex;
  align-items: center;

  gap: 16px;

  margin-bottom: 14px;
}

.value-process__number {
  color: var(--color-black);

  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1;
}

.value-process__line {
  display: block;

  width: 44px;
  height: 1px;

  background-color: var(--color-gold);
}

.value-process__item h3 {
  margin-bottom: 12px;

  color: var(--color-black);

  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.015em;
}

.value-process__item p {
  color: var(--color-grey-700);

  font-size: 0.76rem;
  line-height: 1.62;
}


/* =========================================================
   05. SELECTED PROJECTS
   ========================================================= */

.home-projects {
  position: relative;

  width: 100%;

  padding:
    72px
    0
    110px;

  overflow: hidden;

  background-color: #232321;
  color: var(--color-white);
}


/* =========================================================
   PROJECTS — SHOWCASE BANNER
   ========================================================= */

.project-showcase {
  position: relative;

  width: 100%;
  min-height: 430px;

  overflow: hidden;

  border-radius: 42px;

  background-color: #111111;
}

.project-showcase__media {
  position: absolute;
  inset: 0;

  z-index: 0;
}

.project-showcase__slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transform: scale(1.02);

  pointer-events: none;

  transition:
    opacity 900ms var(--ease-smooth),
    transform 6s linear;
}

.project-showcase__slide.is-active {
  opacity: 1;

  transform: scale(1.06);
}

.project-showcase__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.38) 42%,
      rgba(0, 0, 0, 0.08) 78%
    );
}


/* =========================================================
   PROJECTS — SHOWCASE CONTENT
   ========================================================= */

.project-showcase__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-height: 430px;

  padding:
    62px
    64px
    48px;
}

.project-showcase__label {
  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--color-white);

  font-size: 0.68rem;
  font-weight: 500;

  text-transform: uppercase;
}

.project-showcase__label-line {
  width: 30px;
  height: 1px;

  background-color: rgba(255, 255, 255, 0.8);
}

.project-showcase__title {
  max-width: 500px;

  margin-top: 48px;

  font-size:
    clamp(
      2.05rem,
      3.3vw,
      3rem
    );

  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;

  white-space: pre-line;
}

.project-showcase__button {
  min-height: 38px;

  margin-top: auto;
  padding-inline: 16px;

  border-radius: var(--radius-pill);

  background-color: rgba(0, 0, 0, 0.74);
  color: var(--color-white);

  font-size: 0.68rem;
  font-weight: 500;

  transition:
    background-color 350ms var(--ease-standard),
    transform 350ms var(--ease-standard);
}

.project-showcase__button:hover {
  background-color: var(--color-green);

  transform: translateY(-2px);
}


/* =========================================================
   PROJECTS — SHOWCASE DOTS
   ========================================================= */

.project-showcase__dots {
  position: absolute;
  right: 54px;
  bottom: 50px;

  z-index: 3;

  display: flex;
  align-items: center;

  gap: 12px;
}

.project-showcase__dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.55);

  cursor: pointer;

  transition:
    background-color 300ms var(--ease-standard),
    transform 300ms var(--ease-standard);
}

.project-showcase__dot.is-active {
  background-color: var(--color-white);

  transform: scale(1.16);
}


/* =========================================================
   PROJECTS — GRID
   ========================================================= */

.selected-projects__grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 26px;
}


/* =========================================================
   PROJECTS — CARD
   ========================================================= */

.selected-project-card {
  position: relative;

  min-height: 225px;

  overflow: hidden;

  border-radius: 24px;

  color: var(--color-white);

  isolation: isolate;
}

.selected-project-card__image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms var(--ease-standard);
}

.selected-project-card__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.02) 28%,
      rgba(0, 0, 0, 0.74) 100%
    );

  transition:
    background 450ms var(--ease-standard);
}

.selected-project-card__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 225px;

  padding:
    22px
    20px
    18px;
}

.selected-project-card__category {
  margin-bottom: 6px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 0.58rem;
  line-height: 1.35;
}

.selected-project-card__bottom {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: end;

  gap: 12px;
}

.selected-project-card h3 {
  max-width: 200px;

  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;

  white-space: pre-line;
}

.selected-project-card__location {
  display: flex;
  align-items: center;

  gap: 4px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 0.54rem;

  white-space: nowrap;
}

.selected-project-card__location img {
  width: 11px;
  height: 11px;

  flex-shrink: 0;
}

.selected-project-card:hover .selected-project-card__image {
  transform: scale(1.055);
}

.selected-project-card:hover .selected-project-card__overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.03) 18%,
      rgba(0, 0, 0, 0.84) 100%
    );
}


/* =========================================================
   06. OUR REACH
   ========================================================= */

.home-reach {
  position: relative;

  width: 100%;

  padding:
    80px
    0
    100px;

  overflow: hidden;

  background-color: #232321;
  color: var(--color-white);
}


/* =========================================================
   REACH — SECTION LABEL
   ========================================================= */

.home-reach__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 500;
}

.home-reach__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   REACH — MAP
   ========================================================= */

.home-reach__map {
  position: relative;

  width: 100%;

  margin-top: 30px;
}

.home-reach__map-object {
  display: block;

  width: 100%;

  aspect-ratio: 1286.23 / 465.59;

  pointer-events: auto;
}

.home-reach__map-object svg {
  display: block;

  width: 100%;
  height: 100%;

  overflow: visible;
}


/* =========================================================
   REACH — CITY HOTSPOTS
   ========================================================= */

.reach-hotspot {
  position: absolute;

  z-index: 5;

  width: 9px;
  height: 9px;

  padding: 0;

  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;

  background-color: #ffc226;

  box-shadow:
    0 0 0 4px rgba(255, 194, 38, 0.15);

  cursor: pointer;

  transition:
    transform 300ms var(--ease-standard),
    box-shadow 300ms var(--ease-standard);
}

.reach-hotspot:hover {
  transform: scale(1.35);

  box-shadow:
    0 0 0 7px rgba(255, 194, 38, 0.18);
}


/* Hotspot positions — tuned to current SVG asset */

.reach-hotspot--jakarta {
  left: 26.45%;
  top: 71.5%;
}

.reach-hotspot--depok {
  left: 26.65%;
  top: 73.2%;
}

.reach-hotspot--bogor {
  left: 26.35%;
  top: 75%;
}

.reach-hotspot--sukabumi {
  left: 26.9%;
  top: 77%;
}

.reach-hotspot--bandung {
  left: 28.35%;
  top: 76.3%;
}


/* =========================================================
   REACH — LOWER CONTENT
   ========================================================= */

.home-reach__content {
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(500px, 1.05fr);

  align-items: start;

  column-gap: 100px;

  margin-top: 24px;
}


/* =========================================================
   REACH — INTRO
   ========================================================= */

.home-reach__title {
  max-width: 480px;

  font-size:
    clamp(
      2.45rem,
      3.5vw,
      3.35rem
    );

  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;

  white-space: pre-line;
}

.home-reach__intro p {
  max-width: 510px;

  margin-top: 22px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.78rem;
  line-height: 1.7;
}


/* =========================================================
   REACH — DETAILS
   ========================================================= */

.home-reach__details {
  min-width: 0;
}


/* =========================================================
   REACH — LOCATION LEGEND
   ========================================================= */

.reach-locations {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 38px;
}

.reach-locations__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 9px;
}

.reach-location {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 0;

  border: 0;

  background-color: transparent;
  color: var(--color-white);

  font-family: inherit;
  font-size: 0.68rem;
  line-height: 1.35;

  text-align: left;

  cursor: pointer;

  transition:
    opacity 300ms var(--ease-standard),
    transform 300ms var(--ease-standard);
}

.reach-location:hover {
  transform: translateX(3px) scale(1.035);
}

.reach-location__color {
  width: 9px;
  height: 9px;

  flex: 0 0 9px;
}


/* =========================================================
   REACH — MAP / LEGEND COLORS
   ========================================================= */

.reach-location__color--yellow {
  background-color: #ffc226;
}

.reach-location__color--teal {
  background-color: #00ab8d;
}

.reach-location__color--purple {
  background-color: #9b3cb3;
}

.reach-location__color--orange {
  background-color: #e7752d;
}

.reach-location__color--red {
  background-color: #f84343;
}

.reach-location__color--blue {
  background-color: #1072de;
}

.reach-location__color--lightblue {
  background-color: #47b6ec;
}


/* =========================================================
   REACH — STATISTICS
   ========================================================= */

.reach-stats {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 32px;

  margin-top: 58px;
}

.reach-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 7px;
}

.reach-stat__number {
  color: var(--color-white);

  font-size:
    clamp(
      2.2rem,
      3.5vw,
      3.4rem
    );

  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;

  white-space: nowrap;
}

.reach-stat__label {
  color: rgba(255, 255, 255, 0.78);

  font-size: 0.58rem;
  line-height: 1.4;
}

/* =========================================================
   07. PARTNERS & STAKEHOLDERS
   ========================================================= */

.home-partners {
  position: relative;

  width: 100%;

  padding:
    76px
    0
    84px;

  background-color: var(--color-white);
  color: var(--color-black);
}


/* =========================================================
   PARTNERS — INNER
   ========================================================= */

.home-partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* =========================================================
   PARTNERS — SECTION LABEL
   ========================================================= */

.home-partners__label {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;

  text-transform: uppercase;
}

.home-partners__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   PARTNERS — TITLE
   ========================================================= */

.home-partners__title {
  max-width: 900px;

  margin-top: 42px;

  color: var(--color-black);

  font-size:
    clamp(
      2rem,
      2.8vw,
      2.65rem
    );

  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;

  text-align: center;
}


/* =========================================================
   PARTNERS — LOGO AREA
   ========================================================= */

.home-partners__logos {
  display: flex;
  flex-direction: column;

  gap: 54px;

  width: min(
    100%,
    1080px
  );

  margin-top: 64px;
}


/* =========================================================
   PARTNERS — ROW
   ========================================================= */

.home-partners__row {
  display: grid;
  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  align-items: center;

  column-gap: 28px;

  width: 100%;
}


/*
  TIKA lockup is wider than the other logos,
  following the Illustrator composition.
*/

.home-partners__row--first {
  grid-template-columns:
    1.75fr
    repeat(5, minmax(0, 1fr));
}


/* =========================================================
   PARTNERS — LOGO ITEM
   ========================================================= */

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  height: 84px;
}

.partner-logo img {
  display: block;

  width: auto;
  max-width: 100%;
  max-height: 68px;

  object-fit: contain;
}


/* =========================================================
   PARTNERS — OPTICAL LOGO SIZING
   ========================================================= */

.partner-logo--tika img {
  width: min(100%, 240px);
  max-height: 62px;
}

.partner-logo--baznas img {
  max-width: 94px;
}

.partner-logo--istiqlal img {
  max-width: 112px;
}

.partner-logo--50kota img,
.partner-logo--ppdi img,
.partner-logo--kemendes img {
  max-width: 72px;
}

.partner-logo--ui img {
  max-width: 82px;
}

.partner-logo--uin img {
  max-width: 92px;
}

.partner-logo--polmed img {
  max-width: 92px;
}

.partner-logo--upn img,
.partner-logo--unlam img,
.partner-logo--untl img {
  max-width: 78px;
}

.partner-logo--hi img {
  max-width: 126px;
}

.partner-logo--bernard img {
  max-width: 80px;
}

.partner-logo--aman img {
  max-width: 82px;
}

.partner-logo--rumah-zakat img {
  max-width: 124px;
}

.partner-logo--asar img {
  max-width: 120px;
}

.partner-logo--rsib img {
  max-width: 82px;
}

.partner-logo img {
  transition:
    transform 360ms var(--ease-standard),
    opacity 360ms var(--ease-standard);
}

.partner-logo:hover img {
  transform:
    translateY(-4px)
    scale(1.045);
}

/* =========================================================
   08. OUR VALUES
   ========================================================= */

.home-values {
  position: relative;

  width: 100%;

  padding:
    82px
    0
    100px;

  overflow: hidden;

  background-color: #050505;
  color: var(--color-white);
}


/* =========================================================
   VALUES — INNER
   ========================================================= */

.home-values__inner {
  display: flex;
  flex-direction: column;
}


/* =========================================================
   VALUES — LABEL
   ========================================================= */

.home-values__label {
  display: flex;
  align-items: center;

  gap: 12px;

  color: var(--color-gold);

  font-size: 0.7rem;
  font-weight: 500;
}

.home-values__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   VALUES — HEADING
   ========================================================= */

.home-values__heading {
  display: grid;
  grid-template-columns:
    auto
    1fr;

  align-items: center;

  gap: 44px;

  margin-top: 38px;
}

.home-values__title {
  font-size:
    clamp(
      2.15rem,
      3vw,
      2.8rem
    );

  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;

  white-space: nowrap;
}

.home-values__heading-line {
  display: block;

  width: 100%;
  height: 1px;

  background-color:
    rgba(167, 139, 79, 0.68);
}


/* =========================================================
   VALUES — GRID
   ========================================================= */

.home-values__grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;

  margin-top: 58px;
}


/* =========================================================
   VALUES — CARD
   ========================================================= */

.home-value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  min-height: 320px;

  padding:
    26px
    24px
    26px;

  border-radius: 30px;

  background-color: #cacac8d5;
  color: var(--color-black);
}


/* =========================================================
   VALUES — ICON
   ========================================================= */

.home-value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  margin-bottom: 18px;
}

.home-value-card__icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* =========================================================
   VALUES — TYPOGRAPHY
   ========================================================= */

.home-value-card h3 {
  color: var(--color-black);

  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-value-card p {
  max-width: 215px;

  margin-top: auto;

  color: #373735;

  font-size: 0.7rem;
  line-height: 1.65;
}

/* =========================================================
   09. HOME CTA
   ========================================================= */

.home-cta {
  position: relative;

  width: 100%;
  min-height: 760px;

  margin-top: 120px;

  overflow: hidden;

  border-top-left-radius: 56px;
  border-top-right-radius: 56px;

  background-color: #111111;
  color: var(--color-white);

  isolation: isolate;
}


/* =========================================================
   CTA — BACKGROUND IMAGE
   ========================================================= */

.home-cta__media {
  position: absolute;
  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;
}

.home-cta__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}


/* =========================================================
   CTA — BLACK GRADIENT OVERLAY
   Illustrator reference:
   Top opacity    = 0%
   Bottom opacity = 50%
   ========================================================= */

.home-cta__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5) 50%
    );
}


/* =========================================================
   CTA — CONTENT
   ========================================================= */

.home-cta__inner {
  position: relative;

  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 760px;

  padding-top: 120px;
  padding-bottom: 100px;

  text-align: center;
}


/* =========================================================
   CTA — LABEL
   ========================================================= */

.home-cta__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;

  text-transform: uppercase;
}

.home-cta__label-line {
  display: block;

  width: 30px;
  height: 1px;

  background-color: var(--color-gold);
}


/* =========================================================
   CTA — TITLE
   ========================================================= */

.home-cta__title {
  max-width: 650px;

  margin-top: 46px;

  color: var(--color-white);

  font-size:
    clamp(
      2.25rem,
      3.2vw,
      3.35rem
    );

  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;

  text-align: center;
}


/* =========================================================
   CTA — DESCRIPTION
   ========================================================= */

.home-cta__description {
  max-width: 590px;

  margin-top: 30px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 0.78rem;
  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   CTA — ACTIONS
   ========================================================= */

.home-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  margin-top: 34px;
}


/* =========================================================
   CTA — BUTTON COLORS
   ========================================================= */

.home-cta__button--primary,
.home-cta__button--secondary {
  border: 0;

  background-color: #021c15;
  color: var(--color-white);
}


/* HOVER */

.home-cta__button--primary:hover,
.home-cta__button--secondary:hover {
  background-color: #063328;

  transform: translateY(-2px);
}

/* =========================================================
   10. FOOTER
   ========================================================= */

.site-footer {
  position: relative;

  width: 100%;

  padding:
    72px
    0
    44px;

  background-color: #1d1b19;
  color: var(--color-white);
}


/* =========================================================
   FOOTER — TOP
   ========================================================= */

.site-footer__top {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.5fr)
    minmax(130px, 0.65fr)
    minmax(180px, 0.85fr)
    minmax(190px, 0.9fr);

  align-items: start;

  column-gap: 72px;
}


/* =========================================================
   FOOTER — BRAND
   ========================================================= */

.site-footer__brand {
  max-width: 300px;
}

.site-footer__logo {
  display: block;

  width: 190px;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

.site-footer__brand p {
  max-width: 245px;

  margin-top: 30px;

  color: rgba(255, 255, 255, 0.92);

  font-size: 0.72rem;
  line-height: 1.7;
}


/* =========================================================
   FOOTER — COLUMN
   ========================================================= */

.site-footer__column h3 {
  margin-bottom: 30px;

  color: var(--color-gold);

  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
}

.site-footer__links {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 11px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.92);

  font-size: 0.62rem;
  line-height: 1.4;

  transition:
    color var(--duration-fast) var(--ease-standard),
    transform var(--duration-fast) var(--ease-standard);
}

.site-footer__links a:hover {
  color: var(--color-gold);

  transform: translateX(3px);
}


/* =========================================================
   FOOTER — CONTACT
   ========================================================= */

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 12px;
}

.site-footer__contact-list span,
.site-footer__contact-list a {
  color: rgba(255, 255, 255, 0.92);

  font-size: 0.62rem;
  line-height: 1.4;
}

.site-footer__contact-list a {
  transition:
    color var(--duration-fast) var(--ease-standard);
}

.site-footer__contact-list a:hover {
  color: var(--color-gold);
}


/* =========================================================
   FOOTER — DIVIDER
   ========================================================= */

.site-footer__divider {
  width: 100%;
  height: 1px;

  margin-top: 66px;

  background-color:
    rgba(167, 139, 79, 0.52);
}


/* =========================================================
   FOOTER — BOTTOM
   ========================================================= */

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-top: 40px;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.88);

  font-size: 0.56rem;
  line-height: 1.4;
}

.site-footer__legal {
  display: flex;
  align-items: center;

  gap: 28px;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.88);

  font-size: 0.56rem;
  line-height: 1.4;

  transition:
    color var(--duration-fast) var(--ease-standard);
}

.site-footer__legal a:hover {
  color: var(--color-gold);
}